UNPKG

@skiyee/uni-ui

Version:

一个由原子化CSS驱动、符合直觉设计、高度定制化、面向AI时代的移动端 UI 库,助力开发者打造独特且差异化的移动端应用程序

54 lines (53 loc) 1.06 kB
//! @unocss-include /** * @skiyee/uni-ui v1.1.0 * @author skiyee(https://github.com/skiyee) * @license Apache License 2.0 * @copyright 2025-present skiyee All rights reserved. **/ import * as _skiyee_ucv12 from "@skiyee/ucv"; import { InferProps } from "@skiyee/ucv"; //#region src/styles/sk-field.d.ts declare const SkFieldUcv: _skiyee_ucv12.MultiElementComponent<{ root: string; label: string; required: string; content: string; description: string; error: string; }, { size: { small: { label: string; description: string; }; medium: { label: string; description: string; }; large: { label: string; description: string; }; }; orientation: { vertical: { root: string; content: string; }; horizontal: { root: string; label: string; content: string; }; }; disabled: { true: { root: string; }; false: {}; }; }>; type SkFieldUcvProps = InferProps<typeof SkFieldUcv>; //#endregion export { SkFieldUcv, SkFieldUcvProps };