@designbasekorea/ui 0.2.34 → 0.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +144 -101
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +144 -101
- package/dist/index.js.map +1 -1
- package/dist/index.umd.css +1 -1
- package/dist/index.umd.css.map +1 -1
- package/dist/index.umd.js +144 -101
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1060,6 +1060,12 @@ interface ColorPickerProps {
|
|
|
1060
1060
|
showCopyButton?: boolean;
|
|
1061
1061
|
disabled?: boolean;
|
|
1062
1062
|
readonly?: boolean;
|
|
1063
|
+
/** 콜백 반환 포맷: 기본은 HEX, UI는 현재 선택 포맷 */
|
|
1064
|
+
onChangeFormat?: 'hex' | 'ui';
|
|
1065
|
+
/** 초기 마운트 시 onChange 발사 여부(기본 false) */
|
|
1066
|
+
fireOnInit?: boolean;
|
|
1067
|
+
/** 과발사 방지 디바운스(ms). 0은 비활성 */
|
|
1068
|
+
changeDebounceMs?: number;
|
|
1063
1069
|
onChange?: (color: string) => void;
|
|
1064
1070
|
onApply?: (color: string) => void;
|
|
1065
1071
|
onCancel?: () => void;
|
|
@@ -2070,7 +2076,7 @@ interface LabelProps {
|
|
|
2070
2076
|
/** 필수 필드 표시 */
|
|
2071
2077
|
required?: boolean;
|
|
2072
2078
|
/** 라벨 크기 */
|
|
2073
|
-
size?: '
|
|
2079
|
+
size?: 's' | 'm' | 'l';
|
|
2074
2080
|
/** 비활성화 상태 */
|
|
2075
2081
|
disabled?: boolean;
|
|
2076
2082
|
/** 에러 상태 */
|