@shohojdhara/atomix 0.3.12 → 0.3.14

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 (155) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +2 -0
  3. package/dist/atomix.css +101 -88
  4. package/dist/atomix.css.map +1 -1
  5. package/dist/atomix.min.css +5 -15258
  6. package/dist/atomix.min.css.map +1 -1
  7. package/dist/charts.d.ts +1 -1
  8. package/dist/charts.js +17 -19
  9. package/dist/charts.js.map +1 -1
  10. package/dist/core.d.ts +41 -11
  11. package/dist/core.js +55 -41
  12. package/dist/core.js.map +1 -1
  13. package/dist/forms.d.ts +28 -11
  14. package/dist/forms.js +25 -24
  15. package/dist/forms.js.map +1 -1
  16. package/dist/heavy.d.ts +1 -1
  17. package/dist/heavy.js +32 -25
  18. package/dist/heavy.js.map +1 -1
  19. package/dist/index.d.ts +122 -46
  20. package/dist/index.esm.js +865 -200
  21. package/dist/index.esm.js.map +1 -1
  22. package/dist/index.js +870 -204
  23. package/dist/index.js.map +1 -1
  24. package/dist/index.min.js +1 -1
  25. package/dist/index.min.js.map +1 -1
  26. package/dist/theme.d.ts +27 -2
  27. package/dist/theme.js +721 -108
  28. package/dist/theme.js.map +1 -1
  29. package/package.json +1 -1
  30. package/scripts/atomix-cli.js +610 -1111
  31. package/scripts/cli/component-generator.js +610 -0
  32. package/scripts/cli/documentation-sync.js +542 -0
  33. package/scripts/cli/interactive-init.js +84 -288
  34. package/scripts/cli/mappings.js +211 -0
  35. package/scripts/cli/migration-tools.js +95 -288
  36. package/scripts/cli/template-manager.js +107 -0
  37. package/scripts/cli/templates/README.md +123 -0
  38. package/scripts/cli/templates/composable-templates.js +149 -0
  39. package/scripts/cli/templates/config-templates.js +126 -0
  40. package/scripts/cli/templates/index.js +95 -0
  41. package/scripts/cli/templates/project-templates.js +214 -0
  42. package/scripts/cli/templates/react-templates.js +261 -0
  43. package/scripts/cli/templates/scss-templates.js +156 -0
  44. package/scripts/cli/templates/storybook-templates.js +236 -0
  45. package/scripts/cli/templates/testing-templates.js +45 -0
  46. package/scripts/cli/templates/token-templates.js +447 -0
  47. package/scripts/cli/templates/types-templates.js +133 -0
  48. package/scripts/cli/templates-original-backup.js +1655 -0
  49. package/scripts/cli/templates.js +35 -0
  50. package/scripts/cli/templates_backup.js +684 -0
  51. package/scripts/cli/theme-bridge.js +20 -14
  52. package/scripts/cli/token-manager.js +150 -77
  53. package/scripts/cli/utils.js +37 -25
  54. package/src/components/Accordion/Accordion.stories.tsx +5 -5
  55. package/src/components/Accordion/Accordion.test.tsx +57 -0
  56. package/src/components/Accordion/Accordion.tsx +4 -0
  57. package/src/components/AtomixGlass/AtomixGlassContainer.tsx +41 -44
  58. package/src/components/AtomixGlass/stories/AtomixGlass.stories.tsx +1 -1
  59. package/src/components/AtomixGlass/stories/Examples.stories.tsx +37 -37
  60. package/src/components/AtomixGlass/stories/Modes.stories.tsx +1 -2
  61. package/src/components/AtomixGlass/stories/Playground.stories.tsx +50 -51
  62. package/src/components/Avatar/Avatar.stories.tsx +26 -26
  63. package/src/components/Badge/Badge.stories.tsx +31 -31
  64. package/src/components/Badge/Badge.test.tsx +51 -0
  65. package/src/components/Badge/Badge.tsx +20 -1
  66. package/src/components/Block/Block.stories.tsx +5 -5
  67. package/src/components/Breadcrumb/Breadcrumb.stories.tsx +1 -1
  68. package/src/components/Breadcrumb/Breadcrumb.tsx +2 -2
  69. package/src/components/Button/Button.stories.tsx +13 -13
  70. package/src/components/Button/Button.tsx +4 -4
  71. package/src/components/Button/ButtonGroup.stories.tsx +2 -2
  72. package/src/components/Button/README.md +5 -0
  73. package/src/components/Callout/Callout.stories.tsx +11 -11
  74. package/src/components/Callout/Callout.test.tsx +10 -10
  75. package/src/components/Callout/Callout.tsx +7 -7
  76. package/src/components/Callout/README.md +9 -8
  77. package/src/components/Card/Card.tsx +2 -2
  78. package/src/components/Chart/Chart.stories.tsx +6 -6
  79. package/src/components/Chart/Chart.tsx +1 -1
  80. package/src/components/ColorModeToggle/ColorModeToggle.stories.tsx +1 -1
  81. package/src/components/DataTable/DataTable.tsx +14 -12
  82. package/src/components/DatePicker/DatePicker.stories.tsx +6 -6
  83. package/src/components/Dropdown/Dropdown.stories.tsx +4 -4
  84. package/src/components/Form/Checkbox.stories.tsx +3 -3
  85. package/src/components/Form/Checkbox.tsx +4 -2
  86. package/src/components/Form/Form.stories.tsx +3 -3
  87. package/src/components/Form/FormGroup.stories.tsx +1 -1
  88. package/src/components/Form/Input.stories.tsx +28 -16
  89. package/src/components/Form/Input.test.tsx +59 -0
  90. package/src/components/Form/Input.tsx +97 -95
  91. package/src/components/Form/Radio.stories.tsx +94 -94
  92. package/src/components/Form/Radio.tsx +2 -2
  93. package/src/components/Form/Select.stories.tsx +4 -4
  94. package/src/components/Form/Select.tsx +2 -2
  95. package/src/components/Form/Textarea.stories.tsx +22 -7
  96. package/src/components/Form/Textarea.test.tsx +45 -0
  97. package/src/components/Form/Textarea.tsx +88 -86
  98. package/src/components/List/List.stories.tsx +2 -2
  99. package/src/components/Modal/Modal.stories.tsx +4 -4
  100. package/src/components/Navigation/Navbar/Navbar.stories.tsx +5 -5
  101. package/src/components/Navigation/Navbar/Navbar.tsx +1 -1
  102. package/src/components/Navigation/README.md +1 -1
  103. package/src/components/Pagination/Pagination.stories.tsx +5 -2
  104. package/src/components/Pagination/Pagination.tsx +1 -1
  105. package/src/components/PhotoViewer/PhotoViewer.stories.tsx +10 -10
  106. package/src/components/Popover/Popover.stories.tsx +1 -1
  107. package/src/components/ProductReview/ProductReview.tsx +1 -1
  108. package/src/components/Progress/Progress.tsx +46 -46
  109. package/src/components/Rating/Rating.stories.tsx +4 -4
  110. package/src/components/Rating/Rating.tsx +8 -8
  111. package/src/components/Slider/Slider.stories.tsx +63 -63
  112. package/src/components/Spinner/Spinner.stories.tsx +2 -2
  113. package/src/components/Spinner/Spinner.test.tsx +35 -0
  114. package/src/components/Spinner/Spinner.tsx +9 -2
  115. package/src/components/Testimonial/Testimonial.stories.tsx +1 -1
  116. package/src/components/Toggle/Toggle.stories.tsx +32 -9
  117. package/src/components/Toggle/Toggle.test.tsx +91 -0
  118. package/src/components/Toggle/Toggle.tsx +44 -27
  119. package/src/components/Tooltip/Tooltip.tsx +1 -1
  120. package/src/layouts/Grid/Grid.stories.tsx +49 -49
  121. package/src/layouts/MasonryGrid/MasonryGrid.stories.tsx +2 -2
  122. package/src/lib/composables/useAccordion.ts +12 -3
  123. package/src/lib/composables/useBreadcrumb.ts +2 -2
  124. package/src/lib/composables/useCallout.ts +7 -7
  125. package/src/lib/composables/useNavbar.ts +1 -1
  126. package/src/lib/constants/components.ts +1 -1
  127. package/src/lib/storybook/InteractiveDemo.tsx +113 -0
  128. package/src/lib/storybook/PreviewContainer.tsx +36 -0
  129. package/src/lib/storybook/VariantsGrid.tsx +21 -0
  130. package/src/lib/storybook/index.ts +3 -0
  131. package/src/lib/theme/core/createThemeObject.ts +9 -5
  132. package/src/lib/theme/devtools/CLI.ts +155 -0
  133. package/src/lib/theme/devtools/DesignTokensCustomizer.stories.tsx +213 -0
  134. package/src/lib/theme/devtools/DesignTokensCustomizer.tsx +566 -0
  135. package/src/lib/theme/devtools/LiveEditor.tsx +2 -1
  136. package/src/lib/theme/devtools/index.ts +3 -0
  137. package/src/lib/theme/errors/errors.ts +8 -0
  138. package/src/lib/theme/runtime/ThemeProvider.tsx +117 -57
  139. package/src/lib/theme/runtime/__tests__/ThemeProvider.integration.test.tsx +305 -0
  140. package/src/lib/theme/runtime/__tests__/ThemeProvider.test.tsx +588 -0
  141. package/src/lib/theme/utils/__tests__/themeValidation.test.ts +264 -0
  142. package/src/lib/theme/utils/index.ts +1 -0
  143. package/src/lib/theme/utils/themeValidation.ts +501 -0
  144. package/src/lib/theme-tools.ts +32 -3
  145. package/src/lib/types/components.ts +81 -26
  146. package/src/lib/utils/themeNaming.ts +1 -1
  147. package/src/styles/06-components/_components.atomix-glass.scss +14 -15
  148. package/src/styles/06-components/_components.callout.scss +29 -33
  149. package/src/styles/06-components/_index.scss +1 -1
  150. package/src/styles/99-utilities/_utilities.display.scss +14 -3
  151. package/src/styles/99-utilities/_utilities.flex.scss +10 -10
  152. package/src/styles/99-utilities/_utilities.text.scss +28 -8
  153. package/scripts/cli/__tests__/cli-commands.test.js +0 -204
  154. package/scripts/cli/__tests__/utils.test.js +0 -201
  155. package/scripts/cli/__tests__/vitest.config.js +0 -26
package/dist/index.d.ts CHANGED
@@ -1330,7 +1330,7 @@ interface OverLightObjectConfig {
1330
1330
  * AtomixGlass component props interface
1331
1331
  */
1332
1332
  interface AtomixGlassProps {
1333
- children: React.ReactNode;
1333
+ children?: React.ReactNode;
1334
1334
  displacementScale?: number;
1335
1335
  blurAmount?: number;
1336
1336
  saturation?: number;
@@ -1454,6 +1454,7 @@ interface ListProps extends BaseComponentProps {
1454
1454
  variant?: listvariant;
1455
1455
  /**
1456
1456
  * List size
1457
+ * @default 'md'
1457
1458
  */
1458
1459
  size?: Size;
1459
1460
  /**
@@ -1496,10 +1497,12 @@ interface ButtonProps extends BaseComponentProps {
1496
1497
  onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
1497
1498
  /**
1498
1499
  * Button variant
1500
+ * @default 'solid'
1499
1501
  */
1500
1502
  variant?: Variant;
1501
1503
  /**
1502
1504
  * Button size
1505
+ * @default 'md'
1503
1506
  */
1504
1507
  size?: Size;
1505
1508
  /**
@@ -1596,19 +1599,19 @@ interface ButtonProps extends BaseComponentProps {
1596
1599
  /**
1597
1600
  * ARIA label for accessibility
1598
1601
  */
1599
- ariaLabel?: string;
1602
+ 'aria-label'?: string;
1600
1603
  /**
1601
1604
  * ARIA described by reference
1602
1605
  */
1603
- ariaDescribedBy?: string;
1606
+ 'aria-describedby'?: string;
1604
1607
  /**
1605
1608
  * ARIA expanded state (for toggle buttons)
1606
1609
  */
1607
- ariaExpanded?: boolean;
1610
+ 'aria-expanded'?: boolean;
1608
1611
  /**
1609
1612
  * ARIA controls reference
1610
1613
  */
1611
- ariaControls?: string;
1614
+ 'aria-controls'?: string;
1612
1615
  /**
1613
1616
  * Tab index for keyboard navigation
1614
1617
  */
@@ -1662,16 +1665,26 @@ interface BadgeProps extends BaseComponentProps {
1662
1665
  label: string;
1663
1666
  /**
1664
1667
  * Badge color variant
1668
+ * @default 'primary'
1665
1669
  */
1666
1670
  variant?: ThemeColor;
1667
1671
  /**
1668
1672
  * Badge size
1673
+ * @default 'md'
1669
1674
  */
1670
1675
  size?: Size;
1671
1676
  /**
1672
1677
  * Optional icon
1673
1678
  */
1674
1679
  icon?: ReactNode;
1680
+ /**
1681
+ * Callback for dismissible badges (shows close button when provided)
1682
+ */
1683
+ onRemove?: () => void;
1684
+ /**
1685
+ * Accessible label for the badge
1686
+ */
1687
+ 'aria-label'?: string;
1675
1688
  /**
1676
1689
  * Glass morphism effect for the badge
1677
1690
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -1743,13 +1756,13 @@ interface CalloutProps extends BaseComponentProps {
1743
1756
  */
1744
1757
  actions?: ReactNode;
1745
1758
  /**
1746
- * Display in one line mode
1759
+ * Display in compact (one-line) mode
1747
1760
  */
1748
- oneLine?: boolean;
1761
+ compact?: boolean;
1749
1762
  /**
1750
1763
  * Display as toast notification
1751
1764
  */
1752
- toast?: boolean;
1765
+ isToast?: boolean;
1753
1766
  /**
1754
1767
  * Glass morphism effect for the callout
1755
1768
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -1792,12 +1805,17 @@ interface AccordionProps$1 extends BaseComponentProps {
1792
1805
  * Whether the accordion is disabled
1793
1806
  */
1794
1807
  disabled?: boolean;
1808
+ /**
1809
+ * Callback called when the open state changes
1810
+ */
1795
1811
  onOpenChange?: (open: boolean) => void;
1796
1812
  /**
1813
+ * @deprecated Use onOpenChange instead
1797
1814
  * Optional open handler
1798
1815
  */
1799
1816
  onOpen?: () => void;
1800
1817
  /**
1818
+ * @deprecated Use onOpenChange instead
1801
1819
  * Optional close handler
1802
1820
  */
1803
1821
  onClose?: () => void;
@@ -2019,16 +2037,28 @@ interface HeroProps extends BaseComponentProps {
2019
2037
  interface SpinnerProps extends BaseComponentProps {
2020
2038
  /**
2021
2039
  * Spinner color variant
2040
+ * @default 'primary'
2022
2041
  */
2023
2042
  variant?: ThemeColor;
2024
2043
  /**
2025
2044
  * Spinner size
2045
+ * @default 'md'
2026
2046
  */
2027
2047
  size?: Size;
2028
2048
  /**
2029
2049
  * Whether the spinner should be displayed fullscreen
2030
2050
  */
2031
2051
  fullscreen?: boolean;
2052
+ /**
2053
+ * Accessible label for screen readers
2054
+ * @default 'Loading'
2055
+ */
2056
+ 'aria-label'?: string;
2057
+ /**
2058
+ * ARIA role for the spinner
2059
+ * @default 'status'
2060
+ */
2061
+ role?: 'status' | 'alert';
2032
2062
  /**
2033
2063
  * Glass morphism effect for the spinner
2034
2064
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -2110,7 +2140,7 @@ interface NavbarProps extends BaseComponentProps {
2110
2140
  /**
2111
2141
  * Custom aria-label for the navigation
2112
2142
  */
2113
- ariaLabel?: string;
2143
+ 'aria-label'?: string;
2114
2144
  /**
2115
2145
  * ID for the navbar (used for accessibility)
2116
2146
  */
@@ -2752,12 +2782,13 @@ interface PaginationProps extends BaseComponentProps {
2752
2782
  className?: string;
2753
2783
  /**
2754
2784
  * Size variant for the pagination component
2785
+ * @default 'md'
2755
2786
  */
2756
2787
  size?: Size;
2757
2788
  /**
2758
2789
  * Accessible label for the navigation element
2759
2790
  */
2760
- ariaLabel?: string;
2791
+ 'aria-label'?: string;
2761
2792
  /**
2762
2793
  * Glass morphism effect for the pagination component
2763
2794
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -2907,12 +2938,17 @@ interface FormGroupProps extends BaseComponentProps {
2907
2938
  interface InputProps extends BaseComponentProps {
2908
2939
  /**
2909
2940
  * Input type
2941
+ * @default 'text'
2910
2942
  */
2911
2943
  type?: string;
2912
2944
  /**
2913
2945
  * Input value
2914
2946
  */
2915
2947
  value?: string | number;
2948
+ /**
2949
+ * Default value for uncontrolled input
2950
+ */
2951
+ defaultValue?: string | number;
2916
2952
  /**
2917
2953
  * Change handler
2918
2954
  */
@@ -2955,6 +2991,7 @@ interface InputProps extends BaseComponentProps {
2955
2991
  autoFocus?: boolean;
2956
2992
  /**
2957
2993
  * Size variant
2994
+ * @default 'md'
2958
2995
  */
2959
2996
  size?: Size;
2960
2997
  /**
@@ -2996,11 +3033,11 @@ interface InputProps extends BaseComponentProps {
2996
3033
  /**
2997
3034
  * Accessible label (if no visible label)
2998
3035
  */
2999
- ariaLabel?: string;
3036
+ 'aria-label'?: string;
3000
3037
  /**
3001
3038
  * ID of element that describes this input
3002
3039
  */
3003
- ariaDescribedBy?: string;
3040
+ 'aria-describedby'?: string;
3004
3041
  /**
3005
3042
  * Glass morphism effect
3006
3043
  */
@@ -3105,6 +3142,7 @@ interface SelectProps extends BaseComponentProps {
3105
3142
  name?: string;
3106
3143
  /**
3107
3144
  * Size variant
3145
+ * @default 'md'
3108
3146
  */
3109
3147
  size?: Size;
3110
3148
  /**
@@ -3122,11 +3160,11 @@ interface SelectProps extends BaseComponentProps {
3122
3160
  /**
3123
3161
  * Accessible label (if no visible label)
3124
3162
  */
3125
- ariaLabel?: string;
3163
+ 'aria-label'?: string;
3126
3164
  /**
3127
3165
  * ID of element that describes this select
3128
3166
  */
3129
- ariaDescribedBy?: string;
3167
+ 'aria-describedby'?: string;
3130
3168
  /**
3131
3169
  * Glass morphism effect for the select
3132
3170
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -3192,16 +3230,20 @@ interface CheckboxProps extends BaseComponentProps {
3192
3230
  /**
3193
3231
  * Accessible label (if no visible label)
3194
3232
  */
3195
- ariaLabel?: string;
3233
+ 'aria-label'?: string;
3196
3234
  /**
3197
3235
  * ID of element that describes this checkbox
3198
3236
  */
3199
- ariaDescribedBy?: string;
3237
+ 'aria-describedby'?: string;
3200
3238
  /**
3201
3239
  * Glass morphism effect for the checkbox
3202
3240
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
3203
3241
  */
3204
3242
  glass?: AtomixGlassProps | boolean;
3243
+ /**
3244
+ * Click handler
3245
+ */
3246
+ onClick?: (event: React.MouseEvent<HTMLInputElement>) => void;
3205
3247
  /**
3206
3248
  * Error message to display
3207
3249
  */
@@ -3287,11 +3329,11 @@ interface RadioProps extends BaseComponentProps {
3287
3329
  /**
3288
3330
  * Accessible label (if no visible label)
3289
3331
  */
3290
- ariaLabel?: string;
3332
+ 'aria-label'?: string;
3291
3333
  /**
3292
3334
  * ID of element that describes this radio
3293
3335
  */
3294
- ariaDescribedBy?: string;
3336
+ 'aria-describedby'?: string;
3295
3337
  /**
3296
3338
  * Glass morphism effect for the radio button
3297
3339
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -3347,6 +3389,10 @@ interface TextareaProps extends BaseComponentProps {
3347
3389
  * Textarea value
3348
3390
  */
3349
3391
  value?: string;
3392
+ /**
3393
+ * Default value for uncontrolled textarea
3394
+ */
3395
+ defaultValue?: string;
3350
3396
  /**
3351
3397
  * Change handler
3352
3398
  */
@@ -3381,6 +3427,7 @@ interface TextareaProps extends BaseComponentProps {
3381
3427
  name?: string;
3382
3428
  /**
3383
3429
  * Number of rows
3430
+ * @default 4
3384
3431
  */
3385
3432
  rows?: number;
3386
3433
  /**
@@ -3397,6 +3444,7 @@ interface TextareaProps extends BaseComponentProps {
3397
3444
  minLength?: number;
3398
3445
  /**
3399
3446
  * Size variant
3447
+ * @default 'md'
3400
3448
  */
3401
3449
  size?: Size;
3402
3450
  /**
@@ -3418,11 +3466,11 @@ interface TextareaProps extends BaseComponentProps {
3418
3466
  /**
3419
3467
  * Accessible label (if no visible label)
3420
3468
  */
3421
- ariaLabel?: string;
3469
+ 'aria-label'?: string;
3422
3470
  /**
3423
3471
  * ID of element that describes this textarea
3424
3472
  */
3425
- ariaDescribedBy?: string;
3473
+ 'aria-describedby'?: string;
3426
3474
  /**
3427
3475
  * Glass morphism effect
3428
3476
  */
@@ -3626,7 +3674,7 @@ interface BreadcrumbOptions$1 {
3626
3674
  /**
3627
3675
  * Accessible label for the breadcrumb navigation
3628
3676
  */
3629
- ariaLabel?: string;
3677
+ 'aria-label'?: string;
3630
3678
  /**
3631
3679
  * Glass morphism effect for the breadcrumb
3632
3680
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -3958,7 +4006,7 @@ interface ProgressProps extends BaseComponentProps {
3958
4006
  /**
3959
4007
  * Accessible label for screen readers
3960
4008
  */
3961
- ariaLabel?: string;
4009
+ 'aria-label'?: string;
3962
4010
  /**
3963
4011
  * Glass morphism effect for the progress bar
3964
4012
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -4024,9 +4072,9 @@ interface RatingProps extends BaseComponentProps {
4024
4072
  */
4025
4073
  size?: Size;
4026
4074
  /**
4027
- * Color theme
4075
+ * Color variant
4028
4076
  */
4029
- color?: ThemeColor;
4077
+ variant?: ThemeColor;
4030
4078
  /**
4031
4079
  * Optional callback when rating changes
4032
4080
  */
@@ -4403,11 +4451,11 @@ interface CardProps extends BaseComponentProps {
4403
4451
  /**
4404
4452
  * ARIA label for accessibility
4405
4453
  */
4406
- ariaLabel?: string;
4454
+ 'aria-label'?: string;
4407
4455
  /**
4408
4456
  * ARIA described by reference
4409
4457
  */
4410
- ariaDescribedBy?: string;
4458
+ 'aria-describedby'?: string;
4411
4459
  /**
4412
4460
  * Tab index for keyboard navigation
4413
4461
  */
@@ -8472,7 +8520,7 @@ declare const CALLOUT: {
8472
8520
  CLOSE_BTN_CLASS: string;
8473
8521
  VARIANT_PREFIX: string;
8474
8522
  CLASSES: {
8475
- ONELINE: string;
8523
+ COMPACT: string;
8476
8524
  TOAST: string;
8477
8525
  HIDE: string;
8478
8526
  };
@@ -11049,7 +11097,7 @@ interface BreadcrumbProps {
11049
11097
  /**
11050
11098
  * Aria label for the navigation
11051
11099
  */
11052
- ariaLabel?: string;
11100
+ 'aria-label'?: string;
11053
11101
  /**
11054
11102
  * Optional custom link component
11055
11103
  */
@@ -11065,7 +11113,7 @@ interface BreadcrumbOptions {
11065
11113
  items: BreadcrumbItem[];
11066
11114
  divider?: React.ReactNode;
11067
11115
  className?: string;
11068
- ariaLabel?: string;
11116
+ 'aria-label'?: string;
11069
11117
  }
11070
11118
  /**
11071
11119
  * Breadcrumb state and functionality
@@ -12123,8 +12171,8 @@ declare const Progress: React__default.MemoExoticComponent<React__default.Forwar
12123
12171
  * <Rating value={3} onChange={handleRatingChange} />
12124
12172
  *
12125
12173
  * @example
12126
- * // Read-only with custom color
12127
- * <Rating value={4.5} readOnly color="warning" />
12174
+ * // Read-only with custom variant
12175
+ * <Rating value={4.5} readOnly variant="warning" />
12128
12176
  *
12129
12177
  * @example
12130
12178
  * // With half-star support
@@ -12357,31 +12405,32 @@ declare const Testimonial: React__default.FC<TestimonialProps>;
12357
12405
 
12358
12406
  declare const Todo: React__default.FC<TodoProps>;
12359
12407
 
12360
- interface ToggleProps {
12408
+ interface ToggleProps extends BaseComponentProps {
12361
12409
  /**
12362
- * Whether the toggle is initially on
12410
+ * Whether the toggle is checked (controlled)
12363
12411
  */
12364
- initialOn?: boolean;
12412
+ checked?: boolean;
12365
12413
  /**
12366
- * Callback when the toggle is turned on
12414
+ * Whether the toggle is initially checked (uncontrolled)
12415
+ * @default false
12367
12416
  */
12368
- onToggleOn?: () => void;
12417
+ defaultChecked?: boolean;
12369
12418
  /**
12370
- * Callback when the toggle is turned off
12419
+ * Callback when the toggle state changes
12371
12420
  */
12372
- onToggleOff?: () => void;
12421
+ onChange?: (checked: boolean) => void;
12373
12422
  /**
12374
12423
  * Whether the toggle is disabled
12375
12424
  */
12376
12425
  disabled?: boolean;
12377
12426
  /**
12378
- * Additional CSS class for the toggle
12427
+ * Accessibility label
12379
12428
  */
12380
- className?: string;
12429
+ 'aria-label'?: string;
12381
12430
  /**
12382
- * Inline style for the component
12431
+ * Accessibility description
12383
12432
  */
12384
- style?: React__default.CSSProperties;
12433
+ 'aria-describedby'?: string;
12385
12434
  /**
12386
12435
  * Glass morphism effect for the toggle
12387
12436
  * Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
@@ -13895,6 +13944,31 @@ interface ThemeLiveEditorProps {
13895
13944
  */
13896
13945
  declare const ThemeLiveEditor: React__default.FC<ThemeLiveEditorProps>;
13897
13946
 
13947
+ /**
13948
+ * Design Tokens Customizer Component
13949
+ *
13950
+ * Interactive theme customizer that allows real-time editing of DesignTokens
13951
+ * with live preview and export functionality.
13952
+ */
13953
+
13954
+ /**
13955
+ * Customizer props
13956
+ */
13957
+ interface DesignTokensCustomizerProps {
13958
+ /** Initial DesignTokens to customize */
13959
+ initialTokens?: Partial<DesignTokens>;
13960
+ /** Callback when tokens change */
13961
+ onTokensChange?: (tokens: DesignTokens) => void;
13962
+ /** CSS class name */
13963
+ className?: string;
13964
+ /** Inline styles */
13965
+ style?: React__default.CSSProperties;
13966
+ }
13967
+ /**
13968
+ * Design Tokens Customizer Component
13969
+ */
13970
+ declare const DesignTokensCustomizer: React__default.FC<DesignTokensCustomizerProps>;
13971
+
13898
13972
  /**
13899
13973
  * Theme Validator
13900
13974
  *
@@ -14284,6 +14358,8 @@ type themeImport_CSSVariableNamingOptions = CSSVariableNamingOptions;
14284
14358
  type themeImport_ComponentThemeOptions = ComponentThemeOptions;
14285
14359
  type themeImport_ComponentThemeOverride = ComponentThemeOverride;
14286
14360
  type themeImport_DesignTokens = DesignTokens;
14361
+ declare const themeImport_DesignTokensCustomizer: typeof DesignTokensCustomizer;
14362
+ type themeImport_DesignTokensCustomizerProps = DesignTokensCustomizerProps;
14287
14363
  type themeImport_GenerateCSSVariablesOptions = GenerateCSSVariablesOptions;
14288
14364
  type themeImport_NamingOptions = NamingOptions;
14289
14365
  type themeImport_RTLConfig = RTLConfig;
@@ -14364,8 +14440,8 @@ declare const themeImport_useHistory: typeof useHistory;
14364
14440
  declare const themeImport_useTheme: typeof useTheme;
14365
14441
  declare const themeImport_useThemeTokens: typeof useThemeTokens;
14366
14442
  declare namespace themeImport {
14367
- export { themeImport_RTLManager as RTLManager, themeImport_ThemeApplicator as ThemeApplicator, themeImport_ThemeComparator as ThemeComparator, themeImport_ThemeContext as ThemeContext, themeImport_ThemeErrorBoundary as ThemeErrorBoundary, themeImport_ThemeInspector as ThemeInspector, themeImport_ThemeLiveEditor as ThemeLiveEditor, themeImport_ThemePreview as ThemePreview, themeImport_ThemeProvider as ThemeProvider, themeImport_ThemeValidator as ThemeValidator, themeImport_applyCSSVariables as applyCSSVariables, themeImport_applyComponentTheme as applyComponentTheme, themeImport_applyTheme as applyTheme, themeImport_camelToKebab as camelToKebab, themeImport_clearThemes as clearThemes, themeImport_createTheme as createTheme, themeImport_createThemeRegistry as createThemeRegistry, themeImport_createTokens as createTokens, themeImport_cssVarsToStyle as cssVarsToStyle, themeImport_deepMerge as deepMerge, themeImport_defaultTokens as defaultTokens, themeImport_designTokensToCSSVars as designTokensToCSSVars, themeImport_extendTheme as extendTheme, themeImport_extractComponentName as extractComponentName, themeImport_generateCSSVariableName as generateCSSVariableName, themeImport_generateCSSVariables as generateCSSVariables, themeImport_generateCSSVariablesForSelector as generateCSSVariablesForSelector, themeImport_generateClassName as generateClassName, themeImport_generateComponentCSSVars as generateComponentCSSVars, themeImport_getAllThemes as getAllThemes, themeImport_getCSSVariable as getCSSVariable, themeImport_getComponentThemeValue as getComponentThemeValue, themeImport_getTheme as getTheme, themeImport_getThemeApplicator as getThemeApplicator, themeImport_getThemeCount as getThemeCount, themeImport_getThemeIds as getThemeIds, themeImport_hasTheme as hasTheme, themeImport_injectCSS as injectCSS, themeImport_injectTheme as injectTheme, themeImport_isCSSInjected as isCSSInjected, themeImport_isDesignTokens as isDesignTokens, themeImport_isValidCSSVariableName as isValidCSSVariableName, themeImport_mapSCSSTokensToCSSVars as mapSCSSTokensToCSSVars, themeImport_mergeCSSVars as mergeCSSVars, themeImport_mergeTheme as mergeTheme, themeImport_normalizeThemeTokens as normalizeThemeTokens, themeImport_registerTheme as registerTheme, themeImport_removeCSS as removeCSS, themeImport_removeCSSVariables as removeCSSVariables, themeImport_removeTheme as removeTheme, themeImport_themePropertyToCSSVar as themePropertyToCSSVar, themeImport_unregisterTheme as unregisterTheme, themeImport_useComponentTheme as useComponentTheme, themeImport_useHistory as useHistory, themeImport_useTheme as useTheme, themeImport_useThemeTokens as useThemeTokens };
14368
- export type { themeImport_A11yIssue as A11yIssue, themeImport_CSSVariableConfig as CSSVariableConfig, themeImport_CSSVariableNamingOptions as CSSVariableNamingOptions, themeImport_ComponentThemeOptions as ComponentThemeOptions, themeImport_ComponentThemeOverride as ComponentThemeOverride, themeImport_DesignTokens as DesignTokens, themeImport_GenerateCSSVariablesOptions as GenerateCSSVariablesOptions, themeImport_NamingOptions as NamingOptions, themeImport_RTLConfig as RTLConfig, themeImport_Theme as Theme, themeImport_ThemeChangeEvent as ThemeChangeEvent, themeImport_ThemeComparatorProps as ThemeComparatorProps, themeImport_ThemeComponentOverrides as ThemeComponentOverrides, themeImport_ThemeContextValue as ThemeContextValue, themeImport_ThemeErrorBoundaryProps as ThemeErrorBoundaryProps, themeImport_ThemeInspectorProps as ThemeInspectorProps, themeImport_ThemeLiveEditorProps as ThemeLiveEditorProps, themeImport_ThemeLoadOptions as ThemeLoadOptions, themeImport_ThemePreviewProps as ThemePreviewProps, themeImport_ThemeProviderProps as ThemeProviderProps, themeImport_ThemeValidationResult as ThemeValidationResult, themeImport_UseHistoryOptions as UseHistoryOptions, themeImport_UseHistoryReturn as UseHistoryReturn, themeImport_UseThemeReturn as UseThemeReturn, themeImport_ValidationResult as ValidationResult };
14443
+ export { themeImport_DesignTokensCustomizer as DesignTokensCustomizer, themeImport_RTLManager as RTLManager, themeImport_ThemeApplicator as ThemeApplicator, themeImport_ThemeComparator as ThemeComparator, themeImport_ThemeContext as ThemeContext, themeImport_ThemeErrorBoundary as ThemeErrorBoundary, themeImport_ThemeInspector as ThemeInspector, themeImport_ThemeLiveEditor as ThemeLiveEditor, themeImport_ThemePreview as ThemePreview, themeImport_ThemeProvider as ThemeProvider, themeImport_ThemeValidator as ThemeValidator, themeImport_applyCSSVariables as applyCSSVariables, themeImport_applyComponentTheme as applyComponentTheme, themeImport_applyTheme as applyTheme, themeImport_camelToKebab as camelToKebab, themeImport_clearThemes as clearThemes, themeImport_createTheme as createTheme, themeImport_createThemeRegistry as createThemeRegistry, themeImport_createTokens as createTokens, themeImport_cssVarsToStyle as cssVarsToStyle, themeImport_deepMerge as deepMerge, themeImport_defaultTokens as defaultTokens, themeImport_designTokensToCSSVars as designTokensToCSSVars, themeImport_extendTheme as extendTheme, themeImport_extractComponentName as extractComponentName, themeImport_generateCSSVariableName as generateCSSVariableName, themeImport_generateCSSVariables as generateCSSVariables, themeImport_generateCSSVariablesForSelector as generateCSSVariablesForSelector, themeImport_generateClassName as generateClassName, themeImport_generateComponentCSSVars as generateComponentCSSVars, themeImport_getAllThemes as getAllThemes, themeImport_getCSSVariable as getCSSVariable, themeImport_getComponentThemeValue as getComponentThemeValue, themeImport_getTheme as getTheme, themeImport_getThemeApplicator as getThemeApplicator, themeImport_getThemeCount as getThemeCount, themeImport_getThemeIds as getThemeIds, themeImport_hasTheme as hasTheme, themeImport_injectCSS as injectCSS, themeImport_injectTheme as injectTheme, themeImport_isCSSInjected as isCSSInjected, themeImport_isDesignTokens as isDesignTokens, themeImport_isValidCSSVariableName as isValidCSSVariableName, themeImport_mapSCSSTokensToCSSVars as mapSCSSTokensToCSSVars, themeImport_mergeCSSVars as mergeCSSVars, themeImport_mergeTheme as mergeTheme, themeImport_normalizeThemeTokens as normalizeThemeTokens, themeImport_registerTheme as registerTheme, themeImport_removeCSS as removeCSS, themeImport_removeCSSVariables as removeCSSVariables, themeImport_removeTheme as removeTheme, themeImport_themePropertyToCSSVar as themePropertyToCSSVar, themeImport_unregisterTheme as unregisterTheme, themeImport_useComponentTheme as useComponentTheme, themeImport_useHistory as useHistory, themeImport_useTheme as useTheme, themeImport_useThemeTokens as useThemeTokens };
14444
+ export type { themeImport_A11yIssue as A11yIssue, themeImport_CSSVariableConfig as CSSVariableConfig, themeImport_CSSVariableNamingOptions as CSSVariableNamingOptions, themeImport_ComponentThemeOptions as ComponentThemeOptions, themeImport_ComponentThemeOverride as ComponentThemeOverride, themeImport_DesignTokens as DesignTokens, themeImport_DesignTokensCustomizerProps as DesignTokensCustomizerProps, themeImport_GenerateCSSVariablesOptions as GenerateCSSVariablesOptions, themeImport_NamingOptions as NamingOptions, themeImport_RTLConfig as RTLConfig, themeImport_Theme as Theme, themeImport_ThemeChangeEvent as ThemeChangeEvent, themeImport_ThemeComparatorProps as ThemeComparatorProps, themeImport_ThemeComponentOverrides as ThemeComponentOverrides, themeImport_ThemeContextValue as ThemeContextValue, themeImport_ThemeErrorBoundaryProps as ThemeErrorBoundaryProps, themeImport_ThemeInspectorProps as ThemeInspectorProps, themeImport_ThemeLiveEditorProps as ThemeLiveEditorProps, themeImport_ThemeLoadOptions as ThemeLoadOptions, themeImport_ThemePreviewProps as ThemePreviewProps, themeImport_ThemeProviderProps as ThemeProviderProps, themeImport_ThemeValidationResult as ThemeValidationResult, themeImport_UseHistoryOptions as UseHistoryOptions, themeImport_UseHistoryReturn as UseHistoryReturn, themeImport_UseThemeReturn as UseThemeReturn, themeImport_ValidationResult as ValidationResult };
14369
14445
  }
14370
14446
 
14371
14447
  /**
@@ -15076,5 +15152,5 @@ declare const atomix: {
15076
15152
  VideoPlayer: React$1.ForwardRefExoticComponent<VideoPlayerProps & React$1.RefAttributes<HTMLVideoElement>>;
15077
15153
  };
15078
15154
 
15079
- export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BLOCK, BREADCRUMB, BUTTON, BUTTON_CSS_VARS, BUTTON_GROUP, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, ButtonGroup, CALLOUT, CARD, CARD_CSS_VARS, CHART, CHECKBOX_CSS_VARS, CLASS_PREFIX, CODE_SNIPPET, COMPONENT_CSS_VARS, COUNTDOWN, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DATA_TABLE_CLASSES, DATA_TABLE_SELECTORS, DATEPICKER, DEFAULT_ATOMIX_FONTS, DOTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GLASS_CONTAINER, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RADIO, RADIO_CSS_VARS, RATING, RIVER, RTLManager, RadarChart, Radio, Rating, River, Row, SECTION_INTRO, SELECT, SIDE_MENU, SIZES, SLIDER, SPINNER, STEPS, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, TAB, TABS_CSS_VARS, TESTIMONIAL, TEXTAREA, THEME_COLORS, THEME_NAMING, TODO, TOGGLE, TOOLTIP, TOOLTIP_CSS_VARS, Tabs, Testimonial, Textarea, ThemeApplicator, ThemeComparator, ThemeContext, ThemeErrorBoundary, ThemeInspector, ThemeLiveEditor, ThemePreview, ThemeProvider, ThemeValidator, Todo, Toggle, Tooltip, TreemapChart, UPLOAD, Upload, VIDEO_PLAYER, VideoPlayer, WaterfallChart, applyCSSVariables, applyCSSVarsToStyle, applyComponentTheme, applyPartStyles, applyTheme, camelToKebab, clearThemes, composables, constants, createCSSVarStyle, createDebugAttrs, createFontPreloadLink, createPartProps, createSlotComponent, createSlotProps, createTheme, createThemeRegistry, createTokens, cssVarsToStyle, deepMerge, atomix as default, defaultTokens, defineConfig, designTokensToCSSVars, extendTheme, extractComponentName, extractYouTubeId, generateCSSVariableName, generateCSSVariables, generateCSSVariablesForSelector, generateClassName, generateComponentCSSVars, generateFontPreloadTags, generateUUID, getAllThemes, getCSSVariable, getComponentCSSVars, getComponentThemeValue, getPartStyles, getTheme, getThemeApplicator, getThemeCount, getThemeIds, hasCustomization, hasTheme, injectCSS, injectTheme, isCSSInjected, isDesignTokens, isSlot, isValidCSSVariableName, isYouTubeUrl, mapSCSSTokensToCSSVars, mergeCSSVars, mergeClassNames, mergeComponentProps, mergePartStyles, mergeSlots, mergeTheme, normalizeThemeTokens, preloadFonts, registerTheme, removeCSS, removeCSSVariables, removeTheme, renderSlot, sliderConstants, theme, themePropertyToCSSVar, types, unregisterTheme, useAccordion, useAtomixGlass, useBadge, useBarChart, useBlock, useBreadcrumb, useButton, useCard, useChartData, useChartInteraction, useChartScale, useCheckbox, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useDataTable, useEdgePanel, useForm, useFormGroup, useGlassContainer, useHero, useHistory, useInput, useLineChart, useMergedProps, useModal, useNav, useNavDropdown, useNavItem, useNavbar, usePagination, usePieChart, useRadio, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlider, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils };
15080
- export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroProps, IconPosition, IconProps, IconSize$1 as IconSize, IconWeight$1 as IconWeight, ImageType, InputCSSVariable, InputElementSlotProps, InputParts, InputProps, InputRootSlotProps, IntegrationConfig, JSThemeDefinition, LineChartOptions, LineChartProps, ListGroupProps$1 as ListGroupProps, ListParts, ListProps, MasonryGridItemProps, MasonryGridProps, MegaMenuColumnProps, MegaMenuLinkProps, MegaMenuProps, MenuDividerProps, MenuItemProps, MenuProps, MergePropsOptions, MessageItem, MessagesProps, ModalBackdropSlotProps, ModalCSSVariable, ModalContentSlotProps, ModalDialogSlotProps, ModalParts, ModalProps, ModalRootSlotProps, MousePosition, MultiAxisChartProps, NamingOptions, NavAlignment, NavDropdownProps, NavItemProps, NavProps, NavVariant, NavbarParts, NavbarPosition, NavbarProps, OverLightConfig, OverLightObjectConfig, PaginationProps, PaletteColorOptions, PartStyleProps, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption, SelectParts, SelectProps, SelectionMode, SideMenuItemProps, SideMenuListProps, SideMenuProps, Size, SliderAutoplay, SliderBreakpoint, SliderEffect, SliderLazy, SliderNavigation, SliderPagination, SliderProps, SliderRefs, SliderScrollbar, SliderSlide, SliderState, SliderThumbs, SliderVirtual, SliderZoom, SlotProps, SocialLink, SocialPlatform, SortConfig, SpinnerProps, StateModifier, StepsProps, TabsCSSVariable, TabsParts, TabsProps, TestimonialProps, TextareaParts, TextareaProps, Theme, ThemeChangeEvent, ThemeColor, ThemeComparatorProps, ThemeComponentOverrides, ThemeContextValue, ThemeDefinition, ThemeErrorBoundaryProps, ThemeInspectorProps, ThemeLiveEditorProps, ThemeLoadOptions, ThemeName, ThemePreviewProps, ThemeProviderProps, ThemeTokens, ThemeValidationResult, TodoItem, TodoProps, ToggleProps, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
15155
+ export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BLOCK, BREADCRUMB, BUTTON, BUTTON_CSS_VARS, BUTTON_GROUP, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, ButtonGroup, CALLOUT, CARD, CARD_CSS_VARS, CHART, CHECKBOX_CSS_VARS, CLASS_PREFIX, CODE_SNIPPET, COMPONENT_CSS_VARS, COUNTDOWN, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DATA_TABLE_CLASSES, DATA_TABLE_SELECTORS, DATEPICKER, DEFAULT_ATOMIX_FONTS, DOTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DesignTokensCustomizer, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GLASS_CONTAINER, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RADIO, RADIO_CSS_VARS, RATING, RIVER, RTLManager, RadarChart, Radio, Rating, River, Row, SECTION_INTRO, SELECT, SIDE_MENU, SIZES, SLIDER, SPINNER, STEPS, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, TAB, TABS_CSS_VARS, TESTIMONIAL, TEXTAREA, THEME_COLORS, THEME_NAMING, TODO, TOGGLE, TOOLTIP, TOOLTIP_CSS_VARS, Tabs, Testimonial, Textarea, ThemeApplicator, ThemeComparator, ThemeContext, ThemeErrorBoundary, ThemeInspector, ThemeLiveEditor, ThemePreview, ThemeProvider, ThemeValidator, Todo, Toggle, Tooltip, TreemapChart, UPLOAD, Upload, VIDEO_PLAYER, VideoPlayer, WaterfallChart, applyCSSVariables, applyCSSVarsToStyle, applyComponentTheme, applyPartStyles, applyTheme, camelToKebab, clearThemes, composables, constants, createCSSVarStyle, createDebugAttrs, createFontPreloadLink, createPartProps, createSlotComponent, createSlotProps, createTheme, createThemeRegistry, createTokens, cssVarsToStyle, deepMerge, atomix as default, defaultTokens, defineConfig, designTokensToCSSVars, extendTheme, extractComponentName, extractYouTubeId, generateCSSVariableName, generateCSSVariables, generateCSSVariablesForSelector, generateClassName, generateComponentCSSVars, generateFontPreloadTags, generateUUID, getAllThemes, getCSSVariable, getComponentCSSVars, getComponentThemeValue, getPartStyles, getTheme, getThemeApplicator, getThemeCount, getThemeIds, hasCustomization, hasTheme, injectCSS, injectTheme, isCSSInjected, isDesignTokens, isSlot, isValidCSSVariableName, isYouTubeUrl, mapSCSSTokensToCSSVars, mergeCSSVars, mergeClassNames, mergeComponentProps, mergePartStyles, mergeSlots, mergeTheme, normalizeThemeTokens, preloadFonts, registerTheme, removeCSS, removeCSSVariables, removeTheme, renderSlot, sliderConstants, theme, themePropertyToCSSVar, types, unregisterTheme, useAccordion, useAtomixGlass, useBadge, useBarChart, useBlock, useBreadcrumb, useButton, useCard, useChartData, useChartInteraction, useChartScale, useCheckbox, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useDataTable, useEdgePanel, useForm, useFormGroup, useGlassContainer, useHero, useHistory, useInput, useLineChart, useMergedProps, useModal, useNav, useNavDropdown, useNavItem, useNavbar, usePagination, usePieChart, useRadio, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlider, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils };
15156
+ export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DesignTokensCustomizerProps, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroProps, IconPosition, IconProps, IconSize$1 as IconSize, IconWeight$1 as IconWeight, ImageType, InputCSSVariable, InputElementSlotProps, InputParts, InputProps, InputRootSlotProps, IntegrationConfig, JSThemeDefinition, LineChartOptions, LineChartProps, ListGroupProps$1 as ListGroupProps, ListParts, ListProps, MasonryGridItemProps, MasonryGridProps, MegaMenuColumnProps, MegaMenuLinkProps, MegaMenuProps, MenuDividerProps, MenuItemProps, MenuProps, MergePropsOptions, MessageItem, MessagesProps, ModalBackdropSlotProps, ModalCSSVariable, ModalContentSlotProps, ModalDialogSlotProps, ModalParts, ModalProps, ModalRootSlotProps, MousePosition, MultiAxisChartProps, NamingOptions, NavAlignment, NavDropdownProps, NavItemProps, NavProps, NavVariant, NavbarParts, NavbarPosition, NavbarProps, OverLightConfig, OverLightObjectConfig, PaginationProps, PaletteColorOptions, PartStyleProps, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption, SelectParts, SelectProps, SelectionMode, SideMenuItemProps, SideMenuListProps, SideMenuProps, Size, SliderAutoplay, SliderBreakpoint, SliderEffect, SliderLazy, SliderNavigation, SliderPagination, SliderProps, SliderRefs, SliderScrollbar, SliderSlide, SliderState, SliderThumbs, SliderVirtual, SliderZoom, SlotProps, SocialLink, SocialPlatform, SortConfig, SpinnerProps, StateModifier, StepsProps, TabsCSSVariable, TabsParts, TabsProps, TestimonialProps, TextareaParts, TextareaProps, Theme, ThemeChangeEvent, ThemeColor, ThemeComparatorProps, ThemeComponentOverrides, ThemeContextValue, ThemeDefinition, ThemeErrorBoundaryProps, ThemeInspectorProps, ThemeLiveEditorProps, ThemeLoadOptions, ThemeName, ThemePreviewProps, ThemeProviderProps, ThemeTokens, ThemeValidationResult, TodoItem, TodoProps, ToggleProps, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };