@designbasekorea/ui 0.7.0 → 0.8.0
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 +30 -0
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +2274 -2239
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2273 -2238
- 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 +2273 -2238
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1098,6 +1098,16 @@ interface ColorPickerProps {
|
|
|
1098
1098
|
onApply?: (color: string) => void;
|
|
1099
1099
|
onCancel?: () => void;
|
|
1100
1100
|
className?: string;
|
|
1101
|
+
/** 라벨 */
|
|
1102
|
+
label?: string;
|
|
1103
|
+
/** 필수 여부 */
|
|
1104
|
+
required?: boolean;
|
|
1105
|
+
/** 에러 상태 */
|
|
1106
|
+
error?: boolean;
|
|
1107
|
+
/** 전체 너비 여부 */
|
|
1108
|
+
fullWidth?: boolean;
|
|
1109
|
+
/** 추가 props */
|
|
1110
|
+
[key: string]: any;
|
|
1101
1111
|
}
|
|
1102
1112
|
declare const ColorPicker: React$1.FC<ColorPickerProps>;
|
|
1103
1113
|
|
|
@@ -1331,6 +1341,16 @@ interface DatePickerProps {
|
|
|
1331
1341
|
readonly?: boolean;
|
|
1332
1342
|
dropdownPosition?: 'bottom-start' | 'bottom-end';
|
|
1333
1343
|
inline?: boolean;
|
|
1344
|
+
/** 라벨 */
|
|
1345
|
+
label?: string;
|
|
1346
|
+
/** 필수 여부 */
|
|
1347
|
+
required?: boolean;
|
|
1348
|
+
/** 에러 상태 */
|
|
1349
|
+
error?: boolean;
|
|
1350
|
+
/** 전체 너비 여부 */
|
|
1351
|
+
fullWidth?: boolean;
|
|
1352
|
+
/** 추가 props */
|
|
1353
|
+
[key: string]: any;
|
|
1334
1354
|
}
|
|
1335
1355
|
declare const DatePicker: React$1.FC<DatePickerProps>;
|
|
1336
1356
|
|
|
@@ -4195,6 +4215,16 @@ interface TimePickerProps {
|
|
|
4195
4215
|
dropdownPosition?: 'bottom-start' | 'bottom-end';
|
|
4196
4216
|
onChange?: (time24: string) => void;
|
|
4197
4217
|
className?: string;
|
|
4218
|
+
/** 라벨 */
|
|
4219
|
+
label?: string;
|
|
4220
|
+
/** 필수 여부 */
|
|
4221
|
+
required?: boolean;
|
|
4222
|
+
/** 에러 상태 */
|
|
4223
|
+
error?: boolean;
|
|
4224
|
+
/** 전체 너비 여부 */
|
|
4225
|
+
fullWidth?: boolean;
|
|
4226
|
+
/** 추가 props */
|
|
4227
|
+
[key: string]: any;
|
|
4198
4228
|
}
|
|
4199
4229
|
declare const TimePicker: React$1.FC<TimePickerProps>;
|
|
4200
4230
|
|