UNPKG

@skiyee/uni-ui

Version:

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

63 lines (62 loc) 1.22 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_ucv4 from "@skiyee/ucv"; import { InferProps } from "@skiyee/ucv"; //#region src/styles/sk-number-input.d.ts declare const SkNumberInputUcv: _skiyee_ucv4.MultiElementComponent<{ root: string; input: string; button: string; icon: string; placeholder: string; }, { size: { small: { root: string; input: string; button: string; icon: string; }; medium: { root: string; input: string; button: string; icon: string; }; large: { root: string; input: string; button: string; icon: string; }; }; disabled: { true: { root: string; input: string; button: string; }; false: {}; }; readonly: { true: { input: string; button: string; }; false: {}; }; range: { true: {}; false: { button: string; }; }; }>; type SkNumberInputUcvProps = InferProps<typeof SkNumberInputUcv>; //#endregion export { SkNumberInputUcv, SkNumberInputUcvProps };