first commit

This commit is contained in:
liu
2026-07-13 15:23:29 +08:00
commit 50885a98c8
473 changed files with 33772 additions and 0 deletions
@@ -0,0 +1,33 @@
/**
* 图标选择器组件属性
*/
export interface IconSelectProps {
/**
* 选中的图标名称
*/
value?: string;
/**
* 值变化回调
* @param value 选中的图标名称或 null(清空时)
*/
onChange?: (value: string | null) => void;
/**
* 占位符文本
* @default '请选择图标'
*/
placeholder?: string;
/**
* 是否禁用
* @default false
*/
disabled?: boolean;
/**
* 是否只读(只读模式下不能打开选择弹窗)
* @default false
*/
readonly?: boolean;
}