UNPKG

@skiyee/uni-ui

Version:

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

22 lines (21 loc) 646 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 { SkCheckboxUcvProps } from "../styles/sk-checkbox.js"; import { InjectionKey } from "vue"; //#region src/constants/checkbox.d.ts declare const SK_CHECKBOX_GROUP_KEY: InjectionKey<{ props: { modelValue?: string[]; size?: SkCheckboxUcvProps['size']; color?: SkCheckboxUcvProps['color']; disabled?: boolean; }; isChecked: (value: string) => boolean; updateValue: (value: string, checked: boolean) => void; }>; //#endregion export { SK_CHECKBOX_GROUP_KEY };