spotlibs-components 0.1.7 → 0.1.9
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/atoms/icons/index.d.mts +105 -0
- package/dist/atoms/icons/index.mjs +5 -0
- package/dist/{legacy/atoms → atoms}/icons/index.mjs.map +1 -1
- package/dist/{chunk-Z22JGYYJ.mjs → chunk-J3F77MZN.mjs} +256 -2252
- package/dist/chunk-J3F77MZN.mjs.map +1 -0
- package/dist/index.d.mts +1687 -786
- package/dist/index.mjs +6074 -3619
- package/dist/index.mjs.map +1 -1
- package/dist/types-qsnVqq6_.d.mts +995 -0
- package/dist/types.d.mts +4 -0
- package/dist/types.mjs +4 -0
- package/dist/types.mjs.map +1 -0
- package/package.json +48 -50
- package/dist/chunk-3GDQP6AS.mjs +0 -14
- package/dist/chunk-3GDQP6AS.mjs.map +0 -1
- package/dist/chunk-Z22JGYYJ.mjs.map +0 -1
- package/dist/index.es-TOWUPCBA.mjs +0 -481
- package/dist/index.es-TOWUPCBA.mjs.map +0 -1
- package/dist/legacy/atoms/icons/index.d.mts +0 -540
- package/dist/legacy/atoms/icons/index.mjs +0 -4
- package/dist/lib-EPS6AQZX.mjs +0 -391
- package/dist/lib-EPS6AQZX.mjs.map +0 -1
|
@@ -0,0 +1,995 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
import { SxProps } from '@mui/material/styles';
|
|
4
|
+
import { Control, RegisterOptions } from 'react-hook-form';
|
|
5
|
+
|
|
6
|
+
interface BaseAlertProps {
|
|
7
|
+
variant?: string;
|
|
8
|
+
type?: string;
|
|
9
|
+
title?: React.ReactNode;
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
icon?: React.ReactNode;
|
|
12
|
+
color?: string;
|
|
13
|
+
sx?: any;
|
|
14
|
+
onClose?: () => void;
|
|
15
|
+
childrenStyle?: React.CSSProperties;
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
declare function BaseAlert(
|
|
20
|
+
props: BaseAlertProps,
|
|
21
|
+
): React.ReactElement | null;
|
|
22
|
+
|
|
23
|
+
interface PrimitiveColorType {
|
|
24
|
+
color_overlay: string;
|
|
25
|
+
|
|
26
|
+
color_neutral_900: string;
|
|
27
|
+
color_neutral_700: string;
|
|
28
|
+
color_neutral_600: string;
|
|
29
|
+
color_neutral_500: string;
|
|
30
|
+
color_neutral_400: string;
|
|
31
|
+
color_neutral_300: string;
|
|
32
|
+
color_neutral_200: string;
|
|
33
|
+
color_neutral_100: string;
|
|
34
|
+
color_neutral_50: string;
|
|
35
|
+
|
|
36
|
+
color_blue_cakrawala_900: string;
|
|
37
|
+
color_blue_cakrawala_800: string;
|
|
38
|
+
color_blue_cakrawala_700: string;
|
|
39
|
+
color_blue_cakrawala_600: string;
|
|
40
|
+
color_blue_cakrawala_500: string;
|
|
41
|
+
color_blue_cakrawala_400: string;
|
|
42
|
+
color_blue_cakrawala_300: string;
|
|
43
|
+
color_blue_cakrawala_200: string;
|
|
44
|
+
color_blue_cakrawala_100: string;
|
|
45
|
+
|
|
46
|
+
color_blue_mentari_900: string;
|
|
47
|
+
color_blue_mentari_700: string;
|
|
48
|
+
color_blue_mentari_600: string;
|
|
49
|
+
color_blue_mentari_500: string;
|
|
50
|
+
color_blue_mentari_400: string;
|
|
51
|
+
color_blue_mentari_300: string;
|
|
52
|
+
color_blue_mentari_100: string;
|
|
53
|
+
|
|
54
|
+
color_blue_neon_900: string;
|
|
55
|
+
color_blue_neon_700: string;
|
|
56
|
+
color_blue_neon_600: string;
|
|
57
|
+
color_blue_neon_500: string;
|
|
58
|
+
color_blue_neon_400: string;
|
|
59
|
+
color_blue_neon_300: string;
|
|
60
|
+
color_blue_neon_100: string;
|
|
61
|
+
|
|
62
|
+
color_blue_sky_900: string;
|
|
63
|
+
color_blue_sky_700: string;
|
|
64
|
+
color_blue_sky_600: string;
|
|
65
|
+
color_blue_sky_500: string;
|
|
66
|
+
color_blue_sky_400: string;
|
|
67
|
+
color_blue_sky_300: string;
|
|
68
|
+
color_blue_sky_100: string;
|
|
69
|
+
|
|
70
|
+
color_green_900: string;
|
|
71
|
+
color_green_700: string;
|
|
72
|
+
color_green_600: string;
|
|
73
|
+
color_green_500: string;
|
|
74
|
+
color_green_400: string;
|
|
75
|
+
color_green_300: string;
|
|
76
|
+
color_green_100: string;
|
|
77
|
+
|
|
78
|
+
color_red_900: string;
|
|
79
|
+
color_red_700: string;
|
|
80
|
+
color_red_600: string;
|
|
81
|
+
color_red_500: string;
|
|
82
|
+
color_red_400: string;
|
|
83
|
+
color_red_300: string;
|
|
84
|
+
color_red_100: string;
|
|
85
|
+
|
|
86
|
+
color_yellow_900: string;
|
|
87
|
+
color_yellow_700: string;
|
|
88
|
+
color_yellow_600: string;
|
|
89
|
+
color_yellow_500: string;
|
|
90
|
+
color_yellow_400: string;
|
|
91
|
+
color_yellow_300: string;
|
|
92
|
+
color_yellow_100: string;
|
|
93
|
+
|
|
94
|
+
color_briva_900: string;
|
|
95
|
+
color_briva_700: string;
|
|
96
|
+
color_briva_600: string;
|
|
97
|
+
color_briva_500: string;
|
|
98
|
+
color_briva_400: string;
|
|
99
|
+
color_briva_300: string;
|
|
100
|
+
color_briva_100: string;
|
|
101
|
+
|
|
102
|
+
color_brizzi_900: string;
|
|
103
|
+
color_brizzi_700: string;
|
|
104
|
+
color_brizzi_600: string;
|
|
105
|
+
color_brizzi_500: string;
|
|
106
|
+
color_brizzi_400: string;
|
|
107
|
+
color_brizzi_300: string;
|
|
108
|
+
color_brizzi_100: string;
|
|
109
|
+
|
|
110
|
+
[key: string]: string;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
declare const PrimitiveColor: PrimitiveColorType;
|
|
114
|
+
|
|
115
|
+
interface DerivedColorType {
|
|
116
|
+
/* Background */
|
|
117
|
+
color_bg_page: string;
|
|
118
|
+
color_bg_surface: string;
|
|
119
|
+
color_bg_inverse: string;
|
|
120
|
+
color_bg_disabled: string;
|
|
121
|
+
color_bg_brand_primary: string;
|
|
122
|
+
color_bg_brand_primary_subtle: string;
|
|
123
|
+
color_bg_brand_secondary: string;
|
|
124
|
+
color_bg_brand_secondary_subtle: string;
|
|
125
|
+
color_bg_success: string;
|
|
126
|
+
color_bg_success_subtle: string;
|
|
127
|
+
color_bg_danger: string;
|
|
128
|
+
color_bg_danger_subtle: string;
|
|
129
|
+
color_bg_warning: string;
|
|
130
|
+
color_bg_warning_subtle: string;
|
|
131
|
+
|
|
132
|
+
/* Border */
|
|
133
|
+
color_border_default: string;
|
|
134
|
+
color_border_strong: string;
|
|
135
|
+
color_border_inverse: string;
|
|
136
|
+
color_border_brand_primary: string;
|
|
137
|
+
color_border_brand_secondary: string;
|
|
138
|
+
color_border_success: string;
|
|
139
|
+
color_border_danger: string;
|
|
140
|
+
color_border_warning: string;
|
|
141
|
+
|
|
142
|
+
/* Text */
|
|
143
|
+
color_text_default: string;
|
|
144
|
+
color_text_subtle: string;
|
|
145
|
+
color_text_disabled: string;
|
|
146
|
+
color_text_placeholder: string;
|
|
147
|
+
color_text_inverse: string;
|
|
148
|
+
color_text_brand_primary: string;
|
|
149
|
+
color_text_brand_secondary: string;
|
|
150
|
+
color_text_success: string;
|
|
151
|
+
color_text_danger: string;
|
|
152
|
+
color_text_warning: string;
|
|
153
|
+
|
|
154
|
+
/* Icon */
|
|
155
|
+
color_icon_subtle: string;
|
|
156
|
+
color_icon_strong: string;
|
|
157
|
+
color_icon_disabled: string;
|
|
158
|
+
color_icon_inverse: string;
|
|
159
|
+
color_icon_brand_primary: string;
|
|
160
|
+
color_icon_brand_secondary: string;
|
|
161
|
+
color_icon_success: string;
|
|
162
|
+
color_icon_danger: string;
|
|
163
|
+
color_icon_warning: string;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
declare const DerivedColor: DerivedColorType;
|
|
167
|
+
|
|
168
|
+
interface TypographyColorToken {
|
|
169
|
+
value: string;
|
|
170
|
+
token: string;
|
|
171
|
+
alias: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
declare const VariantStyles: Record<
|
|
175
|
+
string,
|
|
176
|
+
{
|
|
177
|
+
fontSize: string;
|
|
178
|
+
fontWeight: number;
|
|
179
|
+
}
|
|
180
|
+
>;
|
|
181
|
+
|
|
182
|
+
interface TypographyProps {
|
|
183
|
+
variant?: string;
|
|
184
|
+
children?: React.ReactNode;
|
|
185
|
+
sx?: React.CSSProperties & Record<string, unknown>;
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare function Typography(
|
|
190
|
+
props: TypographyProps,
|
|
191
|
+
): React.ReactElement | null;
|
|
192
|
+
|
|
193
|
+
declare const SpacingToken: {
|
|
194
|
+
spacing0: string;
|
|
195
|
+
spacing1: string;
|
|
196
|
+
spacing2: string;
|
|
197
|
+
spacing3: string;
|
|
198
|
+
spacing4: string;
|
|
199
|
+
spacing5: string;
|
|
200
|
+
spacing6: string;
|
|
201
|
+
spacing7: string;
|
|
202
|
+
spacing8: string;
|
|
203
|
+
spacing9: string;
|
|
204
|
+
spacing10: string;
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
declare const CONTENT_SPACING_TOKENS: {
|
|
208
|
+
spacing_1: {
|
|
209
|
+
mobile: string;
|
|
210
|
+
tablet: string;
|
|
211
|
+
web: string;
|
|
212
|
+
};
|
|
213
|
+
spacing_2: {
|
|
214
|
+
mobile: string;
|
|
215
|
+
tablet: string;
|
|
216
|
+
web: string;
|
|
217
|
+
};
|
|
218
|
+
spacing_3: {
|
|
219
|
+
mobile: string;
|
|
220
|
+
tablet: string;
|
|
221
|
+
web: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
interface ResponsiveSpacingValue {
|
|
226
|
+
mobile?: string;
|
|
227
|
+
tablet?: string;
|
|
228
|
+
web?: string;
|
|
229
|
+
[key: string]: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
type SpacingSizeValue = keyof typeof SpacingToken | string | number;
|
|
233
|
+
|
|
234
|
+
type ContentSpacingSizeValue =
|
|
235
|
+
| keyof typeof CONTENT_SPACING_TOKENS
|
|
236
|
+
| ResponsiveSpacingValue;
|
|
237
|
+
|
|
238
|
+
interface SpacingProps {
|
|
239
|
+
size?: SpacingSizeValue;
|
|
240
|
+
axis?: "vertical" | "horizontal";
|
|
241
|
+
as?: React.ElementType;
|
|
242
|
+
className?: string;
|
|
243
|
+
style?: React.CSSProperties;
|
|
244
|
+
children?: React.ReactNode;
|
|
245
|
+
[key: string]: unknown;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
interface ContentSpacingProps {
|
|
249
|
+
size?: ContentSpacingSizeValue;
|
|
250
|
+
breakpoint?: "mobile" | "tablet" | "web";
|
|
251
|
+
as?: React.ElementType;
|
|
252
|
+
className?: string;
|
|
253
|
+
style?: React.CSSProperties;
|
|
254
|
+
children?: React.ReactNode;
|
|
255
|
+
[key: string]: unknown;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
declare const Spacing: React.FC<SpacingProps>;
|
|
259
|
+
|
|
260
|
+
declare const ContentSpacing: React.FC<ContentSpacingProps>;
|
|
261
|
+
|
|
262
|
+
interface ShadowElevation {
|
|
263
|
+
shadow: string;
|
|
264
|
+
surface: string;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
interface ShadowMap {
|
|
268
|
+
elevation_0: ShadowElevation;
|
|
269
|
+
elevation_1: ShadowElevation;
|
|
270
|
+
elevation_2: ShadowElevation;
|
|
271
|
+
elevation_3: ShadowElevation;
|
|
272
|
+
elevation_4: ShadowElevation;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
declare const Shadow: ShadowMap;
|
|
276
|
+
|
|
277
|
+
type ShadowLevel = keyof ShadowMap;
|
|
278
|
+
|
|
279
|
+
interface ShadowTokenProps {
|
|
280
|
+
/** Elevation level */
|
|
281
|
+
level?: ShadowLevel;
|
|
282
|
+
/** HTML element or component to render */
|
|
283
|
+
as?: React.ElementType;
|
|
284
|
+
/** Inline style overrides */
|
|
285
|
+
style?: React.CSSProperties;
|
|
286
|
+
/** Content */
|
|
287
|
+
children?: React.ReactNode;
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
declare function ShadowToken(props: ShadowTokenProps): React.ReactElement;
|
|
292
|
+
|
|
293
|
+
interface RadiusMap {
|
|
294
|
+
radius_0: string;
|
|
295
|
+
radius_1: string;
|
|
296
|
+
radius_2: string;
|
|
297
|
+
radius_3: string;
|
|
298
|
+
radius_4: string;
|
|
299
|
+
radius_x: string;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
declare const Radius: RadiusMap;
|
|
303
|
+
|
|
304
|
+
type RadiusKey = keyof RadiusMap;
|
|
305
|
+
|
|
306
|
+
interface RadiusTokenProps {
|
|
307
|
+
/** Radius token key */
|
|
308
|
+
radius?: RadiusKey;
|
|
309
|
+
/** HTML element or component to render */
|
|
310
|
+
as?: React.ElementType;
|
|
311
|
+
/** Inline style overrides */
|
|
312
|
+
style?: React.CSSProperties;
|
|
313
|
+
/** Content */
|
|
314
|
+
children?: React.ReactNode;
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
declare function RadiusToken(props: RadiusTokenProps): React.ReactElement;
|
|
319
|
+
|
|
320
|
+
interface BaseButtonProps {
|
|
321
|
+
/** Click handler */
|
|
322
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
323
|
+
/** Button content */
|
|
324
|
+
children?: React.ReactNode;
|
|
325
|
+
/** Visual style variant */
|
|
326
|
+
variant?: "fill" | "outline" | "text" | "fab" | "ellipse-fill" | "ellipse-outline";
|
|
327
|
+
/** Color key from PrimitiveColor or a raw CSS color string */
|
|
328
|
+
color?: string;
|
|
329
|
+
/** Button size */
|
|
330
|
+
size?: "large" | "small";
|
|
331
|
+
/** Disabled state */
|
|
332
|
+
disabled?: boolean;
|
|
333
|
+
/** Icon element rendered before children */
|
|
334
|
+
icon?: React.ReactNode;
|
|
335
|
+
/** MUI sx overrides */
|
|
336
|
+
sx?: SxProps;
|
|
337
|
+
[key: string]: any;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
declare function BaseButton(props: BaseButtonProps): React.ReactElement;
|
|
341
|
+
|
|
342
|
+
interface BaseCardDataItem {
|
|
343
|
+
icon?: React.ReactNode;
|
|
344
|
+
count?: number | string;
|
|
345
|
+
title?: string;
|
|
346
|
+
update?: string;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
interface BaseCardProps {
|
|
350
|
+
/** Card layout type */
|
|
351
|
+
type?: "default" | "notification" | "with-header" | "summary";
|
|
352
|
+
/** Card body content */
|
|
353
|
+
children?: React.ReactNode;
|
|
354
|
+
/** MUI sx overrides */
|
|
355
|
+
sx?: SxProps;
|
|
356
|
+
/** Icon displayed in the card */
|
|
357
|
+
icon?: React.ReactNode;
|
|
358
|
+
/** Label text */
|
|
359
|
+
label?: string;
|
|
360
|
+
/** Title text */
|
|
361
|
+
title?: string;
|
|
362
|
+
/** Subtitle text */
|
|
363
|
+
subtitle?: string;
|
|
364
|
+
/** Data items for summary card type */
|
|
365
|
+
dataList?: BaseCardDataItem[];
|
|
366
|
+
/** Last update date string */
|
|
367
|
+
updateDate?: string;
|
|
368
|
+
/** Bold the count icon */
|
|
369
|
+
boldCountIcon?: boolean;
|
|
370
|
+
/** Bold the count value */
|
|
371
|
+
boldCount?: boolean;
|
|
372
|
+
/** Bold the title */
|
|
373
|
+
boldTitle?: boolean;
|
|
374
|
+
/** Bold the update text */
|
|
375
|
+
boldUpdate?: boolean;
|
|
376
|
+
/** Custom icon element for the header */
|
|
377
|
+
iconHeader?: React.ReactElement;
|
|
378
|
+
/** Card background color */
|
|
379
|
+
backgroundColor?: string;
|
|
380
|
+
/** Title color */
|
|
381
|
+
colorTitlte?: string;
|
|
382
|
+
/** Nominal/count color */
|
|
383
|
+
colorNominal?: string;
|
|
384
|
+
/** Show/hide icon */
|
|
385
|
+
displayIcon?: boolean;
|
|
386
|
+
/** Number format type */
|
|
387
|
+
formatNumber?: "currency" | "nominal" | string;
|
|
388
|
+
/** Count text color */
|
|
389
|
+
colorCount?: string;
|
|
390
|
+
/** Header background color */
|
|
391
|
+
headerBackgroundColor?: string;
|
|
392
|
+
/** Enable collapse toggle */
|
|
393
|
+
isCollapsible?: boolean;
|
|
394
|
+
[key: string]: any;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
declare function BaseCard(props: BaseCardProps): React.ReactElement;
|
|
398
|
+
|
|
399
|
+
interface BaseSwitchProps {
|
|
400
|
+
/** Current switch state */
|
|
401
|
+
status?: boolean;
|
|
402
|
+
/** Label text or element */
|
|
403
|
+
label?: React.ReactNode;
|
|
404
|
+
/** Label position relative to the switch */
|
|
405
|
+
labelPlacement?: "start" | "end" | "top" | "bottom";
|
|
406
|
+
/** Disabled state */
|
|
407
|
+
isDisabled?: boolean;
|
|
408
|
+
/** Change handler */
|
|
409
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
declare function BaseSwitch(props: BaseSwitchProps): React.ReactElement;
|
|
413
|
+
|
|
414
|
+
interface BaseCheckboxOption {
|
|
415
|
+
label: React.ReactNode;
|
|
416
|
+
value: string;
|
|
417
|
+
disabled?: boolean;
|
|
418
|
+
[key: string]: any;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
interface BaseCheckboxSharedProps {
|
|
422
|
+
options: BaseCheckboxOption[];
|
|
423
|
+
label?: React.ReactNode;
|
|
424
|
+
disabled?: boolean;
|
|
425
|
+
labelPlacement?: "top" | "bottom" | "start" | "end";
|
|
426
|
+
isHorizontal?: boolean;
|
|
427
|
+
sx?: any;
|
|
428
|
+
[key: string]: any;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
interface BaseCheckboxSingleProps extends Omit<BaseCheckboxSharedProps, "options"> {
|
|
432
|
+
options?: undefined;
|
|
433
|
+
checked?: boolean;
|
|
434
|
+
onChange?: (checked: boolean, event?: React.ChangeEvent<HTMLInputElement>) => void;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
interface BaseCheckboxGroupProps extends BaseCheckboxSharedProps {
|
|
438
|
+
options: BaseCheckboxOption[];
|
|
439
|
+
checked?: string[];
|
|
440
|
+
onChange?: (newValue: string[]) => void;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
type BaseCheckboxProps =
|
|
444
|
+
| BaseCheckboxSingleProps
|
|
445
|
+
| BaseCheckboxGroupProps;
|
|
446
|
+
|
|
447
|
+
declare function BaseCheckbox(
|
|
448
|
+
props: BaseCheckboxProps,
|
|
449
|
+
): React.ReactElement | null;
|
|
450
|
+
|
|
451
|
+
type BaseDatatableAlign =
|
|
452
|
+
| "left"
|
|
453
|
+
| "center"
|
|
454
|
+
| "right"
|
|
455
|
+
| "justify"
|
|
456
|
+
| "inherit"
|
|
457
|
+
| (string & {});
|
|
458
|
+
|
|
459
|
+
interface BaseDatatableColumn<T = Record<string, any>> {
|
|
460
|
+
id?: string;
|
|
461
|
+
key?: string;
|
|
462
|
+
field?: string;
|
|
463
|
+
sortField?: string;
|
|
464
|
+
label?: ReactNode;
|
|
465
|
+
header?: ReactNode;
|
|
466
|
+
accessorKey?: string;
|
|
467
|
+
accessorFn?: (row: T) => any;
|
|
468
|
+
align?: BaseDatatableAlign;
|
|
469
|
+
headerAlign?: BaseDatatableAlign;
|
|
470
|
+
width?: number;
|
|
471
|
+
minWidth?: number;
|
|
472
|
+
sticky?: "left" | "right";
|
|
473
|
+
sortable?: boolean;
|
|
474
|
+
noWrap?: boolean;
|
|
475
|
+
cellBg?: string;
|
|
476
|
+
cellText?: string;
|
|
477
|
+
cellSx?: SxProps;
|
|
478
|
+
renderCell?: (context: {
|
|
479
|
+
value: any;
|
|
480
|
+
row: T;
|
|
481
|
+
rowIndex: number;
|
|
482
|
+
column: BaseDatatableColumn<T>;
|
|
483
|
+
columnIndex: number;
|
|
484
|
+
checked?: boolean;
|
|
485
|
+
}) => ReactNode;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
interface BaseDatatableHeaderCell {
|
|
489
|
+
id?: string;
|
|
490
|
+
key?: string;
|
|
491
|
+
label: ReactNode;
|
|
492
|
+
align?: BaseDatatableAlign;
|
|
493
|
+
colSpan?: number;
|
|
494
|
+
rowSpan?: number;
|
|
495
|
+
colspan?: number;
|
|
496
|
+
rowspan?: number;
|
|
497
|
+
sortKey?: string;
|
|
498
|
+
width?: number;
|
|
499
|
+
minWidth?: number;
|
|
500
|
+
sticky?: "left" | "right";
|
|
501
|
+
sx?: SxProps;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
interface BaseDatatableFeatures {
|
|
505
|
+
sorting?: boolean;
|
|
506
|
+
sortingMode?: "client" | "server";
|
|
507
|
+
defaultSort?: BaseDatatableSortState | null;
|
|
508
|
+
sortState?: BaseDatatableSortState | null;
|
|
509
|
+
resetPageOnSort?: boolean;
|
|
510
|
+
onSortChange?: (
|
|
511
|
+
payload: BaseDatatableSortPayload,
|
|
512
|
+
column: BaseDatatableColumn,
|
|
513
|
+
cell: BaseDatatableHeaderCell,
|
|
514
|
+
) => void;
|
|
515
|
+
headerInteractive?: boolean;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
interface BaseDatatableSortState {
|
|
519
|
+
key: string;
|
|
520
|
+
direction: "asc" | "desc";
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
interface BaseDatatableSortPayload {
|
|
524
|
+
orderBy: string;
|
|
525
|
+
order: "asc" | "desc";
|
|
526
|
+
page: number;
|
|
527
|
+
rowsPerPage: number;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
interface BaseDatatableLayout {
|
|
531
|
+
stickyHeader?: boolean;
|
|
532
|
+
stickyOffset?: number;
|
|
533
|
+
freezeLeft?: number;
|
|
534
|
+
freezeRight?: number;
|
|
535
|
+
maxHeight?: number;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
interface BaseDatatableSelection<T = Record<string, any>> {
|
|
539
|
+
enabled?: boolean;
|
|
540
|
+
position?: "left" | "right";
|
|
541
|
+
selectRowOnClick?: boolean;
|
|
542
|
+
selectedRowIds?: Array<string | number>;
|
|
543
|
+
defaultSelectedRowIds?: Array<string | number>;
|
|
544
|
+
onChange?: (selectedRowIds: Array<string | number>) => void;
|
|
545
|
+
isRowSelectable?: (row: T, rowIndex: number) => boolean;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
interface BaseDatatablePagination {
|
|
549
|
+
enabled?: boolean;
|
|
550
|
+
serverSide?: boolean;
|
|
551
|
+
count?: number;
|
|
552
|
+
page?: number;
|
|
553
|
+
rowsPerPage?: number;
|
|
554
|
+
rowsPerPageOptions?: number[];
|
|
555
|
+
labelRowsPerPage?: ReactNode;
|
|
556
|
+
onPageChange?: (event: unknown, nextPage: number) => void;
|
|
557
|
+
onRowsPerPageChange?: (event: unknown, nextRowsPerPage: number) => void;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
interface BaseDatatableCellOverrides {
|
|
561
|
+
rowSpan?: number;
|
|
562
|
+
colSpan?: number;
|
|
563
|
+
content?: ReactNode;
|
|
564
|
+
sx?: SxProps;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
interface BaseDatatableRenderRowContext<T = Record<string, any>> {
|
|
568
|
+
row: T;
|
|
569
|
+
rowIndex: number;
|
|
570
|
+
rowId: string | number;
|
|
571
|
+
rowActive: boolean;
|
|
572
|
+
columns: BaseDatatableColumn<T>[];
|
|
573
|
+
dataColumns: BaseDatatableColumn<T>[];
|
|
574
|
+
selectedRowIds: Array<string | number>;
|
|
575
|
+
renderCell: (
|
|
576
|
+
column: BaseDatatableColumn<T>,
|
|
577
|
+
row: T,
|
|
578
|
+
rowIndex: number,
|
|
579
|
+
columnIndex: number,
|
|
580
|
+
rowId: string | number,
|
|
581
|
+
rowActive: boolean,
|
|
582
|
+
cellOverrides?: BaseDatatableCellOverrides,
|
|
583
|
+
) => ReactNode;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
interface BaseDatatableProps<T = Record<string, any>> {
|
|
587
|
+
columns?: Array<BaseDatatableColumn<T> | string>;
|
|
588
|
+
data?: T[];
|
|
589
|
+
header?: BaseDatatableHeaderCell[][];
|
|
590
|
+
features?: BaseDatatableFeatures;
|
|
591
|
+
layout?: BaseDatatableLayout;
|
|
592
|
+
selection?: BaseDatatableSelection<T>;
|
|
593
|
+
pagination?: BaseDatatablePagination;
|
|
594
|
+
renderRow?: (context: BaseDatatableRenderRowContext<T>) => ReactNode;
|
|
595
|
+
onRowClick?: (row: T, rowIndex: number) => void;
|
|
596
|
+
getRowId?: (row: T, rowIndex: number) => string | number;
|
|
597
|
+
emptyState?: ReactNode;
|
|
598
|
+
loading?: boolean;
|
|
599
|
+
loadingText?: ReactNode;
|
|
600
|
+
rowHover?: boolean;
|
|
601
|
+
activeRowId?: string | number | null;
|
|
602
|
+
containerSx?: SxProps;
|
|
603
|
+
tableSx?: SxProps;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
declare function BaseDatatable<T = Record<string, any>>(
|
|
607
|
+
props: BaseDatatableProps<T>,
|
|
608
|
+
): ReactNode;
|
|
609
|
+
|
|
610
|
+
interface BaseDatePickerProps {
|
|
611
|
+
type?: string;
|
|
612
|
+
|
|
613
|
+
name?: string;
|
|
614
|
+
control?: any;
|
|
615
|
+
|
|
616
|
+
defaultValue?: any;
|
|
617
|
+
|
|
618
|
+
title?: React.ReactNode;
|
|
619
|
+
subtitle?: React.ReactNode;
|
|
620
|
+
|
|
621
|
+
className?: string;
|
|
622
|
+
titleClassName?: string;
|
|
623
|
+
subtitleClassName?: string;
|
|
624
|
+
|
|
625
|
+
placeholder?: string;
|
|
626
|
+
|
|
627
|
+
minDate?: any;
|
|
628
|
+
maxDate?: any;
|
|
629
|
+
|
|
630
|
+
isDisabled?: boolean;
|
|
631
|
+
clearable?: boolean;
|
|
632
|
+
editableDateInputs?: boolean;
|
|
633
|
+
|
|
634
|
+
format?: string;
|
|
635
|
+
|
|
636
|
+
onChange?: (date: any) => void;
|
|
637
|
+
|
|
638
|
+
[key: string]: any;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
declare function BaseDatePicker(
|
|
642
|
+
props: BaseDatePickerProps,
|
|
643
|
+
): React.ReactElement | null;
|
|
644
|
+
|
|
645
|
+
interface BaseDropdownProps {
|
|
646
|
+
name?: string;
|
|
647
|
+
control?: any;
|
|
648
|
+
options?: any[];
|
|
649
|
+
loadOptions?: any;
|
|
650
|
+
isMulti?: boolean;
|
|
651
|
+
isSearchable?: boolean;
|
|
652
|
+
showChip?: boolean;
|
|
653
|
+
showSelectAll?: boolean;
|
|
654
|
+
title?: React.ReactNode;
|
|
655
|
+
subtitle?: React.ReactNode;
|
|
656
|
+
className?: string;
|
|
657
|
+
titleClassName?: string;
|
|
658
|
+
subtitleClassName?: string;
|
|
659
|
+
defaultValue?: any;
|
|
660
|
+
isDisabled?: boolean;
|
|
661
|
+
isClearable?: boolean;
|
|
662
|
+
preventOverflow?: boolean;
|
|
663
|
+
optionColors?: string[];
|
|
664
|
+
variant?: "select" | "checkbox";
|
|
665
|
+
[key: string]: any;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
declare function BaseDropdown(
|
|
669
|
+
props: BaseDropdownProps,
|
|
670
|
+
): React.ReactElement;
|
|
671
|
+
|
|
672
|
+
interface BaseDropzoneSettings {
|
|
673
|
+
allowedExtensions?: Record<string, any>;
|
|
674
|
+
maxSize?: number;
|
|
675
|
+
maxFiles?: number;
|
|
676
|
+
isImagePreview?: boolean;
|
|
677
|
+
previewType?: "grid" | "list";
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
interface BaseDropzoneLabels {
|
|
681
|
+
title?: React.ReactNode;
|
|
682
|
+
dropzoneTitle?: string;
|
|
683
|
+
titleButton?: string;
|
|
684
|
+
allowedFileLabel?: string;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
interface BaseDropzoneCallbacks {
|
|
688
|
+
uploadFile?: (file: File) => void | Promise<any>;
|
|
689
|
+
removeFile?: (file: File) => void;
|
|
690
|
+
customError?: (error: unknown) => void;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
interface BaseDropzoneProps {
|
|
694
|
+
autoUpload?: boolean;
|
|
695
|
+
|
|
696
|
+
settings?: BaseDropzoneSettings;
|
|
697
|
+
|
|
698
|
+
labels?: BaseDropzoneLabels;
|
|
699
|
+
|
|
700
|
+
callbacks?: BaseDropzoneCallbacks;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
declare function BaseDropzone(
|
|
704
|
+
props: BaseDropzoneProps,
|
|
705
|
+
): React.ReactElement;
|
|
706
|
+
|
|
707
|
+
interface BaseRadioOption {
|
|
708
|
+
label: React.ReactNode;
|
|
709
|
+
value: any;
|
|
710
|
+
disabled?: boolean;
|
|
711
|
+
[key: string]: any;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
interface BaseRadioButtonProps {
|
|
715
|
+
name?: string;
|
|
716
|
+
control?: any;
|
|
717
|
+
defaultValue?: any;
|
|
718
|
+
|
|
719
|
+
label?: React.ReactNode;
|
|
720
|
+
options?: BaseRadioOption[];
|
|
721
|
+
|
|
722
|
+
/* ================= TYPOGRAPHY ================= */
|
|
723
|
+
labelVariant?: string;
|
|
724
|
+
errorVariant?: string;
|
|
725
|
+
|
|
726
|
+
/* ================= LAYOUT ================= */
|
|
727
|
+
orientation?: "vertical" | "horizontal";
|
|
728
|
+
|
|
729
|
+
/* ================= COLOR TOKEN ================= */
|
|
730
|
+
radioColorToken?: string;
|
|
731
|
+
|
|
732
|
+
/* ================= STATE ================= */
|
|
733
|
+
isDisabled?: boolean;
|
|
734
|
+
|
|
735
|
+
/* ================= CLASS ================= */
|
|
736
|
+
className?: string;
|
|
737
|
+
titleClassName?: string;
|
|
738
|
+
fieldClassName?: string;
|
|
739
|
+
|
|
740
|
+
/* ================= ERROR ================= */
|
|
741
|
+
useErrorStateHelper?: boolean;
|
|
742
|
+
|
|
743
|
+
[key: string]: any;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
declare function BaseRadioButton(
|
|
747
|
+
props: BaseRadioButtonProps,
|
|
748
|
+
): React.ReactElement | null;
|
|
749
|
+
|
|
750
|
+
interface BaseStepperSimpleStep {
|
|
751
|
+
/** Step status text (e.g. "Completed", "In Progress") */
|
|
752
|
+
status?: string;
|
|
753
|
+
/** Step label/description */
|
|
754
|
+
label?: string;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
interface BaseStepperDashboardSublist {
|
|
758
|
+
sublist_title?: string;
|
|
759
|
+
is_done?: 0 | 1;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
interface BaseStepperDashboardStep {
|
|
763
|
+
title?: string;
|
|
764
|
+
sublist?: BaseStepperDashboardSublist[];
|
|
765
|
+
is_done?: 0 | 1;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
interface BaseStepperProps {
|
|
769
|
+
/** Array of step objects */
|
|
770
|
+
steps?: BaseStepperSimpleStep[] | BaseStepperDashboardStep[];
|
|
771
|
+
/** Currently active step index (for simple variant) */
|
|
772
|
+
activeStep?: number;
|
|
773
|
+
/** Layout orientation */
|
|
774
|
+
orientation?: "horizontal" | "vertical";
|
|
775
|
+
/** Stepper visual variant */
|
|
776
|
+
variant?: "simple" | "dashboard";
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
declare function BaseStepper(props: BaseStepperProps): React.ReactElement;
|
|
780
|
+
|
|
781
|
+
interface BaseTextFieldProps {
|
|
782
|
+
name?: string;
|
|
783
|
+
control?: any;
|
|
784
|
+
|
|
785
|
+
defaultValue?: any;
|
|
786
|
+
className?: string;
|
|
787
|
+
titleClassName?: string;
|
|
788
|
+
|
|
789
|
+
maxLength?: number;
|
|
790
|
+
showLength?: boolean;
|
|
791
|
+
|
|
792
|
+
isNumericOnly?: boolean;
|
|
793
|
+
isAlphaNumericOnly?: boolean;
|
|
794
|
+
isAlphaOnly?: boolean;
|
|
795
|
+
|
|
796
|
+
allowedSpecialCharacters?: string;
|
|
797
|
+
dontAllowedSpecialCharacters?: string;
|
|
798
|
+
|
|
799
|
+
isAlphaNumericWithUnderscore?: boolean;
|
|
800
|
+
|
|
801
|
+
isDisabled?: boolean;
|
|
802
|
+
isCantPaste?: boolean;
|
|
803
|
+
|
|
804
|
+
result?: any;
|
|
805
|
+
resultColor?: string;
|
|
806
|
+
|
|
807
|
+
noSpaceAllowed?: boolean;
|
|
808
|
+
|
|
809
|
+
showCountHelper?: boolean;
|
|
810
|
+
|
|
811
|
+
textMask?: string;
|
|
812
|
+
|
|
813
|
+
[key: string]: any;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
declare function BaseTextField(
|
|
817
|
+
props: BaseTextFieldProps,
|
|
818
|
+
): React.ReactElement | null;
|
|
819
|
+
|
|
820
|
+
interface TextFieldUploadProps {
|
|
821
|
+
name?: string;
|
|
822
|
+
control?: any;
|
|
823
|
+
|
|
824
|
+
defaultValue?: string;
|
|
825
|
+
|
|
826
|
+
title?: React.ReactNode;
|
|
827
|
+
|
|
828
|
+
accept?: string;
|
|
829
|
+
maxSize?: number;
|
|
830
|
+
|
|
831
|
+
isDisabled?: boolean;
|
|
832
|
+
|
|
833
|
+
buttonLabel?: string;
|
|
834
|
+
buttonPosition?: "start" | "end";
|
|
835
|
+
|
|
836
|
+
iconPosition?: "start" | "end";
|
|
837
|
+
|
|
838
|
+
uploadFile?: (file: File) => void | Promise<any>;
|
|
839
|
+
|
|
840
|
+
[key: string]: any;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
declare function TextFieldUpload(
|
|
844
|
+
props: TextFieldUploadProps,
|
|
845
|
+
): React.ReactElement | null;
|
|
846
|
+
|
|
847
|
+
interface TinyMCEInitConfig {
|
|
848
|
+
/** Placeholder text di area editor */
|
|
849
|
+
placeholder?: string;
|
|
850
|
+
/** Prefix URL untuk image upload */
|
|
851
|
+
prefixUrl?: string;
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
interface BaseTextAreaProps {
|
|
856
|
+
/** Nama field untuk react-hook-form */
|
|
857
|
+
name?: string;
|
|
858
|
+
/** Control dari useForm() */
|
|
859
|
+
control?: Control<any>;
|
|
860
|
+
/** Nilai awal (bisa HTML string jika useRichText aktif) */
|
|
861
|
+
defaultValue?: string;
|
|
862
|
+
/** Teks bantuan di bawah field (tampil jika tidak ada error) */
|
|
863
|
+
helperText?: React.ReactNode;
|
|
864
|
+
/** Validasi rules react-hook-form */
|
|
865
|
+
rules?: RegisterOptions;
|
|
866
|
+
/** Harus tepat N karakter (override min/maxLength) */
|
|
867
|
+
exactLength?: number;
|
|
868
|
+
/** Batas maksimal karakter */
|
|
869
|
+
maxLength?: number;
|
|
870
|
+
/** CSS class untuk wrapper */
|
|
871
|
+
className?: string;
|
|
872
|
+
/** Label di atas field */
|
|
873
|
+
title?: string;
|
|
874
|
+
/** CSS class untuk title */
|
|
875
|
+
titleClassName?: string;
|
|
876
|
+
/** Nonaktifkan field */
|
|
877
|
+
isDisabled?: boolean;
|
|
878
|
+
/** Aktifkan TinyMCE rich-text editor (default: plain MUI textarea) */
|
|
879
|
+
useRichText?: boolean;
|
|
880
|
+
/** Override konfigurasi TinyMCE (placeholder, prefixUrl, dll) */
|
|
881
|
+
init?: TinyMCEInitConfig;
|
|
882
|
+
/** Callback file_picker_callback untuk upload gambar di rich text mode */
|
|
883
|
+
handleImageUpload?: (
|
|
884
|
+
callback: (url: string, meta?: Record<string, string>) => void,
|
|
885
|
+
value: string,
|
|
886
|
+
meta: Record<string, string>,
|
|
887
|
+
) => void;
|
|
888
|
+
|
|
889
|
+
[key: string]: any;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
declare function BaseTextArea(
|
|
893
|
+
props: BaseTextAreaProps,
|
|
894
|
+
): React.ReactElement | null;
|
|
895
|
+
|
|
896
|
+
interface BaseModalProps {
|
|
897
|
+
open?: boolean;
|
|
898
|
+
|
|
899
|
+
onClose?: () => void;
|
|
900
|
+
onConfirm?: () => void;
|
|
901
|
+
onCancel?: () => void;
|
|
902
|
+
|
|
903
|
+
icon?: React.ReactNode;
|
|
904
|
+
|
|
905
|
+
title?: React.ReactNode;
|
|
906
|
+
description?: React.ReactNode;
|
|
907
|
+
|
|
908
|
+
children?: React.ReactNode;
|
|
909
|
+
footer?: React.ReactNode;
|
|
910
|
+
|
|
911
|
+
showConfirm?: boolean;
|
|
912
|
+
showCancel?: boolean;
|
|
913
|
+
|
|
914
|
+
confirmLabel?: string;
|
|
915
|
+
cancelLabel?: string;
|
|
916
|
+
|
|
917
|
+
confirmVariant?: string;
|
|
918
|
+
cancelVariant?: string;
|
|
919
|
+
|
|
920
|
+
confirmColor?: string;
|
|
921
|
+
cancelColor?: string;
|
|
922
|
+
|
|
923
|
+
confirmSize?: string;
|
|
924
|
+
cancelSize?: string;
|
|
925
|
+
|
|
926
|
+
align?: "left" | "center" | "right";
|
|
927
|
+
|
|
928
|
+
modalWidth?: string;
|
|
929
|
+
|
|
930
|
+
showCloseIcon?: boolean;
|
|
931
|
+
|
|
932
|
+
[key: string]: any;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
declare function BaseModal(
|
|
936
|
+
props: BaseModalProps,
|
|
937
|
+
): React.ReactElement | null;
|
|
938
|
+
|
|
939
|
+
interface BaseModalStepperStep {
|
|
940
|
+
label?: string;
|
|
941
|
+
description?: string;
|
|
942
|
+
responseCode?: string;
|
|
943
|
+
responseDesc?: string;
|
|
944
|
+
responseTime?: number;
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
interface BaseModalStepperProps {
|
|
948
|
+
open: boolean;
|
|
949
|
+
|
|
950
|
+
onClose: (event?: any, reason?: any) => void;
|
|
951
|
+
|
|
952
|
+
title?: string;
|
|
953
|
+
|
|
954
|
+
stepper?: BaseModalStepperStep[];
|
|
955
|
+
|
|
956
|
+
navState?: string | number | null;
|
|
957
|
+
|
|
958
|
+
lengthUpload?: number;
|
|
959
|
+
|
|
960
|
+
id_pengajuan?: number | null;
|
|
961
|
+
|
|
962
|
+
showFooter?: boolean;
|
|
963
|
+
|
|
964
|
+
children?: React.ReactNode;
|
|
965
|
+
|
|
966
|
+
modalWidth?: string;
|
|
967
|
+
|
|
968
|
+
[key: string]: any;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
declare function BaseModalStepper(
|
|
972
|
+
props: BaseModalStepperProps,
|
|
973
|
+
): React.ReactElement | null;
|
|
974
|
+
|
|
975
|
+
interface BaseModalOTPProps {
|
|
976
|
+
isOpen?: boolean;
|
|
977
|
+
|
|
978
|
+
phone?: string;
|
|
979
|
+
|
|
980
|
+
setIsOpen?: (open: boolean) => void;
|
|
981
|
+
|
|
982
|
+
otpLength?: number;
|
|
983
|
+
|
|
984
|
+
onValidateOtp?: (otp: string) => void;
|
|
985
|
+
|
|
986
|
+
onRequestOtp?: () => void;
|
|
987
|
+
|
|
988
|
+
[key: string]: any;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare function BaseModalOTP(
|
|
992
|
+
props: BaseModalOTPProps,
|
|
993
|
+
): React.ReactElement | null;
|
|
994
|
+
|
|
995
|
+
export { type BaseStepperDashboardStep as $, type BaseCheckboxProps as A, BaseAlert as B, CONTENT_SPACING_TOKENS as C, DerivedColor as D, type BaseDatatableAlign as E, type BaseDatatableColumn as F, type BaseDatatableFeatures as G, type BaseDatatableHeaderCell as H, type BaseDatatableLayout as I, type BaseDatatablePagination as J, type BaseDatatableProps as K, type BaseDatatableSelection as L, type BaseDatatableSortPayload as M, type BaseDatatableSortState as N, type BaseDatePickerProps as O, PrimitiveColor as P, type BaseDropdownProps as Q, Radius as R, Shadow as S, TextFieldUpload as T, type BaseDropzoneProps as U, VariantStyles as V, type BaseModalOTPProps as W, type BaseModalProps as X, type BaseModalStepperProps as Y, type BaseModalStepperStep as Z, type BaseRadioButtonProps as _, BaseButton as a, type BaseStepperProps as a0, type BaseStepperSimpleStep as a1, type BaseSwitchProps as a2, type BaseTextAreaProps as a3, type BaseTextFieldProps as a4, type ContentSpacingProps as a5, type DerivedColorType as a6, type PrimitiveColorType as a7, type RadiusKey as a8, type RadiusMap as a9, type RadiusTokenProps as aa, type ShadowElevation as ab, type ShadowLevel as ac, type ShadowMap as ad, type ShadowTokenProps as ae, type SpacingProps as af, type TextFieldUploadProps as ag, type TypographyColorToken as ah, type TypographyProps as ai, BaseCard as b, BaseCheckbox as c, BaseDatatable as d, BaseDatePicker as e, BaseDropdown as f, BaseDropzone as g, BaseModal as h, BaseModalOTP as i, BaseModalStepper as j, BaseRadioButton as k, BaseStepper as l, BaseSwitch as m, BaseTextArea as n, BaseTextField as o, ContentSpacing as p, RadiusToken as q, ShadowToken as r, Spacing as s, SpacingToken as t, Typography as u, type BaseAlertProps as v, type BaseButtonProps as w, type BaseCardDataItem as x, type BaseCardProps as y, type BaseCheckboxOption as z };
|