@nextui-org/theme 2.3.0-beta.9 → 2.3.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 (71) hide show
  1. package/dist/chunk-6CPZ7K75.mjs +444 -0
  2. package/dist/{chunk-IZOPFGDE.mjs → chunk-6KWI4IHE.mjs} +82 -1
  3. package/dist/chunk-AHEUDQZM.mjs +18 -0
  4. package/dist/{chunk-3ANIDDEW.mjs → chunk-IDHWVJY2.mjs} +1 -1
  5. package/dist/{chunk-MXL6JCUG.mjs → chunk-KOCBDPPO.mjs} +29 -6
  6. package/dist/{chunk-K6KPB2U5.mjs → chunk-PTCUE3XA.mjs} +11 -1
  7. package/dist/{chunk-HNRFZTEX.mjs → chunk-TK7HBD3N.mjs} +2 -1
  8. package/dist/{chunk-2TAKWWRG.mjs → chunk-ZZ2VSLD6.mjs} +1 -1
  9. package/dist/components/accordion.mjs +2 -1
  10. package/dist/components/alert.mjs +2 -1
  11. package/dist/components/autocomplete.js +1 -1
  12. package/dist/components/autocomplete.mjs +1 -1
  13. package/dist/components/avatar.mjs +2 -1
  14. package/dist/components/badge.mjs +2 -1
  15. package/dist/components/breadcrumbs.mjs +2 -1
  16. package/dist/components/button.mjs +2 -1
  17. package/dist/components/calendar.mjs +2 -1
  18. package/dist/components/card.mjs +2 -1
  19. package/dist/components/checkbox.mjs +2 -1
  20. package/dist/components/chip.mjs +2 -1
  21. package/dist/components/code.mjs +2 -1
  22. package/dist/components/date-input.d.ts +7 -0
  23. package/dist/components/date-input.js +2 -1
  24. package/dist/components/date-input.mjs +1 -1
  25. package/dist/components/dropdown.mjs +2 -1
  26. package/dist/components/index.d.ts +2 -2
  27. package/dist/components/index.js +480 -12
  28. package/dist/components/index.mjs +17 -14
  29. package/dist/components/input-otp.d.ts +603 -0
  30. package/dist/components/input-otp.js +518 -0
  31. package/dist/components/input-otp.mjs +13 -0
  32. package/dist/components/input.d.ts +21 -7
  33. package/dist/components/input.js +29 -6
  34. package/dist/components/input.mjs +3 -2
  35. package/dist/components/link.mjs +2 -1
  36. package/dist/components/listbox.js +11 -1
  37. package/dist/components/listbox.mjs +3 -2
  38. package/dist/components/menu.d.ts +70 -0
  39. package/dist/components/menu.js +11 -1
  40. package/dist/components/menu.mjs +3 -2
  41. package/dist/components/modal.mjs +2 -1
  42. package/dist/components/navbar.mjs +2 -1
  43. package/dist/components/pagination.mjs +2 -1
  44. package/dist/components/popover.mjs +2 -1
  45. package/dist/components/progress.d.ts +426 -1
  46. package/dist/components/progress.js +82 -0
  47. package/dist/components/progress.mjs +3 -1
  48. package/dist/components/radio.mjs +2 -1
  49. package/dist/components/select.js +1 -1
  50. package/dist/components/select.mjs +3 -2
  51. package/dist/components/slider.mjs +2 -1
  52. package/dist/components/snippet.mjs +2 -1
  53. package/dist/components/table.mjs +2 -1
  54. package/dist/components/tabs.mjs +2 -1
  55. package/dist/components/toggle.mjs +2 -1
  56. package/dist/components/user.mjs +2 -1
  57. package/dist/index.d.ts +3 -2
  58. package/dist/index.js +500 -15
  59. package/dist/index.mjs +20 -14
  60. package/dist/utils/index.d.ts +1 -0
  61. package/dist/utils/index.js +17 -0
  62. package/dist/utils/index.mjs +5 -1
  63. package/dist/utils/merge-classes.d.ts +12 -0
  64. package/dist/utils/merge-classes.js +42 -0
  65. package/dist/utils/merge-classes.mjs +6 -0
  66. package/package.json +2 -2
  67. package/dist/chunk-AUN4SP2F.mjs +0 -89
  68. package/dist/components/circular-progress.d.ts +0 -430
  69. package/dist/components/circular-progress.js +0 -157
  70. package/dist/components/circular-progress.mjs +0 -8
  71. /package/dist/{chunk-IV3K5WDK.mjs → chunk-CWYZ2GEH.mjs} +0 -0
@@ -1,3 +1,4 @@
1
+ import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
1
2
  import * as tailwind_variants from 'tailwind-variants';
2
3
  import { VariantProps } from 'tailwind-variants';
3
4
 
@@ -288,7 +289,431 @@ declare const progress: tailwind_variants.TVReturnType<{
288
289
  }, undefined, {
289
290
  twMerge: true;
290
291
  }, unknown, unknown, undefined>>;
292
+ /**
293
+ * CircularProgress **Tailwind Variants** component
294
+ *
295
+ * @example
296
+ * ```js
297
+ * const {base, svgWrapper, svg, indicator, value, label} = circularProgress({...})
298
+ *
299
+ * <div className={base()} aria-label="progress" role="progressbar" aria-valuenow={value} aria-valuemin={min} aria-valuemax={max}>
300
+ * <div className={svgWrapper()}>
301
+ * <svg className={svg()}>
302
+ * <circle className={track()} />
303
+ * <circle className={indicator()} />
304
+ * </svg>
305
+ * <span className={value()}>{value}</span>
306
+ * </div>
307
+ * <span className={label()}>{label}</span>
308
+ * </div>
309
+ * ```
310
+ */
311
+ declare const circularProgress: tailwind_variants.TVReturnType<{
312
+ color: {
313
+ default: {
314
+ svg: string;
315
+ };
316
+ primary: {
317
+ svg: string;
318
+ };
319
+ secondary: {
320
+ svg: string;
321
+ };
322
+ success: {
323
+ svg: string;
324
+ };
325
+ warning: {
326
+ svg: string;
327
+ };
328
+ danger: {
329
+ svg: string;
330
+ };
331
+ };
332
+ size: {
333
+ sm: {
334
+ svg: string;
335
+ label: string;
336
+ value: string;
337
+ };
338
+ md: {
339
+ svg: string;
340
+ label: string;
341
+ value: string;
342
+ };
343
+ lg: {
344
+ svg: string;
345
+ label: string;
346
+ value: string;
347
+ };
348
+ };
349
+ isIndeterminate: {
350
+ true: {
351
+ svg: string;
352
+ };
353
+ };
354
+ isDisabled: {
355
+ true: {
356
+ base: string;
357
+ };
358
+ };
359
+ disableAnimation: {
360
+ true: {};
361
+ false: {
362
+ indicator: string;
363
+ };
364
+ };
365
+ }, {
366
+ base: string;
367
+ label: string;
368
+ svgWrapper: string;
369
+ svg: string;
370
+ track: string;
371
+ indicator: string;
372
+ value: string;
373
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
374
+ color: {
375
+ default: {
376
+ svg: string;
377
+ };
378
+ primary: {
379
+ svg: string;
380
+ };
381
+ secondary: {
382
+ svg: string;
383
+ };
384
+ success: {
385
+ svg: string;
386
+ };
387
+ warning: {
388
+ svg: string;
389
+ };
390
+ danger: {
391
+ svg: string;
392
+ };
393
+ };
394
+ size: {
395
+ sm: {
396
+ svg: string;
397
+ label: string;
398
+ value: string;
399
+ };
400
+ md: {
401
+ svg: string;
402
+ label: string;
403
+ value: string;
404
+ };
405
+ lg: {
406
+ svg: string;
407
+ label: string;
408
+ value: string;
409
+ };
410
+ };
411
+ isIndeterminate: {
412
+ true: {
413
+ svg: string;
414
+ };
415
+ };
416
+ isDisabled: {
417
+ true: {
418
+ base: string;
419
+ };
420
+ };
421
+ disableAnimation: {
422
+ true: {};
423
+ false: {
424
+ indicator: string;
425
+ };
426
+ };
427
+ }, {
428
+ color: {
429
+ default: {
430
+ svg: string;
431
+ };
432
+ primary: {
433
+ svg: string;
434
+ };
435
+ secondary: {
436
+ svg: string;
437
+ };
438
+ success: {
439
+ svg: string;
440
+ };
441
+ warning: {
442
+ svg: string;
443
+ };
444
+ danger: {
445
+ svg: string;
446
+ };
447
+ };
448
+ size: {
449
+ sm: {
450
+ svg: string;
451
+ label: string;
452
+ value: string;
453
+ };
454
+ md: {
455
+ svg: string;
456
+ label: string;
457
+ value: string;
458
+ };
459
+ lg: {
460
+ svg: string;
461
+ label: string;
462
+ value: string;
463
+ };
464
+ };
465
+ isIndeterminate: {
466
+ true: {
467
+ svg: string;
468
+ };
469
+ };
470
+ isDisabled: {
471
+ true: {
472
+ base: string;
473
+ };
474
+ };
475
+ disableAnimation: {
476
+ true: {};
477
+ false: {
478
+ indicator: string;
479
+ };
480
+ };
481
+ }>, {
482
+ color: {
483
+ default: {
484
+ svg: string;
485
+ };
486
+ primary: {
487
+ svg: string;
488
+ };
489
+ secondary: {
490
+ svg: string;
491
+ };
492
+ success: {
493
+ svg: string;
494
+ };
495
+ warning: {
496
+ svg: string;
497
+ };
498
+ danger: {
499
+ svg: string;
500
+ };
501
+ };
502
+ size: {
503
+ sm: {
504
+ svg: string;
505
+ label: string;
506
+ value: string;
507
+ };
508
+ md: {
509
+ svg: string;
510
+ label: string;
511
+ value: string;
512
+ };
513
+ lg: {
514
+ svg: string;
515
+ label: string;
516
+ value: string;
517
+ };
518
+ };
519
+ isIndeterminate: {
520
+ true: {
521
+ svg: string;
522
+ };
523
+ };
524
+ isDisabled: {
525
+ true: {
526
+ base: string;
527
+ };
528
+ };
529
+ disableAnimation: {
530
+ true: {};
531
+ false: {
532
+ indicator: string;
533
+ };
534
+ };
535
+ }, {
536
+ base: string;
537
+ label: string;
538
+ svgWrapper: string;
539
+ svg: string;
540
+ track: string;
541
+ indicator: string;
542
+ value: string;
543
+ }, tailwind_variants.TVReturnType<{
544
+ color: {
545
+ default: {
546
+ svg: string;
547
+ };
548
+ primary: {
549
+ svg: string;
550
+ };
551
+ secondary: {
552
+ svg: string;
553
+ };
554
+ success: {
555
+ svg: string;
556
+ };
557
+ warning: {
558
+ svg: string;
559
+ };
560
+ danger: {
561
+ svg: string;
562
+ };
563
+ };
564
+ size: {
565
+ sm: {
566
+ svg: string;
567
+ label: string;
568
+ value: string;
569
+ };
570
+ md: {
571
+ svg: string;
572
+ label: string;
573
+ value: string;
574
+ };
575
+ lg: {
576
+ svg: string;
577
+ label: string;
578
+ value: string;
579
+ };
580
+ };
581
+ isIndeterminate: {
582
+ true: {
583
+ svg: string;
584
+ };
585
+ };
586
+ isDisabled: {
587
+ true: {
588
+ base: string;
589
+ };
590
+ };
591
+ disableAnimation: {
592
+ true: {};
593
+ false: {
594
+ indicator: string;
595
+ };
596
+ };
597
+ }, {
598
+ base: string;
599
+ label: string;
600
+ svgWrapper: string;
601
+ svg: string;
602
+ track: string;
603
+ indicator: string;
604
+ value: string;
605
+ }, undefined, tailwind_variants_dist_config.TVConfig<{
606
+ color: {
607
+ default: {
608
+ svg: string;
609
+ };
610
+ primary: {
611
+ svg: string;
612
+ };
613
+ secondary: {
614
+ svg: string;
615
+ };
616
+ success: {
617
+ svg: string;
618
+ };
619
+ warning: {
620
+ svg: string;
621
+ };
622
+ danger: {
623
+ svg: string;
624
+ };
625
+ };
626
+ size: {
627
+ sm: {
628
+ svg: string;
629
+ label: string;
630
+ value: string;
631
+ };
632
+ md: {
633
+ svg: string;
634
+ label: string;
635
+ value: string;
636
+ };
637
+ lg: {
638
+ svg: string;
639
+ label: string;
640
+ value: string;
641
+ };
642
+ };
643
+ isIndeterminate: {
644
+ true: {
645
+ svg: string;
646
+ };
647
+ };
648
+ isDisabled: {
649
+ true: {
650
+ base: string;
651
+ };
652
+ };
653
+ disableAnimation: {
654
+ true: {};
655
+ false: {
656
+ indicator: string;
657
+ };
658
+ };
659
+ }, {
660
+ color: {
661
+ default: {
662
+ svg: string;
663
+ };
664
+ primary: {
665
+ svg: string;
666
+ };
667
+ secondary: {
668
+ svg: string;
669
+ };
670
+ success: {
671
+ svg: string;
672
+ };
673
+ warning: {
674
+ svg: string;
675
+ };
676
+ danger: {
677
+ svg: string;
678
+ };
679
+ };
680
+ size: {
681
+ sm: {
682
+ svg: string;
683
+ label: string;
684
+ value: string;
685
+ };
686
+ md: {
687
+ svg: string;
688
+ label: string;
689
+ value: string;
690
+ };
691
+ lg: {
692
+ svg: string;
693
+ label: string;
694
+ value: string;
695
+ };
696
+ };
697
+ isIndeterminate: {
698
+ true: {
699
+ svg: string;
700
+ };
701
+ };
702
+ isDisabled: {
703
+ true: {
704
+ base: string;
705
+ };
706
+ };
707
+ disableAnimation: {
708
+ true: {};
709
+ false: {
710
+ indicator: string;
711
+ };
712
+ };
713
+ }>, unknown, unknown, undefined>>;
291
714
  type ProgressVariantProps = VariantProps<typeof progress>;
292
715
  type ProgressSlots = keyof ReturnType<typeof progress>;
716
+ type CircularProgressVariantProps = VariantProps<typeof circularProgress>;
717
+ type CircularProgressSlots = keyof ReturnType<typeof circularProgress>;
293
718
 
294
- export { ProgressSlots, ProgressVariantProps, progress };
719
+ export { CircularProgressSlots, CircularProgressVariantProps, ProgressSlots, ProgressVariantProps, circularProgress, progress };
@@ -20,6 +20,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/components/progress.ts
21
21
  var progress_exports = {};
22
22
  __export(progress_exports, {
23
+ circularProgress: () => circularProgress,
23
24
  progress: () => progress
24
25
  });
25
26
  module.exports = __toCommonJS(progress_exports);
@@ -220,7 +221,88 @@ var progress = tv(
220
221
  twMerge: true
221
222
  }
222
223
  );
224
+ var circularProgress = tv({
225
+ slots: {
226
+ base: "flex flex-col justify-center gap-1 max-w-fit items-center",
227
+ label: "",
228
+ svgWrapper: "relative block",
229
+ svg: "z-0 relative overflow-hidden",
230
+ track: "h-full stroke-default-300/50",
231
+ indicator: "h-full stroke-current",
232
+ value: "absolute font-normal inset-0 flex items-center justify-center"
233
+ },
234
+ variants: {
235
+ color: {
236
+ default: {
237
+ svg: "text-default-400"
238
+ },
239
+ primary: {
240
+ svg: "text-primary"
241
+ },
242
+ secondary: {
243
+ svg: "text-secondary"
244
+ },
245
+ success: {
246
+ svg: "text-success"
247
+ },
248
+ warning: {
249
+ svg: "text-warning"
250
+ },
251
+ danger: {
252
+ svg: "text-danger"
253
+ }
254
+ },
255
+ size: {
256
+ sm: {
257
+ svg: "w-8 h-8",
258
+ label: "text-small",
259
+ value: "text-[0.5rem]"
260
+ },
261
+ md: {
262
+ svg: "w-10 h-10",
263
+ label: "text-small",
264
+ value: "text-[0.55rem]"
265
+ },
266
+ lg: {
267
+ svg: "w-12 h-12",
268
+ label: "text-medium",
269
+ value: "text-[0.6rem]"
270
+ }
271
+ },
272
+ isIndeterminate: {
273
+ true: {
274
+ svg: "animate-spinner-ease-spin"
275
+ }
276
+ },
277
+ isDisabled: {
278
+ true: {
279
+ base: "opacity-disabled cursor-not-allowed"
280
+ }
281
+ },
282
+ disableAnimation: {
283
+ true: {},
284
+ false: {
285
+ indicator: "transition-all !duration-500"
286
+ }
287
+ }
288
+ },
289
+ defaultVariants: {
290
+ color: "primary",
291
+ size: "md",
292
+ isDisabled: false
293
+ },
294
+ compoundVariants: [
295
+ {
296
+ disableAnimation: true,
297
+ isIndeterminate: false,
298
+ class: {
299
+ svg: "!transition-none motion-reduce:transition-none"
300
+ }
301
+ }
302
+ ]
303
+ });
223
304
  // Annotate the CommonJS export names for ESM import in node:
224
305
  0 && (module.exports = {
306
+ circularProgress,
225
307
  progress
226
308
  });
@@ -1,8 +1,10 @@
1
1
  import {
2
+ circularProgress,
2
3
  progress
3
- } from "../chunk-IZOPFGDE.mjs";
4
+ } from "../chunk-6KWI4IHE.mjs";
4
5
  import "../chunk-UWE6H66T.mjs";
5
6
  import "../chunk-GIXI35A3.mjs";
6
7
  export {
8
+ circularProgress,
7
9
  progress
8
10
  };
@@ -2,9 +2,10 @@ import {
2
2
  radio,
3
3
  radioGroup
4
4
  } from "../chunk-LVAEW6WR.mjs";
5
- import "../chunk-IV3K5WDK.mjs";
5
+ import "../chunk-CWYZ2GEH.mjs";
6
6
  import "../chunk-GQT3YUX3.mjs";
7
7
  import "../chunk-46U6G7UJ.mjs";
8
+ import "../chunk-AHEUDQZM.mjs";
8
9
  import "../chunk-UWE6H66T.mjs";
9
10
  import "../chunk-GIXI35A3.mjs";
10
11
  import "../chunk-XHQUSKIE.mjs";
@@ -595,7 +595,7 @@ var select = tv({
595
595
  labelPlacement: "inside",
596
596
  size: "lg",
597
597
  class: {
598
- label: "text-small",
598
+ label: "text-medium",
599
599
  trigger: "h-16 min-h-16 py-2.5 gap-0"
600
600
  }
601
601
  },
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  select
3
- } from "../chunk-3ANIDDEW.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
3
+ } from "../chunk-IDHWVJY2.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  slider
3
3
  } from "../chunk-7IYRK3EV.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  snippet
3
3
  } from "../chunk-SC2SILVU.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  table
3
3
  } from "../chunk-2ODFPLXN.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  tabs
3
3
  } from "../chunk-KTTXIYK2.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  toggle
3
3
  } from "../chunk-FJGKW3ZE.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  user
3
3
  } from "../chunk-GMZHMFEU.mjs";
4
- import "../chunk-IV3K5WDK.mjs";
4
+ import "../chunk-CWYZ2GEH.mjs";
5
5
  import "../chunk-GQT3YUX3.mjs";
6
6
  import "../chunk-46U6G7UJ.mjs";
7
+ import "../chunk-AHEUDQZM.mjs";
7
8
  import "../chunk-UWE6H66T.mjs";
8
9
  import "../chunk-GIXI35A3.mjs";
9
10
  import "../chunk-XHQUSKIE.mjs";
package/dist/index.d.ts CHANGED
@@ -15,8 +15,8 @@ export { RadioGroupSlots, RadioSlots, RadioVariantProps, radio, radioGroup } fro
15
15
  export { PaginationSlots, PaginationVariantProps, pagination } from './components/pagination.js';
16
16
  export { ToggleSlots, ToggleVariantProps, toggle } from './components/toggle.js';
17
17
  export { AccordionGroupVariantProps, AccordionItemSlots, AccordionItemVariantProps, accordion, accordionItem } from './components/accordion.js';
18
- export { ProgressSlots, ProgressVariantProps, progress } from './components/progress.js';
19
- export { CircularProgressSlots, CircularProgressVariantProps, circularProgress } from './components/circular-progress.js';
18
+ export { CircularProgressSlots, CircularProgressVariantProps, ProgressSlots, ProgressVariantProps, circularProgress, progress } from './components/progress.js';
19
+ export { InputOtpReturnType, InputOtpSlots, InputOtpVariantProps, inputOtp } from './components/input-otp.js';
20
20
  export { InputSlots, InputVariantProps, input } from './components/input.js';
21
21
  export { DropdownItemSlots, DropdownItemVariantProps, DropdownSectionSlots, DropdownSectionVariantProps, dropdown, dropdownItem, dropdownMenu, dropdownSection } from './components/dropdown.js';
22
22
  export { ImageSlots, ImageVariantProps, image } from './components/image.js';
@@ -43,6 +43,7 @@ export { absoluteFullClasses, baseStyles, collapseAdjacentVariantBorders, dataFo
43
43
  export { SlotsToClasses } from './utils/types.js';
44
44
  export { colorVariants } from './utils/variants.js';
45
45
  export { COMMON_UNITS, twMergeConfig } from './utils/tw-merge-config.js';
46
+ export { mergeClasses } from './utils/merge-classes.js';
46
47
  export { cn } from './utils/cn.js';
47
48
  export { colors } from './colors/index.js';
48
49
  export { nextui } from './plugin.js';