UNPKG

@skiyee/uni-ui

Version:

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

21 lines (20 loc) 532 B
/** * @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 { SkFieldUcvProps } from "../styles/sk-field.cjs"; //#region src/types/field.d.ts interface FieldContext { props: { name?: string; size?: SkFieldUcvProps['size']; disabled?: boolean; }; handleChange: (value: unknown) => void; handleBlur: (value: unknown) => void; handleFocus: (value: unknown) => void; } //#endregion export { FieldContext };