@bigtablet/design-system 1.22.2 → 1.24.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.d.ts CHANGED
@@ -1,84 +1,326 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React from 'react';
3
3
 
4
+ declare const baseColors: {
5
+ readonly brandPrimary: "#121212";
6
+ readonly blue600: "#1A73E8";
7
+ readonly neutral0: "#FFFFFF";
8
+ readonly neutral50: "#F4F4F4";
9
+ readonly neutral200: "#E5E5E5";
10
+ readonly neutral300: "#999999";
11
+ readonly neutral400: "#B3B3B3";
12
+ readonly neutral500: "#888888";
13
+ readonly neutral700: "#666666";
14
+ readonly neutral900: "#121212";
15
+ readonly statusError: "#EF4444";
16
+ readonly statusSuccess: "#10B981";
17
+ readonly statusWarning: "#F59E0B";
18
+ readonly statusInfo: "#3B82F6";
19
+ readonly alphaBlack5: "rgba(0, 0, 0, 0.05)";
20
+ readonly alphaBlack8: "rgba(0, 0, 0, 0.08)";
21
+ readonly alphaBlack12: "rgba(26, 26, 26, 0.12)";
22
+ readonly alphaBlack38: "rgba(26, 26, 26, 0.38)";
23
+ readonly alphaBlack50: "rgba(0, 0, 0, 0.50)";
24
+ readonly alphaWhite5: "rgba(255, 255, 255, 0.05)";
25
+ readonly alphaWhite8: "rgba(255, 255, 255, 0.08)";
26
+ readonly alphaWhite12: "rgba(255, 255, 255, 0.12)";
27
+ };
4
28
  declare const colors: {
5
- readonly primary: "#000000";
6
- readonly primaryHover: "#333333";
7
- readonly background: "#ffffff";
8
- readonly backgroundSecondary: "#fafafa";
9
- readonly backgroundNeutral: "#f3f3f3";
10
- readonly backgroundMuted: "#f0f0f0";
11
- readonly textPrimary: "#1a1a1a";
12
- readonly textSecondary: "#666666";
13
- readonly textTertiary: "#999999";
14
- readonly border: "#e5e5e5";
15
- readonly borderLight: "rgba(0, 0, 0, 0.08)";
16
- readonly success: "#10b981";
17
- readonly error: "#ef4444";
18
- readonly warning: "#f59e0b";
19
- readonly info: "#3b82f6";
20
- readonly overlay: "rgba(0, 0, 0, 0.5)";
21
- readonly hoverSubtle: "rgba(0, 0, 0, 0.03)";
22
- readonly hoverLight: "rgba(0, 0, 0, 0.05)";
23
- readonly textStrong: "#1F2937";
24
- readonly textNormal: "#3B3B3B";
25
- readonly textSubtle: "#6B7280";
26
- readonly textDisabled: "#9CA3AF";
27
- readonly textInverse: "#FFFFFF";
29
+ readonly brand: {
30
+ readonly primary: "#121212";
31
+ readonly onPrimary: "#FFFFFF";
32
+ };
33
+ readonly text: {
34
+ readonly heading: "#121212";
35
+ readonly body: "#666666";
36
+ readonly caption: "#888888";
37
+ readonly brand: "#121212";
38
+ readonly inverse: "#FFFFFF";
39
+ readonly disabled: "rgba(26, 26, 26, 0.38)";
40
+ };
41
+ readonly bg: {
42
+ readonly solid: "#FFFFFF";
43
+ readonly solidDim: "#F4F4F4";
44
+ readonly additive: "rgba(0, 0, 0, 0.05)";
45
+ readonly disabled: "rgba(26, 26, 26, 0.12)";
46
+ readonly overlay: "rgba(0, 0, 0, 0.50)";
47
+ };
48
+ readonly state: {
49
+ readonly hoverOnLight: "rgba(0, 0, 0, 0.05)";
50
+ readonly pressedOnLight: "rgba(26, 26, 26, 0.12)";
51
+ readonly hoverOnDark: "rgba(255, 255, 255, 0.05)";
52
+ readonly pressedOnDark: "rgba(255, 255, 255, 0.12)";
53
+ };
54
+ readonly border: {
55
+ readonly default: "#E5E5E5";
56
+ readonly hover: "#B3B3B3";
57
+ readonly subtle: "rgba(0, 0, 0, 0.08)";
58
+ readonly focus: "#121212";
59
+ readonly disabled: "#F2F2F2";
60
+ };
61
+ readonly status: {
62
+ readonly error: "#EF4444";
63
+ readonly success: "#10B981";
64
+ readonly warning: "#F59E0B";
65
+ readonly info: "#3B82F6";
66
+ };
28
67
  };
29
68
 
30
69
  declare const spacing: {
31
- readonly xs: "0.25rem";
32
- readonly sm: "0.5rem";
33
- readonly md: "0.75rem";
34
- readonly lg: "1rem";
35
- readonly xl: "1.25rem";
36
- readonly "2xl": "1.5rem";
37
- readonly "3xl": "2rem";
38
- readonly "4xl": "2.5rem";
39
- readonly "5xl": "3rem";
70
+ readonly "0": "0px";
71
+ readonly "1": "1px";
72
+ readonly "2": "2px";
73
+ readonly "3": "3px";
74
+ readonly "4": "4px";
75
+ readonly "6": "6px";
76
+ readonly "8": "8px";
77
+ readonly "12": "12px";
78
+ readonly "16": "16px";
79
+ readonly "20": "20px";
80
+ readonly "24": "24px";
81
+ readonly "32": "32px";
82
+ readonly "40": "40px";
83
+ readonly "48": "48px";
40
84
  };
41
85
 
42
- declare const typography: {
86
+ declare const baseTypography: {
43
87
  readonly fontFamily: {
44
- readonly primary: "'Pretendard', sans-serif";
88
+ readonly primary: "Pretendard";
45
89
  };
46
90
  readonly fontSize: {
47
- readonly xs: "0.75rem";
48
- readonly sm: "0.875rem";
49
- readonly base: "0.9375rem";
50
- readonly md: "1rem";
51
- readonly lg: "1.125rem";
52
- readonly xl: "1.25rem";
53
- readonly "2xl": "1.5rem";
54
- readonly "3xl": "2rem";
55
- readonly "4xl": "2.5rem";
91
+ readonly "12": "12px";
92
+ readonly "13": "13px";
93
+ readonly "14": "14px";
94
+ readonly "15": "15px";
95
+ readonly "16": "16px";
96
+ readonly "18": "18px";
97
+ readonly "20": "20px";
98
+ readonly "24": "24px";
99
+ readonly "28": "28px";
100
+ readonly "32": "32px";
101
+ readonly "40": "40px";
102
+ readonly "48": "48px";
56
103
  };
57
104
  readonly fontWeight: {
58
- readonly thin: 100;
59
- readonly extralight: 200;
60
- readonly light: 300;
61
- readonly regular: 400;
62
- readonly medium: 500;
63
- readonly semibold: 600;
64
- readonly bold: 700;
65
- readonly extrabold: 800;
66
- readonly black: 900;
105
+ readonly regular: "Regular";
106
+ readonly medium: "Medium";
67
107
  };
68
108
  readonly lineHeight: {
69
- readonly tight: 1.25;
70
- readonly snug: 1.3;
71
- readonly normal: 1.5;
72
- readonly relaxed: 1.75;
109
+ readonly "16": "16px";
110
+ readonly "18": "18px";
111
+ readonly "20": "20px";
112
+ readonly "22-5": "22.5px";
113
+ readonly "24": "24px";
114
+ readonly "28": "28px";
115
+ readonly "32": "32px";
116
+ readonly "36": "36px";
117
+ readonly "40": "40px";
118
+ readonly "50": "50px";
119
+ readonly "60": "60px";
73
120
  };
74
121
  readonly letterSpacing: {
75
- readonly tight: "-0.02em";
76
- readonly normal: "0";
77
- readonly wide: "0.02em";
122
+ readonly normal: "0px";
123
+ };
124
+ };
125
+ declare const typography: {
126
+ readonly fontFamily: {
127
+ readonly primary: "'Pretendard', sans-serif";
128
+ };
129
+ readonly display: {
130
+ readonly large: {
131
+ readonly fontSize: "48px";
132
+ readonly fontWeight: "Regular";
133
+ readonly lineHeight: "60px";
134
+ readonly letterSpacing: "0px";
135
+ };
136
+ readonly largeMedium: {
137
+ readonly fontSize: "48px";
138
+ readonly fontWeight: "Medium";
139
+ readonly lineHeight: "60px";
140
+ readonly letterSpacing: "0px";
141
+ };
142
+ readonly medium: {
143
+ readonly fontSize: "40px";
144
+ readonly fontWeight: "Regular";
145
+ readonly lineHeight: "50px";
146
+ readonly letterSpacing: "0px";
147
+ };
148
+ readonly mediumMedium: {
149
+ readonly fontSize: "40px";
150
+ readonly fontWeight: "Medium";
151
+ readonly lineHeight: "50px";
152
+ readonly letterSpacing: "0px";
153
+ };
154
+ readonly small: {
155
+ readonly fontSize: "32px";
156
+ readonly fontWeight: "Regular";
157
+ readonly lineHeight: "40px";
158
+ readonly letterSpacing: "0px";
159
+ };
160
+ readonly smallMedium: {
161
+ readonly fontSize: "32px";
162
+ readonly fontWeight: "Medium";
163
+ readonly lineHeight: "40px";
164
+ readonly letterSpacing: "0px";
165
+ };
166
+ };
167
+ readonly heading: {
168
+ readonly large: {
169
+ readonly fontSize: "28px";
170
+ readonly fontWeight: "Regular";
171
+ readonly lineHeight: "36px";
172
+ readonly letterSpacing: "0px";
173
+ };
174
+ readonly largeMedium: {
175
+ readonly fontSize: "28px";
176
+ readonly fontWeight: "Medium";
177
+ readonly lineHeight: "36px";
178
+ readonly letterSpacing: "0px";
179
+ };
180
+ readonly medium: {
181
+ readonly fontSize: "24px";
182
+ readonly fontWeight: "Regular";
183
+ readonly lineHeight: "32px";
184
+ readonly letterSpacing: "0px";
185
+ };
186
+ readonly mediumMedium: {
187
+ readonly fontSize: "24px";
188
+ readonly fontWeight: "Medium";
189
+ readonly lineHeight: "32px";
190
+ readonly letterSpacing: "0px";
191
+ };
192
+ readonly small: {
193
+ readonly fontSize: "20px";
194
+ readonly fontWeight: "Regular";
195
+ readonly lineHeight: "28px";
196
+ readonly letterSpacing: "0px";
197
+ };
198
+ readonly smallMedium: {
199
+ readonly fontSize: "20px";
200
+ readonly fontWeight: "Medium";
201
+ readonly lineHeight: "28px";
202
+ readonly letterSpacing: "0px";
203
+ };
204
+ };
205
+ readonly title: {
206
+ readonly large: {
207
+ readonly fontSize: "18px";
208
+ readonly fontWeight: "Regular";
209
+ readonly lineHeight: "24px";
210
+ readonly letterSpacing: "0px";
211
+ };
212
+ readonly largeMedium: {
213
+ readonly fontSize: "18px";
214
+ readonly fontWeight: "Medium";
215
+ readonly lineHeight: "24px";
216
+ readonly letterSpacing: "0px";
217
+ };
218
+ readonly medium: {
219
+ readonly fontSize: "16px";
220
+ readonly fontWeight: "Regular";
221
+ readonly lineHeight: "24px";
222
+ readonly letterSpacing: "0px";
223
+ };
224
+ readonly mediumMedium: {
225
+ readonly fontSize: "16px";
226
+ readonly fontWeight: "Medium";
227
+ readonly lineHeight: "24px";
228
+ readonly letterSpacing: "0px";
229
+ };
230
+ readonly small: {
231
+ readonly fontSize: "14px";
232
+ readonly fontWeight: "Regular";
233
+ readonly lineHeight: "20px";
234
+ readonly letterSpacing: "0px";
235
+ };
236
+ readonly smallMedium: {
237
+ readonly fontSize: "14px";
238
+ readonly fontWeight: "Medium";
239
+ readonly lineHeight: "20px";
240
+ readonly letterSpacing: "0px";
241
+ };
242
+ };
243
+ readonly body: {
244
+ readonly large: {
245
+ readonly fontSize: "16px";
246
+ readonly fontWeight: "Regular";
247
+ readonly lineHeight: "24px";
248
+ readonly letterSpacing: "0px";
249
+ };
250
+ readonly largeMedium: {
251
+ readonly fontSize: "16px";
252
+ readonly fontWeight: "Medium";
253
+ readonly lineHeight: "24px";
254
+ readonly letterSpacing: "0px";
255
+ };
256
+ readonly medium: {
257
+ readonly fontSize: "15px";
258
+ readonly fontWeight: "Regular";
259
+ readonly lineHeight: "22.5px";
260
+ readonly letterSpacing: "0px";
261
+ };
262
+ readonly mediumMedium: {
263
+ readonly fontSize: "15px";
264
+ readonly fontWeight: "Medium";
265
+ readonly lineHeight: "22.5px";
266
+ readonly letterSpacing: "0px";
267
+ };
268
+ readonly small: {
269
+ readonly fontSize: "14px";
270
+ readonly fontWeight: "Regular";
271
+ readonly lineHeight: "20px";
272
+ readonly letterSpacing: "0px";
273
+ };
274
+ readonly smallMedium: {
275
+ readonly fontSize: "14px";
276
+ readonly fontWeight: "Medium";
277
+ readonly lineHeight: "20px";
278
+ readonly letterSpacing: "0px";
279
+ };
280
+ };
281
+ readonly label: {
282
+ readonly large: {
283
+ readonly fontSize: "14px";
284
+ readonly fontWeight: "Regular";
285
+ readonly lineHeight: "20px";
286
+ readonly letterSpacing: "0px";
287
+ };
288
+ readonly largeMedium: {
289
+ readonly fontSize: "14px";
290
+ readonly fontWeight: "Medium";
291
+ readonly lineHeight: "20px";
292
+ readonly letterSpacing: "0px";
293
+ };
294
+ readonly medium: {
295
+ readonly fontSize: "13px";
296
+ readonly fontWeight: "Regular";
297
+ readonly lineHeight: "18px";
298
+ readonly letterSpacing: "0px";
299
+ };
300
+ readonly mediumMedium: {
301
+ readonly fontSize: "13px";
302
+ readonly fontWeight: "Medium";
303
+ readonly lineHeight: "18px";
304
+ readonly letterSpacing: "0px";
305
+ };
306
+ readonly small: {
307
+ readonly fontSize: "12px";
308
+ readonly fontWeight: "Regular";
309
+ readonly lineHeight: "16px";
310
+ readonly letterSpacing: "0px";
311
+ };
312
+ readonly smallMedium: {
313
+ readonly fontSize: "12px";
314
+ readonly fontWeight: "Medium";
315
+ readonly lineHeight: "16px";
316
+ readonly letterSpacing: "0px";
317
+ };
78
318
  };
79
319
  };
80
320
 
81
321
  declare const radius: {
322
+ readonly none: "0px";
323
+ readonly xs: "4px";
82
324
  readonly sm: "6px";
83
325
  readonly md: "8px";
84
326
  readonly lg: "12px";
@@ -87,10 +329,35 @@ declare const radius: {
87
329
  };
88
330
 
89
331
  declare const shadows: {
90
- readonly sm: "0 2px 4px rgba(0, 0, 0, 0.04)";
91
- readonly md: "0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04)";
92
- readonly lg: "0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06)";
93
- readonly xl: "0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04)";
332
+ readonly level1: "0 1px 1px -1px rgba(0, 0, 0, 0.20), 0 3px 3px 0px rgba(0, 0, 0, 0.12)";
333
+ readonly level2: "0 2px 2px -2px rgba(0, 0, 0, 0.20), 0 6px 6px 0px rgba(0, 0, 0, 0.12)";
334
+ readonly level3: "0 3px 3px -3px rgba(0, 0, 0, 0.20), 0 9px 9px 0px rgba(0, 0, 0, 0.12)";
335
+ readonly level4: "0 5px 5px -5px rgba(0, 0, 0, 0.20), 0 15px 15px 0px rgba(0, 0, 0, 0.12)";
336
+ readonly level5: "0 8px 10px -5px rgba(0, 0, 0, 0.20), 0 20px 20px 0px rgba(0, 0, 0, 0.12)";
337
+ };
338
+
339
+ declare const baseBorderWidth: {
340
+ readonly "0": "0px";
341
+ readonly "1": "1px";
342
+ readonly "2": "2px";
343
+ };
344
+ declare const borderWidth: {
345
+ readonly none: "0px";
346
+ readonly standard: "1px";
347
+ readonly indicator: "2px";
348
+ };
349
+
350
+ declare const opacity: {
351
+ readonly "0": 0;
352
+ readonly "5": 0.05;
353
+ readonly "8": 0.08;
354
+ readonly "12": 0.12;
355
+ readonly "16": 0.16;
356
+ readonly "38": 0.38;
357
+ readonly "50": 0.5;
358
+ readonly "80": 0.8;
359
+ readonly "90": 0.9;
360
+ readonly "100": 1;
94
361
  };
95
362
 
96
363
  declare const motion: {
@@ -109,22 +376,22 @@ declare const motion: {
109
376
 
110
377
  declare const skeleton: {
111
378
  readonly color: {
112
- readonly base: "#f3f3f3";
113
- readonly wave: "#f0f0f0";
114
- readonly highlight: "#fafafa";
379
+ readonly base: "#F4F4F4";
380
+ readonly wave: "#E5E5E5";
381
+ readonly highlight: "#FFFFFF";
115
382
  };
116
- readonly gradient: "linear-gradient(90deg, #f3f3f3 25%, #fafafa 37%, #f0f0f0 63%)";
383
+ readonly gradient: "linear-gradient(90deg, #F4F4F4 25%, #FFFFFF 37%, #E5E5E5 63%)";
117
384
  readonly radius: {
118
385
  readonly sm: "6px";
119
386
  readonly md: "8px";
120
387
  readonly lg: "12px";
121
388
  };
122
389
  readonly height: {
123
- readonly xs: "0.25rem";
124
- readonly sm: "0.5rem";
125
- readonly md: "0.75rem";
126
- readonly lg: "1rem";
127
- readonly xl: "1.25rem";
390
+ readonly xs: "4px";
391
+ readonly sm: "8px";
392
+ readonly md: "12px";
393
+ readonly lg: "16px";
394
+ readonly xl: "20px";
128
395
  };
129
396
  readonly animation: {
130
397
  readonly duration: "1.4s";
@@ -133,16 +400,19 @@ declare const skeleton: {
133
400
  };
134
401
 
135
402
  declare const breakpoints: {
136
- readonly mobile: 0;
137
- readonly tablet: 768;
138
- readonly laptop: 1024;
139
- readonly desktop: 1440;
403
+ readonly compact: 0;
404
+ readonly medium: 600;
405
+ readonly expanded: 840;
406
+ readonly large: 1200;
140
407
  };
141
408
 
142
409
  declare const zIndex: {
143
- readonly loading: 9999;
144
- readonly modal: 10000;
145
- readonly toast: 10001;
410
+ readonly level0: 0;
411
+ readonly level1: 10;
412
+ readonly level2: 100;
413
+ readonly level3: 200;
414
+ readonly level4: 500;
415
+ readonly level5: 1000;
146
416
  };
147
417
 
148
418
  declare const a11y: {
@@ -309,15 +579,19 @@ interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>
309
579
  size?: "sm" | "md" | "lg";
310
580
  /** 중간 선택(indeterminate) 상태 여부 */
311
581
  indeterminate?: boolean;
582
+ /** 입력 요소 참조 */
583
+ ref?: React.Ref<HTMLInputElement>;
312
584
  }
313
585
  /**
314
586
  * 체크박스를 렌더링한다.
315
587
  * indeterminate 상태를 반영하고 라벨을 포함한 UI를 구성한다.
316
588
  * @param props 체크박스 속성
317
- * @param ref 입력 요소 참조
318
589
  * @returns 렌더링된 체크박스 UI
319
590
  */
320
- declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
591
+ declare const Checkbox: {
592
+ ({ label, size, indeterminate, className, ref, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
593
+ displayName: string;
594
+ };
321
595
 
322
596
  interface FileInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
323
597
  /** 파일 선택 버튼 라벨 텍스트 (기본값: "Choose file") */
@@ -340,15 +614,19 @@ interface RadioProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "
340
614
  label?: React.ReactNode;
341
615
  /** 라디오 버튼 크기 (기본값: "md") */
342
616
  size?: "sm" | "md" | "lg";
617
+ /** 입력 요소 참조 */
618
+ ref?: React.Ref<HTMLInputElement>;
343
619
  }
344
620
  /**
345
621
  * 라디오 버튼을 렌더링한다.
346
622
  * 크기별 클래스와 라벨을 조합해 UI를 구성한다.
347
623
  * @param props 라디오 속성
348
- * @param ref 입력 요소 참조
349
624
  * @returns 렌더링된 라디오 UI
350
625
  */
351
- declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;
626
+ declare const Radio: {
627
+ ({ label, size, className, ref, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
628
+ displayName: string;
629
+ };
352
630
 
353
631
  type SelectSize = "sm" | "md" | "lg";
354
632
  type SelectVariant = "outline" | "filled" | "ghost";
@@ -406,15 +684,19 @@ interface SwitchProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>
406
684
  disabled?: boolean;
407
685
  /** 스위치 접근성 레이블(스크린 리더용) */
408
686
  ariaLabel: string;
687
+ /** 버튼 요소 참조 */
688
+ ref?: React.Ref<HTMLButtonElement>;
409
689
  }
410
690
  /**
411
691
  * 스위치를 렌더링한다.
412
692
  * 제어형/비제어형 상태를 판별해 토글 로직을 수행하고 버튼 형태의 스위치 UI를 반환한다.
413
693
  * @param props 스위치 속성
414
- * @param ref 버튼 참조
415
694
  * @returns 렌더링된 스위치 요소
416
695
  */
417
- declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
696
+ declare const Switch: {
697
+ ({ checked, defaultChecked, onChange, size, disabled, className, ariaLabel, ref, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
698
+ displayName: string;
699
+ };
418
700
 
419
701
  type TextFieldVariant = "outline" | "filled" | "ghost";
420
702
  type TextFieldSize = "sm" | "md" | "lg";
@@ -445,15 +727,19 @@ interface TextFieldProps extends Omit<React.InputHTMLAttributes<HTMLInputElement
445
727
  defaultValue?: string;
446
728
  /** 입력값 변환 함수 (예: 숫자만 허용, 대문자 변환) */
447
729
  transformValue?: (value: string) => string;
730
+ /** 입력 요소 참조 */
731
+ ref?: React.Ref<HTMLInputElement>;
448
732
  }
449
733
  /**
450
734
  * 텍스트 필드를 렌더링한다.
451
735
  * 제어형/비제어형 값을 동기화하고, 조합 입력(IME)을 고려해 변경 이벤트를 전달한다.
452
736
  * @param props 텍스트 필드 속성
453
- * @param ref 입력 요소 참조
454
737
  * @returns 렌더링된 텍스트 필드 UI
455
738
  */
456
- declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
739
+ declare const TextField: {
740
+ ({ id, label, helperText, error, success, variant, size, leftIcon, rightIcon, fullWidth, className, onChangeAction, value, defaultValue, transformValue, ref, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
741
+ displayName: string;
742
+ };
457
743
 
458
744
  type DatePickerMode = "year-month" | "year-month-day";
459
745
  type SelectableRange = "all" | "until-today";
@@ -550,4 +836,4 @@ interface ModalProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">
550
836
  */
551
837
  declare const Modal: ({ open, onClose, closeOnOverlay, width, title, children, className, ariaLabel, ...props }: ModalProps) => react_jsx_runtime.JSX.Element | null;
552
838
 
553
- export { AlertProvider, Button, Card, Checkbox, DatePicker, FileInput, Modal, Pagination, Radio, Select, type SelectOption, Spinner, Switch, TextField, ToastProvider, TopLoading, a11y, breakpoints, colors, motion, radius, shadows, skeleton, spacing, typography, useAlert, useToast, zIndex };
839
+ export { AlertProvider, Button, Card, Checkbox, DatePicker, FileInput, Modal, Pagination, Radio, Select, type SelectOption, Spinner, Switch, TextField, ToastProvider, TopLoading, a11y, baseBorderWidth, baseColors, baseTypography, borderWidth, breakpoints, colors, motion, opacity, radius, shadows, skeleton, spacing, typography, useAlert, useToast, zIndex };