UNPKG

@skiyee/uni-ui

Version:

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

55 lines (54 loc) 1.09 kB
//! @unocss-include /** * @skiyee/uni-ui v1.0.0 * @author skiyee(https://github.com/skiyee) * @license Apache License 2.0 * @copyright 2025-present skiyee All rights reserved. **/ import * as _skiyee_ucv4 from "@skiyee/ucv"; import { InferProps } from "@skiyee/ucv"; //#region src/styles/sk-input.d.ts declare const SkInputUcv: _skiyee_ucv4.MultiElementComponent<{ root: string; leading: string; inner: string; content: string; placeholder: string; trailing: string; }, { size: { small: { root: string; leading: string; content: string; trailing: string; }; medium: { root: string; leading: string; content: string; trailing: string; }; large: { root: string; leading: string; content: string; trailing: string; }; }; readonly: { true: { root: string; }; false: {}; }; disabled: { true: { root: string; }; false: {}; }; }>; type SkInputUcvProps = InferProps<typeof SkInputUcv>; //#endregion export { SkInputUcv, SkInputUcvProps };