@nexus-cross/design-system 1.0.0 → 1.0.1

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.
Files changed (49) hide show
  1. package/dist/chunks/{chunk-D6FII7HW.js → chunk-BBLBTOP4.js} +8 -5
  2. package/dist/chunks/chunk-GMGG4VZM.mjs +5 -0
  3. package/dist/chunks/chunk-N75GAGAG.js +7 -0
  4. package/dist/chunks/{chunk-54RBL7J4.mjs → chunk-UKRU46PH.mjs} +8 -5
  5. package/dist/index.js +3 -3
  6. package/dist/index.mjs +1 -1
  7. package/dist/schemas/_all.json +518 -21
  8. package/dist/schemas/button.json +18 -0
  9. package/dist/schemas/checkBox.json +19 -1
  10. package/dist/schemas/chip.json +7 -1
  11. package/dist/schemas/counter.json +3 -0
  12. package/dist/schemas/divider.json +3 -0
  13. package/dist/schemas/drawer.json +20 -1
  14. package/dist/schemas/drawerClose.json +24 -0
  15. package/dist/schemas/drawerDescription.json +20 -0
  16. package/dist/schemas/drawerTitle.json +20 -0
  17. package/dist/schemas/drawerTrigger.json +24 -0
  18. package/dist/schemas/marquee.json +3 -0
  19. package/dist/schemas/modalCall.json +80 -2
  20. package/dist/schemas/modalTemplate.json +4 -1
  21. package/dist/schemas/numberInput.json +19 -1
  22. package/dist/schemas/radioGroup.json +7 -0
  23. package/dist/schemas/radioItem.json +7 -0
  24. package/dist/schemas/skeleton.json +3 -0
  25. package/dist/schemas/spinner.json +7 -0
  26. package/dist/schemas/switch.json +12 -1
  27. package/dist/schemas/textArea.json +33 -0
  28. package/dist/schemas/textInput.json +41 -1
  29. package/dist/schemas/toastOptions.json +81 -0
  30. package/dist/schemas/toaster.json +46 -1
  31. package/dist/schemas/virtualGrid.json +12 -9
  32. package/dist/schemas/virtualList.json +5 -2
  33. package/dist/schemas.d.mts +420 -56
  34. package/dist/schemas.d.ts +420 -56
  35. package/dist/schemas.js +154 -19
  36. package/dist/schemas.mjs +150 -20
  37. package/dist/styles/layer.js +2 -2
  38. package/dist/styles/layer.mjs +1 -1
  39. package/dist/styles.css +28 -30
  40. package/dist/styles.js +2 -2
  41. package/dist/styles.layered.css +28 -30
  42. package/dist/styles.mjs +1 -1
  43. package/dist/text-input.d.mts +1 -1
  44. package/dist/text-input.d.ts +1 -1
  45. package/dist/text-input.js +3 -3
  46. package/dist/text-input.mjs +1 -1
  47. package/package.json +2 -2
  48. package/dist/chunks/chunk-7AISZYWL.js +0 -7
  49. package/dist/chunks/chunk-V5OTJP6H.mjs +0 -5
@@ -8,6 +8,10 @@ declare const buttonPropsSchema: z.ZodObject<{
8
8
  asChild: z.ZodOptional<z.ZodBoolean>;
9
9
  detectDoubleClick: z.ZodOptional<z.ZodBoolean>;
10
10
  disabled: z.ZodOptional<z.ZodBoolean>;
11
+ children: z.ZodOptional<z.ZodAny>;
12
+ onClick: z.ZodOptional<z.ZodAny>;
13
+ type: z.ZodOptional<z.ZodEnum<["button", "submit", "reset"]>>;
14
+ style: z.ZodOptional<z.ZodAny>;
11
15
  className: z.ZodOptional<z.ZodString>;
12
16
  }, "strip", z.ZodTypeAny, {
13
17
  semantic: "primary" | "secondary" | "normal" | "danger";
@@ -17,6 +21,10 @@ declare const buttonPropsSchema: z.ZodObject<{
17
21
  asChild?: boolean | undefined;
18
22
  detectDoubleClick?: boolean | undefined;
19
23
  disabled?: boolean | undefined;
24
+ children?: any;
25
+ onClick?: any;
26
+ type?: "button" | "submit" | "reset" | undefined;
27
+ style?: any;
20
28
  className?: string | undefined;
21
29
  }, {
22
30
  semantic?: "primary" | "secondary" | "normal" | "danger" | undefined;
@@ -26,11 +34,15 @@ declare const buttonPropsSchema: z.ZodObject<{
26
34
  asChild?: boolean | undefined;
27
35
  detectDoubleClick?: boolean | undefined;
28
36
  disabled?: boolean | undefined;
37
+ children?: any;
38
+ onClick?: any;
39
+ type?: "button" | "submit" | "reset" | undefined;
40
+ style?: any;
29
41
  className?: string | undefined;
30
42
  }>;
31
43
 
32
44
  declare const textInputPropsSchema: z.ZodObject<{
33
- size: z.ZodDefault<z.ZodEnum<["sm", "md", "lg", "xl"]>>;
45
+ size: z.ZodDefault<z.ZodEnum<["md", "lg", "xl"]>>;
34
46
  error: z.ZodOptional<z.ZodBoolean>;
35
47
  prefixIcon: z.ZodOptional<z.ZodAny>;
36
48
  suffixIcon: z.ZodOptional<z.ZodAny>;
@@ -41,12 +53,25 @@ declare const textInputPropsSchema: z.ZodObject<{
41
53
  clearable: z.ZodOptional<z.ZodBoolean>;
42
54
  placeholder: z.ZodOptional<z.ZodString>;
43
55
  disabled: z.ZodOptional<z.ZodBoolean>;
56
+ readOnly: z.ZodOptional<z.ZodBoolean>;
57
+ value: z.ZodOptional<z.ZodString>;
58
+ defaultValue: z.ZodOptional<z.ZodString>;
59
+ type: z.ZodOptional<z.ZodString>;
60
+ name: z.ZodOptional<z.ZodString>;
61
+ id: z.ZodOptional<z.ZodString>;
62
+ autoFocus: z.ZodOptional<z.ZodBoolean>;
63
+ autoComplete: z.ZodOptional<z.ZodString>;
44
64
  onValueChange: z.ZodOptional<z.ZodAny>;
65
+ onChange: z.ZodOptional<z.ZodAny>;
66
+ onBlur: z.ZodOptional<z.ZodAny>;
67
+ onFocus: z.ZodOptional<z.ZodAny>;
45
68
  className: z.ZodOptional<z.ZodString>;
46
69
  }, "strip", z.ZodTypeAny, {
47
- size: "xl" | "lg" | "md" | "sm";
70
+ size: "xl" | "lg" | "md";
48
71
  disabled?: boolean | undefined;
72
+ type?: string | undefined;
49
73
  className?: string | undefined;
74
+ value?: string | undefined;
50
75
  error?: boolean | undefined;
51
76
  prefixIcon?: any;
52
77
  suffixIcon?: any;
@@ -56,11 +81,22 @@ declare const textInputPropsSchema: z.ZodObject<{
56
81
  maxLength?: number | undefined;
57
82
  clearable?: boolean | undefined;
58
83
  placeholder?: string | undefined;
84
+ readOnly?: boolean | undefined;
85
+ defaultValue?: string | undefined;
86
+ name?: string | undefined;
87
+ id?: string | undefined;
88
+ autoFocus?: boolean | undefined;
89
+ autoComplete?: string | undefined;
59
90
  onValueChange?: any;
91
+ onChange?: any;
92
+ onBlur?: any;
93
+ onFocus?: any;
60
94
  }, {
61
- size?: "xl" | "lg" | "md" | "sm" | undefined;
95
+ size?: "xl" | "lg" | "md" | undefined;
62
96
  disabled?: boolean | undefined;
97
+ type?: string | undefined;
63
98
  className?: string | undefined;
99
+ value?: string | undefined;
64
100
  error?: boolean | undefined;
65
101
  prefixIcon?: any;
66
102
  suffixIcon?: any;
@@ -70,7 +106,16 @@ declare const textInputPropsSchema: z.ZodObject<{
70
106
  maxLength?: number | undefined;
71
107
  clearable?: boolean | undefined;
72
108
  placeholder?: string | undefined;
109
+ readOnly?: boolean | undefined;
110
+ defaultValue?: string | undefined;
111
+ name?: string | undefined;
112
+ id?: string | undefined;
113
+ autoFocus?: boolean | undefined;
114
+ autoComplete?: string | undefined;
73
115
  onValueChange?: any;
116
+ onChange?: any;
117
+ onBlur?: any;
118
+ onFocus?: any;
74
119
  }>;
75
120
 
76
121
  declare const textAreaPropsSchema: z.ZodObject<{
@@ -80,25 +125,52 @@ declare const textAreaPropsSchema: z.ZodObject<{
80
125
  placeholder: z.ZodOptional<z.ZodString>;
81
126
  rows: z.ZodOptional<z.ZodNumber>;
82
127
  disabled: z.ZodOptional<z.ZodBoolean>;
128
+ readOnly: z.ZodOptional<z.ZodBoolean>;
129
+ value: z.ZodOptional<z.ZodString>;
130
+ defaultValue: z.ZodOptional<z.ZodString>;
131
+ name: z.ZodOptional<z.ZodString>;
132
+ id: z.ZodOptional<z.ZodString>;
133
+ autoFocus: z.ZodOptional<z.ZodBoolean>;
83
134
  onValueChange: z.ZodOptional<z.ZodAny>;
135
+ onChange: z.ZodOptional<z.ZodAny>;
136
+ onBlur: z.ZodOptional<z.ZodAny>;
137
+ onFocus: z.ZodOptional<z.ZodAny>;
84
138
  className: z.ZodOptional<z.ZodString>;
85
139
  }, "strip", z.ZodTypeAny, {
86
140
  disabled?: boolean | undefined;
87
141
  className?: string | undefined;
142
+ value?: string | undefined;
88
143
  error?: boolean | undefined;
89
144
  showCount?: boolean | undefined;
90
145
  maxLength?: number | undefined;
91
146
  placeholder?: string | undefined;
147
+ readOnly?: boolean | undefined;
148
+ defaultValue?: string | undefined;
149
+ name?: string | undefined;
150
+ id?: string | undefined;
151
+ autoFocus?: boolean | undefined;
92
152
  onValueChange?: any;
153
+ onChange?: any;
154
+ onBlur?: any;
155
+ onFocus?: any;
93
156
  rows?: number | undefined;
94
157
  }, {
95
158
  disabled?: boolean | undefined;
96
159
  className?: string | undefined;
160
+ value?: string | undefined;
97
161
  error?: boolean | undefined;
98
162
  showCount?: boolean | undefined;
99
163
  maxLength?: number | undefined;
100
164
  placeholder?: string | undefined;
165
+ readOnly?: boolean | undefined;
166
+ defaultValue?: string | undefined;
167
+ name?: string | undefined;
168
+ id?: string | undefined;
169
+ autoFocus?: boolean | undefined;
101
170
  onValueChange?: any;
171
+ onChange?: any;
172
+ onBlur?: any;
173
+ onFocus?: any;
102
174
  rows?: number | undefined;
103
175
  }>;
104
176
 
@@ -117,23 +189,23 @@ declare const selectPropsSchema: z.ZodObject<{
117
189
  variant: "default" | "outline";
118
190
  size: "lg" | "md" | "sm" | "full";
119
191
  disabled?: boolean | undefined;
192
+ children?: any;
120
193
  className?: string | undefined;
121
194
  value?: string | undefined;
122
195
  placeholder?: string | undefined;
123
196
  onValueChange?: any;
124
197
  displayComponent?: any;
125
- children?: any;
126
198
  triggerClassName?: string | undefined;
127
199
  }, {
128
200
  variant?: "default" | "outline" | undefined;
129
201
  size?: "lg" | "md" | "sm" | "full" | undefined;
130
202
  disabled?: boolean | undefined;
203
+ children?: any;
131
204
  className?: string | undefined;
132
205
  value?: string | undefined;
133
206
  placeholder?: string | undefined;
134
207
  onValueChange?: any;
135
208
  displayComponent?: any;
136
- children?: any;
137
209
  triggerClassName?: string | undefined;
138
210
  }>;
139
211
  declare const selectItemPropsSchema: z.ZodObject<{
@@ -144,13 +216,13 @@ declare const selectItemPropsSchema: z.ZodObject<{
144
216
  }, "strip", z.ZodTypeAny, {
145
217
  value: string;
146
218
  disabled?: boolean | undefined;
147
- className?: string | undefined;
148
219
  children?: any;
220
+ className?: string | undefined;
149
221
  }, {
150
222
  value: string;
151
223
  disabled?: boolean | undefined;
152
- className?: string | undefined;
153
224
  children?: any;
225
+ className?: string | undefined;
154
226
  }>;
155
227
 
156
228
  declare const checkBoxPropsSchema: z.ZodObject<{
@@ -161,27 +233,42 @@ declare const checkBoxPropsSchema: z.ZodObject<{
161
233
  disabled: z.ZodOptional<z.ZodBoolean>;
162
234
  readOnly: z.ZodOptional<z.ZodBoolean>;
163
235
  label: z.ZodOptional<z.ZodAny>;
236
+ children: z.ZodOptional<z.ZodAny>;
237
+ name: z.ZodOptional<z.ZodString>;
238
+ id: z.ZodOptional<z.ZodString>;
239
+ value: z.ZodOptional<z.ZodString>;
164
240
  onCheckedChange: z.ZodOptional<z.ZodAny>;
241
+ onChange: z.ZodOptional<z.ZodAny>;
165
242
  className: z.ZodOptional<z.ZodString>;
166
243
  }, "strip", z.ZodTypeAny, {
167
244
  size: "md" | "sm";
168
245
  shape: "square" | "round";
169
246
  disabled?: boolean | undefined;
247
+ children?: any;
170
248
  className?: string | undefined;
249
+ value?: string | undefined;
171
250
  label?: any;
251
+ readOnly?: boolean | undefined;
252
+ name?: string | undefined;
253
+ id?: string | undefined;
254
+ onChange?: any;
172
255
  checked?: boolean | undefined;
173
256
  indeterminate?: boolean | undefined;
174
- readOnly?: boolean | undefined;
175
257
  onCheckedChange?: any;
176
258
  }, {
177
259
  size?: "md" | "sm" | undefined;
178
260
  disabled?: boolean | undefined;
261
+ children?: any;
179
262
  className?: string | undefined;
263
+ value?: string | undefined;
180
264
  label?: any;
265
+ readOnly?: boolean | undefined;
266
+ name?: string | undefined;
267
+ id?: string | undefined;
268
+ onChange?: any;
181
269
  shape?: "square" | "round" | undefined;
182
270
  checked?: boolean | undefined;
183
271
  indeterminate?: boolean | undefined;
184
- readOnly?: boolean | undefined;
185
272
  onCheckedChange?: any;
186
273
  }>;
187
274
 
@@ -192,7 +279,9 @@ declare const radioGroupPropsSchema: z.ZodObject<{
192
279
  size: z.ZodDefault<z.ZodEnum<["sm", "md"]>>;
193
280
  orientation: z.ZodDefault<z.ZodEnum<["horizontal", "vertical"]>>;
194
281
  disabled: z.ZodOptional<z.ZodBoolean>;
282
+ children: z.ZodAny;
195
283
  'aria-label': z.ZodOptional<z.ZodString>;
284
+ 'aria-labelledby': z.ZodOptional<z.ZodString>;
196
285
  onValueChange: z.ZodOptional<z.ZodAny>;
197
286
  className: z.ZodOptional<z.ZodString>;
198
287
  }, "strip", z.ZodTypeAny, {
@@ -200,36 +289,46 @@ declare const radioGroupPropsSchema: z.ZodObject<{
200
289
  name: string;
201
290
  orientation: "horizontal" | "vertical";
202
291
  disabled?: boolean | undefined;
292
+ children?: any;
203
293
  className?: string | undefined;
204
294
  value?: string | undefined;
205
- onValueChange?: any;
206
295
  defaultValue?: string | undefined;
296
+ onValueChange?: any;
207
297
  'aria-label'?: string | undefined;
298
+ 'aria-labelledby'?: string | undefined;
208
299
  }, {
209
300
  name: string;
210
301
  size?: "md" | "sm" | undefined;
211
302
  disabled?: boolean | undefined;
303
+ children?: any;
212
304
  className?: string | undefined;
213
305
  value?: string | undefined;
214
- onValueChange?: any;
215
306
  defaultValue?: string | undefined;
307
+ onValueChange?: any;
216
308
  orientation?: "horizontal" | "vertical" | undefined;
217
309
  'aria-label'?: string | undefined;
310
+ 'aria-labelledby'?: string | undefined;
218
311
  }>;
219
312
  declare const radioItemPropsSchema: z.ZodObject<{
220
313
  value: z.ZodString;
221
314
  size: z.ZodOptional<z.ZodEnum<["sm", "md"]>>;
222
315
  label: z.ZodOptional<z.ZodAny>;
316
+ children: z.ZodOptional<z.ZodAny>;
223
317
  disabled: z.ZodOptional<z.ZodBoolean>;
318
+ className: z.ZodOptional<z.ZodString>;
224
319
  }, "strip", z.ZodTypeAny, {
225
320
  value: string;
226
321
  size?: "md" | "sm" | undefined;
227
322
  disabled?: boolean | undefined;
323
+ children?: any;
324
+ className?: string | undefined;
228
325
  label?: any;
229
326
  }, {
230
327
  value: string;
231
328
  size?: "md" | "sm" | undefined;
232
329
  disabled?: boolean | undefined;
330
+ children?: any;
331
+ className?: string | undefined;
233
332
  label?: any;
234
333
  }>;
235
334
 
@@ -238,21 +337,30 @@ declare const switchPropsSchema: z.ZodObject<{
238
337
  checked: z.ZodOptional<z.ZodBoolean>;
239
338
  disabled: z.ZodOptional<z.ZodBoolean>;
240
339
  readOnly: z.ZodOptional<z.ZodBoolean>;
340
+ name: z.ZodOptional<z.ZodString>;
341
+ id: z.ZodOptional<z.ZodString>;
241
342
  onCheckedChange: z.ZodOptional<z.ZodAny>;
343
+ onChange: z.ZodOptional<z.ZodAny>;
242
344
  className: z.ZodOptional<z.ZodString>;
243
345
  }, "strip", z.ZodTypeAny, {
244
346
  size: "md" | "sm";
245
347
  disabled?: boolean | undefined;
246
348
  className?: string | undefined;
247
- checked?: boolean | undefined;
248
349
  readOnly?: boolean | undefined;
350
+ name?: string | undefined;
351
+ id?: string | undefined;
352
+ onChange?: any;
353
+ checked?: boolean | undefined;
249
354
  onCheckedChange?: any;
250
355
  }, {
251
356
  size?: "md" | "sm" | undefined;
252
357
  disabled?: boolean | undefined;
253
358
  className?: string | undefined;
254
- checked?: boolean | undefined;
255
359
  readOnly?: boolean | undefined;
360
+ name?: string | undefined;
361
+ id?: string | undefined;
362
+ onChange?: any;
363
+ checked?: boolean | undefined;
256
364
  onCheckedChange?: any;
257
365
  }>;
258
366
 
@@ -261,13 +369,17 @@ declare const chipPropsSchema: z.ZodObject<{
261
369
  size: z.ZodDefault<z.ZodEnum<["sm", "md", "lg"]>>;
262
370
  asChild: z.ZodOptional<z.ZodBoolean>;
263
371
  disabled: z.ZodOptional<z.ZodBoolean>;
372
+ children: z.ZodOptional<z.ZodAny>;
264
373
  onClose: z.ZodOptional<z.ZodAny>;
374
+ onClick: z.ZodOptional<z.ZodAny>;
265
375
  className: z.ZodOptional<z.ZodString>;
266
376
  }, "strip", z.ZodTypeAny, {
267
377
  variant: "default" | "outline" | "filled" | "accent";
268
378
  size: "lg" | "md" | "sm";
269
379
  asChild?: boolean | undefined;
270
380
  disabled?: boolean | undefined;
381
+ children?: any;
382
+ onClick?: any;
271
383
  className?: string | undefined;
272
384
  onClose?: any;
273
385
  }, {
@@ -275,22 +387,30 @@ declare const chipPropsSchema: z.ZodObject<{
275
387
  size?: "lg" | "md" | "sm" | undefined;
276
388
  asChild?: boolean | undefined;
277
389
  disabled?: boolean | undefined;
390
+ children?: any;
391
+ onClick?: any;
278
392
  className?: string | undefined;
279
393
  onClose?: any;
280
394
  }>;
281
395
 
282
396
  declare const spinnerPropsSchema: z.ZodObject<{
283
397
  size: z.ZodDefault<z.ZodNumber>;
398
+ color: z.ZodOptional<z.ZodString>;
284
399
  'aria-label': z.ZodDefault<z.ZodString>;
400
+ style: z.ZodOptional<z.ZodAny>;
285
401
  className: z.ZodOptional<z.ZodString>;
286
402
  }, "strip", z.ZodTypeAny, {
287
403
  size: number;
288
404
  'aria-label': string;
405
+ style?: any;
289
406
  className?: string | undefined;
407
+ color?: string | undefined;
290
408
  }, {
291
409
  size?: number | undefined;
410
+ style?: any;
292
411
  className?: string | undefined;
293
412
  'aria-label'?: string | undefined;
413
+ color?: string | undefined;
294
414
  }>;
295
415
 
296
416
  declare const skeletonPropsSchema: z.ZodObject<{
@@ -299,18 +419,21 @@ declare const skeletonPropsSchema: z.ZodObject<{
299
419
  width: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
300
420
  height: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
301
421
  children: z.ZodOptional<z.ZodAny>;
422
+ style: z.ZodOptional<z.ZodAny>;
302
423
  className: z.ZodOptional<z.ZodString>;
303
424
  }, "strip", z.ZodTypeAny, {
304
425
  circle: boolean;
305
426
  as: "div" | "span";
306
- className?: string | undefined;
307
427
  children?: any;
428
+ style?: any;
429
+ className?: string | undefined;
308
430
  width?: string | number | undefined;
309
431
  height?: string | number | undefined;
310
432
  }, {
311
433
  circle?: boolean | undefined;
312
- className?: string | undefined;
313
434
  children?: any;
435
+ style?: any;
436
+ className?: string | undefined;
314
437
  as?: "div" | "span" | undefined;
315
438
  width?: string | number | undefined;
316
439
  height?: string | number | undefined;
@@ -320,14 +443,17 @@ declare const dividerPropsSchema: z.ZodObject<{
320
443
  orientation: z.ZodDefault<z.ZodEnum<["horizontal", "vertical"]>>;
321
444
  variant: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
322
445
  color: z.ZodOptional<z.ZodString>;
446
+ style: z.ZodOptional<z.ZodAny>;
323
447
  className: z.ZodOptional<z.ZodString>;
324
448
  }, "strip", z.ZodTypeAny, {
325
449
  variant: "solid" | "dashed" | "dotted";
326
450
  orientation: "horizontal" | "vertical";
451
+ style?: any;
327
452
  className?: string | undefined;
328
453
  color?: string | undefined;
329
454
  }, {
330
455
  variant?: "solid" | "dashed" | "dotted" | undefined;
456
+ style?: any;
331
457
  className?: string | undefined;
332
458
  orientation?: "horizontal" | "vertical" | undefined;
333
459
  color?: string | undefined;
@@ -349,15 +475,15 @@ declare const tooltipPropsSchema: z.ZodObject<{
349
475
  side: "top" | "right" | "bottom" | "left";
350
476
  align: "start" | "center" | "end";
351
477
  delayDuration: number;
352
- className?: string | undefined;
353
478
  children?: any;
479
+ className?: string | undefined;
354
480
  triggerClassName?: string | undefined;
355
481
  content?: any;
356
482
  }, {
357
483
  variant?: "dark" | "light" | undefined;
358
484
  disabled?: boolean | undefined;
359
- className?: string | undefined;
360
485
  children?: any;
486
+ className?: string | undefined;
361
487
  triggerClassName?: string | undefined;
362
488
  content?: any;
363
489
  side?: "top" | "right" | "bottom" | "left" | undefined;
@@ -381,8 +507,8 @@ declare const popoverPropsSchema: z.ZodObject<{
381
507
  side: "top" | "right" | "bottom" | "left";
382
508
  align: "start" | "center" | "end";
383
509
  sideOffset: number;
384
- className?: string | undefined;
385
510
  children?: any;
511
+ className?: string | undefined;
386
512
  trigger?: any;
387
513
  alignOffset?: number | undefined;
388
514
  open?: boolean | undefined;
@@ -390,8 +516,8 @@ declare const popoverPropsSchema: z.ZodObject<{
390
516
  onClickTrigger?: any;
391
517
  arrowClassName?: string | undefined;
392
518
  }, {
393
- className?: string | undefined;
394
519
  children?: any;
520
+ className?: string | undefined;
395
521
  side?: "top" | "right" | "bottom" | "left" | undefined;
396
522
  align?: "start" | "center" | "end" | undefined;
397
523
  trigger?: any;
@@ -449,8 +575,8 @@ declare const accordionPropsSchema: z.ZodObject<{
449
575
  collapsible: boolean;
450
576
  className?: string | undefined;
451
577
  value?: string | string[] | undefined;
452
- onValueChange?: any;
453
578
  defaultValue?: string | string[] | undefined;
579
+ onValueChange?: any;
454
580
  }, {
455
581
  items: {
456
582
  id: string;
@@ -461,23 +587,38 @@ declare const accordionPropsSchema: z.ZodObject<{
461
587
  trigger?: any;
462
588
  contentClassName?: string | undefined;
463
589
  }[];
590
+ type?: "single" | "multiple" | undefined;
464
591
  className?: string | undefined;
465
592
  value?: string | string[] | undefined;
466
- type?: "single" | "multiple" | undefined;
467
- onValueChange?: any;
468
593
  defaultValue?: string | string[] | undefined;
594
+ onValueChange?: any;
469
595
  collapsible?: boolean | undefined;
470
596
  }>;
471
597
 
472
598
  declare const drawerPropsSchema: z.ZodObject<{
473
599
  direction: z.ZodDefault<z.ZodEnum<["bottom", "top", "left", "right"]>>;
474
- children: z.ZodOptional<z.ZodAny>;
600
+ open: z.ZodOptional<z.ZodBoolean>;
601
+ onOpenChange: z.ZodOptional<z.ZodAny>;
602
+ dismissible: z.ZodOptional<z.ZodBoolean>;
603
+ modal: z.ZodOptional<z.ZodBoolean>;
604
+ shouldScaleBackground: z.ZodOptional<z.ZodBoolean>;
605
+ children: z.ZodAny;
475
606
  }, "strip", z.ZodTypeAny, {
476
607
  direction: "top" | "right" | "bottom" | "left";
477
608
  children?: any;
609
+ open?: boolean | undefined;
610
+ onOpenChange?: any;
611
+ dismissible?: boolean | undefined;
612
+ modal?: boolean | undefined;
613
+ shouldScaleBackground?: boolean | undefined;
478
614
  }, {
479
615
  children?: any;
616
+ open?: boolean | undefined;
617
+ onOpenChange?: any;
480
618
  direction?: "top" | "right" | "bottom" | "left" | undefined;
619
+ dismissible?: boolean | undefined;
620
+ modal?: boolean | undefined;
621
+ shouldScaleBackground?: boolean | undefined;
481
622
  }>;
482
623
  declare const drawerContentPropsSchema: z.ZodObject<{
483
624
  direction: z.ZodOptional<z.ZodDefault<z.ZodEnum<["bottom", "top", "left", "right"]>>>;
@@ -489,18 +630,64 @@ declare const drawerContentPropsSchema: z.ZodObject<{
489
630
  }, "strip", z.ZodTypeAny, {
490
631
  blur: "md" | "sm" | "none";
491
632
  showHandle: boolean;
492
- className?: string | undefined;
493
633
  children?: any;
634
+ className?: string | undefined;
494
635
  direction?: "top" | "right" | "bottom" | "left" | undefined;
495
636
  overlayClassName?: string | undefined;
496
637
  }, {
497
- className?: string | undefined;
498
638
  children?: any;
639
+ className?: string | undefined;
499
640
  direction?: "top" | "right" | "bottom" | "left" | undefined;
500
641
  blur?: "md" | "sm" | "none" | undefined;
501
642
  showHandle?: boolean | undefined;
502
643
  overlayClassName?: string | undefined;
503
644
  }>;
645
+ declare const drawerTriggerPropsSchema: z.ZodObject<{
646
+ asChild: z.ZodOptional<z.ZodBoolean>;
647
+ children: z.ZodAny;
648
+ className: z.ZodOptional<z.ZodString>;
649
+ }, "strip", z.ZodTypeAny, {
650
+ asChild?: boolean | undefined;
651
+ children?: any;
652
+ className?: string | undefined;
653
+ }, {
654
+ asChild?: boolean | undefined;
655
+ children?: any;
656
+ className?: string | undefined;
657
+ }>;
658
+ declare const drawerClosePropsSchema: z.ZodObject<{
659
+ asChild: z.ZodOptional<z.ZodBoolean>;
660
+ children: z.ZodAny;
661
+ className: z.ZodOptional<z.ZodString>;
662
+ }, "strip", z.ZodTypeAny, {
663
+ asChild?: boolean | undefined;
664
+ children?: any;
665
+ className?: string | undefined;
666
+ }, {
667
+ asChild?: boolean | undefined;
668
+ children?: any;
669
+ className?: string | undefined;
670
+ }>;
671
+ declare const drawerTitlePropsSchema: z.ZodObject<{
672
+ children: z.ZodAny;
673
+ className: z.ZodOptional<z.ZodString>;
674
+ }, "strip", z.ZodTypeAny, {
675
+ children?: any;
676
+ className?: string | undefined;
677
+ }, {
678
+ children?: any;
679
+ className?: string | undefined;
680
+ }>;
681
+ declare const drawerDescriptionPropsSchema: z.ZodObject<{
682
+ children: z.ZodAny;
683
+ className: z.ZodOptional<z.ZodString>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ children?: any;
686
+ className?: string | undefined;
687
+ }, {
688
+ children?: any;
689
+ className?: string | undefined;
690
+ }>;
504
691
 
505
692
  declare const tabPropsSchema: z.ZodObject<{
506
693
  items: z.ZodArray<z.ZodObject<{
@@ -511,13 +698,13 @@ declare const tabPropsSchema: z.ZodObject<{
511
698
  }, "strip", z.ZodTypeAny, {
512
699
  key: string;
513
700
  disabled?: boolean | undefined;
514
- label?: any;
515
701
  children?: any;
702
+ label?: any;
516
703
  }, {
517
704
  key: string;
518
705
  disabled?: boolean | undefined;
519
- label?: any;
520
706
  children?: any;
707
+ label?: any;
521
708
  }>, "many">;
522
709
  activeKey: z.ZodOptional<z.ZodString>;
523
710
  defaultActiveKey: z.ZodOptional<z.ZodString>;
@@ -534,8 +721,8 @@ declare const tabPropsSchema: z.ZodObject<{
534
721
  items: {
535
722
  key: string;
536
723
  disabled?: boolean | undefined;
537
- label?: any;
538
724
  children?: any;
725
+ label?: any;
539
726
  }[];
540
727
  destroyInactive: boolean;
541
728
  className?: string | undefined;
@@ -548,8 +735,8 @@ declare const tabPropsSchema: z.ZodObject<{
548
735
  items: {
549
736
  key: string;
550
737
  disabled?: boolean | undefined;
551
- label?: any;
552
738
  children?: any;
739
+ label?: any;
553
740
  }[];
554
741
  variant?: "line" | "pill" | undefined;
555
742
  size?: "md" | "sm" | undefined;
@@ -569,14 +756,14 @@ declare const carouselPropsSchema: z.ZodObject<{
569
756
  children: z.ZodOptional<z.ZodAny>;
570
757
  className: z.ZodOptional<z.ZodString>;
571
758
  }, "strip", z.ZodTypeAny, {
572
- className?: string | undefined;
573
759
  children?: any;
760
+ className?: string | undefined;
574
761
  opts?: Record<string, any> | undefined;
575
762
  plugins?: any[] | undefined;
576
763
  onApiChange?: any;
577
764
  }, {
578
- className?: string | undefined;
579
765
  children?: any;
766
+ className?: string | undefined;
580
767
  opts?: Record<string, any> | undefined;
581
768
  plugins?: any[] | undefined;
582
769
  onApiChange?: any;
@@ -585,21 +772,21 @@ declare const carouselSlidePropsSchema: z.ZodObject<{
585
772
  className: z.ZodOptional<z.ZodString>;
586
773
  children: z.ZodAny;
587
774
  }, "strip", z.ZodTypeAny, {
588
- className?: string | undefined;
589
775
  children?: any;
590
- }, {
591
776
  className?: string | undefined;
777
+ }, {
592
778
  children?: any;
779
+ className?: string | undefined;
593
780
  }>;
594
781
  declare const carouselButtonPropsSchema: z.ZodObject<{
595
782
  className: z.ZodOptional<z.ZodString>;
596
783
  children: z.ZodOptional<z.ZodAny>;
597
784
  }, "strip", z.ZodTypeAny, {
598
- className?: string | undefined;
599
785
  children?: any;
600
- }, {
601
786
  className?: string | undefined;
787
+ }, {
602
788
  children?: any;
789
+ className?: string | undefined;
603
790
  }>;
604
791
  declare const carouselDotsPropsSchema: z.ZodObject<{
605
792
  className: z.ZodOptional<z.ZodString>;
@@ -647,16 +834,16 @@ declare const avatarPropsSchema: z.ZodObject<{
647
834
  }, "strip", z.ZodTypeAny, {
648
835
  size: "xl" | "lg" | "md" | "sm" | "xs";
649
836
  shape: "circle" | "square";
650
- className?: string | undefined;
651
837
  children?: any;
838
+ className?: string | undefined;
652
839
  src?: string | undefined;
653
840
  alt?: string | undefined;
654
841
  fallback?: any;
655
842
  onImageError?: any;
656
843
  }, {
657
844
  size?: "xl" | "lg" | "md" | "sm" | "xs" | undefined;
658
- className?: string | undefined;
659
845
  children?: any;
846
+ className?: string | undefined;
660
847
  shape?: "circle" | "square" | undefined;
661
848
  src?: string | undefined;
662
849
  alt?: string | undefined;
@@ -673,6 +860,7 @@ declare const counterPropsSchema: z.ZodObject<{
673
860
  digits: z.ZodDefault<z.ZodNumber>;
674
861
  triggerOnView: z.ZodDefault<z.ZodBoolean>;
675
862
  onEnd: z.ZodOptional<z.ZodAny>;
863
+ style: z.ZodOptional<z.ZodAny>;
676
864
  className: z.ZodOptional<z.ZodString>;
677
865
  }, "strip", z.ZodTypeAny, {
678
866
  endValue: number;
@@ -682,10 +870,12 @@ declare const counterPropsSchema: z.ZodObject<{
682
870
  separator: boolean;
683
871
  digits: number;
684
872
  triggerOnView: boolean;
873
+ style?: any;
685
874
  className?: string | undefined;
686
875
  onEnd?: any;
687
876
  }, {
688
877
  endValue: number;
878
+ style?: any;
689
879
  className?: string | undefined;
690
880
  startValue?: number | undefined;
691
881
  duration?: number | undefined;
@@ -753,17 +943,20 @@ declare const marqueePropsSchema: z.ZodObject<{
753
943
  pauseOnHover: z.ZodDefault<z.ZodBoolean>;
754
944
  gap: z.ZodDefault<z.ZodNumber>;
755
945
  children: z.ZodAny;
946
+ style: z.ZodOptional<z.ZodAny>;
756
947
  className: z.ZodOptional<z.ZodString>;
757
948
  }, "strip", z.ZodTypeAny, {
758
949
  direction: "right" | "left" | "up" | "down";
759
950
  speed: number;
760
951
  pauseOnHover: boolean;
761
952
  gap: number;
762
- className?: string | undefined;
763
953
  children?: any;
764
- }, {
954
+ style?: any;
765
955
  className?: string | undefined;
956
+ }, {
766
957
  children?: any;
958
+ style?: any;
959
+ className?: string | undefined;
767
960
  direction?: "right" | "left" | "up" | "down" | undefined;
768
961
  speed?: number | undefined;
769
962
  pauseOnHover?: boolean | undefined;
@@ -777,6 +970,7 @@ declare const virtualListPropsSchema: z.ZodObject<{
777
970
  overscan: z.ZodDefault<z.ZodNumber>;
778
971
  gap: z.ZodDefault<z.ZodNumber>;
779
972
  className: z.ZodOptional<z.ZodString>;
973
+ style: z.ZodOptional<z.ZodAny>;
780
974
  endReachedThreshold: z.ZodDefault<z.ZodNumber>;
781
975
  onEndReached: z.ZodOptional<z.ZodAny>;
782
976
  }, "strip", z.ZodTypeAny, {
@@ -784,12 +978,14 @@ declare const virtualListPropsSchema: z.ZodObject<{
784
978
  gap: number;
785
979
  overscan: number;
786
980
  endReachedThreshold: number;
981
+ style?: any;
787
982
  className?: string | undefined;
788
983
  estimateSize?: any;
789
984
  renderItem?: any;
790
985
  onEndReached?: any;
791
986
  }, {
792
987
  items: any[];
988
+ style?: any;
793
989
  className?: string | undefined;
794
990
  gap?: number | undefined;
795
991
  estimateSize?: any;
@@ -800,20 +996,22 @@ declare const virtualListPropsSchema: z.ZodObject<{
800
996
  }>;
801
997
  declare const virtualGridPropsSchema: z.ZodObject<{
802
998
  items: z.ZodArray<z.ZodAny, "many">;
803
- estimateSize: z.ZodUnion<[z.ZodNumber, z.ZodAny]>;
804
999
  columns: z.ZodNumber;
1000
+ estimateSize: z.ZodUnion<[z.ZodNumber, z.ZodAny]>;
805
1001
  renderItem: z.ZodAny;
806
1002
  overscan: z.ZodDefault<z.ZodNumber>;
807
1003
  gap: z.ZodDefault<z.ZodNumber>;
1004
+ className: z.ZodOptional<z.ZodString>;
1005
+ style: z.ZodOptional<z.ZodAny>;
808
1006
  endReachedThreshold: z.ZodDefault<z.ZodNumber>;
809
1007
  onEndReached: z.ZodOptional<z.ZodAny>;
810
- className: z.ZodOptional<z.ZodString>;
811
1008
  }, "strip", z.ZodTypeAny, {
812
1009
  items: any[];
813
1010
  gap: number;
814
1011
  overscan: number;
815
1012
  endReachedThreshold: number;
816
1013
  columns: number;
1014
+ style?: any;
817
1015
  className?: string | undefined;
818
1016
  estimateSize?: any;
819
1017
  renderItem?: any;
@@ -821,6 +1019,7 @@ declare const virtualGridPropsSchema: z.ZodObject<{
821
1019
  }, {
822
1020
  items: any[];
823
1021
  columns: number;
1022
+ style?: any;
824
1023
  className?: string | undefined;
825
1024
  gap?: number | undefined;
826
1025
  estimateSize?: any;
@@ -846,8 +1045,8 @@ declare const infiniteScrollPropsSchema: z.ZodObject<{
846
1045
  list: any[] | null;
847
1046
  tag: string;
848
1047
  rootMargin: number;
849
- className?: string | undefined;
850
1048
  children?: any;
1049
+ className?: string | undefined;
851
1050
  totalCount?: number | undefined;
852
1051
  hasMore?: boolean | undefined;
853
1052
  loading?: boolean | undefined;
@@ -856,8 +1055,8 @@ declare const infiniteScrollPropsSchema: z.ZodObject<{
856
1055
  scrollTarget?: any;
857
1056
  }, {
858
1057
  list: any[] | null;
859
- className?: string | undefined;
860
1058
  children?: any;
1059
+ className?: string | undefined;
861
1060
  totalCount?: number | undefined;
862
1061
  hasMore?: boolean | undefined;
863
1062
  tag?: string | undefined;
@@ -909,7 +1108,12 @@ declare const numberInputPropsSchema: z.ZodObject<{
909
1108
  disabled: z.ZodOptional<z.ZodBoolean>;
910
1109
  readOnly: z.ZodOptional<z.ZodBoolean>;
911
1110
  placeholder: z.ZodOptional<z.ZodString>;
1111
+ name: z.ZodOptional<z.ZodString>;
1112
+ id: z.ZodOptional<z.ZodString>;
1113
+ autoFocus: z.ZodOptional<z.ZodBoolean>;
912
1114
  onValueChange: z.ZodOptional<z.ZodAny>;
1115
+ onBlur: z.ZodOptional<z.ZodAny>;
1116
+ onFocus: z.ZodOptional<z.ZodAny>;
913
1117
  className: z.ZodOptional<z.ZodString>;
914
1118
  }, "strip", z.ZodTypeAny, {
915
1119
  size: "xl" | "lg" | "md" | "sm";
@@ -921,8 +1125,13 @@ declare const numberInputPropsSchema: z.ZodObject<{
921
1125
  value?: string | number | undefined;
922
1126
  error?: boolean | undefined;
923
1127
  placeholder?: string | undefined;
924
- onValueChange?: any;
925
1128
  readOnly?: boolean | undefined;
1129
+ name?: string | undefined;
1130
+ id?: string | undefined;
1131
+ autoFocus?: boolean | undefined;
1132
+ onValueChange?: any;
1133
+ onBlur?: any;
1134
+ onFocus?: any;
926
1135
  min?: number | undefined;
927
1136
  max?: number | undefined;
928
1137
  }, {
@@ -932,8 +1141,13 @@ declare const numberInputPropsSchema: z.ZodObject<{
932
1141
  value?: string | number | undefined;
933
1142
  error?: boolean | undefined;
934
1143
  placeholder?: string | undefined;
935
- onValueChange?: any;
936
1144
  readOnly?: boolean | undefined;
1145
+ name?: string | undefined;
1146
+ id?: string | undefined;
1147
+ autoFocus?: boolean | undefined;
1148
+ onValueChange?: any;
1149
+ onBlur?: any;
1150
+ onFocus?: any;
937
1151
  min?: number | undefined;
938
1152
  max?: number | undefined;
939
1153
  step?: number | undefined;
@@ -955,16 +1169,16 @@ declare const dataListPropsSchema: z.ZodObject<{
955
1169
  list: any[] | null;
956
1170
  loading: boolean;
957
1171
  skeletonCount: number;
958
- className?: string | undefined;
959
1172
  children?: any;
1173
+ className?: string | undefined;
960
1174
  loadingElement?: any;
961
1175
  noDataMessage?: any;
962
1176
  errorFallback?: any;
963
1177
  skeletonElement?: any;
964
1178
  }, {
965
1179
  list: any[] | null;
966
- className?: string | undefined;
967
1180
  children?: any;
1181
+ className?: string | undefined;
968
1182
  loading?: boolean | undefined;
969
1183
  loadingElement?: any;
970
1184
  noDataMessage?: any;
@@ -1006,6 +1220,7 @@ declare const modalTemplatePropsSchema: z.ZodObject<{
1006
1220
  }>>;
1007
1221
  enableDrag: z.ZodDefault<z.ZodBoolean>;
1008
1222
  dragPersistKey: z.ZodOptional<z.ZodString>;
1223
+ close: z.ZodAny;
1009
1224
  children: z.ZodAny;
1010
1225
  className: z.ZodOptional<z.ZodString>;
1011
1226
  innerClassName: z.ZodOptional<z.ZodString>;
@@ -1020,8 +1235,8 @@ declare const modalTemplatePropsSchema: z.ZodObject<{
1020
1235
  hideHeader: boolean;
1021
1236
  hideFooter: boolean;
1022
1237
  enableDrag: boolean;
1023
- className?: string | undefined;
1024
1238
  children?: any;
1239
+ className?: string | undefined;
1025
1240
  title?: any;
1026
1241
  desc?: any;
1027
1242
  footer?: any;
@@ -1034,14 +1249,15 @@ declare const modalTemplatePropsSchema: z.ZodObject<{
1034
1249
  leaveTimingFunc?: string | undefined;
1035
1250
  } | undefined;
1036
1251
  dragPersistKey?: string | undefined;
1252
+ close?: any;
1037
1253
  innerClassName?: string | undefined;
1038
1254
  bodyClassName?: string | undefined;
1039
1255
  footerClassName?: string | undefined;
1040
1256
  dimClassName?: string | undefined;
1041
1257
  headerClassName?: string | undefined;
1042
1258
  }, {
1043
- className?: string | undefined;
1044
1259
  children?: any;
1260
+ className?: string | undefined;
1045
1261
  title?: any;
1046
1262
  desc?: any;
1047
1263
  layout?: "default" | "bottom-sheet" | "slide-left" | "slide-right" | "full-page" | "full-page-reverse" | "draggable" | undefined;
@@ -1060,6 +1276,7 @@ declare const modalTemplatePropsSchema: z.ZodObject<{
1060
1276
  } | undefined;
1061
1277
  enableDrag?: boolean | undefined;
1062
1278
  dragPersistKey?: string | undefined;
1279
+ close?: any;
1063
1280
  innerClassName?: string | undefined;
1064
1281
  bodyClassName?: string | undefined;
1065
1282
  footerClassName?: string | undefined;
@@ -1069,12 +1286,80 @@ declare const modalTemplatePropsSchema: z.ZodObject<{
1069
1286
  declare const modalCallSchema: z.ZodObject<{
1070
1287
  component: z.ZodAny;
1071
1288
  props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1289
+ id: z.ZodOptional<z.ZodString>;
1290
+ layout: z.ZodOptional<z.ZodEnum<["default", "bottom-sheet", "slide-left", "slide-right", "full-page", "full-page-reverse", "draggable"]>>;
1291
+ animation: z.ZodOptional<z.ZodObject<{
1292
+ name: z.ZodOptional<z.ZodString>;
1293
+ mobile: z.ZodOptional<z.ZodString>;
1294
+ delay: z.ZodOptional<z.ZodNumber>;
1295
+ duration: z.ZodOptional<z.ZodNumber>;
1296
+ timingFunc: z.ZodOptional<z.ZodString>;
1297
+ leaveTimingFunc: z.ZodOptional<z.ZodString>;
1298
+ }, "strip", z.ZodTypeAny, {
1299
+ name?: string | undefined;
1300
+ duration?: number | undefined;
1301
+ delay?: number | undefined;
1302
+ mobile?: string | undefined;
1303
+ timingFunc?: string | undefined;
1304
+ leaveTimingFunc?: string | undefined;
1305
+ }, {
1306
+ name?: string | undefined;
1307
+ duration?: number | undefined;
1308
+ delay?: number | undefined;
1309
+ mobile?: string | undefined;
1310
+ timingFunc?: string | undefined;
1311
+ leaveTimingFunc?: string | undefined;
1312
+ }>>;
1313
+ scrollEnable: z.ZodOptional<z.ZodBoolean>;
1314
+ isToggle: z.ZodOptional<z.ZodBoolean>;
1315
+ isAlone: z.ZodOptional<z.ZodBoolean>;
1316
+ duplicateCheck: z.ZodOptional<z.ZodBoolean>;
1317
+ disableEscapeKeyPress: z.ZodOptional<z.ZodBoolean>;
1318
+ componentName: z.ZodOptional<z.ZodString>;
1319
+ onOpen: z.ZodOptional<z.ZodAny>;
1320
+ onClose: z.ZodOptional<z.ZodAny>;
1072
1321
  }, "strip", z.ZodTypeAny, {
1322
+ id?: string | undefined;
1323
+ onClose?: any;
1324
+ layout?: "default" | "bottom-sheet" | "slide-left" | "slide-right" | "full-page" | "full-page-reverse" | "draggable" | undefined;
1325
+ animation?: {
1326
+ name?: string | undefined;
1327
+ duration?: number | undefined;
1328
+ delay?: number | undefined;
1329
+ mobile?: string | undefined;
1330
+ timingFunc?: string | undefined;
1331
+ leaveTimingFunc?: string | undefined;
1332
+ } | undefined;
1073
1333
  component?: any;
1074
1334
  props?: Record<string, any> | undefined;
1335
+ scrollEnable?: boolean | undefined;
1336
+ isToggle?: boolean | undefined;
1337
+ isAlone?: boolean | undefined;
1338
+ duplicateCheck?: boolean | undefined;
1339
+ disableEscapeKeyPress?: boolean | undefined;
1340
+ componentName?: string | undefined;
1341
+ onOpen?: any;
1075
1342
  }, {
1343
+ id?: string | undefined;
1344
+ onClose?: any;
1345
+ layout?: "default" | "bottom-sheet" | "slide-left" | "slide-right" | "full-page" | "full-page-reverse" | "draggable" | undefined;
1346
+ animation?: {
1347
+ name?: string | undefined;
1348
+ duration?: number | undefined;
1349
+ delay?: number | undefined;
1350
+ mobile?: string | undefined;
1351
+ timingFunc?: string | undefined;
1352
+ leaveTimingFunc?: string | undefined;
1353
+ } | undefined;
1076
1354
  component?: any;
1077
1355
  props?: Record<string, any> | undefined;
1356
+ scrollEnable?: boolean | undefined;
1357
+ isToggle?: boolean | undefined;
1358
+ isAlone?: boolean | undefined;
1359
+ duplicateCheck?: boolean | undefined;
1360
+ disableEscapeKeyPress?: boolean | undefined;
1361
+ componentName?: string | undefined;
1362
+ onOpen?: any;
1078
1363
  }>;
1079
1364
 
1080
1365
  declare const errorBoundaryPropsSchema: z.ZodObject<{
@@ -1155,8 +1440,8 @@ declare const tablePropsSchema: z.ZodObject<{
1155
1440
  list: any[] | null;
1156
1441
  skeletonCount: number;
1157
1442
  loadingType: "loading" | "skeleton";
1158
- className?: string | undefined;
1159
1443
  children?: any;
1444
+ className?: string | undefined;
1160
1445
  loading?: boolean | undefined;
1161
1446
  loadingElement?: any;
1162
1447
  hideThead?: boolean | undefined;
@@ -1167,8 +1452,8 @@ declare const tablePropsSchema: z.ZodObject<{
1167
1452
  theadClassName?: string | undefined;
1168
1453
  }, {
1169
1454
  list: any[] | null;
1170
- className?: string | undefined;
1171
1455
  children?: any;
1456
+ className?: string | undefined;
1172
1457
  loading?: boolean | undefined;
1173
1458
  loadingElement?: any;
1174
1459
  skeletonCount?: number | undefined;
@@ -1187,14 +1472,14 @@ declare const tableRowPropsSchema: z.ZodObject<{
1187
1472
  onClick: z.ZodOptional<z.ZodAny>;
1188
1473
  }, "strip", z.ZodTypeAny, {
1189
1474
  variant: "default" | "accent";
1190
- className?: string | undefined;
1191
1475
  children?: any;
1192
1476
  onClick?: any;
1477
+ className?: string | undefined;
1193
1478
  }, {
1194
1479
  variant?: "default" | "accent" | undefined;
1195
- className?: string | undefined;
1196
1480
  children?: any;
1197
1481
  onClick?: any;
1482
+ className?: string | undefined;
1198
1483
  }>;
1199
1484
  declare const tdColumnPropsSchema: z.ZodObject<{
1200
1485
  label: z.ZodOptional<z.ZodAny>;
@@ -1218,9 +1503,9 @@ declare const tdColumnPropsSchema: z.ZodObject<{
1218
1503
  fieldId: string | null;
1219
1504
  textOverflow: "auto" | "truncate" | "wrap" | "break-all";
1220
1505
  size?: string | number | undefined;
1506
+ children?: any;
1221
1507
  className?: string | undefined;
1222
1508
  label?: any;
1223
- children?: any;
1224
1509
  highlightKey?: string | null | undefined;
1225
1510
  colSpan?: number | undefined;
1226
1511
  rowSpan?: number | undefined;
@@ -1233,9 +1518,9 @@ declare const tdColumnPropsSchema: z.ZodObject<{
1233
1518
  }, {
1234
1519
  fieldId: string | null;
1235
1520
  size?: string | number | undefined;
1521
+ children?: any;
1236
1522
  className?: string | undefined;
1237
1523
  label?: any;
1238
- children?: any;
1239
1524
  align?: "right" | "left" | "center" | undefined;
1240
1525
  textOverflow?: "auto" | "truncate" | "wrap" | "break-all" | undefined;
1241
1526
  highlightKey?: string | null | undefined;
@@ -1249,15 +1534,94 @@ declare const tdColumnPropsSchema: z.ZodObject<{
1249
1534
  handleClickSort?: any;
1250
1535
  }>;
1251
1536
 
1537
+ declare const toastOptionsSchema: z.ZodObject<{
1538
+ description: z.ZodOptional<z.ZodAny>;
1539
+ duration: z.ZodOptional<z.ZodNumber>;
1540
+ icon: z.ZodOptional<z.ZodAny>;
1541
+ action: z.ZodOptional<z.ZodAny>;
1542
+ cancel: z.ZodOptional<z.ZodAny>;
1543
+ closeButton: z.ZodOptional<z.ZodBoolean>;
1544
+ dismissible: z.ZodOptional<z.ZodBoolean>;
1545
+ richColors: z.ZodOptional<z.ZodBoolean>;
1546
+ invert: z.ZodOptional<z.ZodBoolean>;
1547
+ position: z.ZodOptional<z.ZodEnum<["top-left", "top-center", "top-right", "bottom-left", "bottom-center", "bottom-right"]>>;
1548
+ onDismiss: z.ZodOptional<z.ZodAny>;
1549
+ onAutoClose: z.ZodOptional<z.ZodAny>;
1550
+ className: z.ZodOptional<z.ZodString>;
1551
+ style: z.ZodOptional<z.ZodAny>;
1552
+ unstyled: z.ZodOptional<z.ZodBoolean>;
1553
+ id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
1554
+ }, "strip", z.ZodTypeAny, {
1555
+ style?: any;
1556
+ className?: string | undefined;
1557
+ description?: any;
1558
+ id?: string | number | undefined;
1559
+ dismissible?: boolean | undefined;
1560
+ duration?: number | undefined;
1561
+ icon?: any;
1562
+ action?: any;
1563
+ cancel?: any;
1564
+ closeButton?: boolean | undefined;
1565
+ richColors?: boolean | undefined;
1566
+ invert?: boolean | undefined;
1567
+ position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | undefined;
1568
+ onDismiss?: any;
1569
+ onAutoClose?: any;
1570
+ unstyled?: boolean | undefined;
1571
+ }, {
1572
+ style?: any;
1573
+ className?: string | undefined;
1574
+ description?: any;
1575
+ id?: string | number | undefined;
1576
+ dismissible?: boolean | undefined;
1577
+ duration?: number | undefined;
1578
+ icon?: any;
1579
+ action?: any;
1580
+ cancel?: any;
1581
+ closeButton?: boolean | undefined;
1582
+ richColors?: boolean | undefined;
1583
+ invert?: boolean | undefined;
1584
+ position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | undefined;
1585
+ onDismiss?: any;
1586
+ onAutoClose?: any;
1587
+ unstyled?: boolean | undefined;
1588
+ }>;
1252
1589
  declare const toasterPropsSchema: z.ZodObject<{
1253
1590
  position: z.ZodDefault<z.ZodEnum<["top-left", "top-center", "top-right", "bottom-left", "bottom-center", "bottom-right"]>>;
1254
1591
  unstyled: z.ZodDefault<z.ZodBoolean>;
1592
+ theme: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
1593
+ richColors: z.ZodOptional<z.ZodBoolean>;
1594
+ expand: z.ZodOptional<z.ZodBoolean>;
1595
+ duration: z.ZodOptional<z.ZodNumber>;
1596
+ visibleToasts: z.ZodOptional<z.ZodNumber>;
1597
+ closeButton: z.ZodOptional<z.ZodBoolean>;
1598
+ gap: z.ZodOptional<z.ZodNumber>;
1599
+ offset: z.ZodOptional<z.ZodAny>;
1600
+ dir: z.ZodOptional<z.ZodEnum<["ltr", "rtl", "auto"]>>;
1255
1601
  }, "strip", z.ZodTypeAny, {
1256
1602
  position: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
1257
1603
  unstyled: boolean;
1604
+ duration?: number | undefined;
1605
+ gap?: number | undefined;
1606
+ closeButton?: boolean | undefined;
1607
+ richColors?: boolean | undefined;
1608
+ theme?: "dark" | "light" | "system" | undefined;
1609
+ expand?: boolean | undefined;
1610
+ visibleToasts?: number | undefined;
1611
+ offset?: any;
1612
+ dir?: "auto" | "ltr" | "rtl" | undefined;
1258
1613
  }, {
1614
+ duration?: number | undefined;
1615
+ gap?: number | undefined;
1616
+ closeButton?: boolean | undefined;
1617
+ richColors?: boolean | undefined;
1259
1618
  position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right" | undefined;
1260
1619
  unstyled?: boolean | undefined;
1620
+ theme?: "dark" | "light" | "system" | undefined;
1621
+ expand?: boolean | undefined;
1622
+ visibleToasts?: number | undefined;
1623
+ offset?: any;
1624
+ dir?: "auto" | "ltr" | "rtl" | undefined;
1261
1625
  }>;
1262
1626
 
1263
- export { accordionPropsSchema, avatarPropsSchema, buttonPropsSchema, carouselButtonPropsSchema, carouselDotsPropsSchema, carouselPropsSchema, carouselSlidePropsSchema, checkBoxPropsSchema, chipPropsSchema, clientOnlyPropsSchema, countdownPropsSchema, counterPropsSchema, dataListPropsSchema, dividerPropsSchema, drawerContentPropsSchema, drawerPropsSchema, ellipsisPropsSchema, errorBoundaryPropsSchema, infiniteScrollPropsSchema, marqueePropsSchema, modalCallSchema, modalTemplatePropsSchema, numberInputPropsSchema, paginationPropsSchema, popoverPropsSchema, radioGroupPropsSchema, radioItemPropsSchema, selectItemPropsSchema, selectPropsSchema, skeletonPropsSchema, spinnerPropsSchema, switchPropsSchema, tabPropsSchema, tablePropsSchema, tableRowPropsSchema, tdColumnPropsSchema, textAreaPropsSchema, textInputPropsSchema, themeProviderPropsSchema, toasterPropsSchema, tooltipPropsSchema, virtualGridPropsSchema, virtualListPropsSchema };
1627
+ export { accordionPropsSchema, avatarPropsSchema, buttonPropsSchema, carouselButtonPropsSchema, carouselDotsPropsSchema, carouselPropsSchema, carouselSlidePropsSchema, checkBoxPropsSchema, chipPropsSchema, clientOnlyPropsSchema, countdownPropsSchema, counterPropsSchema, dataListPropsSchema, dividerPropsSchema, drawerClosePropsSchema, drawerContentPropsSchema, drawerDescriptionPropsSchema, drawerPropsSchema, drawerTitlePropsSchema, drawerTriggerPropsSchema, ellipsisPropsSchema, errorBoundaryPropsSchema, infiniteScrollPropsSchema, marqueePropsSchema, modalCallSchema, modalTemplatePropsSchema, numberInputPropsSchema, paginationPropsSchema, popoverPropsSchema, radioGroupPropsSchema, radioItemPropsSchema, selectItemPropsSchema, selectPropsSchema, skeletonPropsSchema, spinnerPropsSchema, switchPropsSchema, tabPropsSchema, tablePropsSchema, tableRowPropsSchema, tdColumnPropsSchema, textAreaPropsSchema, textInputPropsSchema, themeProviderPropsSchema, toastOptionsSchema, toasterPropsSchema, tooltipPropsSchema, virtualGridPropsSchema, virtualListPropsSchema };