@shohojdhara/atomix 0.5.0 → 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.
- package/atomix.config.ts +12 -0
- package/build-tools/webpack-loader.js +5 -4
- package/dist/atomix.css +230 -83
- package/dist/atomix.css.map +1 -1
- package/dist/atomix.min.css +1 -1
- package/dist/atomix.min.css.map +1 -1
- package/dist/build-tools/webpack-loader.js +5 -4
- package/dist/charts.d.ts +24 -23
- package/dist/charts.js +271 -369
- package/dist/charts.js.map +1 -1
- package/dist/config.d.ts +624 -0
- package/dist/config.js +59 -0
- package/dist/config.js.map +1 -0
- package/dist/core.d.ts +3 -2
- package/dist/core.js +342 -382
- package/dist/core.js.map +1 -1
- package/dist/forms.d.ts +4 -6
- package/dist/forms.js +233 -334
- package/dist/forms.js.map +1 -1
- package/dist/heavy.d.ts +11 -2
- package/dist/heavy.js +406 -445
- package/dist/heavy.js.map +1 -1
- package/dist/index.d.ts +109 -65
- package/dist/index.esm.js +654 -748
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +621 -717
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/layout.js +59 -60
- package/dist/layout.js.map +1 -1
- package/dist/theme.js +4 -4
- package/dist/theme.js.map +1 -1
- package/package.json +24 -9
- package/scripts/atomix-cli.js +15 -1
- package/scripts/cli/__tests__/complexity-utils.test.js +24 -0
- package/scripts/cli/__tests__/detector.test.js +50 -0
- package/scripts/cli/__tests__/template-engine.test.js +23 -0
- package/scripts/cli/__tests__/test-setup.js +1 -133
- package/scripts/cli/commands/doctor.js +15 -3
- package/scripts/cli/commands/generate.js +113 -51
- package/scripts/cli/internal/ai-engine.js +30 -10
- package/scripts/cli/internal/complexity-utils.js +60 -0
- package/scripts/cli/internal/component-validator.js +49 -16
- package/scripts/cli/internal/generator.js +89 -36
- package/scripts/cli/internal/hook-generator.js +5 -2
- package/scripts/cli/internal/itcss-generator.js +16 -12
- package/scripts/cli/templates/next-templates.js +81 -30
- package/scripts/cli/templates/storybook-templates.js +12 -2
- package/scripts/cli/utils/detector.js +45 -7
- package/scripts/cli/utils/diagnostics.js +78 -0
- package/scripts/cli/utils/telemetry.js +13 -0
- package/src/components/Accordion/Accordion.stories.tsx +4 -0
- package/src/components/AtomixGlass/AtomixGlass.tsx +188 -128
- package/src/components/AtomixGlass/AtomixGlassContainer.tsx +63 -91
- package/src/components/AtomixGlass/PerformanceDashboard.tsx +153 -201
- package/src/components/AtomixGlass/__snapshots__/AtomixGlass.test.tsx.snap +9 -6
- package/src/components/AtomixGlass/glass-utils.ts +51 -1
- package/src/components/AtomixGlass/stories/AnimationFeatures.stories.tsx +52 -46
- package/src/components/AtomixGlass/stories/Examples.stories.tsx +573 -236
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +88 -41
- package/src/components/AtomixGlass/stories/argTypes.ts +19 -19
- package/src/components/AtomixGlass/stories/shared-components.tsx +7 -12
- package/src/components/AtomixGlass/stories/types.ts +3 -3
- package/src/components/Button/Button.tsx +114 -57
- package/src/components/Callout/Callout.tsx +4 -4
- package/src/components/Chart/ChartRenderer.tsx +1 -1
- package/src/components/Chart/DonutChart.tsx +11 -8
- package/src/components/EdgePanel/EdgePanel.tsx +119 -115
- package/src/components/Form/Select.tsx +4 -4
- package/src/components/List/List.tsx +4 -4
- package/src/components/Navigation/SideMenu/SideMenu.tsx +6 -6
- package/src/components/PhotoViewer/PhotoViewerImage.tsx +1 -1
- package/src/components/ProductReview/ProductReview.tsx +4 -2
- package/src/components/Rating/Rating.tsx +4 -2
- package/src/components/SectionIntro/SectionIntro.tsx +4 -2
- package/src/components/Steps/Steps.tsx +1 -1
- package/src/components/Tabs/Tabs.tsx +5 -5
- package/src/components/Testimonial/Testimonial.tsx +4 -2
- package/src/components/VideoPlayer/VideoPlayer.tsx +4 -2
- package/src/layouts/CssGrid/CssGrid.stories.tsx +464 -0
- package/src/layouts/CssGrid/CssGrid.tsx +215 -0
- package/src/layouts/CssGrid/index.ts +8 -0
- package/src/layouts/CssGrid/scripts/CssGrid.js +284 -0
- package/src/layouts/CssGrid/scripts/index.js +43 -0
- package/src/layouts/Grid/scripts/Container.js +139 -0
- package/src/layouts/Grid/scripts/Grid.js +184 -0
- package/src/layouts/Grid/scripts/GridCol.js +273 -0
- package/src/layouts/Grid/scripts/Row.js +154 -0
- package/src/layouts/Grid/scripts/index.js +48 -0
- package/src/layouts/MasonryGrid/MasonryGrid.tsx +71 -59
- package/src/lib/composables/atomix-glass/useGlassSize.ts +1 -1
- package/src/lib/composables/useAccordion.ts +5 -5
- package/src/lib/composables/useAtomixGlass.ts +111 -74
- package/src/lib/composables/useAtomixGlassStyles.ts +0 -2
- package/src/lib/composables/useBarChart.ts +2 -2
- package/src/lib/composables/useChart.ts +3 -2
- package/src/lib/composables/useChartToolbar.ts +48 -66
- package/src/lib/composables/useDataTable.ts +1 -1
- package/src/lib/composables/useDatePicker.ts +2 -2
- package/src/lib/composables/useEdgePanel.ts +45 -54
- package/src/lib/composables/useHeroBackgroundSlider.ts +5 -5
- package/src/lib/composables/usePhotoViewer.ts +2 -3
- package/src/lib/composables/usePieChart.ts +1 -1
- package/src/lib/composables/usePopover.ts +151 -139
- package/src/lib/composables/useSideMenu.ts +28 -41
- package/src/lib/composables/useSlider.ts +2 -6
- package/src/lib/composables/useTooltip.ts +2 -2
- package/src/lib/config/index.ts +39 -0
- package/src/lib/constants/components.ts +1 -0
- package/src/lib/theme/devtools/Comparator.tsx +1 -1
- package/src/lib/theme/devtools/Inspector.tsx +1 -1
- package/src/lib/theme/devtools/LiveEditor.tsx +1 -1
- package/src/lib/theme/runtime/ThemeProvider.tsx +1 -1
- package/src/lib/types/components.ts +1 -0
- package/src/styles/01-settings/_index.scss +1 -0
- package/src/styles/01-settings/_settings.atomix-glass.scss +174 -0
- package/src/styles/01-settings/_settings.masonry-grid.scss +42 -6
- package/src/styles/02-tools/_tools.glass.scss +6 -0
- package/src/styles/05-objects/_objects.masonry-grid.scss +162 -24
- package/src/styles/06-components/_components.atomix-glass.scss +160 -99
- package/scripts/cli/__tests__/README.md +0 -81
- package/scripts/cli/__tests__/basic.test.js +0 -116
- package/scripts/cli/__tests__/clean.test.js +0 -278
- package/scripts/cli/__tests__/component-generator.test.js +0 -332
- package/scripts/cli/__tests__/component-validator.test.js +0 -433
- package/scripts/cli/__tests__/generator.test.js +0 -613
- package/scripts/cli/__tests__/glass-motion.test.js +0 -256
- package/scripts/cli/__tests__/integration.test.js +0 -938
- package/scripts/cli/__tests__/migrate.test.js +0 -74
- package/scripts/cli/__tests__/security.test.js +0 -206
- package/scripts/cli/__tests__/theme-bridge.test.js +0 -507
- package/scripts/cli/__tests__/token-manager.test.js +0 -251
- package/scripts/cli/__tests__/token-provider.test.js +0 -361
- package/scripts/cli/__tests__/utils.test.js +0 -165
- package/src/components/AtomixGlass/stories/AnimationTests.stories.tsx +0 -95
- package/src/components/AtomixGlass/stories/CardExamples.stories.tsx +0 -212
- package/src/components/AtomixGlass/stories/Customization.stories.tsx +0 -131
- package/src/components/AtomixGlass/stories/DashboardExamples.stories.tsx +0 -348
- package/src/components/AtomixGlass/stories/EcommerceExamples.stories.tsx +0 -410
- package/src/components/AtomixGlass/stories/FormExamples.stories.tsx +0 -436
- package/src/components/AtomixGlass/stories/HeroExamples.stories.tsx +0 -264
- package/src/components/AtomixGlass/stories/InteractivePlayground.stories.tsx +0 -247
- package/src/components/AtomixGlass/stories/MobileUIExamples.stories.tsx +0 -418
- package/src/components/AtomixGlass/stories/ModalExamples.stories.tsx +0 -402
- package/src/components/AtomixGlass/stories/Modes.stories.tsx +0 -1082
- package/src/components/AtomixGlass/stories/Overview.stories.tsx +0 -497
- package/src/components/AtomixGlass/stories/Performance.stories.tsx +0 -103
- package/src/components/AtomixGlass/stories/PresetGallery.stories.tsx +0 -335
- package/src/components/AtomixGlass/stories/Shaders.stories.tsx +0 -395
- package/src/components/AtomixGlass/stories/WidgetExamples.stories.tsx +0 -441
- package/src/components/TypedButton/TypedButton.stories.tsx +0 -59
- package/src/components/TypedButton/TypedButton.tsx +0 -39
- package/src/components/TypedButton/index.ts +0 -2
- package/src/lib/composables/useBreadcrumb.ts +0 -81
- package/src/lib/composables/useChartInteractions.ts +0 -123
- package/src/lib/composables/useChartPerformance.ts +0 -347
- package/src/lib/composables/useDropdown.ts +0 -338
- package/src/lib/composables/useModal.ts +0 -110
- package/src/lib/composables/useTypedButton.ts +0 -66
- package/src/lib/hooks/usePerformanceMonitor.ts +0 -148
- package/src/lib/utils/displacement-generator.ts +0 -92
- package/src/lib/utils/memoryMonitor.ts +0 -191
- package/src/styles/01-settings/_settings.testtypecheck.scss +0 -53
- package/src/styles/01-settings/_settings.typedbutton.scss +0 -53
- package/src/styles/06-components/_components.testbutton.scss +0 -212
- package/src/styles/06-components/_components.testtypecheck.scss +0 -212
- package/src/styles/06-components/_components.typedbutton.scss +0 -212
package/dist/index.d.ts
CHANGED
|
@@ -1346,6 +1346,7 @@ interface AtomixGlassProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1346
1346
|
overLight?: OverLightConfig;
|
|
1347
1347
|
mode?: DisplacementMode;
|
|
1348
1348
|
onClick?: () => void;
|
|
1349
|
+
isFixedOrSticky?: boolean;
|
|
1349
1350
|
/**
|
|
1350
1351
|
* Shader variant for shader mode
|
|
1351
1352
|
*/
|
|
@@ -6919,9 +6920,6 @@ declare const SelectOption: React__default.FC<SelectOptionProps>;
|
|
|
6919
6920
|
type SelectComponent = React__default.FC<SelectProps> & {
|
|
6920
6921
|
Option: typeof SelectOption;
|
|
6921
6922
|
};
|
|
6922
|
-
/**
|
|
6923
|
-
* Select - A component for dropdown selection
|
|
6924
|
-
*/
|
|
6925
6923
|
declare const Select: SelectComponent;
|
|
6926
6924
|
|
|
6927
6925
|
declare const EdgePanelHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
@@ -7597,7 +7595,7 @@ interface LineChartProps extends Omit<ChartProps, 'type'> {
|
|
|
7597
7595
|
*/
|
|
7598
7596
|
onBrushSelection?: (startIndex: number, endIndex: number) => void;
|
|
7599
7597
|
}
|
|
7600
|
-
declare const LineChart: React$1.
|
|
7598
|
+
declare const LineChart: React$1.NamedExoticComponent<LineChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7601
7599
|
|
|
7602
7600
|
interface AreaChartProps extends Omit<LineChartProps, 'lineOptions'> {
|
|
7603
7601
|
/**
|
|
@@ -7605,7 +7603,7 @@ interface AreaChartProps extends Omit<LineChartProps, 'lineOptions'> {
|
|
|
7605
7603
|
*/
|
|
7606
7604
|
areaOptions?: LineChartProps['lineOptions'];
|
|
7607
7605
|
}
|
|
7608
|
-
declare const AreaChart: React$1.
|
|
7606
|
+
declare const AreaChart: React$1.NamedExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7609
7607
|
|
|
7610
7608
|
/**
|
|
7611
7609
|
* Bar chart specific options
|
|
@@ -7742,7 +7740,7 @@ interface BarChartProps extends Omit<ChartProps, 'type'> {
|
|
|
7742
7740
|
*/
|
|
7743
7741
|
horizontal?: boolean;
|
|
7744
7742
|
}
|
|
7745
|
-
declare const BarChart: React$1.
|
|
7743
|
+
declare const BarChart: React$1.NamedExoticComponent<BarChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7746
7744
|
|
|
7747
7745
|
interface BubbleDataPoint {
|
|
7748
7746
|
label: string;
|
|
@@ -7808,7 +7806,7 @@ interface BubbleChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
7808
7806
|
sizeBasedColoring?: boolean;
|
|
7809
7807
|
};
|
|
7810
7808
|
}
|
|
7811
|
-
declare const BubbleChart: React$1.
|
|
7809
|
+
declare const BubbleChart: React$1.NamedExoticComponent<BubbleChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7812
7810
|
|
|
7813
7811
|
interface CandlestickDataPoint {
|
|
7814
7812
|
/**
|
|
@@ -7907,14 +7905,14 @@ interface CandlestickChartProps extends Omit<ChartProps, 'type' | 'datasets' | '
|
|
|
7907
7905
|
showTooltips?: boolean;
|
|
7908
7906
|
};
|
|
7909
7907
|
}
|
|
7910
|
-
declare const CandlestickChart: React$1.
|
|
7908
|
+
declare const CandlestickChart: React$1.NamedExoticComponent<CandlestickChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7911
7909
|
|
|
7912
|
-
declare const Chart: React$1.
|
|
7910
|
+
declare const Chart: React$1.NamedExoticComponent<ChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7913
7911
|
|
|
7914
7912
|
/**
|
|
7915
7913
|
* Enhanced chart renderer component with comprehensive functionality
|
|
7916
7914
|
*/
|
|
7917
|
-
declare const ChartRenderer: React$1.
|
|
7915
|
+
declare const ChartRenderer: React$1.NamedExoticComponent<{
|
|
7918
7916
|
datasets: ChartProps$1["datasets"];
|
|
7919
7917
|
config?: ChartProps$1["config"];
|
|
7920
7918
|
width?: number;
|
|
@@ -7925,7 +7923,7 @@ declare const ChartRenderer: React$1.MemoExoticComponent<React$1.ForwardRefExoti
|
|
|
7925
7923
|
enableAccessibility?: boolean;
|
|
7926
7924
|
enablePerformanceOptimization?: boolean;
|
|
7927
7925
|
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
7928
|
-
} & React$1.RefAttributes<SVGSVGElement
|
|
7926
|
+
} & React$1.RefAttributes<SVGSVGElement>>;
|
|
7929
7927
|
|
|
7930
7928
|
type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
7931
7929
|
type IconWeight = 'thin' | 'light' | 'regular' | 'bold' | 'fill' | 'duotone';
|
|
@@ -8073,7 +8071,7 @@ interface PieChartProps extends Omit<ChartProps, 'type'> {
|
|
|
8073
8071
|
*/
|
|
8074
8072
|
pieOptions?: PieChartOptions;
|
|
8075
8073
|
}
|
|
8076
|
-
declare const PieChart: React$1.
|
|
8074
|
+
declare const PieChart: React$1.NamedExoticComponent<PieChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8077
8075
|
|
|
8078
8076
|
interface DonutChartProps extends Omit<PieChartProps, 'type'> {
|
|
8079
8077
|
/**
|
|
@@ -8102,7 +8100,7 @@ interface DonutChartProps extends Omit<PieChartProps, 'type'> {
|
|
|
8102
8100
|
roundedCorners?: boolean;
|
|
8103
8101
|
};
|
|
8104
8102
|
}
|
|
8105
|
-
declare const DonutChart: React$1.
|
|
8103
|
+
declare const DonutChart: React$1.NamedExoticComponent<DonutChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8106
8104
|
|
|
8107
8105
|
interface FunnelDataPoint {
|
|
8108
8106
|
label: string;
|
|
@@ -8194,7 +8192,7 @@ interface FunnelChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8194
8192
|
minSegmentRatio?: number;
|
|
8195
8193
|
};
|
|
8196
8194
|
}
|
|
8197
|
-
declare const FunnelChart: React$1.
|
|
8195
|
+
declare const FunnelChart: React$1.NamedExoticComponent<FunnelChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8198
8196
|
|
|
8199
8197
|
interface GaugeChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
8200
8198
|
/**
|
|
@@ -8292,7 +8290,7 @@ interface GaugeChartProps extends Omit<ChartProps, 'type' | 'datasets'> {
|
|
|
8292
8290
|
labelPosition?: 'top' | 'bottom' | 'center';
|
|
8293
8291
|
};
|
|
8294
8292
|
}
|
|
8295
|
-
declare const GaugeChart: React$1.
|
|
8293
|
+
declare const GaugeChart: React$1.NamedExoticComponent<GaugeChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8296
8294
|
|
|
8297
8295
|
interface HeatmapDataPoint {
|
|
8298
8296
|
x: string | number;
|
|
@@ -8365,7 +8363,7 @@ interface HeatmapChartProps extends Omit<ChartProps, 'type' | 'datasets' | 'vari
|
|
|
8365
8363
|
*/
|
|
8366
8364
|
showGrid?: boolean;
|
|
8367
8365
|
}
|
|
8368
|
-
declare const HeatmapChart: React$1.
|
|
8366
|
+
declare const HeatmapChart: React$1.NamedExoticComponent<HeatmapChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8369
8367
|
|
|
8370
8368
|
interface AxisConfig {
|
|
8371
8369
|
/**
|
|
@@ -8482,7 +8480,7 @@ interface MultiAxisChartProps extends Omit<ChartProps$1, 'type'> {
|
|
|
8482
8480
|
spanGaps?: boolean;
|
|
8483
8481
|
};
|
|
8484
8482
|
}
|
|
8485
|
-
declare const MultiAxisChart: React$1.
|
|
8483
|
+
declare const MultiAxisChart: React$1.NamedExoticComponent<MultiAxisChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8486
8484
|
|
|
8487
8485
|
interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
|
|
8488
8486
|
/**
|
|
@@ -8539,7 +8537,7 @@ interface RadarChartProps extends Omit<ChartProps$1, 'type'> {
|
|
|
8539
8537
|
scaleMax?: number;
|
|
8540
8538
|
};
|
|
8541
8539
|
}
|
|
8542
|
-
declare const RadarChart: React$1.
|
|
8540
|
+
declare const RadarChart: React$1.NamedExoticComponent<RadarChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8543
8541
|
|
|
8544
8542
|
interface ScatterChartProps extends Omit<ChartProps, 'type'> {
|
|
8545
8543
|
/**
|
|
@@ -8560,7 +8558,7 @@ interface ScatterChartProps extends Omit<ChartProps, 'type'> {
|
|
|
8560
8558
|
enableHoverEffects?: boolean;
|
|
8561
8559
|
};
|
|
8562
8560
|
}
|
|
8563
|
-
declare const ScatterChart: React$1.
|
|
8561
|
+
declare const ScatterChart: React$1.NamedExoticComponent<ScatterChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8564
8562
|
|
|
8565
8563
|
interface TreemapDataPoint {
|
|
8566
8564
|
id: string;
|
|
@@ -8650,7 +8648,7 @@ interface TreemapChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8650
8648
|
enableSelection?: boolean;
|
|
8651
8649
|
};
|
|
8652
8650
|
}
|
|
8653
|
-
declare const TreemapChart: React$1.
|
|
8651
|
+
declare const TreemapChart: React$1.NamedExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8654
8652
|
|
|
8655
8653
|
interface WaterfallDataPoint {
|
|
8656
8654
|
label: string;
|
|
@@ -8735,7 +8733,7 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8735
8733
|
baselineColor?: string;
|
|
8736
8734
|
};
|
|
8737
8735
|
}
|
|
8738
|
-
declare const WaterfallChart: React$1.
|
|
8736
|
+
declare const WaterfallChart: React$1.NamedExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
8739
8737
|
|
|
8740
8738
|
declare const CalloutIcon: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8741
8739
|
declare const CalloutMessage: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
@@ -8767,7 +8765,7 @@ type ButtonAsProp = {
|
|
|
8767
8765
|
linkComponent?: React__default.ElementType;
|
|
8768
8766
|
[key: string]: any;
|
|
8769
8767
|
};
|
|
8770
|
-
declare const Button: React__default.
|
|
8768
|
+
declare const Button: React__default.NamedExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
8771
8769
|
|
|
8772
8770
|
interface BreadcrumbItemData {
|
|
8773
8771
|
/**
|
|
@@ -10631,6 +10629,7 @@ declare const ATOMIX_GLASS: {
|
|
|
10631
10629
|
FILTER_OVERLAY_CLASS: string;
|
|
10632
10630
|
FILTER_SHADOW_CLASS: string;
|
|
10633
10631
|
CONTENT_CLASS: string;
|
|
10632
|
+
BORDER_BACKDROP_CLASS: string;
|
|
10634
10633
|
BORDER_1_CLASS: string;
|
|
10635
10634
|
BORDER_2_CLASS: string;
|
|
10636
10635
|
HOVER_1_CLASS: string;
|
|
@@ -11169,11 +11168,11 @@ interface UseHeroBackgroundSliderResult {
|
|
|
11169
11168
|
/**
|
|
11170
11169
|
* Array of refs for slide container elements
|
|
11171
11170
|
*/
|
|
11172
|
-
slideRefs: React__default.RefObject<HTMLDivElement>[];
|
|
11171
|
+
slideRefs: React__default.RefObject<HTMLDivElement | null>[];
|
|
11173
11172
|
/**
|
|
11174
11173
|
* Array of refs for video elements
|
|
11175
11174
|
*/
|
|
11176
|
-
videoRefs: React__default.RefObject<HTMLVideoElement>[];
|
|
11175
|
+
videoRefs: React__default.RefObject<HTMLVideoElement | null>[];
|
|
11177
11176
|
/**
|
|
11178
11177
|
* Handle slide transition to next index
|
|
11179
11178
|
*/
|
|
@@ -11431,11 +11430,10 @@ declare function useNavDropdown(initialProps?: Partial<NavDropdownProps>): {
|
|
|
11431
11430
|
* @returns SideMenu state and methods
|
|
11432
11431
|
*/
|
|
11433
11432
|
declare function useSideMenu(initialProps?: Partial<SideMenuProps>): {
|
|
11434
|
-
defaultProps: Partial<SideMenuProps>;
|
|
11435
11433
|
isOpenState: boolean;
|
|
11436
|
-
wrapperRef: React$1.RefObject<HTMLDivElement>;
|
|
11437
|
-
innerRef: React$1.RefObject<HTMLDivElement>;
|
|
11438
|
-
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>;
|
|
11439
11437
|
generateSideMenuClass: (props: Partial<SideMenuProps & {
|
|
11440
11438
|
isOpen?: boolean;
|
|
11441
11439
|
}>) => string;
|
|
@@ -11462,8 +11460,8 @@ declare function useSideMenuItem(initialProps?: Partial<SideMenuItemProps>): {
|
|
|
11462
11460
|
*/
|
|
11463
11461
|
declare function useEdgePanel(initialProps?: Partial<EdgePanelProps>): {
|
|
11464
11462
|
isOpen: boolean;
|
|
11465
|
-
containerRef: React$1.RefObject<HTMLDivElement>;
|
|
11466
|
-
backdropRef: React$1.RefObject<HTMLDivElement>;
|
|
11463
|
+
containerRef: React$1.RefObject<HTMLDivElement | null>;
|
|
11464
|
+
backdropRef: React$1.RefObject<HTMLDivElement | null>;
|
|
11467
11465
|
generateEdgePanelClass: (props: Partial<EdgePanelProps>) => string;
|
|
11468
11466
|
openPanel: (useFadeAnimation?: boolean) => void;
|
|
11469
11467
|
closePanel: (useFadeAnimation?: boolean) => void;
|
|
@@ -11511,9 +11509,9 @@ declare function useFormGroup(initialProps?: Partial<FormGroupProps>): {
|
|
|
11511
11509
|
};
|
|
11512
11510
|
|
|
11513
11511
|
interface UseAtomixGlassOptions extends Omit<AtomixGlassProps, 'children'> {
|
|
11514
|
-
glassRef: React__default.RefObject<HTMLDivElement>;
|
|
11515
|
-
contentRef: React__default.RefObject<HTMLDivElement>;
|
|
11516
|
-
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>;
|
|
11517
11515
|
children?: React__default.ReactNode;
|
|
11518
11516
|
isFixedOrSticky?: boolean;
|
|
11519
11517
|
withLiquidBlur?: boolean;
|
|
@@ -12047,7 +12045,16 @@ declare const AtomixLogo: React__default.FC<AtomixLogoProps>;
|
|
|
12047
12045
|
* <div>Mobile-optimized glass effect</div>
|
|
12048
12046
|
* </AtomixGlass>
|
|
12049
12047
|
*/
|
|
12050
|
-
declare
|
|
12048
|
+
declare global {
|
|
12049
|
+
interface Window {
|
|
12050
|
+
enablePerformanceMonitoring?: boolean;
|
|
12051
|
+
}
|
|
12052
|
+
}
|
|
12053
|
+
/**
|
|
12054
|
+
* AtomixGlass - wrapped with React.memo to prevent unnecessary re-renders.
|
|
12055
|
+
* Ref is forwarded to the root `<div>` element.
|
|
12056
|
+
*/
|
|
12057
|
+
declare const AtomixGlass: React__default.NamedExoticComponent<AtomixGlassProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
12051
12058
|
|
|
12052
12059
|
declare const Avatar: React__default.FC<AvatarProps>;
|
|
12053
12060
|
|
|
@@ -12192,7 +12199,7 @@ declare const Block: React__default.ForwardRefExoticComponent<BlockProps & React
|
|
|
12192
12199
|
*/
|
|
12193
12200
|
declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
12194
12201
|
|
|
12195
|
-
declare const Card: React__default.
|
|
12202
|
+
declare const Card: React__default.NamedExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>;
|
|
12196
12203
|
|
|
12197
12204
|
declare const ElevationCard: React__default.FC<ElevationCardProps>;
|
|
12198
12205
|
|
|
@@ -12271,7 +12278,7 @@ declare const DataTable: React__default.FC<DataTableProps>;
|
|
|
12271
12278
|
*/
|
|
12272
12279
|
declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerProps & React__default.RefAttributes<DatePickerRef>>;
|
|
12273
12280
|
|
|
12274
|
-
declare const Checkbox: React__default.
|
|
12281
|
+
declare const Checkbox: React__default.NamedExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
12275
12282
|
|
|
12276
12283
|
/**
|
|
12277
12284
|
* Footer component provides a comprehensive footer section with multiple layout options,
|
|
@@ -12349,7 +12356,7 @@ declare const FormGroup: React__default.FC<FormGroupProps>;
|
|
|
12349
12356
|
/**
|
|
12350
12357
|
* Input - A component for text input fields
|
|
12351
12358
|
*/
|
|
12352
|
-
declare const Input: React__default.
|
|
12359
|
+
declare const Input: React__default.NamedExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
12353
12360
|
|
|
12354
12361
|
/**
|
|
12355
12362
|
* Radio - A component for radio button inputs
|
|
@@ -12359,7 +12366,7 @@ declare const Radio: React__default.FC<RadioProps>;
|
|
|
12359
12366
|
/**
|
|
12360
12367
|
* Textarea - A component for multiline text input
|
|
12361
12368
|
*/
|
|
12362
|
-
declare const Textarea: React__default.
|
|
12369
|
+
declare const Textarea: React__default.NamedExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>;
|
|
12363
12370
|
|
|
12364
12371
|
type ListGroupProps = ListGroupProps$1;
|
|
12365
12372
|
declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
@@ -12585,7 +12592,7 @@ interface ProductReviewProps {
|
|
|
12585
12592
|
*/
|
|
12586
12593
|
declare const ProductReview: React__default.FC<ProductReviewProps>;
|
|
12587
12594
|
|
|
12588
|
-
declare const Progress: React__default.
|
|
12595
|
+
declare const Progress: React__default.NamedExoticComponent<ProgressProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
12589
12596
|
|
|
12590
12597
|
/**
|
|
12591
12598
|
* Rating component for displaying and collecting star ratings
|
|
@@ -15032,6 +15039,28 @@ interface TokenEngineConfig {
|
|
|
15032
15039
|
onBuild?: boolean;
|
|
15033
15040
|
};
|
|
15034
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
|
+
}
|
|
15035
15064
|
/**
|
|
15036
15065
|
* Atomix Configuration Interface
|
|
15037
15066
|
*
|
|
@@ -15064,6 +15093,17 @@ interface AtomixConfig {
|
|
|
15064
15093
|
model?: string;
|
|
15065
15094
|
/** API key for the provider */
|
|
15066
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
|
+
};
|
|
15067
15107
|
};
|
|
15068
15108
|
/**
|
|
15069
15109
|
* Performance & Telemetry (Phase 4)
|
|
@@ -15076,6 +15116,10 @@ interface AtomixConfig {
|
|
|
15076
15116
|
/** Anonymize telemetry data (default: true) */
|
|
15077
15117
|
anonymize?: boolean;
|
|
15078
15118
|
};
|
|
15119
|
+
/**
|
|
15120
|
+
* `atomix generate` defaults (CLI overrides these)
|
|
15121
|
+
*/
|
|
15122
|
+
generator?: GeneratorConfig;
|
|
15079
15123
|
/**
|
|
15080
15124
|
* Theme customization (Tailwind-like)
|
|
15081
15125
|
*
|
|
@@ -15478,13 +15522,13 @@ declare const atomix: {
|
|
|
15478
15522
|
Body: typeof AccordionBody;
|
|
15479
15523
|
};
|
|
15480
15524
|
AtomixLogo: React$1.FC<AtomixLogoProps>;
|
|
15481
|
-
AtomixGlass:
|
|
15525
|
+
AtomixGlass: React$1.NamedExoticComponent<AtomixGlassProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15482
15526
|
Avatar: React$1.FC<AvatarProps>;
|
|
15483
15527
|
AvatarGroup: React$1.FC<AvatarGroupProps>;
|
|
15484
15528
|
Badge: React$1.FC<BadgeProps>;
|
|
15485
15529
|
Block: React$1.ForwardRefExoticComponent<BlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15486
15530
|
Breadcrumb: BreadcrumbType;
|
|
15487
|
-
Button: React$1.
|
|
15531
|
+
Button: React$1.NamedExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
15488
15532
|
ButtonGroup: React$1.FC<ButtonGroupProps>;
|
|
15489
15533
|
Callout: React$1.FC<CalloutProps> & {
|
|
15490
15534
|
Icon: typeof CalloutIcon;
|
|
@@ -15495,14 +15539,14 @@ declare const atomix: {
|
|
|
15495
15539
|
CloseButton: typeof CalloutCloseButton;
|
|
15496
15540
|
Content: typeof CalloutContent;
|
|
15497
15541
|
};
|
|
15498
|
-
Card: React$1.
|
|
15542
|
+
Card: React$1.NamedExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>;
|
|
15499
15543
|
ElevationCard: React$1.FC<ElevationCardProps>;
|
|
15500
|
-
AreaChart: React$1.
|
|
15501
|
-
BarChart: React$1.
|
|
15502
|
-
BubbleChart: React$1.
|
|
15503
|
-
CandlestickChart: React$1.
|
|
15504
|
-
Chart: React$1.
|
|
15505
|
-
ChartRenderer: React$1.
|
|
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<{
|
|
15506
15550
|
datasets: ChartProps$1["datasets"];
|
|
15507
15551
|
config?: ChartProps$1["config"];
|
|
15508
15552
|
width?: number;
|
|
@@ -15513,18 +15557,18 @@ declare const atomix: {
|
|
|
15513
15557
|
enableAccessibility?: boolean;
|
|
15514
15558
|
enablePerformanceOptimization?: boolean;
|
|
15515
15559
|
renderContent: (params: ChartRenderContentParams) => React.ReactNode;
|
|
15516
|
-
} & React$1.RefAttributes<SVGSVGElement
|
|
15517
|
-
DonutChart: React$1.
|
|
15518
|
-
FunnelChart: React$1.
|
|
15519
|
-
GaugeChart: React$1.
|
|
15520
|
-
HeatmapChart: React$1.
|
|
15521
|
-
LineChart: React$1.
|
|
15522
|
-
MultiAxisChart: React$1.
|
|
15523
|
-
PieChart: React$1.
|
|
15524
|
-
RadarChart: React$1.
|
|
15525
|
-
ScatterChart: React$1.
|
|
15526
|
-
TreemapChart: React$1.
|
|
15527
|
-
WaterfallChart: React$1.
|
|
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>>;
|
|
15528
15572
|
ColorModeToggle: React$1.FC<ColorModeToggleProps>;
|
|
15529
15573
|
Countdown: React$1.FC<CountdownProps>;
|
|
15530
15574
|
DataTable: React$1.FC<DataTableProps>;
|
|
@@ -15542,7 +15586,7 @@ declare const atomix: {
|
|
|
15542
15586
|
Footer: typeof EdgePanelFooter;
|
|
15543
15587
|
CloseButton: typeof EdgePanelCloseButton;
|
|
15544
15588
|
};
|
|
15545
|
-
Checkbox: React$1.
|
|
15589
|
+
Checkbox: React$1.NamedExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
15546
15590
|
Footer: React$1.ForwardRefExoticComponent<FooterProps & React$1.RefAttributes<HTMLElement>>;
|
|
15547
15591
|
FooterSection: React$1.ForwardRefExoticComponent<FooterSectionProps & {
|
|
15548
15592
|
showNewsletter?: boolean;
|
|
@@ -15551,10 +15595,10 @@ declare const atomix: {
|
|
|
15551
15595
|
FooterSocialLink: React$1.ForwardRefExoticComponent<FooterSocialLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
15552
15596
|
Form: React$1.FC<FormProps>;
|
|
15553
15597
|
FormGroup: React$1.FC<FormGroupProps>;
|
|
15554
|
-
Input: React$1.
|
|
15598
|
+
Input: React$1.NamedExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
15555
15599
|
Radio: React$1.FC<RadioProps>;
|
|
15556
15600
|
Select: SelectComponent;
|
|
15557
|
-
Textarea: React$1.
|
|
15601
|
+
Textarea: React$1.NamedExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
15558
15602
|
Hero: React$1.FC<HeroProps> & {
|
|
15559
15603
|
Title: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
|
|
15560
15604
|
Subtitle: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -15592,7 +15636,7 @@ declare const atomix: {
|
|
|
15592
15636
|
PhotoViewer: React$1.FC<PhotoViewerProps>;
|
|
15593
15637
|
Popover: React$1.FC<PopoverProps>;
|
|
15594
15638
|
ProductReview: React$1.FC<ProductReviewProps>;
|
|
15595
|
-
Progress: React$1.
|
|
15639
|
+
Progress: React$1.NamedExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15596
15640
|
Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15597
15641
|
River: React$1.FC<RiverProps>;
|
|
15598
15642
|
SectionIntro: React$1.FC<SectionIntroProps>;
|
|
@@ -15617,4 +15661,4 @@ declare const atomix: {
|
|
|
15617
15661
|
};
|
|
15618
15662
|
|
|
15619
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 };
|
|
15620
|
-
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 };
|