@shohojdhara/atomix 0.5.1 → 0.5.2

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 (123) hide show
  1. package/atomix.config.ts +12 -0
  2. package/build-tools/webpack-loader.js +5 -4
  3. package/dist/atomix.css +138 -17
  4. package/dist/atomix.css.map +1 -1
  5. package/dist/atomix.min.css +1 -1
  6. package/dist/atomix.min.css.map +1 -1
  7. package/dist/build-tools/webpack-loader.js +5 -4
  8. package/dist/charts.d.ts +23 -23
  9. package/dist/charts.js +40 -37
  10. package/dist/charts.js.map +1 -1
  11. package/dist/config.d.ts +624 -0
  12. package/dist/config.js +59 -0
  13. package/dist/config.js.map +1 -0
  14. package/dist/core.d.ts +2 -2
  15. package/dist/core.js +111 -50
  16. package/dist/core.js.map +1 -1
  17. package/dist/forms.d.ts +3 -6
  18. package/dist/forms.js +2 -2
  19. package/dist/forms.js.map +1 -1
  20. package/dist/heavy.d.ts +1 -1
  21. package/dist/heavy.js +173 -111
  22. package/dist/heavy.js.map +1 -1
  23. package/dist/index.d.ts +98 -65
  24. package/dist/index.esm.js +427 -422
  25. package/dist/index.esm.js.map +1 -1
  26. package/dist/index.js +394 -391
  27. package/dist/index.js.map +1 -1
  28. package/dist/index.min.js +1 -1
  29. package/dist/index.min.js.map +1 -1
  30. package/dist/layout.js +59 -60
  31. package/dist/layout.js.map +1 -1
  32. package/dist/theme.js +4 -4
  33. package/dist/theme.js.map +1 -1
  34. package/package.json +14 -9
  35. package/scripts/atomix-cli.js +15 -1
  36. package/scripts/cli/__tests__/complexity-utils.test.js +24 -0
  37. package/scripts/cli/__tests__/detector.test.js +50 -0
  38. package/scripts/cli/__tests__/template-engine.test.js +23 -0
  39. package/scripts/cli/__tests__/test-setup.js +3 -0
  40. package/scripts/cli/commands/doctor.js +15 -3
  41. package/scripts/cli/commands/generate.js +113 -51
  42. package/scripts/cli/internal/ai-engine.js +30 -10
  43. package/scripts/cli/internal/complexity-utils.js +60 -0
  44. package/scripts/cli/internal/component-validator.js +49 -16
  45. package/scripts/cli/internal/generator.js +89 -36
  46. package/scripts/cli/internal/hook-generator.js +5 -2
  47. package/scripts/cli/internal/itcss-generator.js +16 -12
  48. package/scripts/cli/templates/next-templates.js +81 -30
  49. package/scripts/cli/templates/storybook-templates.js +12 -2
  50. package/scripts/cli/utils/detector.js +45 -7
  51. package/scripts/cli/utils/diagnostics.js +78 -0
  52. package/scripts/cli/utils/telemetry.js +13 -0
  53. package/src/components/Accordion/Accordion.stories.tsx +4 -0
  54. package/src/components/AtomixGlass/AtomixGlassContainer.tsx +1 -1
  55. package/src/components/AtomixGlass/__snapshots__/AtomixGlass.test.tsx.snap +219 -0
  56. package/src/components/AtomixGlass/glass-utils.ts +1 -1
  57. package/src/components/Button/Button.tsx +114 -57
  58. package/src/components/Callout/Callout.tsx +4 -4
  59. package/src/components/Chart/ChartRenderer.tsx +1 -1
  60. package/src/components/Chart/DonutChart.tsx +11 -8
  61. package/src/components/EdgePanel/EdgePanel.tsx +119 -115
  62. package/src/components/Form/Select.tsx +4 -4
  63. package/src/components/List/List.tsx +4 -4
  64. package/src/components/Navigation/SideMenu/SideMenu.tsx +6 -6
  65. package/src/components/PhotoViewer/PhotoViewerImage.tsx +1 -1
  66. package/src/components/ProductReview/ProductReview.tsx +4 -2
  67. package/src/components/Rating/Rating.tsx +4 -2
  68. package/src/components/SectionIntro/SectionIntro.tsx +4 -2
  69. package/src/components/Steps/Steps.tsx +1 -1
  70. package/src/components/Tabs/Tabs.tsx +5 -5
  71. package/src/components/Testimonial/Testimonial.tsx +4 -2
  72. package/src/components/VideoPlayer/VideoPlayer.tsx +4 -2
  73. package/src/layouts/CssGrid/CssGrid.stories.tsx +464 -0
  74. package/src/layouts/CssGrid/CssGrid.tsx +215 -0
  75. package/src/layouts/CssGrid/index.ts +8 -0
  76. package/src/layouts/CssGrid/scripts/CssGrid.js +284 -0
  77. package/src/layouts/CssGrid/scripts/index.js +43 -0
  78. package/src/layouts/Grid/scripts/Container.js +139 -0
  79. package/src/layouts/Grid/scripts/Grid.js +184 -0
  80. package/src/layouts/Grid/scripts/GridCol.js +273 -0
  81. package/src/layouts/Grid/scripts/Row.js +154 -0
  82. package/src/layouts/Grid/scripts/index.js +48 -0
  83. package/src/layouts/MasonryGrid/MasonryGrid.tsx +71 -59
  84. package/src/lib/composables/atomix-glass/useGlassSize.ts +1 -1
  85. package/src/lib/composables/useAccordion.ts +5 -5
  86. package/src/lib/composables/useAtomixGlass.ts +3 -3
  87. package/src/lib/composables/useBarChart.ts +2 -2
  88. package/src/lib/composables/useChart.ts +3 -2
  89. package/src/lib/composables/useChartToolbar.ts +48 -66
  90. package/src/lib/composables/useDataTable.ts +1 -1
  91. package/src/lib/composables/useDatePicker.ts +2 -2
  92. package/src/lib/composables/useEdgePanel.ts +45 -54
  93. package/src/lib/composables/useHeroBackgroundSlider.ts +5 -5
  94. package/src/lib/composables/usePhotoViewer.ts +2 -3
  95. package/src/lib/composables/usePieChart.ts +1 -1
  96. package/src/lib/composables/usePopover.ts +151 -139
  97. package/src/lib/composables/useSideMenu.ts +28 -41
  98. package/src/lib/composables/useSlider.ts +2 -6
  99. package/src/lib/composables/useTooltip.ts +2 -2
  100. package/src/lib/config/index.ts +39 -0
  101. package/src/lib/theme/devtools/Comparator.tsx +1 -1
  102. package/src/lib/theme/devtools/Inspector.tsx +1 -1
  103. package/src/lib/theme/devtools/LiveEditor.tsx +1 -1
  104. package/src/lib/theme/runtime/ThemeProvider.tsx +1 -1
  105. package/src/styles/01-settings/_index.scss +1 -0
  106. package/src/styles/01-settings/_settings.atomix-glass.scss +174 -0
  107. package/src/styles/01-settings/_settings.masonry-grid.scss +42 -6
  108. package/src/styles/02-tools/_tools.glass.scss +6 -0
  109. package/src/styles/05-objects/_objects.masonry-grid.scss +162 -24
  110. package/src/styles/06-components/_components.atomix-glass.scss +4 -4
  111. package/src/lib/composables/useBreadcrumb.ts +0 -81
  112. package/src/lib/composables/useChartInteractions.ts +0 -123
  113. package/src/lib/composables/useChartPerformance.ts +0 -347
  114. package/src/lib/composables/useDropdown.ts +0 -338
  115. package/src/lib/composables/useModal.ts +0 -110
  116. package/src/lib/hooks/usePerformanceMonitor.ts +0 -148
  117. package/src/lib/utils/displacement-generator.ts +0 -92
  118. package/src/lib/utils/memoryMonitor.ts +0 -191
  119. package/src/styles/01-settings/_settings.testtypecheck.scss +0 -53
  120. package/src/styles/01-settings/_settings.typedbutton.scss +0 -53
  121. package/src/styles/06-components/_components.testbutton.scss +0 -212
  122. package/src/styles/06-components/_components.testtypecheck.scss +0 -212
  123. package/src/styles/06-components/_components.typedbutton.scss +0 -212
package/dist/index.d.ts CHANGED
@@ -6920,9 +6920,6 @@ declare const SelectOption: React__default.FC<SelectOptionProps>;
6920
6920
  type SelectComponent = React__default.FC<SelectProps> & {
6921
6921
  Option: typeof SelectOption;
6922
6922
  };
6923
- /**
6924
- * Select - A component for dropdown selection
6925
- */
6926
6923
  declare const Select: SelectComponent;
6927
6924
 
6928
6925
  declare const EdgePanelHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
@@ -7598,7 +7595,7 @@ interface LineChartProps extends Omit<ChartProps, 'type'> {
7598
7595
  */
7599
7596
  onBrushSelection?: (startIndex: number, endIndex: number) => void;
7600
7597
  }
7601
- declare const LineChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7598
+ declare const LineChart: React$1.NamedExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>;
7602
7599
 
7603
7600
  interface AreaChartProps extends Omit<LineChartProps, 'lineOptions'> {
7604
7601
  /**
@@ -7606,7 +7603,7 @@ interface AreaChartProps extends Omit<LineChartProps, 'lineOptions'> {
7606
7603
  */
7607
7604
  areaOptions?: LineChartProps['lineOptions'];
7608
7605
  }
7609
- declare const AreaChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7606
+ declare const AreaChart: React$1.NamedExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
7610
7607
 
7611
7608
  /**
7612
7609
  * Bar chart specific options
@@ -7743,7 +7740,7 @@ interface BarChartProps extends Omit<ChartProps, 'type'> {
7743
7740
  */
7744
7741
  horizontal?: boolean;
7745
7742
  }
7746
- declare const BarChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7743
+ declare const BarChart: React$1.NamedExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>;
7747
7744
 
7748
7745
  interface BubbleDataPoint {
7749
7746
  label: string;
@@ -7809,7 +7806,7 @@ interface BubbleChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
7809
7806
  sizeBasedColoring?: boolean;
7810
7807
  };
7811
7808
  }
7812
- declare const BubbleChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<BubbleChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7809
+ declare const BubbleChart: React$1.NamedExoticComponent<BubbleChartProps & React$1.RefAttributes<HTMLDivElement>>;
7813
7810
 
7814
7811
  interface CandlestickDataPoint {
7815
7812
  /**
@@ -7908,14 +7905,14 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets' | '
7908
7905
  showTooltips?: boolean;
7909
7906
  };
7910
7907
  }
7911
- declare const CandlestickChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CandlestickChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7908
+ declare const CandlestickChart: React$1.NamedExoticComponent<CandlestickChartProps & React$1.RefAttributes<HTMLDivElement>>;
7912
7909
 
7913
- declare const Chart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<ChartProps & React$1.RefAttributes<HTMLDivElement>>>;
7910
+ declare const Chart: React$1.NamedExoticComponent<ChartProps & React$1.RefAttributes<HTMLDivElement>>;
7914
7911
 
7915
7912
  /**
7916
7913
  * Enhanced chart renderer component with comprehensive functionality
7917
7914
  */
7918
- declare const ChartRenderer: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<{
7915
+ declare const ChartRenderer: React$1.NamedExoticComponent<{
7919
7916
  datasets: ChartProps$1["datasets"];
7920
7917
  config?: ChartProps$1["config"];
7921
7918
  width?: number;
@@ -7926,7 +7923,7 @@ declare const ChartRenderer: React$1.MemoExoticComponent<React$1.ForwardRefExoti
7926
7923
  enableAccessibility?: boolean;
7927
7924
  enablePerformanceOptimization?: boolean;
7928
7925
  renderContent: (params: ChartRenderContentParams) => React.ReactNode;
7929
- } & React$1.RefAttributes<SVGSVGElement>>>;
7926
+ } & React$1.RefAttributes<SVGSVGElement>>;
7930
7927
 
7931
7928
  type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
7932
7929
  type IconWeight = 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone';
@@ -8074,7 +8071,7 @@ interface PieChartProps extends Omit<ChartProps, 'type'> {
8074
8071
  */
8075
8072
  pieOptions?: PieChartOptions;
8076
8073
  }
8077
- declare const PieChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8074
+ declare const PieChart: React$1.NamedExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>;
8078
8075
 
8079
8076
  interface DonutChartProps extends Omit<PieChartProps, 'type'> {
8080
8077
  /**
@@ -8103,7 +8100,7 @@ interface DonutChartProps extends Omit<PieChartProps, 'type'> {
8103
8100
  roundedCorners?: boolean;
8104
8101
  };
8105
8102
  }
8106
- declare const DonutChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8103
+ declare const DonutChart: React$1.NamedExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>;
8107
8104
 
8108
8105
  interface FunnelDataPoint {
8109
8106
  label: string;
@@ -8195,7 +8192,7 @@ interface FunnelChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
8195
8192
  minSegmentRatio?: number;
8196
8193
  };
8197
8194
  }
8198
- declare const FunnelChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<FunnelChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8195
+ declare const FunnelChart: React$1.NamedExoticComponent<FunnelChartProps & React$1.RefAttributes<HTMLDivElement>>;
8199
8196
 
8200
8197
  interface GaugeChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
8201
8198
  /**
@@ -8293,7 +8290,7 @@ interface GaugeChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
8293
8290
  labelPosition?: 'top' | 'bottom' | 'center';
8294
8291
  };
8295
8292
  }
8296
- declare const GaugeChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<GaugeChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8293
+ declare const GaugeChart: React$1.NamedExoticComponent<GaugeChartProps & React$1.RefAttributes<HTMLDivElement>>;
8297
8294
 
8298
8295
  interface HeatmapDataPoint {
8299
8296
  x: string | number;
@@ -8366,7 +8363,7 @@ interface HeatmapChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'vari
8366
8363
  */
8367
8364
  showGrid?: boolean;
8368
8365
  }
8369
- declare const HeatmapChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<HeatmapChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8366
+ declare const HeatmapChart: React$1.NamedExoticComponent<HeatmapChartProps & React$1.RefAttributes<HTMLDivElement>>;
8370
8367
 
8371
8368
  interface AxisConfig {
8372
8369
  /**
@@ -8483,7 +8480,7 @@ interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'> {
8483
8480
  spanGaps?: boolean;
8484
8481
  };
8485
8482
  }
8486
- declare const MultiAxisChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<MultiAxisChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8483
+ declare const MultiAxisChart: React$1.NamedExoticComponent<MultiAxisChartProps & React$1.RefAttributes<HTMLDivElement>>;
8487
8484
 
8488
8485
  interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
8489
8486
  /**
@@ -8540,7 +8537,7 @@ interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
8540
8537
  scaleMax?: number;
8541
8538
  };
8542
8539
  }
8543
- declare const RadarChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<RadarChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8540
+ declare const RadarChart: React$1.NamedExoticComponent<RadarChartProps & React$1.RefAttributes<HTMLDivElement>>;
8544
8541
 
8545
8542
  interface ScatterChartProps extends Omit<ChartProps, 'type'> {
8546
8543
  /**
@@ -8561,7 +8558,7 @@ interface ScatterChartProps extends Omit<ChartProps, 'type'> {
8561
8558
  enableHoverEffects?: boolean;
8562
8559
  };
8563
8560
  }
8564
- declare const ScatterChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<ScatterChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8561
+ declare const ScatterChart: React$1.NamedExoticComponent<ScatterChartProps & React$1.RefAttributes<HTMLDivElement>>;
8565
8562
 
8566
8563
  interface TreemapDataPoint {
8567
8564
  id: string;
@@ -8651,7 +8648,7 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
8651
8648
  enableSelection?: boolean;
8652
8649
  };
8653
8650
  }
8654
- declare const TreemapChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8651
+ declare const TreemapChart: React$1.NamedExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>;
8655
8652
 
8656
8653
  interface WaterfallDataPoint {
8657
8654
  label: string;
@@ -8736,7 +8733,7 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
8736
8733
  baselineColor?: string;
8737
8734
  };
8738
8735
  }
8739
- declare const WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
8736
+ declare const WaterfallChart: React$1.NamedExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>;
8740
8737
 
8741
8738
  declare const CalloutIcon: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
8742
8739
  declare const CalloutMessage: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
@@ -8768,7 +8765,7 @@ type ButtonAsProp = {
8768
8765
  linkComponent?: React__default.ElementType;
8769
8766
  [key: string]: any;
8770
8767
  };
8771
- declare const Button: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
8768
+ declare const Button: React__default.NamedExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
8772
8769
 
8773
8770
  interface BreadcrumbItemData {
8774
8771
  /**
@@ -11171,11 +11168,11 @@ interface UseHeroBackgroundSliderResult {
11171
11168
  /**
11172
11169
  * Array of refs for slide container elements
11173
11170
  */
11174
- slideRefs: React__default.RefObject<HTMLDivElement>[];
11171
+ slideRefs: React__default.RefObject<HTMLDivElement | null>[];
11175
11172
  /**
11176
11173
  * Array of refs for video elements
11177
11174
  */
11178
- videoRefs: React__default.RefObject<HTMLVideoElement>[];
11175
+ videoRefs: React__default.RefObject<HTMLVideoElement | null>[];
11179
11176
  /**
11180
11177
  * Handle slide transition to next index
11181
11178
  */
@@ -11433,11 +11430,10 @@ declare function useNavDropdown(initialProps?: Partial<NavDropdownProps>): {
11433
11430
  * @returns SideMenu state and methods
11434
11431
  */
11435
11432
  declare function useSideMenu(initialProps?: Partial<SideMenuProps>): {
11436
- defaultProps: Partial<SideMenuProps>;
11437
11433
  isOpenState: boolean;
11438
- wrapperRef: React$1.RefObject<HTMLDivElement>;
11439
- innerRef: React$1.RefObject<HTMLDivElement>;
11440
- sideMenuRef: React$1.RefObject<HTMLDivElement>;
11434
+ wrapperRef: React$1.RefObject<HTMLDivElement | null>;
11435
+ innerRef: React$1.RefObject<HTMLDivElement | null>;
11436
+ sideMenuRef: React$1.RefObject<HTMLDivElement | null>;
11441
11437
  generateSideMenuClass: (props: Partial<SideMenuProps & {
11442
11438
  isOpen?: boolean;
11443
11439
  }>) => string;
@@ -11464,8 +11460,8 @@ declare function useSideMenuItem(initialProps?: Partial<SideMenuItemProps>): {
11464
11460
  */
11465
11461
  declare function useEdgePanel(initialProps?: Partial<EdgePanelProps>): {
11466
11462
  isOpen: boolean;
11467
- containerRef: React$1.RefObject<HTMLDivElement>;
11468
- backdropRef: React$1.RefObject<HTMLDivElement>;
11463
+ containerRef: React$1.RefObject<HTMLDivElement | null>;
11464
+ backdropRef: React$1.RefObject<HTMLDivElement | null>;
11469
11465
  generateEdgePanelClass: (props: Partial<EdgePanelProps>) => string;
11470
11466
  openPanel: (useFadeAnimation?: boolean) => void;
11471
11467
  closePanel: (useFadeAnimation?: boolean) => void;
@@ -11513,9 +11509,9 @@ declare function useFormGroup(initialProps?: Partial<FormGroupProps>): {
11513
11509
  };
11514
11510
 
11515
11511
  interface UseAtomixGlassOptions extends Omit<AtomixGlassProps, 'children'> {
11516
- glassRef: React__default.RefObject<HTMLDivElement>;
11517
- contentRef: React__default.RefObject<HTMLDivElement>;
11518
- wrapperRef?: React__default.RefObject<HTMLDivElement>;
11512
+ glassRef: React__default.RefObject<HTMLDivElement | null>;
11513
+ contentRef: React__default.RefObject<HTMLDivElement | null>;
11514
+ wrapperRef?: React__default.RefObject<HTMLDivElement | null>;
11519
11515
  children?: React__default.ReactNode;
11520
11516
  isFixedOrSticky?: boolean;
11521
11517
  withLiquidBlur?: boolean;
@@ -12058,7 +12054,7 @@ declare global {
12058
12054
  * AtomixGlass - wrapped with React.memo to prevent unnecessary re-renders.
12059
12055
  * Ref is forwarded to the root `<div>` element.
12060
12056
  */
12061
- declare const AtomixGlass: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<AtomixGlassProps & React__default.RefAttributes<HTMLDivElement>>>;
12057
+ declare const AtomixGlass: React__default.NamedExoticComponent<AtomixGlassProps & React__default.RefAttributes<HTMLDivElement>>;
12062
12058
 
12063
12059
  declare const Avatar: React__default.FC<AvatarProps>;
12064
12060
 
@@ -12203,7 +12199,7 @@ declare const Block: React__default.ForwardRefExoticComponent<BlockProps & React
12203
12199
  */
12204
12200
  declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
12205
12201
 
12206
- declare const Card: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
12202
+ declare const Card: React__default.NamedExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>;
12207
12203
 
12208
12204
  declare const ElevationCard: React__default.FC<ElevationCardProps>;
12209
12205
 
@@ -12282,7 +12278,7 @@ declare const DataTable: React__default.FC<DataTableProps>;
12282
12278
  */
12283
12279
  declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerProps & React__default.RefAttributes<DatePickerRef>>;
12284
12280
 
12285
- declare const Checkbox: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
12281
+ declare const Checkbox: React__default.NamedExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>;
12286
12282
 
12287
12283
  /**
12288
12284
  * Footer component provides a comprehensive footer section with multiple layout options,
@@ -12360,7 +12356,7 @@ declare const FormGroup: React__default.FC<FormGroupProps>;
12360
12356
  /**
12361
12357
  * Input - A component for text input fields
12362
12358
  */
12363
- declare const Input: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>>;
12359
+ declare const Input: React__default.NamedExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
12364
12360
 
12365
12361
  /**
12366
12362
  * Radio - A component for radio button inputs
@@ -12370,7 +12366,7 @@ declare const Radio: React__default.FC<RadioProps>;
12370
12366
  /**
12371
12367
  * Textarea - A component for multiline text input
12372
12368
  */
12373
- declare const Textarea: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>>;
12369
+ declare const Textarea: React__default.NamedExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>;
12374
12370
 
12375
12371
  type ListGroupProps = ListGroupProps$1;
12376
12372
  declare const ListGroup: React__default.FC<ListGroupProps>;
@@ -12596,7 +12592,7 @@ interface ProductReviewProps {
12596
12592
  */
12597
12593
  declare const ProductReview: React__default.FC<ProductReviewProps>;
12598
12594
 
12599
- declare const Progress: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<ProgressProps & React__default.RefAttributes<HTMLDivElement>>>;
12595
+ declare const Progress: React__default.NamedExoticComponent<ProgressProps & React__default.RefAttributes<HTMLDivElement>>;
12600
12596
 
12601
12597
  /**
12602
12598
  * Rating component for displaying and collecting star ratings
@@ -15043,6 +15039,28 @@ interface TokenEngineConfig {
15043
15039
  onBuild?: boolean;
15044
15040
  };
15045
15041
  }
15042
+ /**
15043
+ * CLI component generator defaults (merged before CLI flags; flags win).
15044
+ */
15045
+ interface GeneratorConfig {
15046
+ /** Default output directory for generated components */
15047
+ outputPath?: string;
15048
+ /** Override detected framework */
15049
+ framework?: 'react' | 'next' | 'vanilla';
15050
+ /** Per-feature defaults (CLI --no-* flags override) */
15051
+ features?: {
15052
+ storybook?: boolean;
15053
+ hook?: boolean;
15054
+ styles?: boolean;
15055
+ tests?: boolean;
15056
+ };
15057
+ /** Composable hooks directory relative to project root */
15058
+ hookOutputDir?: string;
15059
+ /** Story file: side-effect import for global Atomix styles */
15060
+ storybookCssImport?: string;
15061
+ /** Barrel file strategy for new components */
15062
+ barrel?: 'index' | 'none';
15063
+ }
15046
15064
  /**
15047
15065
  * Atomix Configuration Interface
15048
15066
  *
@@ -15075,6 +15093,17 @@ interface AtomixConfig {
15075
15093
  model?: string;
15076
15094
  /** API key for the provider */
15077
15095
  apiKey?: string;
15096
+ /** Temperature for AI creativity (0.0-1.0, default: 0.7) */
15097
+ temperature?: number;
15098
+ /** Maximum tokens per AI response (default: 4000) */
15099
+ maxTokens?: number;
15100
+ /** Rate limiting configuration */
15101
+ rateLimit?: {
15102
+ /** Maximum requests allowed */
15103
+ requests: number;
15104
+ /** Time window in milliseconds */
15105
+ windowMs: number;
15106
+ };
15078
15107
  };
15079
15108
  /**
15080
15109
  * Performance & Telemetry (Phase 4)
@@ -15087,6 +15116,10 @@ interface AtomixConfig {
15087
15116
  /** Anonymize telemetry data (default: true) */
15088
15117
  anonymize?: boolean;
15089
15118
  };
15119
+ /**
15120
+ * `atomix generate` defaults (CLI overrides these)
15121
+ */
15122
+ generator?: GeneratorConfig;
15090
15123
  /**
15091
15124
  * Theme customization (Tailwind-like)
15092
15125
  *
@@ -15489,13 +15522,13 @@ declare const atomix: {
15489
15522
  Body: typeof AccordionBody;
15490
15523
  };
15491
15524
  AtomixLogo: React$1.FC<AtomixLogoProps>;
15492
- AtomixGlass: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AtomixGlassProps & React$1.RefAttributes<HTMLDivElement>>>;
15525
+ AtomixGlass: React$1.NamedExoticComponent<AtomixGlassProps & React$1.RefAttributes<HTMLDivElement>>;
15493
15526
  Avatar: React$1.FC<AvatarProps>;
15494
15527
  AvatarGroup: React$1.FC<AvatarGroupProps>;
15495
15528
  Badge: React$1.FC<BadgeProps>;
15496
15529
  Block: React$1.ForwardRefExoticComponent<BlockProps & React$1.RefAttributes<HTMLDivElement>>;
15497
15530
  Breadcrumb: BreadcrumbType;
15498
- Button: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
15531
+ Button: React$1.NamedExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
15499
15532
  ButtonGroup: React$1.FC<ButtonGroupProps>;
15500
15533
  Callout: React$1.FC<CalloutProps> & {
15501
15534
  Icon: typeof CalloutIcon;
@@ -15506,14 +15539,14 @@ declare const atomix: {
15506
15539
  CloseButton: typeof CalloutCloseButton;
15507
15540
  Content: typeof CalloutContent;
15508
15541
  };
15509
- Card: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
15542
+ Card: React$1.NamedExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>;
15510
15543
  ElevationCard: React$1.FC<ElevationCardProps>;
15511
- AreaChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15512
- BarChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15513
- BubbleChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<BubbleChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15514
- CandlestickChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CandlestickChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15515
- Chart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<ChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15516
- ChartRenderer: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<{
15544
+ AreaChart: React$1.NamedExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
15545
+ BarChart: React$1.NamedExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>;
15546
+ BubbleChart: React$1.NamedExoticComponent<BubbleChartProps & React$1.RefAttributes<HTMLDivElement>>;
15547
+ CandlestickChart: React$1.NamedExoticComponent<CandlestickChartProps & React$1.RefAttributes<HTMLDivElement>>;
15548
+ Chart: React$1.NamedExoticComponent<ChartProps & React$1.RefAttributes<HTMLDivElement>>;
15549
+ ChartRenderer: React$1.NamedExoticComponent<{
15517
15550
  datasets: ChartProps$1["datasets"];
15518
15551
  config?: ChartProps$1["config"];
15519
15552
  width?: number;
@@ -15524,18 +15557,18 @@ declare const atomix: {
15524
15557
  enableAccessibility?: boolean;
15525
15558
  enablePerformanceOptimization?: boolean;
15526
15559
  renderContent: (params: ChartRenderContentParams) => React.ReactNode;
15527
- } & React$1.RefAttributes<SVGSVGElement>>>;
15528
- DonutChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15529
- FunnelChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<FunnelChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15530
- GaugeChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<GaugeChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15531
- HeatmapChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<HeatmapChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15532
- LineChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15533
- MultiAxisChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<MultiAxisChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15534
- PieChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15535
- RadarChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<RadarChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15536
- ScatterChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<ScatterChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15537
- TreemapChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15538
- WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
15560
+ } & React$1.RefAttributes<SVGSVGElement>>;
15561
+ DonutChart: React$1.NamedExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>;
15562
+ FunnelChart: React$1.NamedExoticComponent<FunnelChartProps & React$1.RefAttributes<HTMLDivElement>>;
15563
+ GaugeChart: React$1.NamedExoticComponent<GaugeChartProps & React$1.RefAttributes<HTMLDivElement>>;
15564
+ HeatmapChart: React$1.NamedExoticComponent<HeatmapChartProps & React$1.RefAttributes<HTMLDivElement>>;
15565
+ LineChart: React$1.NamedExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>;
15566
+ MultiAxisChart: React$1.NamedExoticComponent<MultiAxisChartProps & React$1.RefAttributes<HTMLDivElement>>;
15567
+ PieChart: React$1.NamedExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>;
15568
+ RadarChart: React$1.NamedExoticComponent<RadarChartProps & React$1.RefAttributes<HTMLDivElement>>;
15569
+ ScatterChart: React$1.NamedExoticComponent<ScatterChartProps & React$1.RefAttributes<HTMLDivElement>>;
15570
+ TreemapChart: React$1.NamedExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>;
15571
+ WaterfallChart: React$1.NamedExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>;
15539
15572
  ColorModeToggle: React$1.FC<ColorModeToggleProps>;
15540
15573
  Countdown: React$1.FC<CountdownProps>;
15541
15574
  DataTable: React$1.FC<DataTableProps>;
@@ -15553,7 +15586,7 @@ declare const atomix: {
15553
15586
  Footer: typeof EdgePanelFooter;
15554
15587
  CloseButton: typeof EdgePanelCloseButton;
15555
15588
  };
15556
- Checkbox: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>>;
15589
+ Checkbox: React$1.NamedExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
15557
15590
  Footer: React$1.ForwardRefExoticComponent<FooterProps & React$1.RefAttributes<HTMLElement>>;
15558
15591
  FooterSection: React$1.ForwardRefExoticComponent<FooterSectionProps & {
15559
15592
  showNewsletter?: boolean;
@@ -15562,10 +15595,10 @@ declare const atomix: {
15562
15595
  FooterSocialLink: React$1.ForwardRefExoticComponent<FooterSocialLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
15563
15596
  Form: React$1.FC<FormProps>;
15564
15597
  FormGroup: React$1.FC<FormGroupProps>;
15565
- Input: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>>;
15598
+ Input: React$1.NamedExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
15566
15599
  Radio: React$1.FC<RadioProps>;
15567
15600
  Select: SelectComponent;
15568
- Textarea: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>>;
15601
+ Textarea: React$1.NamedExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
15569
15602
  Hero: React$1.FC<HeroProps> & {
15570
15603
  Title: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
15571
15604
  Subtitle: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
@@ -15603,7 +15636,7 @@ declare const atomix: {
15603
15636
  PhotoViewer: React$1.FC<PhotoViewerProps>;
15604
15637
  Popover: React$1.FC<PopoverProps>;
15605
15638
  ProductReview: React$1.FC<ProductReviewProps>;
15606
- Progress: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>>;
15639
+ Progress: React$1.NamedExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
15607
15640
  Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
15608
15641
  River: React$1.FC<RiverProps>;
15609
15642
  SectionIntro: React$1.FC<SectionIntroProps>;
@@ -15628,4 +15661,4 @@ declare const atomix: {
15628
15661
  };
15629
15662
 
15630
15663
  export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, _default as Accordion, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BALANCED_PRESET, 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, DEFAULT_BREAKPOINTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DesignTokensCustomizer, DeviceDetector, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MOBILE_OPTIMIZED_BREAKPOINTS, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PERFORMANCE_PRESET, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PerformanceOverlay, PhotoViewer, PieChart, Popover, ProductReview, Progress, QUALITY_PRESET, 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, TYPEDBUTTON, 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, createBreakpoints, createCSSVarStyle, createDarkVariant, createDebugAttrs, createFontPreloadLink, createPartProps, createSlotComponent, createSlotProps, createTheme, createThemeRegistry, createTokens, cssVarsToStyle, deepMerge, atomix as default, defaultTokens, defineConfig, designTokensToCSSVars, exportTheme, extendTheme, extractComponentName, extractYouTubeId, generateCSSVariableName, generateCSSVariables, generateCSSVariablesForSelector, generateClassName, generateComponentCSSVars, generateFontPreloadTags, generateUUID, getAllThemes, getCSSVariable, getComponentCSSVars, getComponentThemeValue, getDefaultBreakpoints, getDevicePreset, getMobileOptimizedParams, getPartStyles, getQualityMultipliers, getTheme, getThemeApplicator, getThemeCount, getThemeIds, getThemeMetadata, hasCustomization, hasTheme, importTheme, injectCSS, injectTheme, isCSSInjected, isDesignTokens, isSlot, isValidCSSVariableName, isYouTubeUrl, mapSCSSTokensToCSSVars, mergeCSSVars, mergeClassNames, mergeComponentProps, mergePartStyles, mergeSlots, mergeTheme, normalizeThemeTokens, preloadFonts, quickTheme, registerTheme, removeCSS, removeCSSVariables, removeTheme, renderSlot, sliderConstants, supportsDarkMode, theme, themePropertyToCSSVar, themeToCSS, types, unregisterTheme, useAccordion, useAtomixGlass, useBadge, useBarChart, useBlock, useChartData, useChartInteraction, useChartScale, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useEdgePanel, useForm, useFormGroup, useHero, useHistory, useInput, useLineChart, useMergedProps, useNav, useNavDropdown, useNavItem, useNavbar, usePerformanceMonitor, usePieChart, useRadio, useResponsiveGlass, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils, validateTheme };
15631
- export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, 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$1 as DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassParams, GlassSize, GlassThemeTokens, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroParts, 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, PerformanceMetrics, PerformanceMonitorConfig, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PluginConfig, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, ResponsiveBreakpoint, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption$1 as 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, TokenEngineConfig, TokenProviderConfig, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseHistoryOptions, UseHistoryReturn, UsePerformanceMonitorReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
15664
+ export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, 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$1 as DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GeneratorConfig, GlassContainerProps, GlassMode, GlassParams, GlassSize, GlassThemeTokens, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroParts, 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, PerformanceMetrics, PerformanceMonitorConfig, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PluginConfig, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, ResponsiveBreakpoint, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption$1 as 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, TokenEngineConfig, TokenProviderConfig, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseHistoryOptions, UseHistoryReturn, UsePerformanceMonitorReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };