@discourser/design-system 0.11.0 → 0.13.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.
Files changed (54) hide show
  1. package/dist/{chunk-GUJTU4IH.js → chunk-BQAXPMOR.js} +12 -8
  2. package/dist/chunk-BQAXPMOR.js.map +1 -0
  3. package/dist/{chunk-X4PNKWSA.cjs → chunk-MIBEMJNS.cjs} +12 -8
  4. package/dist/chunk-MIBEMJNS.cjs.map +1 -0
  5. package/dist/{chunk-ESTQ62GZ.cjs → chunk-XSX6TKJZ.cjs} +211 -3
  6. package/dist/chunk-XSX6TKJZ.cjs.map +1 -0
  7. package/dist/{chunk-GMAXQBON.js → chunk-ZNAYN5UV.js} +211 -3
  8. package/dist/chunk-ZNAYN5UV.js.map +1 -0
  9. package/dist/components/Stepper/Stepper.d.ts +5 -1
  10. package/dist/components/Stepper/Stepper.d.ts.map +1 -1
  11. package/dist/components/index.cjs +33 -33
  12. package/dist/components/index.js +1 -1
  13. package/dist/index.cjs +37 -638
  14. package/dist/index.cjs.map +1 -1
  15. package/dist/index.d.ts +0 -1
  16. package/dist/index.d.ts.map +1 -1
  17. package/dist/index.js +3 -598
  18. package/dist/index.js.map +1 -1
  19. package/dist/preset/index.cjs +2 -2
  20. package/dist/preset/index.d.ts.map +1 -1
  21. package/dist/preset/index.js +1 -1
  22. package/dist/{recipes/stepper.recipe.d.ts → preset/recipes/stepper.d.ts} +2 -2
  23. package/dist/preset/recipes/stepper.d.ts.map +1 -0
  24. package/package.json +7 -2
  25. package/src/components/Stepper/Stepper.tsx +12 -2
  26. package/src/index.ts +0 -3
  27. package/src/preset/index.ts +6 -0
  28. package/src/{recipes/stepper.recipe.ts → preset/recipes/stepper.ts} +16 -2
  29. package/dist/chunk-ESTQ62GZ.cjs.map +0 -1
  30. package/dist/chunk-GMAXQBON.js.map +0 -1
  31. package/dist/chunk-GUJTU4IH.js.map +0 -1
  32. package/dist/chunk-X4PNKWSA.cjs.map +0 -1
  33. package/dist/recipes/button.recipe.d.ts +0 -2
  34. package/dist/recipes/button.recipe.d.ts.map +0 -1
  35. package/dist/recipes/card.recipe.d.ts +0 -2
  36. package/dist/recipes/card.recipe.d.ts.map +0 -1
  37. package/dist/recipes/dialog.recipe.d.ts +0 -2
  38. package/dist/recipes/dialog.recipe.d.ts.map +0 -1
  39. package/dist/recipes/icon-button.recipe.d.ts +0 -2
  40. package/dist/recipes/icon-button.recipe.d.ts.map +0 -1
  41. package/dist/recipes/index.d.ts +0 -7
  42. package/dist/recipes/index.d.ts.map +0 -1
  43. package/dist/recipes/input.recipe.d.ts +0 -2
  44. package/dist/recipes/input.recipe.d.ts.map +0 -1
  45. package/dist/recipes/stepper.recipe.d.ts.map +0 -1
  46. package/dist/recipes/switch.recipe.d.ts +0 -2
  47. package/dist/recipes/switch.recipe.d.ts.map +0 -1
  48. package/src/recipes/button.recipe.ts +0 -120
  49. package/src/recipes/card.recipe.ts +0 -50
  50. package/src/recipes/dialog.recipe.ts +0 -130
  51. package/src/recipes/icon-button.recipe.ts +0 -96
  52. package/src/recipes/index.ts +0 -6
  53. package/src/recipes/input.recipe.ts +0 -93
  54. package/src/recipes/switch.recipe.ts +0 -117
package/dist/index.cjs CHANGED
@@ -1,755 +1,154 @@
1
1
  'use strict';
2
2
 
3
- var chunkESTQ62GZ_cjs = require('./chunk-ESTQ62GZ.cjs');
4
- var chunkX4PNKWSA_cjs = require('./chunk-X4PNKWSA.cjs');
3
+ var chunkXSX6TKJZ_cjs = require('./chunk-XSX6TKJZ.cjs');
4
+ var chunkMIBEMJNS_cjs = require('./chunk-MIBEMJNS.cjs');
5
5
  require('./chunk-EARF7VDF.cjs');
6
- var dev = require('@pandacss/dev');
7
6
  var clsx = require('clsx');
8
7
 
9
- var buttonRecipe = dev.defineRecipe({
10
- className: "button",
11
- description: "Material Design 3 button component",
12
- base: {
13
- display: "inline-flex",
14
- alignItems: "center",
15
- justifyContent: "center",
16
- gap: "sm",
17
- fontFamily: "body",
18
- fontWeight: "500",
19
- borderRadius: "full",
20
- cursor: "pointer",
21
- transition: "all",
22
- transitionDuration: "fast",
23
- transitionTimingFunction: "standard",
24
- outline: "none",
25
- border: "none",
26
- textDecoration: "none",
27
- _disabled: {
28
- opacity: 0.38,
29
- cursor: "not-allowed",
30
- pointerEvents: "none"
31
- },
32
- _focusVisible: {
33
- outline: "2px solid",
34
- outlineColor: "primary",
35
- outlineOffset: "2px"
36
- }
37
- },
38
- variants: {
39
- variant: {
40
- filled: {
41
- bg: "primary",
42
- color: "onPrimary",
43
- _hover: {
44
- opacity: 0.92,
45
- shadow: "level1"
46
- },
47
- _active: {
48
- opacity: 0.88
49
- }
50
- },
51
- outlined: {
52
- bg: "transparent",
53
- color: "primary",
54
- borderWidth: "1px",
55
- borderStyle: "solid",
56
- borderColor: "outline",
57
- _hover: {
58
- bg: "primary",
59
- bgOpacity: 0.08
60
- },
61
- _active: {
62
- bg: "primary",
63
- bgOpacity: 0.12
64
- }
65
- },
66
- text: {
67
- bg: "transparent",
68
- color: "primary",
69
- _hover: {
70
- bg: "primary",
71
- bgOpacity: 0.08
72
- },
73
- _active: {
74
- bg: "primary",
75
- bgOpacity: 0.12
76
- }
77
- },
78
- elevated: {
79
- bg: "surfaceContainerLow",
80
- color: "primary",
81
- shadow: "level1",
82
- _hover: {
83
- shadow: "level2",
84
- bg: "surfaceContainerLow"
85
- },
86
- _active: {
87
- shadow: "level1"
88
- }
89
- },
90
- tonal: {
91
- bg: "secondaryContainer",
92
- color: "onSecondaryContainer",
93
- _hover: {
94
- shadow: "level1"
95
- },
96
- _active: {
97
- shadow: "none"
98
- }
99
- }
100
- },
101
- size: {
102
- sm: {
103
- height: "32px",
104
- px: "md",
105
- fontSize: "labelMedium",
106
- lineHeight: "labelMedium"
107
- },
108
- md: {
109
- height: "40px",
110
- px: "lg",
111
- fontSize: "labelLarge",
112
- lineHeight: "labelLarge"
113
- },
114
- lg: {
115
- height: "48px",
116
- px: "xl",
117
- fontSize: "labelLarge",
118
- lineHeight: "labelLarge"
119
- }
120
- }
121
- },
122
- defaultVariants: {
123
- variant: "filled",
124
- size: "md"
125
- }
126
- });
127
- var cardRecipe = dev.defineRecipe({
128
- className: "card",
129
- description: "Material Design 3 card component",
130
- base: {
131
- display: "flex",
132
- flexDirection: "column",
133
- borderRadius: "medium",
134
- overflow: "hidden",
135
- transition: "all",
136
- transitionDuration: "fast",
137
- transitionTimingFunction: "standard"
138
- },
139
- variants: {
140
- variant: {
141
- elevated: {
142
- bg: "surfaceContainerLow",
143
- shadow: "level1",
144
- _hover: {
145
- shadow: "level2"
146
- }
147
- },
148
- filled: {
149
- bg: "surfaceContainerHighest"
150
- },
151
- outlined: {
152
- bg: "surface",
153
- borderWidth: "1px",
154
- borderStyle: "solid",
155
- borderColor: "outlineVariant"
156
- }
157
- },
158
- interactive: {
159
- true: {
160
- cursor: "pointer",
161
- _hover: {
162
- opacity: 0.96
163
- },
164
- _active: {
165
- opacity: 0.92
166
- }
167
- }
168
- }
169
- },
170
- defaultVariants: {
171
- variant: "elevated",
172
- interactive: false
173
- }
174
- });
175
- var iconButtonRecipe = dev.defineRecipe({
176
- className: "icon-button",
177
- description: "Material Design 3 icon button component",
178
- base: {
179
- display: "inline-flex",
180
- alignItems: "center",
181
- justifyContent: "center",
182
- borderRadius: "full",
183
- cursor: "pointer",
184
- transition: "all",
185
- transitionDuration: "fast",
186
- transitionTimingFunction: "standard",
187
- outline: "none",
188
- border: "none",
189
- p: "0",
190
- _disabled: {
191
- opacity: 0.38,
192
- cursor: "not-allowed",
193
- pointerEvents: "none"
194
- },
195
- _focusVisible: {
196
- outline: "2px solid",
197
- outlineColor: "primary",
198
- outlineOffset: "2px"
199
- }
200
- },
201
- variants: {
202
- variant: {
203
- standard: {
204
- bg: "transparent",
205
- color: "onSurfaceVariant",
206
- _hover: {
207
- bg: "onSurfaceVariant",
208
- bgOpacity: 0.08
209
- }
210
- },
211
- filled: {
212
- bg: "primary",
213
- color: "onPrimary",
214
- _hover: {
215
- opacity: 0.92
216
- }
217
- },
218
- tonal: {
219
- bg: "secondaryContainer",
220
- color: "onSecondaryContainer",
221
- _hover: {
222
- opacity: 0.92
223
- }
224
- },
225
- outlined: {
226
- bg: "transparent",
227
- color: "onSurfaceVariant",
228
- borderWidth: "1px",
229
- borderStyle: "solid",
230
- borderColor: "outline",
231
- _hover: {
232
- bg: "onSurfaceVariant",
233
- bgOpacity: 0.08
234
- }
235
- }
236
- },
237
- size: {
238
- sm: {
239
- width: "32px",
240
- height: "32px",
241
- "& svg": {
242
- width: "18px",
243
- height: "18px"
244
- }
245
- },
246
- md: {
247
- width: "40px",
248
- height: "40px",
249
- "& svg": {
250
- width: "24px",
251
- height: "24px"
252
- }
253
- },
254
- lg: {
255
- width: "48px",
256
- height: "48px",
257
- "& svg": {
258
- width: "24px",
259
- height: "24px"
260
- }
261
- }
262
- }
263
- },
264
- defaultVariants: {
265
- variant: "standard",
266
- size: "md"
267
- }
268
- });
269
- var inputRecipe = dev.defineRecipe({
270
- className: "input",
271
- description: "Material Design 3 text field component",
272
- base: {
273
- width: "100%",
274
- fontFamily: "body",
275
- fontSize: "bodyLarge",
276
- lineHeight: "bodyLarge",
277
- color: "onSurface",
278
- bg: "transparent",
279
- borderRadius: "extraSmall",
280
- px: "md",
281
- transition: "all",
282
- transitionDuration: "fast",
283
- outline: "none",
284
- _placeholder: {
285
- color: "onSurfaceVariant",
286
- opacity: 0.6
287
- },
288
- _focus: {
289
- outline: "none"
290
- },
291
- _disabled: {
292
- opacity: 0.38,
293
- cursor: "not-allowed"
294
- }
295
- },
296
- variants: {
297
- variant: {
298
- filled: {
299
- bg: "surfaceContainerHighest",
300
- borderBottomWidth: "1px",
301
- borderBottomStyle: "solid",
302
- borderBottomColor: "onSurfaceVariant",
303
- borderTopLeftRadius: "extraSmall",
304
- borderTopRightRadius: "extraSmall",
305
- borderBottomLeftRadius: "0",
306
- borderBottomRightRadius: "0",
307
- _hover: {
308
- bg: "surfaceContainerHigh"
309
- },
310
- _focus: {
311
- borderBottomWidth: "2px",
312
- borderBottomColor: "primary"
313
- }
314
- },
315
- outlined: {
316
- bg: "transparent",
317
- borderWidth: "1px",
318
- borderStyle: "solid",
319
- borderColor: "outline",
320
- _hover: {
321
- borderColor: "onSurface"
322
- },
323
- _focus: {
324
- borderWidth: "2px",
325
- borderColor: "primary"
326
- }
327
- }
328
- },
329
- size: {
330
- sm: {
331
- height: "40px",
332
- fontSize: "bodySmall",
333
- lineHeight: "bodySmall"
334
- },
335
- md: {
336
- height: "56px",
337
- fontSize: "bodyLarge",
338
- lineHeight: "bodyLarge"
339
- }
340
- },
341
- state: {
342
- error: {
343
- borderColor: "error",
344
- _focus: {
345
- borderColor: "error"
346
- }
347
- },
348
- disabled: {
349
- opacity: 0.38,
350
- cursor: "not-allowed",
351
- pointerEvents: "none"
352
- }
353
- }
354
- },
355
- defaultVariants: {
356
- variant: "outlined",
357
- size: "md"
358
- }
359
- });
360
- var dialogRecipe = dev.defineSlotRecipe({
361
- className: "dialog",
362
- description: "Material Design 3 dialog component",
363
- slots: ["backdrop", "positioner", "content", "title", "description", "closeTrigger"],
364
- base: {
365
- backdrop: {
366
- position: "fixed",
367
- inset: "0",
368
- bg: "scrim",
369
- opacity: 0.4,
370
- zIndex: "modal",
371
- animation: "fadeIn",
372
- _open: {
373
- animation: "fadeIn"
374
- },
375
- _closed: {
376
- animation: "fadeOut"
377
- }
378
- },
379
- positioner: {
380
- position: "fixed",
381
- inset: "0",
382
- display: "flex",
383
- alignItems: "center",
384
- justifyContent: "center",
385
- zIndex: "modal",
386
- p: "lg"
387
- },
388
- content: {
389
- position: "relative",
390
- bg: "surfaceContainerHigh",
391
- color: "onSurface",
392
- borderRadius: "extraLarge",
393
- boxShadow: "level3",
394
- display: "flex",
395
- flexDirection: "column",
396
- maxWidth: "90vw",
397
- maxHeight: "90vh",
398
- overflow: "hidden",
399
- animation: "scaleIn",
400
- _open: {
401
- animation: "scaleIn"
402
- },
403
- _closed: {
404
- animation: "scaleOut"
405
- }
406
- },
407
- title: {
408
- fontFamily: "headline",
409
- fontSize: "headlineSmall",
410
- fontWeight: "regular",
411
- color: "onSurface",
412
- px: "xl",
413
- pt: "xl",
414
- pb: "md"
415
- },
416
- description: {
417
- fontFamily: "body",
418
- fontSize: "bodyMedium",
419
- color: "onSurfaceVariant",
420
- px: "xl",
421
- pb: "xl",
422
- flex: "1",
423
- overflow: "auto"
424
- },
425
- closeTrigger: {
426
- position: "absolute",
427
- top: "md",
428
- right: "md",
429
- display: "flex",
430
- alignItems: "center",
431
- justifyContent: "center",
432
- width: "40px",
433
- height: "40px",
434
- borderRadius: "full",
435
- cursor: "pointer",
436
- color: "onSurfaceVariant",
437
- bg: "transparent",
438
- border: "none",
439
- transition: "all",
440
- transitionDuration: "fast",
441
- _hover: {
442
- bg: "surfaceContainerHighest"
443
- },
444
- _focus: {
445
- outline: "none",
446
- bg: "surfaceContainerHighest"
447
- }
448
- }
449
- },
450
- variants: {
451
- size: {
452
- sm: {
453
- content: {
454
- width: "280px",
455
- minHeight: "140px"
456
- }
457
- },
458
- md: {
459
- content: {
460
- width: "560px",
461
- minHeight: "200px"
462
- }
463
- },
464
- lg: {
465
- content: {
466
- width: "800px",
467
- minHeight: "300px"
468
- }
469
- },
470
- fullscreen: {
471
- content: {
472
- width: "100vw",
473
- height: "100vh",
474
- maxWidth: "100vw",
475
- maxHeight: "100vh",
476
- borderRadius: "none"
477
- },
478
- positioner: {
479
- p: "0"
480
- }
481
- }
482
- }
483
- },
484
- defaultVariants: {
485
- size: "md"
486
- }
487
- });
488
- var switchRecipe = dev.defineSlotRecipe({
489
- className: "switchControl",
490
- description: "Material Design 3 switch component",
491
- slots: ["root", "control", "thumb", "label"],
492
- base: {
493
- root: {
494
- display: "inline-flex",
495
- alignItems: "center",
496
- gap: "sm",
497
- cursor: "pointer",
498
- userSelect: "none",
499
- _disabled: {
500
- cursor: "not-allowed",
501
- opacity: 0.38
502
- }
503
- },
504
- control: {
505
- position: "relative",
506
- display: "inline-flex",
507
- alignItems: "center",
508
- width: "52px",
509
- height: "32px",
510
- borderRadius: "full",
511
- bg: "surfaceContainerHighest",
512
- border: "2px solid",
513
- borderColor: "outline",
514
- transition: "all",
515
- transitionDuration: "fast",
516
- flexShrink: 0,
517
- _checked: {
518
- bg: "primary",
519
- borderColor: "primary"
520
- },
521
- _disabled: {
522
- bg: "surfaceVariant",
523
- borderColor: "onSurface",
524
- opacity: 0.12
525
- }
526
- },
527
- thumb: {
528
- position: "absolute",
529
- left: "4px",
530
- width: "16px",
531
- height: "16px",
532
- borderRadius: "full",
533
- bg: "outline",
534
- transition: "all",
535
- transitionDuration: "fast",
536
- _checked: {
537
- left: "28px",
538
- width: "24px",
539
- height: "24px",
540
- bg: "onPrimary"
541
- },
542
- _disabled: {
543
- bg: "onSurface",
544
- opacity: 0.38
545
- }
546
- },
547
- label: {
548
- fontFamily: "body",
549
- fontSize: "bodyMedium",
550
- color: "onSurface",
551
- userSelect: "none",
552
- _disabled: {
553
- opacity: 0.38
554
- }
555
- }
556
- },
557
- variants: {
558
- size: {
559
- sm: {
560
- control: {
561
- width: "44px",
562
- height: "24px"
563
- },
564
- thumb: {
565
- width: "12px",
566
- height: "12px",
567
- left: "4px",
568
- _checked: {
569
- left: "24px",
570
- width: "16px",
571
- height: "16px"
572
- }
573
- },
574
- label: {
575
- fontSize: "bodySmall"
576
- }
577
- },
578
- md: {
579
- control: {
580
- width: "52px",
581
- height: "32px"
582
- },
583
- thumb: {
584
- width: "16px",
585
- height: "16px",
586
- left: "4px",
587
- _checked: {
588
- left: "28px",
589
- width: "24px",
590
- height: "24px"
591
- }
592
- },
593
- label: {
594
- fontSize: "bodyMedium"
595
- }
596
- }
597
- }
598
- },
599
- defaultVariants: {
600
- size: "md"
601
- }
602
- });
603
8
  function cn(...inputs) {
604
9
  return clsx.clsx(inputs);
605
10
  }
606
11
 
607
12
  Object.defineProperty(exports, "activeLanguage", {
608
13
  enumerable: true,
609
- get: function () { return chunkESTQ62GZ_cjs.material3Language; }
14
+ get: function () { return chunkXSX6TKJZ_cjs.material3Language; }
610
15
  });
611
16
  Object.defineProperty(exports, "discourserPandaPreset", {
612
17
  enumerable: true,
613
- get: function () { return chunkESTQ62GZ_cjs.discourserPandaPreset; }
18
+ get: function () { return chunkXSX6TKJZ_cjs.discourserPandaPreset; }
614
19
  });
615
20
  Object.defineProperty(exports, "transformToPandaTheme", {
616
21
  enumerable: true,
617
- get: function () { return chunkESTQ62GZ_cjs.transformToPandaTheme; }
22
+ get: function () { return chunkXSX6TKJZ_cjs.transformToPandaTheme; }
618
23
  });
619
24
  Object.defineProperty(exports, "AbsoluteCenter", {
620
25
  enumerable: true,
621
- get: function () { return chunkX4PNKWSA_cjs.AbsoluteCenter_exports; }
26
+ get: function () { return chunkMIBEMJNS_cjs.AbsoluteCenter_exports; }
622
27
  });
623
28
  Object.defineProperty(exports, "Accordion", {
624
29
  enumerable: true,
625
- get: function () { return chunkX4PNKWSA_cjs.Accordion_exports; }
30
+ get: function () { return chunkMIBEMJNS_cjs.Accordion_exports; }
626
31
  });
627
32
  Object.defineProperty(exports, "Avatar", {
628
33
  enumerable: true,
629
- get: function () { return chunkX4PNKWSA_cjs.Avatar_exports; }
34
+ get: function () { return chunkMIBEMJNS_cjs.Avatar_exports; }
630
35
  });
631
36
  Object.defineProperty(exports, "Badge", {
632
37
  enumerable: true,
633
- get: function () { return chunkX4PNKWSA_cjs.Badge; }
38
+ get: function () { return chunkMIBEMJNS_cjs.Badge; }
634
39
  });
635
40
  Object.defineProperty(exports, "Button", {
636
41
  enumerable: true,
637
- get: function () { return chunkX4PNKWSA_cjs.Button; }
42
+ get: function () { return chunkMIBEMJNS_cjs.Button; }
638
43
  });
639
44
  Object.defineProperty(exports, "ButtonGroup", {
640
45
  enumerable: true,
641
- get: function () { return chunkX4PNKWSA_cjs.ButtonGroup; }
46
+ get: function () { return chunkMIBEMJNS_cjs.ButtonGroup; }
642
47
  });
643
48
  Object.defineProperty(exports, "Card", {
644
49
  enumerable: true,
645
- get: function () { return chunkX4PNKWSA_cjs.Card_exports; }
50
+ get: function () { return chunkMIBEMJNS_cjs.Card_exports; }
646
51
  });
647
52
  Object.defineProperty(exports, "Checkbox", {
648
53
  enumerable: true,
649
- get: function () { return chunkX4PNKWSA_cjs.Checkbox_exports; }
54
+ get: function () { return chunkMIBEMJNS_cjs.Checkbox_exports; }
650
55
  });
651
56
  Object.defineProperty(exports, "CloseButton", {
652
57
  enumerable: true,
653
- get: function () { return chunkX4PNKWSA_cjs.CloseButton_exports; }
58
+ get: function () { return chunkMIBEMJNS_cjs.CloseButton_exports; }
654
59
  });
655
60
  Object.defineProperty(exports, "Dialog", {
656
61
  enumerable: true,
657
- get: function () { return chunkX4PNKWSA_cjs.Dialog_exports; }
62
+ get: function () { return chunkMIBEMJNS_cjs.Dialog_exports; }
658
63
  });
659
64
  Object.defineProperty(exports, "Drawer", {
660
65
  enumerable: true,
661
- get: function () { return chunkX4PNKWSA_cjs.Drawer_exports; }
66
+ get: function () { return chunkMIBEMJNS_cjs.Drawer_exports; }
662
67
  });
663
68
  Object.defineProperty(exports, "Group", {
664
69
  enumerable: true,
665
- get: function () { return chunkX4PNKWSA_cjs.Group_exports; }
70
+ get: function () { return chunkMIBEMJNS_cjs.Group_exports; }
666
71
  });
667
72
  Object.defineProperty(exports, "Heading", {
668
73
  enumerable: true,
669
- get: function () { return chunkX4PNKWSA_cjs.Heading; }
74
+ get: function () { return chunkMIBEMJNS_cjs.Heading; }
670
75
  });
671
76
  Object.defineProperty(exports, "Icon", {
672
77
  enumerable: true,
673
- get: function () { return chunkX4PNKWSA_cjs.Icon_exports; }
78
+ get: function () { return chunkMIBEMJNS_cjs.Icon_exports; }
674
79
  });
675
80
  Object.defineProperty(exports, "IconButton", {
676
81
  enumerable: true,
677
- get: function () { return chunkX4PNKWSA_cjs.IconButton; }
82
+ get: function () { return chunkMIBEMJNS_cjs.IconButton; }
678
83
  });
679
84
  Object.defineProperty(exports, "Input", {
680
85
  enumerable: true,
681
- get: function () { return chunkX4PNKWSA_cjs.Input; }
86
+ get: function () { return chunkMIBEMJNS_cjs.Input; }
682
87
  });
683
88
  Object.defineProperty(exports, "InputAddon", {
684
89
  enumerable: true,
685
- get: function () { return chunkX4PNKWSA_cjs.InputAddon; }
90
+ get: function () { return chunkMIBEMJNS_cjs.InputAddon; }
686
91
  });
687
92
  Object.defineProperty(exports, "InputGroup", {
688
93
  enumerable: true,
689
- get: function () { return chunkX4PNKWSA_cjs.InputGroup; }
94
+ get: function () { return chunkMIBEMJNS_cjs.InputGroup; }
690
95
  });
691
96
  Object.defineProperty(exports, "Popover", {
692
97
  enumerable: true,
693
- get: function () { return chunkX4PNKWSA_cjs.Popover_exports; }
98
+ get: function () { return chunkMIBEMJNS_cjs.Popover_exports; }
694
99
  });
695
100
  Object.defineProperty(exports, "Progress", {
696
101
  enumerable: true,
697
- get: function () { return chunkX4PNKWSA_cjs.Progress_exports; }
102
+ get: function () { return chunkMIBEMJNS_cjs.Progress_exports; }
698
103
  });
699
104
  Object.defineProperty(exports, "RadioGroup", {
700
105
  enumerable: true,
701
- get: function () { return chunkX4PNKWSA_cjs.RadioGroup_exports; }
106
+ get: function () { return chunkMIBEMJNS_cjs.RadioGroup_exports; }
702
107
  });
703
108
  Object.defineProperty(exports, "Select", {
704
109
  enumerable: true,
705
- get: function () { return chunkX4PNKWSA_cjs.Select_exports; }
110
+ get: function () { return chunkMIBEMJNS_cjs.Select_exports; }
706
111
  });
707
112
  Object.defineProperty(exports, "Skeleton", {
708
113
  enumerable: true,
709
- get: function () { return chunkX4PNKWSA_cjs.Skeleton_exports; }
114
+ get: function () { return chunkMIBEMJNS_cjs.Skeleton_exports; }
710
115
  });
711
116
  Object.defineProperty(exports, "Slider", {
712
117
  enumerable: true,
713
- get: function () { return chunkX4PNKWSA_cjs.Slider_exports; }
118
+ get: function () { return chunkMIBEMJNS_cjs.Slider_exports; }
714
119
  });
715
120
  Object.defineProperty(exports, "Spinner", {
716
121
  enumerable: true,
717
- get: function () { return chunkX4PNKWSA_cjs.Spinner; }
122
+ get: function () { return chunkMIBEMJNS_cjs.Spinner; }
718
123
  });
719
124
  Object.defineProperty(exports, "Stepper", {
720
125
  enumerable: true,
721
- get: function () { return chunkX4PNKWSA_cjs.Stepper; }
126
+ get: function () { return chunkMIBEMJNS_cjs.Stepper; }
722
127
  });
723
128
  Object.defineProperty(exports, "Switch", {
724
129
  enumerable: true,
725
- get: function () { return chunkX4PNKWSA_cjs.Switch_exports; }
130
+ get: function () { return chunkMIBEMJNS_cjs.Switch_exports; }
726
131
  });
727
132
  Object.defineProperty(exports, "Tabs", {
728
133
  enumerable: true,
729
- get: function () { return chunkX4PNKWSA_cjs.Tabs_exports; }
134
+ get: function () { return chunkMIBEMJNS_cjs.Tabs_exports; }
730
135
  });
731
136
  Object.defineProperty(exports, "Textarea", {
732
137
  enumerable: true,
733
- get: function () { return chunkX4PNKWSA_cjs.Textarea; }
138
+ get: function () { return chunkMIBEMJNS_cjs.Textarea; }
734
139
  });
735
140
  Object.defineProperty(exports, "Toaster", {
736
141
  enumerable: true,
737
- get: function () { return chunkX4PNKWSA_cjs.Toaster; }
142
+ get: function () { return chunkMIBEMJNS_cjs.Toaster; }
738
143
  });
739
144
  Object.defineProperty(exports, "Tooltip", {
740
145
  enumerable: true,
741
- get: function () { return chunkX4PNKWSA_cjs.Tooltip_exports; }
146
+ get: function () { return chunkMIBEMJNS_cjs.Tooltip_exports; }
742
147
  });
743
148
  Object.defineProperty(exports, "toaster", {
744
149
  enumerable: true,
745
- get: function () { return chunkX4PNKWSA_cjs.toaster; }
150
+ get: function () { return chunkMIBEMJNS_cjs.toaster; }
746
151
  });
747
- exports.buttonRecipe = buttonRecipe;
748
- exports.cardRecipe = cardRecipe;
749
152
  exports.cn = cn;
750
- exports.dialogRecipe = dialogRecipe;
751
- exports.iconButtonRecipe = iconButtonRecipe;
752
- exports.inputRecipe = inputRecipe;
753
- exports.switchRecipe = switchRecipe;
754
153
  //# sourceMappingURL=index.cjs.map
755
154
  //# sourceMappingURL=index.cjs.map