@shohojdhara/atomix 0.4.0 → 0.4.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/dist/atomix.css +0 -14
- package/dist/atomix.css.map +1 -1
- package/dist/atomix.min.css +4 -4
- package/dist/atomix.min.css.map +1 -1
- package/dist/charts.d.ts +12 -19
- package/dist/charts.js +555 -359
- package/dist/charts.js.map +1 -1
- package/dist/core.d.ts +98 -28
- package/dist/core.js +1082 -733
- package/dist/core.js.map +1 -1
- package/dist/forms.d.ts +26 -21
- package/dist/forms.js +937 -350
- package/dist/forms.js.map +1 -1
- package/dist/heavy.d.ts +14 -21
- package/dist/heavy.js +409 -256
- package/dist/heavy.js.map +1 -1
- package/dist/index.d.ts +518 -284
- package/dist/index.esm.js +1993 -1237
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1994 -1237
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +2 -2
- package/scripts/atomix-cli.js +43 -1
- package/scripts/cli/__tests__/utils.test.js +6 -2
- package/scripts/cli/migration-tools.js +2 -2
- package/scripts/cli/theme-bridge.js +7 -9
- package/scripts/cli/utils.js +2 -1
- package/src/components/Accordion/Accordion.stories.tsx +40 -0
- package/src/components/Accordion/Accordion.tsx +174 -56
- package/src/components/Accordion/AccordionCompound.test.tsx +70 -0
- package/src/components/AtomixGlass/AtomixGlass.tsx +82 -54
- package/src/components/AtomixGlass/AtomixGlassContainer.tsx +17 -18
- package/src/components/AtomixGlass/README.md +5 -5
- package/src/components/AtomixGlass/stories/Customization.stories.tsx +2 -2
- package/src/components/AtomixGlass/stories/Examples.stories.tsx +42 -42
- package/src/components/AtomixGlass/stories/Modes.stories.tsx +5 -5
- package/src/components/AtomixGlass/stories/Overview.stories.tsx +3 -3
- package/src/components/AtomixGlass/stories/Performance.stories.tsx +2 -2
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +45 -45
- package/src/components/AtomixGlass/stories/Shaders.stories.tsx +3 -3
- package/src/components/Badge/Badge.stories.tsx +1 -1
- package/src/components/Badge/Badge.tsx +1 -1
- package/src/components/Breadcrumb/Breadcrumb.tsx +185 -65
- package/src/components/Breadcrumb/BreadcrumbCompound.test.tsx +84 -0
- package/src/components/Breadcrumb/index.ts +2 -2
- package/src/components/Button/Button.stories.tsx +1 -1
- package/src/components/Button/README.md +2 -2
- package/src/components/Callout/Callout.stories.tsx +166 -1011
- package/src/components/Callout/Callout.test.tsx +3 -3
- package/src/components/Callout/Callout.tsx +196 -84
- package/src/components/Callout/CalloutCompound.test.tsx +72 -0
- package/src/components/Callout/README.md +2 -2
- package/src/components/Chart/Chart.stories.tsx +1 -1
- package/src/components/Chart/Chart.tsx +5 -5
- package/src/components/Chart/TreemapChart.tsx +37 -29
- package/src/components/DatePicker/readme.md +3 -3
- package/src/components/Dropdown/Dropdown.stories.tsx +1 -1
- package/src/components/Dropdown/Dropdown.tsx +133 -20
- package/src/components/Dropdown/DropdownCompound.test.tsx +64 -0
- package/src/components/EdgePanel/EdgePanel.stories.tsx +7 -7
- package/src/components/EdgePanel/EdgePanel.tsx +164 -112
- package/src/components/EdgePanel/EdgePanelCompound.test.tsx +53 -0
- package/src/components/Form/Checkbox.stories.tsx +1 -1
- package/src/components/Form/Checkbox.tsx +1 -1
- package/src/components/Form/Input.stories.tsx +1 -1
- package/src/components/Form/Input.tsx +1 -1
- package/src/components/Form/Radio.stories.tsx +1 -1
- package/src/components/Form/Radio.tsx +1 -1
- package/src/components/Form/Select.stories.tsx +24 -1
- package/src/components/Form/Select.test.tsx +99 -0
- package/src/components/Form/Select.tsx +145 -94
- package/src/components/Form/SelectOption.tsx +88 -0
- package/src/components/Form/Textarea.stories.tsx +1 -1
- package/src/components/Form/Textarea.tsx +1 -1
- package/src/components/Hero/Hero.stories.tsx +39 -2
- package/src/components/Hero/Hero.test.tsx +142 -0
- package/src/components/Hero/Hero.tsx +143 -4
- package/src/components/List/List.test.tsx +62 -0
- package/src/components/List/List.tsx +16 -5
- package/src/components/List/ListItem.tsx +20 -0
- package/src/components/Messages/Messages.stories.tsx +1 -1
- package/src/components/Messages/Messages.tsx +2 -2
- package/src/components/Modal/Modal.stories.tsx +66 -2
- package/src/components/Modal/Modal.tsx +115 -35
- package/src/components/Modal/ModalCompound.test.tsx +94 -0
- package/src/components/Navigation/Nav/Nav.stories.tsx +2 -2
- package/src/components/Navigation/Nav/Nav.tsx +1 -1
- package/src/components/Navigation/Navbar/Navbar.stories.tsx +3 -3
- package/src/components/Navigation/Navbar/Navbar.tsx +1 -1
- package/src/components/Navigation/SideMenu/SideMenu.stories.tsx +2 -2
- package/src/components/Navigation/SideMenu/SideMenu.tsx +1 -1
- package/src/components/Pagination/Pagination.stories.tsx +1 -1
- package/src/components/Pagination/Pagination.tsx +1 -1
- package/src/components/Popover/Popover.stories.tsx +1 -1
- package/src/components/Popover/Popover.tsx +1 -1
- package/src/components/Progress/Progress.tsx +1 -1
- package/src/components/Rating/Rating.stories.tsx +1 -1
- package/src/components/Rating/Rating.test.tsx +73 -0
- package/src/components/Rating/Rating.tsx +25 -37
- package/src/components/Spinner/Spinner.tsx +1 -1
- package/src/components/Steps/Steps.stories.tsx +1 -1
- package/src/components/Steps/Steps.tsx +125 -22
- package/src/components/Steps/StepsCompound.test.tsx +81 -0
- package/src/components/Tabs/Tabs.stories.tsx +1 -1
- package/src/components/Tabs/Tabs.tsx +198 -45
- package/src/components/Tabs/TabsCompound.test.tsx +64 -0
- package/src/components/Todo/Todo.tsx +0 -1
- package/src/components/Toggle/Toggle.stories.tsx +1 -1
- package/src/components/Toggle/Toggle.tsx +1 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +1 -1
- package/src/components/VideoPlayer/VideoPlayer.stories.tsx +2 -2
- package/src/lib/composables/__tests__/useAtomixGlassPerf.test.tsx +88 -0
- package/src/lib/composables/__tests__/useChart.test.ts +50 -0
- package/src/lib/composables/__tests__/useChart.test.tsx +139 -0
- package/src/lib/composables/__tests__/useHeroBackgroundSlider.test.tsx +59 -0
- package/src/lib/composables/__tests__/useSliderAutoplay.test.tsx +68 -0
- package/src/lib/composables/atomix-glass/useGlassBackgroundDetection.ts +329 -0
- package/src/lib/composables/atomix-glass/useGlassCornerRadius.ts +82 -0
- package/src/lib/composables/atomix-glass/useGlassMouseTracking.ts +153 -0
- package/src/lib/composables/atomix-glass/useGlassOverLight.ts +198 -0
- package/src/lib/composables/atomix-glass/useGlassSize.ts +117 -0
- package/src/lib/composables/atomix-glass/useGlassState.ts +112 -0
- package/src/lib/composables/atomix-glass/useGlassTransforms.ts +160 -0
- package/src/lib/composables/glass-styles.ts +302 -0
- package/src/lib/composables/index.ts +0 -8
- package/src/lib/composables/useAtomixGlass.ts +331 -537
- package/src/lib/composables/useAtomixGlassStyles.ts +307 -0
- package/src/lib/composables/useBarChart.ts +1 -1
- package/src/lib/composables/useBreadcrumb.ts +6 -6
- package/src/lib/composables/useChart.ts +104 -21
- package/src/lib/composables/useHeroBackgroundSlider.ts +16 -7
- package/src/lib/composables/useSlider.ts +66 -34
- package/src/lib/theme/devtools/CLI.ts +2 -10
- package/src/lib/theme/utils/__tests__/themeUtils.test.ts +213 -0
- package/src/lib/types/components.ts +21 -23
- package/src/lib/utils/__tests__/componentUtils.test.ts +57 -2
- package/src/lib/utils/__tests__/dom.test.ts +100 -0
- package/src/lib/utils/__tests__/fontPreloader.test.ts +102 -0
- package/src/lib/utils/__tests__/themeNaming.test.ts +117 -0
- package/src/lib/utils/themeNaming.ts +1 -1
- package/src/styles/06-components/_components.accordion.scss +0 -2
- package/src/styles/06-components/_components.chart.scss +0 -1
- package/src/styles/06-components/_components.dropdown.scss +0 -1
- package/src/styles/06-components/_components.edge-panel.scss +0 -2
- package/src/styles/06-components/_components.photoviewer.scss +0 -1
- package/src/styles/06-components/_components.river.scss +0 -1
- package/src/styles/06-components/_components.slider.scss +0 -3
- package/src/styles/99-utilities/_utilities.glass-fixes.scss +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1329,20 +1329,20 @@ interface OverLightObjectConfig {
|
|
|
1329
1329
|
/**
|
|
1330
1330
|
* AtomixGlass component props interface
|
|
1331
1331
|
*/
|
|
1332
|
-
interface AtomixGlassProps {
|
|
1332
|
+
interface AtomixGlassProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1333
1333
|
children?: React.ReactNode;
|
|
1334
1334
|
displacementScale?: number;
|
|
1335
1335
|
blurAmount?: number;
|
|
1336
1336
|
saturation?: number;
|
|
1337
1337
|
aberrationIntensity?: number;
|
|
1338
1338
|
elasticity?: number;
|
|
1339
|
-
|
|
1339
|
+
borderRadius?: number;
|
|
1340
1340
|
globalMousePosition?: MousePosition;
|
|
1341
1341
|
mouseOffset?: MousePosition;
|
|
1342
1342
|
mouseContainer?: React.RefObject<HTMLElement | null> | null;
|
|
1343
|
-
className?: string;
|
|
1344
1343
|
padding?: string;
|
|
1345
|
-
|
|
1344
|
+
height?: string | number;
|
|
1345
|
+
width?: string | number;
|
|
1346
1346
|
overLight?: OverLightConfig;
|
|
1347
1347
|
mode?: DisplacementMode;
|
|
1348
1348
|
onClick?: () => void;
|
|
@@ -1350,30 +1350,23 @@ interface AtomixGlassProps {
|
|
|
1350
1350
|
* Shader variant for shader mode
|
|
1351
1351
|
*/
|
|
1352
1352
|
shaderVariant?: 'liquidGlass' | 'premiumGlass' | 'appleFluid' | 'liquidMetal' | 'plasma' | 'waves' | 'noise';
|
|
1353
|
-
/**
|
|
1354
|
-
* Accessibility props
|
|
1355
|
-
*/
|
|
1356
|
-
'aria-label'?: string;
|
|
1357
|
-
'aria-describedby'?: string;
|
|
1358
|
-
role?: string;
|
|
1359
|
-
tabIndex?: number;
|
|
1360
1353
|
/**
|
|
1361
1354
|
* Performance and accessibility options
|
|
1362
1355
|
*/
|
|
1363
1356
|
reducedMotion?: boolean;
|
|
1364
1357
|
highContrast?: boolean;
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1358
|
+
withoutEffects?: boolean;
|
|
1359
|
+
withLiquidBlur?: boolean;
|
|
1360
|
+
withBorder?: boolean;
|
|
1361
|
+
withOverLightLayers?: boolean;
|
|
1369
1362
|
/**
|
|
1370
1363
|
* Performance monitoring
|
|
1371
1364
|
*/
|
|
1372
|
-
|
|
1365
|
+
debugPerformance?: boolean;
|
|
1373
1366
|
/**
|
|
1374
|
-
* Debug mode for
|
|
1367
|
+
* Debug mode for borderRadius extraction
|
|
1375
1368
|
*/
|
|
1376
|
-
|
|
1369
|
+
debugBorderRadius?: boolean;
|
|
1377
1370
|
/**
|
|
1378
1371
|
* Debug mode for overLight detection and configuration
|
|
1379
1372
|
*
|
|
@@ -1438,7 +1431,7 @@ type StateModifier = 'is-open' | 'is-closed' | 'is-active' | 'is-disabled' | 'is
|
|
|
1438
1431
|
* Icon position options
|
|
1439
1432
|
*/
|
|
1440
1433
|
type IconPosition = 'left' | 'right';
|
|
1441
|
-
type listvariant = 'dash' | 'number' | 'text';
|
|
1434
|
+
type listvariant = 'dash' | 'number' | 'text' | 'default';
|
|
1442
1435
|
/**;
|
|
1443
1436
|
* List component properties
|
|
1444
1437
|
*/
|
|
@@ -2113,6 +2106,11 @@ interface HeroProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' |
|
|
|
2113
2106
|
* Granular part-based styling
|
|
2114
2107
|
*/
|
|
2115
2108
|
parts?: HeroParts;
|
|
2109
|
+
/**
|
|
2110
|
+
* Custom background element to render behind the content
|
|
2111
|
+
* @example <Hero.Background src="..." />
|
|
2112
|
+
*/
|
|
2113
|
+
backgroundElement?: ReactNode;
|
|
2116
2114
|
}
|
|
2117
2115
|
/**
|
|
2118
2116
|
* Spinner component properties
|
|
@@ -3169,7 +3167,7 @@ interface InputProps extends BaseComponentProps {
|
|
|
3169
3167
|
/**
|
|
3170
3168
|
* Select option
|
|
3171
3169
|
*/
|
|
3172
|
-
interface SelectOption {
|
|
3170
|
+
interface SelectOption$1 {
|
|
3173
3171
|
/**
|
|
3174
3172
|
* Option value
|
|
3175
3173
|
*/
|
|
@@ -3190,7 +3188,7 @@ interface SelectProps extends BaseComponentProps {
|
|
|
3190
3188
|
/**
|
|
3191
3189
|
* Select options
|
|
3192
3190
|
*/
|
|
3193
|
-
options
|
|
3191
|
+
options?: SelectOption$1[];
|
|
3194
3192
|
/**
|
|
3195
3193
|
* Selected value(s)
|
|
3196
3194
|
*/
|
|
@@ -3944,7 +3942,7 @@ interface PopoverProps {
|
|
|
3944
3942
|
/**
|
|
3945
3943
|
* The trigger method for the dropdown menu
|
|
3946
3944
|
*/
|
|
3947
|
-
type DropdownTrigger = 'click' | 'hover';
|
|
3945
|
+
type DropdownTrigger$1 = 'click' | 'hover';
|
|
3948
3946
|
/**
|
|
3949
3947
|
* The placement of the dropdown menu
|
|
3950
3948
|
*/
|
|
@@ -3964,7 +3962,7 @@ interface DropdownProps extends BaseComponentProps {
|
|
|
3964
3962
|
/**
|
|
3965
3963
|
* How the dropdown is triggered
|
|
3966
3964
|
*/
|
|
3967
|
-
trigger?: DropdownTrigger;
|
|
3965
|
+
trigger?: DropdownTrigger$1;
|
|
3968
3966
|
/**
|
|
3969
3967
|
* The placement of the dropdown menu
|
|
3970
3968
|
*/
|
|
@@ -4296,7 +4294,7 @@ interface VideoPlayerProps extends BaseComponentProps {
|
|
|
4296
4294
|
saturation?: number;
|
|
4297
4295
|
aberrationIntensity?: number;
|
|
4298
4296
|
elasticity?: number;
|
|
4299
|
-
|
|
4297
|
+
borderRadius?: number;
|
|
4300
4298
|
mode?: 'standard' | 'polar' | 'prominent' | 'shader';
|
|
4301
4299
|
overLight?: boolean;
|
|
4302
4300
|
};
|
|
@@ -6587,7 +6585,7 @@ interface GlassContainerProps extends BaseComponentProps {
|
|
|
6587
6585
|
* Border radius of the glass container
|
|
6588
6586
|
* @default 999
|
|
6589
6587
|
*/
|
|
6590
|
-
|
|
6588
|
+
borderRadius?: number;
|
|
6591
6589
|
/**
|
|
6592
6590
|
* Padding inside the glass container
|
|
6593
6591
|
* @default '24px 32px'
|
|
@@ -6651,6 +6649,295 @@ interface GlassContainerProps extends BaseComponentProps {
|
|
|
6651
6649
|
style?: React.CSSProperties;
|
|
6652
6650
|
}
|
|
6653
6651
|
|
|
6652
|
+
interface TabsItemProps {
|
|
6653
|
+
/**
|
|
6654
|
+
* Label for the tab
|
|
6655
|
+
*/
|
|
6656
|
+
label: string;
|
|
6657
|
+
/**
|
|
6658
|
+
* Content of the tab panel
|
|
6659
|
+
*/
|
|
6660
|
+
content: ReactNode;
|
|
6661
|
+
/**
|
|
6662
|
+
* Whether the tab is initially active
|
|
6663
|
+
*/
|
|
6664
|
+
isActive?: boolean;
|
|
6665
|
+
/**
|
|
6666
|
+
* Additional CSS class for the tab
|
|
6667
|
+
*/
|
|
6668
|
+
className?: string;
|
|
6669
|
+
}
|
|
6670
|
+
interface TabsProps {
|
|
6671
|
+
/**
|
|
6672
|
+
* Array of tab items (Legacy mode)
|
|
6673
|
+
*/
|
|
6674
|
+
items?: TabsItemProps[];
|
|
6675
|
+
/**
|
|
6676
|
+
* Initial active tab index
|
|
6677
|
+
*/
|
|
6678
|
+
activeIndex?: number;
|
|
6679
|
+
/**
|
|
6680
|
+
* Callback when tab changes
|
|
6681
|
+
*/
|
|
6682
|
+
onTabChange?: (index: number) => void;
|
|
6683
|
+
/**
|
|
6684
|
+
* Additional CSS class for the tab component
|
|
6685
|
+
*/
|
|
6686
|
+
className?: string;
|
|
6687
|
+
/**
|
|
6688
|
+
* Custom style for the tab component
|
|
6689
|
+
*/
|
|
6690
|
+
style?: React__default.CSSProperties;
|
|
6691
|
+
/**
|
|
6692
|
+
* Glass morphism effect for the tab component
|
|
6693
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
6694
|
+
*/
|
|
6695
|
+
glass?: AtomixGlassProps | boolean;
|
|
6696
|
+
/**
|
|
6697
|
+
* Children (Compound mode)
|
|
6698
|
+
*/
|
|
6699
|
+
children?: ReactNode;
|
|
6700
|
+
}
|
|
6701
|
+
declare const TabsList: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLUListElement> & React__default.RefAttributes<HTMLUListElement>>;
|
|
6702
|
+
interface TabsTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
6703
|
+
index?: number;
|
|
6704
|
+
}
|
|
6705
|
+
declare const TabsTrigger: React__default.ForwardRefExoticComponent<TabsTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
6706
|
+
declare const TabsPanels: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6707
|
+
interface TabsPanelProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
6708
|
+
index?: number;
|
|
6709
|
+
}
|
|
6710
|
+
declare const TabsPanel: React__default.ForwardRefExoticComponent<TabsPanelProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6711
|
+
/**
|
|
6712
|
+
* Tabs component for switching between different content panels
|
|
6713
|
+
*/
|
|
6714
|
+
type TabsComponent = React__default.FC<TabsProps> & {
|
|
6715
|
+
List: typeof TabsList;
|
|
6716
|
+
Trigger: typeof TabsTrigger;
|
|
6717
|
+
Panels: typeof TabsPanels;
|
|
6718
|
+
Panel: typeof TabsPanel;
|
|
6719
|
+
};
|
|
6720
|
+
declare const Tabs: TabsComponent;
|
|
6721
|
+
|
|
6722
|
+
interface StepItemData {
|
|
6723
|
+
/**
|
|
6724
|
+
* The number for the step
|
|
6725
|
+
*/
|
|
6726
|
+
number: number | string | ReactNode;
|
|
6727
|
+
/**
|
|
6728
|
+
* The text label for the step
|
|
6729
|
+
*/
|
|
6730
|
+
text: string;
|
|
6731
|
+
/**
|
|
6732
|
+
* Optional custom content for the step
|
|
6733
|
+
*/
|
|
6734
|
+
content?: React__default.ReactNode;
|
|
6735
|
+
}
|
|
6736
|
+
|
|
6737
|
+
interface StepsItemProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
6738
|
+
/**
|
|
6739
|
+
* The number or icon for the step
|
|
6740
|
+
*/
|
|
6741
|
+
number?: number | string | ReactNode;
|
|
6742
|
+
/**
|
|
6743
|
+
* The text label/title for the step
|
|
6744
|
+
*/
|
|
6745
|
+
title?: ReactNode;
|
|
6746
|
+
/**
|
|
6747
|
+
* Whether the step is active
|
|
6748
|
+
*/
|
|
6749
|
+
active?: boolean;
|
|
6750
|
+
/**
|
|
6751
|
+
* Whether the step is completed
|
|
6752
|
+
*/
|
|
6753
|
+
completed?: boolean;
|
|
6754
|
+
/**
|
|
6755
|
+
* Index of the step (injected by parent)
|
|
6756
|
+
*/
|
|
6757
|
+
index?: number;
|
|
6758
|
+
}
|
|
6759
|
+
declare const StepsItem: React__default.ForwardRefExoticComponent<StepsItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6760
|
+
interface StepsProps {
|
|
6761
|
+
/**
|
|
6762
|
+
* Array of step items (Legacy)
|
|
6763
|
+
*/
|
|
6764
|
+
items?: StepItemData[];
|
|
6765
|
+
/**
|
|
6766
|
+
* Current active step index (0-based)
|
|
6767
|
+
*/
|
|
6768
|
+
activeIndex?: number;
|
|
6769
|
+
/**
|
|
6770
|
+
* Whether to display steps vertically
|
|
6771
|
+
*/
|
|
6772
|
+
vertical?: boolean;
|
|
6773
|
+
/**
|
|
6774
|
+
* Called when active step changes
|
|
6775
|
+
*/
|
|
6776
|
+
onStepChange?: (index: number) => void;
|
|
6777
|
+
/**
|
|
6778
|
+
* Additional CSS class
|
|
6779
|
+
*/
|
|
6780
|
+
className?: string;
|
|
6781
|
+
/**
|
|
6782
|
+
* Inline style for the component
|
|
6783
|
+
*/
|
|
6784
|
+
style?: React__default.CSSProperties;
|
|
6785
|
+
/**
|
|
6786
|
+
* Glass morphism effect for the steps component
|
|
6787
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
6788
|
+
*/
|
|
6789
|
+
glass?: AtomixGlassProps | boolean;
|
|
6790
|
+
/**
|
|
6791
|
+
* Children (Compound)
|
|
6792
|
+
*/
|
|
6793
|
+
children?: ReactNode;
|
|
6794
|
+
}
|
|
6795
|
+
type StepsComponent = React__default.FC<StepsProps> & {
|
|
6796
|
+
Item: typeof StepsItem;
|
|
6797
|
+
Step: typeof StepsItem;
|
|
6798
|
+
};
|
|
6799
|
+
declare const Steps: StepsComponent;
|
|
6800
|
+
|
|
6801
|
+
interface ModalHeaderProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
6802
|
+
title?: ReactNode;
|
|
6803
|
+
subtitle?: ReactNode;
|
|
6804
|
+
closeButton?: boolean;
|
|
6805
|
+
onClose?: () => void;
|
|
6806
|
+
}
|
|
6807
|
+
declare const ModalHeader: React__default.ForwardRefExoticComponent<ModalHeaderProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6808
|
+
declare const ModalBody: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6809
|
+
declare const ModalFooter: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6810
|
+
/**
|
|
6811
|
+
* Modal component for displaying overlay content
|
|
6812
|
+
*/
|
|
6813
|
+
type ModalComponent = React__default.FC<ModalProps> & {
|
|
6814
|
+
Header: typeof ModalHeader;
|
|
6815
|
+
Body: typeof ModalBody;
|
|
6816
|
+
Footer: typeof ModalFooter;
|
|
6817
|
+
};
|
|
6818
|
+
declare const Modal: ModalComponent;
|
|
6819
|
+
|
|
6820
|
+
interface ListItemProps extends React__default.LiHTMLAttributes<HTMLLIElement> {
|
|
6821
|
+
children?: React__default.ReactNode;
|
|
6822
|
+
}
|
|
6823
|
+
declare const ListItem: React__default.ForwardRefExoticComponent<ListItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
6824
|
+
|
|
6825
|
+
type ListComponent = React__default.FC<ListProps> & {
|
|
6826
|
+
Item: typeof ListItem;
|
|
6827
|
+
};
|
|
6828
|
+
declare const List: ListComponent;
|
|
6829
|
+
|
|
6830
|
+
interface HeroTitleProps extends React__default.HTMLAttributes<HTMLHeadingElement> {
|
|
6831
|
+
level?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
|
|
6832
|
+
}
|
|
6833
|
+
declare const HeroTitle: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
|
|
6834
|
+
declare const HeroSubtitle: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
6835
|
+
declare const HeroText: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
6836
|
+
declare const HeroActions: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
6837
|
+
interface HeroContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
6838
|
+
glass?: AtomixGlassProps | boolean;
|
|
6839
|
+
}
|
|
6840
|
+
declare const HeroContent: ({ children, className, style, glass, ...props }: HeroContentProps) => react_jsx_runtime.JSX.Element;
|
|
6841
|
+
interface HeroImageProps extends React__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
6842
|
+
wrapperClassName?: string;
|
|
6843
|
+
wrapperStyle?: React__default.CSSProperties;
|
|
6844
|
+
}
|
|
6845
|
+
declare const HeroImage: ({ src, alt, className, wrapperClassName, wrapperStyle, ...props }: HeroImageProps) => react_jsx_runtime.JSX.Element;
|
|
6846
|
+
declare const HeroBackground: ({ className, style, src, children, ...props }: React__default.HTMLAttributes<HTMLDivElement> & {
|
|
6847
|
+
src?: string;
|
|
6848
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
6849
|
+
declare const Hero: React__default.FC<HeroProps> & {
|
|
6850
|
+
Title: typeof HeroTitle;
|
|
6851
|
+
Subtitle: typeof HeroSubtitle;
|
|
6852
|
+
Text: typeof HeroText;
|
|
6853
|
+
Actions: typeof HeroActions;
|
|
6854
|
+
Content: typeof HeroContent;
|
|
6855
|
+
Image: typeof HeroImage;
|
|
6856
|
+
Background: typeof HeroBackground;
|
|
6857
|
+
};
|
|
6858
|
+
|
|
6859
|
+
interface SelectOptionProps {
|
|
6860
|
+
value: string;
|
|
6861
|
+
children?: ReactNode;
|
|
6862
|
+
disabled?: boolean;
|
|
6863
|
+
className?: string;
|
|
6864
|
+
style?: React__default.CSSProperties;
|
|
6865
|
+
}
|
|
6866
|
+
declare const SelectOption: React__default.FC<SelectOptionProps>;
|
|
6867
|
+
|
|
6868
|
+
type SelectComponent = React__default.FC<SelectProps> & {
|
|
6869
|
+
Option: typeof SelectOption;
|
|
6870
|
+
};
|
|
6871
|
+
/**
|
|
6872
|
+
* Select - A component for dropdown selection
|
|
6873
|
+
*/
|
|
6874
|
+
declare const Select: SelectComponent;
|
|
6875
|
+
|
|
6876
|
+
declare const EdgePanelHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6877
|
+
declare const EdgePanelBody: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6878
|
+
declare const EdgePanelFooter: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6879
|
+
declare const EdgePanelCloseButton: React__default.ForwardRefExoticComponent<React__default.ButtonHTMLAttributes<HTMLButtonElement> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
6880
|
+
/**
|
|
6881
|
+
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
6882
|
+
*
|
|
6883
|
+
* @component
|
|
6884
|
+
* @example
|
|
6885
|
+
* ```tsx
|
|
6886
|
+
* // Basic usage
|
|
6887
|
+
* <EdgePanel
|
|
6888
|
+
* title="My Panel"
|
|
6889
|
+
* isOpen={isOpen}
|
|
6890
|
+
* onOpenChange={setIsOpen}
|
|
6891
|
+
* position="start"
|
|
6892
|
+
* >
|
|
6893
|
+
* <p>Panel content</p>
|
|
6894
|
+
* </EdgePanel>
|
|
6895
|
+
*
|
|
6896
|
+
* // Compound Usage
|
|
6897
|
+
* <EdgePanel isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
6898
|
+
* <EdgePanel.Header>
|
|
6899
|
+
* <h4>Title</h4>
|
|
6900
|
+
* <EdgePanel.CloseButton onClick={() => setIsOpen(false)} />
|
|
6901
|
+
* </EdgePanel.Header>
|
|
6902
|
+
* <EdgePanel.Body>Content</EdgePanel.Body>
|
|
6903
|
+
* <EdgePanel.Footer>Footer</EdgePanel.Footer>
|
|
6904
|
+
* </EdgePanel>
|
|
6905
|
+
* ```
|
|
6906
|
+
*/
|
|
6907
|
+
type EdgePanelComponent = React__default.FC<EdgePanelProps> & {
|
|
6908
|
+
Header: typeof EdgePanelHeader;
|
|
6909
|
+
Body: typeof EdgePanelBody;
|
|
6910
|
+
Footer: typeof EdgePanelFooter;
|
|
6911
|
+
CloseButton: typeof EdgePanelCloseButton;
|
|
6912
|
+
};
|
|
6913
|
+
declare const EdgePanel: EdgePanelComponent;
|
|
6914
|
+
|
|
6915
|
+
declare const DropdownMenu: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLUListElement> & React__default.RefAttributes<HTMLUListElement>>;
|
|
6916
|
+
declare const DropdownTrigger: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6917
|
+
/**
|
|
6918
|
+
* DropdownItem component for menu items
|
|
6919
|
+
*/
|
|
6920
|
+
declare const DropdownItem: React__default.FC<DropdownItemProps>;
|
|
6921
|
+
/**
|
|
6922
|
+
* DropdownDivider component for separating groups of items
|
|
6923
|
+
*/
|
|
6924
|
+
declare const DropdownDivider: React__default.FC<DropdownDividerProps>;
|
|
6925
|
+
/**
|
|
6926
|
+
* DropdownHeader component for section headers
|
|
6927
|
+
*/
|
|
6928
|
+
declare const DropdownHeader: React__default.FC<DropdownHeaderProps>;
|
|
6929
|
+
/**
|
|
6930
|
+
* Dropdown component for creating dropdown menus
|
|
6931
|
+
*/
|
|
6932
|
+
type DropdownComponent = React__default.FC<DropdownProps> & {
|
|
6933
|
+
Trigger: typeof DropdownTrigger;
|
|
6934
|
+
Menu: typeof DropdownMenu;
|
|
6935
|
+
Item: typeof DropdownItem;
|
|
6936
|
+
Divider: typeof DropdownDivider;
|
|
6937
|
+
Header: typeof DropdownHeader;
|
|
6938
|
+
};
|
|
6939
|
+
declare const Dropdown: DropdownComponent;
|
|
6940
|
+
|
|
6654
6941
|
type DatePickerPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
6655
6942
|
type DatePickerSize = 'sm' | 'md' | 'lg';
|
|
6656
6943
|
type DatePickerSelectionMode = 'single' | 'range';
|
|
@@ -7300,7 +7587,7 @@ interface BarChartOptions {
|
|
|
7300
7587
|
/**
|
|
7301
7588
|
* Corner radius for bars
|
|
7302
7589
|
*/
|
|
7303
|
-
|
|
7590
|
+
borderRadius?: number;
|
|
7304
7591
|
/**
|
|
7305
7592
|
* Padding between bar groups
|
|
7306
7593
|
*/
|
|
@@ -8415,6 +8702,29 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8415
8702
|
}
|
|
8416
8703
|
declare const WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
8417
8704
|
|
|
8705
|
+
declare const CalloutIcon: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8706
|
+
declare const CalloutMessage: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8707
|
+
declare const CalloutTitle: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8708
|
+
declare const CalloutText: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8709
|
+
declare const CalloutActions: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8710
|
+
interface CalloutCloseButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
8711
|
+
}
|
|
8712
|
+
declare const CalloutCloseButton: React__default.ForwardRefExoticComponent<CalloutCloseButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8713
|
+
declare const CalloutContent: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8714
|
+
/**
|
|
8715
|
+
* Callout component for displaying important messages, notifications, or alerts
|
|
8716
|
+
*/
|
|
8717
|
+
type CalloutComponent = React__default.FC<CalloutProps> & {
|
|
8718
|
+
Icon: typeof CalloutIcon;
|
|
8719
|
+
Message: typeof CalloutMessage;
|
|
8720
|
+
Title: typeof CalloutTitle;
|
|
8721
|
+
Text: typeof CalloutText;
|
|
8722
|
+
Actions: typeof CalloutActions;
|
|
8723
|
+
CloseButton: typeof CalloutCloseButton;
|
|
8724
|
+
Content: typeof CalloutContent;
|
|
8725
|
+
};
|
|
8726
|
+
declare const Callout: CalloutComponent;
|
|
8727
|
+
|
|
8418
8728
|
type ButtonAsProp = {
|
|
8419
8729
|
as?: ElementType;
|
|
8420
8730
|
to?: string;
|
|
@@ -8424,6 +8734,119 @@ type ButtonAsProp = {
|
|
|
8424
8734
|
};
|
|
8425
8735
|
declare const Button: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
8426
8736
|
|
|
8737
|
+
interface BreadcrumbItemData {
|
|
8738
|
+
/**
|
|
8739
|
+
* Text to display
|
|
8740
|
+
*/
|
|
8741
|
+
label: string;
|
|
8742
|
+
/**
|
|
8743
|
+
* URL for the breadcrumb item
|
|
8744
|
+
*/
|
|
8745
|
+
href?: string;
|
|
8746
|
+
/**
|
|
8747
|
+
* Whether this item is active (current page)
|
|
8748
|
+
*/
|
|
8749
|
+
active?: boolean;
|
|
8750
|
+
/**
|
|
8751
|
+
* Optional icon to display before the label
|
|
8752
|
+
*/
|
|
8753
|
+
icon?: ReactNode;
|
|
8754
|
+
/**
|
|
8755
|
+
* Optional click handler
|
|
8756
|
+
*/
|
|
8757
|
+
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
8758
|
+
/**
|
|
8759
|
+
* Custom style for the breadcrumb item
|
|
8760
|
+
*/
|
|
8761
|
+
style?: React__default.CSSProperties;
|
|
8762
|
+
/**
|
|
8763
|
+
* Additional className
|
|
8764
|
+
*/
|
|
8765
|
+
className?: string;
|
|
8766
|
+
}
|
|
8767
|
+
type BreadcrumbItemType = BreadcrumbItemData;
|
|
8768
|
+
interface BreadcrumbItemProps extends React__default.HTMLAttributes<HTMLLIElement> {
|
|
8769
|
+
/**
|
|
8770
|
+
* URL for the breadcrumb item
|
|
8771
|
+
*/
|
|
8772
|
+
href?: string;
|
|
8773
|
+
/**
|
|
8774
|
+
* Whether this item is active (current page)
|
|
8775
|
+
*/
|
|
8776
|
+
active?: boolean;
|
|
8777
|
+
/**
|
|
8778
|
+
* Optional icon to display before the label
|
|
8779
|
+
*/
|
|
8780
|
+
icon?: ReactNode;
|
|
8781
|
+
/**
|
|
8782
|
+
* Optional click handler for the link
|
|
8783
|
+
*/
|
|
8784
|
+
onClick?: (event: React__default.MouseEvent<any>) => void;
|
|
8785
|
+
/**
|
|
8786
|
+
* Optional custom link component
|
|
8787
|
+
*/
|
|
8788
|
+
linkAs?: React__default.ElementType<any>;
|
|
8789
|
+
/**
|
|
8790
|
+
* Link props to pass to the underlying anchor or LinkComponent
|
|
8791
|
+
*/
|
|
8792
|
+
linkProps?: Record<string, any>;
|
|
8793
|
+
}
|
|
8794
|
+
declare const BreadcrumbItem: React__default.ForwardRefExoticComponent<BreadcrumbItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
8795
|
+
interface BreadcrumbProps {
|
|
8796
|
+
/**
|
|
8797
|
+
* Array of breadcrumb items (Legacy)
|
|
8798
|
+
*/
|
|
8799
|
+
items?: BreadcrumbItemData[];
|
|
8800
|
+
/**
|
|
8801
|
+
* Custom divider character or element
|
|
8802
|
+
*/
|
|
8803
|
+
divider?: ReactNode;
|
|
8804
|
+
/**
|
|
8805
|
+
* Additional className
|
|
8806
|
+
*/
|
|
8807
|
+
className?: string;
|
|
8808
|
+
/**
|
|
8809
|
+
* Aria label for the navigation
|
|
8810
|
+
*/
|
|
8811
|
+
'aria-label'?: string;
|
|
8812
|
+
/**
|
|
8813
|
+
* Optional custom link component
|
|
8814
|
+
*/
|
|
8815
|
+
LinkComponent?: React__default.ElementType;
|
|
8816
|
+
/**
|
|
8817
|
+
* Custom style for the breadcrumb
|
|
8818
|
+
*/
|
|
8819
|
+
style?: React__default.CSSProperties;
|
|
8820
|
+
/**
|
|
8821
|
+
* Children (Compound)
|
|
8822
|
+
*/
|
|
8823
|
+
children?: ReactNode;
|
|
8824
|
+
}
|
|
8825
|
+
declare const BreadcrumbComponent: React__default.FC<BreadcrumbProps>;
|
|
8826
|
+
type BreadcrumbType = typeof BreadcrumbComponent & {
|
|
8827
|
+
Item: typeof BreadcrumbItem;
|
|
8828
|
+
};
|
|
8829
|
+
declare const Breadcrumb: BreadcrumbType;
|
|
8830
|
+
|
|
8831
|
+
type AccordionProps = AccordionProps$1;
|
|
8832
|
+
interface AccordionHeaderProps extends Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, 'title'> {
|
|
8833
|
+
title?: ReactNode;
|
|
8834
|
+
icon?: ReactNode;
|
|
8835
|
+
iconPosition?: 'left' | 'right';
|
|
8836
|
+
isOpen?: boolean;
|
|
8837
|
+
}
|
|
8838
|
+
declare const AccordionHeader: React__default.ForwardRefExoticComponent<AccordionHeaderProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8839
|
+
interface AccordionBodyProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
8840
|
+
panelRef?: React__default.RefObject<HTMLDivElement>;
|
|
8841
|
+
contentRef?: React__default.RefObject<HTMLDivElement>;
|
|
8842
|
+
}
|
|
8843
|
+
declare const AccordionBody: React__default.ForwardRefExoticComponent<AccordionBodyProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
8844
|
+
type AccordionComponent = React__default.FC<AccordionProps> & {
|
|
8845
|
+
Header: typeof AccordionHeader;
|
|
8846
|
+
Body: typeof AccordionBody;
|
|
8847
|
+
};
|
|
8848
|
+
declare const _default: AccordionComponent;
|
|
8849
|
+
|
|
8427
8850
|
type __lib_types_AccordionState = AccordionState;
|
|
8428
8851
|
type __lib_types_AtomixGlassProps = AtomixGlassProps;
|
|
8429
8852
|
type __lib_types_AvatarGroupProps = AvatarGroupProps;
|
|
@@ -8446,7 +8869,6 @@ type __lib_types_DropdownHeaderProps = DropdownHeaderProps;
|
|
|
8446
8869
|
type __lib_types_DropdownItemProps = DropdownItemProps;
|
|
8447
8870
|
type __lib_types_DropdownPlacement = DropdownPlacement;
|
|
8448
8871
|
type __lib_types_DropdownProps = DropdownProps;
|
|
8449
|
-
type __lib_types_DropdownTrigger = DropdownTrigger;
|
|
8450
8872
|
type __lib_types_EdgePanelMode = EdgePanelMode;
|
|
8451
8873
|
type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
8452
8874
|
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
@@ -8497,7 +8919,6 @@ type __lib_types_PopoverTriggerProps = PopoverTriggerProps;
|
|
|
8497
8919
|
type __lib_types_ProgressProps = ProgressProps;
|
|
8498
8920
|
type __lib_types_RadioProps = RadioProps;
|
|
8499
8921
|
type __lib_types_RatingProps = RatingProps;
|
|
8500
|
-
type __lib_types_SelectOption = SelectOption;
|
|
8501
8922
|
type __lib_types_SelectProps = SelectProps;
|
|
8502
8923
|
type __lib_types_SelectionMode = SelectionMode;
|
|
8503
8924
|
type __lib_types_SideMenuItemProps = SideMenuItemProps;
|
|
@@ -8537,7 +8958,7 @@ type __lib_types_VideoQuality = VideoQuality;
|
|
|
8537
8958
|
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
8538
8959
|
type __lib_types_listvariant = listvariant;
|
|
8539
8960
|
declare namespace __lib_types {
|
|
8540
|
-
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __lib_types_AtomixGlassProps as AtomixGlassProps, __lib_types_AvatarGroupProps as AvatarGroupProps, __lib_types_AvatarProps as AvatarProps, __lib_types_AvatarSize as AvatarSize, __lib_types_BadgeProps as BadgeProps, __lib_types_BaseComponentProps as BaseComponentProps, __lib_types_BreadcrumbInstance as BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, __lib_types_ButtonGroupProps as ButtonGroupProps, __lib_types_ButtonProps as ButtonProps, __lib_types_CalloutProps as CalloutProps, __lib_types_CardProps as CardProps, 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, __lib_types_CheckboxProps as CheckboxProps, __lib_types_CodeBlockProps as CodeBlockProps, __lib_types_DataTableColumn as DataTableColumn, __lib_types_DataTableProps as DataTableProps, __lib_types_DisplacementMode as DisplacementMode, __lib_types_DropdownDividerProps as DropdownDividerProps, __lib_types_DropdownHeaderProps as DropdownHeaderProps, __lib_types_DropdownItemProps as DropdownItemProps, __lib_types_DropdownPlacement as DropdownPlacement, __lib_types_DropdownProps as DropdownProps,
|
|
8961
|
+
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __lib_types_AtomixGlassProps as AtomixGlassProps, __lib_types_AvatarGroupProps as AvatarGroupProps, __lib_types_AvatarProps as AvatarProps, __lib_types_AvatarSize as AvatarSize, __lib_types_BadgeProps as BadgeProps, __lib_types_BaseComponentProps as BaseComponentProps, __lib_types_BreadcrumbInstance as BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, __lib_types_ButtonGroupProps as ButtonGroupProps, __lib_types_ButtonProps as ButtonProps, __lib_types_CalloutProps as CalloutProps, __lib_types_CardProps as CardProps, 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, __lib_types_CheckboxProps as CheckboxProps, __lib_types_CodeBlockProps as CodeBlockProps, __lib_types_DataTableColumn as DataTableColumn, __lib_types_DataTableProps as DataTableProps, __lib_types_DisplacementMode as DisplacementMode, __lib_types_DropdownDividerProps as DropdownDividerProps, __lib_types_DropdownHeaderProps as DropdownHeaderProps, __lib_types_DropdownItemProps as DropdownItemProps, __lib_types_DropdownPlacement as DropdownPlacement, __lib_types_DropdownProps as DropdownProps, DropdownTrigger$1 as DropdownTrigger, __lib_types_EdgePanelMode as EdgePanelMode, __lib_types_EdgePanelPosition as EdgePanelPosition, __lib_types_EdgePanelProps as EdgePanelProps, __lib_types_ElementRefs as ElementRefs, __lib_types_ElevationCardProps as ElevationCardProps, __lib_types_ExportFormat as ExportFormat, __lib_types_FooterLayout as FooterLayout, __lib_types_FooterLinkProps as FooterLinkProps, __lib_types_FooterProps as FooterProps, __lib_types_FooterSectionProps as FooterSectionProps, __lib_types_FooterSocialLinkProps as FooterSocialLinkProps, __lib_types_FormGroupProps as FormGroupProps, __lib_types_FormProps as FormProps, __lib_types_GlassContainerProps as GlassContainerProps, __lib_types_GlassMode as GlassMode, __lib_types_GlassSize as GlassSize, __lib_types_HeroAlignment as HeroAlignment, __lib_types_HeroBackgroundSlide as HeroBackgroundSlide, __lib_types_HeroBackgroundSliderConfig as HeroBackgroundSliderConfig, __lib_types_HeroParts as HeroParts, __lib_types_HeroProps as HeroProps, __lib_types_IconPosition as IconPosition, IconSize$1 as IconSize, IconWeight$1 as IconWeight, __lib_types_ImageType as ImageType, __lib_types_InputProps as InputProps, ListGroupProps$1 as ListGroupProps, __lib_types_ListProps as ListProps, __lib_types_MegaMenuColumnProps as MegaMenuColumnProps, __lib_types_MegaMenuLinkProps as MegaMenuLinkProps, __lib_types_MegaMenuProps as MegaMenuProps, __lib_types_MenuItemProps as MenuItemProps, __lib_types_MenuProps as MenuProps, __lib_types_MessageItem as MessageItem, __lib_types_MessagesProps as MessagesProps, __lib_types_ModalProps as ModalProps, __lib_types_MousePosition as MousePosition, __lib_types_NavAlignment as NavAlignment, __lib_types_NavDropdownProps as NavDropdownProps, __lib_types_NavItemProps as NavItemProps, __lib_types_NavProps as NavProps, __lib_types_NavVariant as NavVariant, __lib_types_NavbarPosition as NavbarPosition, __lib_types_NavbarProps as NavbarProps, __lib_types_OverLightConfig as OverLightConfig, __lib_types_OverLightObjectConfig as OverLightObjectConfig, __lib_types_PaginationProps as PaginationProps, PhosphorIconsType$1 as PhosphorIconsType, __lib_types_PhotoViewerProps as PhotoViewerProps, __lib_types_PopoverProps as PopoverProps, __lib_types_PopoverTriggerProps as PopoverTriggerProps, __lib_types_ProgressProps as ProgressProps, __lib_types_RadioProps as RadioProps, __lib_types_RatingProps as RatingProps, SelectOption$1 as SelectOption, __lib_types_SelectProps as SelectProps, __lib_types_SelectionMode as SelectionMode, __lib_types_SideMenuItemProps as SideMenuItemProps, __lib_types_SideMenuListProps as SideMenuListProps, __lib_types_SideMenuProps as SideMenuProps, __lib_types_Size as Size, __lib_types_SliderAutoplay as SliderAutoplay, __lib_types_SliderBreakpoint as SliderBreakpoint, __lib_types_SliderEffect as SliderEffect, __lib_types_SliderLazy as SliderLazy, __lib_types_SliderNavigation as SliderNavigation, __lib_types_SliderPagination as SliderPagination, __lib_types_SliderProps as SliderProps, __lib_types_SliderRefs as SliderRefs, __lib_types_SliderScrollbar as SliderScrollbar, __lib_types_SliderSlide as SliderSlide, __lib_types_SliderState as SliderState, __lib_types_SliderThumbs as SliderThumbs, __lib_types_SliderVirtual as SliderVirtual, __lib_types_SliderZoom as SliderZoom, __lib_types_SocialLink as SocialLink, __lib_types_SocialPlatform as SocialPlatform, __lib_types_SortConfig as SortConfig, __lib_types_SpinnerProps as SpinnerProps, __lib_types_StateModifier as StateModifier, __lib_types_TextareaProps as TextareaProps, __lib_types_ThemeColor as ThemeColor, __lib_types_ThemeName as ThemeName, __lib_types_TodoItem as TodoItem, __lib_types_TodoProps as TodoProps, __lib_types_UseCardOptions as UseCardOptions, __lib_types_UseCardReturn as UseCardReturn, __lib_types_Variant as Variant, __lib_types_VideoChapter as VideoChapter, __lib_types_VideoPlayerProps as VideoPlayerProps, __lib_types_VideoQuality as VideoQuality, __lib_types_VideoSubtitle as VideoSubtitle, __lib_types_listvariant as listvariant };
|
|
8541
8962
|
}
|
|
8542
8963
|
|
|
8543
8964
|
/**
|
|
@@ -10993,17 +11414,18 @@ declare function useGlassContainer(props: GlassContainerProps): {
|
|
|
10993
11414
|
interface UseAtomixGlassOptions extends Omit<AtomixGlassProps, 'children'> {
|
|
10994
11415
|
glassRef: React__default.RefObject<HTMLDivElement>;
|
|
10995
11416
|
contentRef: React__default.RefObject<HTMLDivElement>;
|
|
11417
|
+
wrapperRef?: React__default.RefObject<HTMLDivElement>;
|
|
10996
11418
|
children?: React__default.ReactNode;
|
|
10997
11419
|
}
|
|
10998
11420
|
interface UseAtomixGlassReturn {
|
|
10999
11421
|
isHovered: boolean;
|
|
11000
11422
|
isActive: boolean;
|
|
11001
11423
|
glassSize: GlassSize;
|
|
11002
|
-
|
|
11003
|
-
|
|
11424
|
+
dynamicBorderRadius: number;
|
|
11425
|
+
effectiveBorderRadius: number;
|
|
11004
11426
|
effectiveReducedMotion: boolean;
|
|
11005
11427
|
effectiveHighContrast: boolean;
|
|
11006
|
-
|
|
11428
|
+
effectiveWithoutEffects: boolean;
|
|
11007
11429
|
detectedOverLight: boolean;
|
|
11008
11430
|
globalMousePosition: MousePosition;
|
|
11009
11431
|
mouseOffset: MousePosition;
|
|
@@ -11034,7 +11456,7 @@ interface UseAtomixGlassReturn {
|
|
|
11034
11456
|
* Composable hook for AtomixGlass component logic
|
|
11035
11457
|
* Manages all state, calculations, and event handlers
|
|
11036
11458
|
*/
|
|
11037
|
-
declare function useAtomixGlass({ glassRef, contentRef,
|
|
11459
|
+
declare function useAtomixGlass({ glassRef, contentRef, wrapperRef, borderRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, overLight, reducedMotion, highContrast, withoutEffects, elasticity, onClick, debugBorderRadius, debugOverLight, debugPerformance, children, blurAmount, saturation, padding, withLiquidBlur, }: UseAtomixGlassOptions): UseAtomixGlassReturn;
|
|
11038
11460
|
|
|
11039
11461
|
/**
|
|
11040
11462
|
* Input state and functionality
|
|
@@ -11088,66 +11510,8 @@ declare function useTextarea(initialProps?: Partial<TextareaProps>): {
|
|
|
11088
11510
|
generateTextareaClass: (props: Partial<TextareaProps>) => string;
|
|
11089
11511
|
};
|
|
11090
11512
|
|
|
11091
|
-
interface BreadcrumbItem {
|
|
11092
|
-
/**
|
|
11093
|
-
* Text to display
|
|
11094
|
-
*/
|
|
11095
|
-
label: string;
|
|
11096
|
-
/**
|
|
11097
|
-
* URL for the breadcrumb item
|
|
11098
|
-
*/
|
|
11099
|
-
href?: string;
|
|
11100
|
-
/**
|
|
11101
|
-
* Whether this item is active (current page)
|
|
11102
|
-
*/
|
|
11103
|
-
active?: boolean;
|
|
11104
|
-
/**
|
|
11105
|
-
* Optional icon to display before the label
|
|
11106
|
-
*/
|
|
11107
|
-
icon?: ReactNode;
|
|
11108
|
-
/**
|
|
11109
|
-
* Optional click handler
|
|
11110
|
-
*/
|
|
11111
|
-
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
11112
|
-
/**
|
|
11113
|
-
* Custom style for the breadcrumb item
|
|
11114
|
-
*/
|
|
11115
|
-
style?: React__default.CSSProperties;
|
|
11116
|
-
/**
|
|
11117
|
-
* Additional className
|
|
11118
|
-
*/
|
|
11119
|
-
className?: string;
|
|
11120
|
-
}
|
|
11121
|
-
interface BreadcrumbProps {
|
|
11122
|
-
/**
|
|
11123
|
-
* Array of breadcrumb items
|
|
11124
|
-
*/
|
|
11125
|
-
items: BreadcrumbItem[];
|
|
11126
|
-
/**
|
|
11127
|
-
* Custom divider character or element
|
|
11128
|
-
*/
|
|
11129
|
-
divider?: ReactNode;
|
|
11130
|
-
/**
|
|
11131
|
-
* Additional className
|
|
11132
|
-
*/
|
|
11133
|
-
className?: string;
|
|
11134
|
-
/**
|
|
11135
|
-
* Aria label for the navigation
|
|
11136
|
-
*/
|
|
11137
|
-
'aria-label'?: string;
|
|
11138
|
-
/**
|
|
11139
|
-
* Optional custom link component
|
|
11140
|
-
*/
|
|
11141
|
-
LinkComponent?: React__default.ElementType;
|
|
11142
|
-
/**
|
|
11143
|
-
* Custom style for the breadcrumb
|
|
11144
|
-
*/
|
|
11145
|
-
style?: React__default.CSSProperties;
|
|
11146
|
-
}
|
|
11147
|
-
declare const Breadcrumb: React__default.FC<BreadcrumbProps>;
|
|
11148
|
-
|
|
11149
11513
|
interface BreadcrumbOptions {
|
|
11150
|
-
items:
|
|
11514
|
+
items: BreadcrumbItemType[];
|
|
11151
11515
|
divider?: React.ReactNode;
|
|
11152
11516
|
className?: string;
|
|
11153
11517
|
'aria-label'?: string;
|
|
@@ -11160,9 +11524,9 @@ interface BreadcrumbOptions {
|
|
|
11160
11524
|
declare function useBreadcrumb(initialOptions?: Partial<BreadcrumbOptions>): {
|
|
11161
11525
|
defaultOptions: BreadcrumbOptions;
|
|
11162
11526
|
generateBreadcrumbClass: (options: Partial<BreadcrumbOptions>) => string;
|
|
11163
|
-
generateItemClass: (item:
|
|
11164
|
-
isItemLink: (item:
|
|
11165
|
-
parseItemsFromJson: (jsonString: string) =>
|
|
11527
|
+
generateItemClass: (item: BreadcrumbItemType, isLast: boolean) => string;
|
|
11528
|
+
isItemLink: (item: BreadcrumbItemType, isLast: boolean) => boolean;
|
|
11529
|
+
parseItemsFromJson: (jsonString: string) => BreadcrumbItemType[];
|
|
11166
11530
|
};
|
|
11167
11531
|
|
|
11168
11532
|
/**
|
|
@@ -11503,9 +11867,6 @@ declare namespace __lib_composables {
|
|
|
11503
11867
|
export type { __lib_composables_BarChartOptions as BarChartOptions, __lib_composables_BarDimensions as BarDimensions, __lib_composables_LineChartOptions as LineChartOptions, __lib_composables_PieChartOptions as PieChartOptions, __lib_composables_PieSlice as PieSlice, __lib_composables_RiverContentColumn as RiverContentColumn, __lib_composables_RiverProps as RiverProps, __lib_composables_UseBlockOptions as UseBlockOptions, __lib_composables_UseBlockReturn as UseBlockReturn, __lib_composables_UseDataTableProps as UseDataTableProps, __lib_composables_UseDataTableReturn as UseDataTableReturn, __lib_composables_UseModalProps as UseModalProps, __lib_composables_UseModalReturn as UseModalReturn, __lib_composables_UseSliderOptions as UseSliderOptions, __lib_composables_UseSliderReturn as UseSliderReturn };
|
|
11504
11868
|
}
|
|
11505
11869
|
|
|
11506
|
-
type AccordionProps = AccordionProps$1;
|
|
11507
|
-
declare const Accordion: React__default.FC<AccordionProps>;
|
|
11508
|
-
|
|
11509
11870
|
interface AtomixLogoProps extends React__default.SVGProps<SVGSVGElement> {
|
|
11510
11871
|
height?: number | string;
|
|
11511
11872
|
width?: number | string;
|
|
@@ -11542,7 +11903,7 @@ declare const AtomixLogo: React__default.FC<AtomixLogoProps>;
|
|
|
11542
11903
|
*
|
|
11543
11904
|
* @example
|
|
11544
11905
|
* // Manual border-radius override
|
|
11545
|
-
* <AtomixGlass
|
|
11906
|
+
* <AtomixGlass borderRadius={20}>
|
|
11546
11907
|
* <div>Content with 20px glass radius</div>
|
|
11547
11908
|
* </AtomixGlass>
|
|
11548
11909
|
*
|
|
@@ -11584,7 +11945,7 @@ declare const AtomixLogo: React__default.FC<AtomixLogoProps>;
|
|
|
11584
11945
|
* <div>Content with debug logging enabled</div>
|
|
11585
11946
|
* </AtomixGlass>
|
|
11586
11947
|
*/
|
|
11587
|
-
declare function AtomixGlass({ children, displacementScale, blurAmount, saturation, aberrationIntensity, elasticity,
|
|
11948
|
+
declare function AtomixGlass({ children, displacementScale, blurAmount, saturation, aberrationIntensity, elasticity, borderRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, className, padding, overLight, style, mode, onClick, shaderVariant, 'aria-label': ariaLabel, 'aria-describedby': ariaDescribedBy, role, tabIndex, reducedMotion, highContrast, withoutEffects, withLiquidBlur, withBorder, withOverLightLayers, debugPerformance, debugBorderRadius, debugOverLight, height, width, ...rest }: AtomixGlassProps): react_jsx_runtime.JSX.Element;
|
|
11588
11949
|
|
|
11589
11950
|
declare const Avatar: React__default.FC<AvatarProps>;
|
|
11590
11951
|
|
|
@@ -11729,11 +12090,6 @@ declare const Block: React__default.ForwardRefExoticComponent<BlockProps & React
|
|
|
11729
12090
|
*/
|
|
11730
12091
|
declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
11731
12092
|
|
|
11732
|
-
/**
|
|
11733
|
-
* Callout component for displaying important messages, notifications, or alerts
|
|
11734
|
-
*/
|
|
11735
|
-
declare const Callout: React__default.FC<CalloutProps>;
|
|
11736
|
-
|
|
11737
12093
|
declare const Card: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
11738
12094
|
|
|
11739
12095
|
declare const ElevationCard: React__default.FC<ElevationCardProps>;
|
|
@@ -11813,58 +12169,6 @@ declare const DataTable: React__default.FC<DataTableProps>;
|
|
|
11813
12169
|
*/
|
|
11814
12170
|
declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerProps & React__default.RefAttributes<DatePickerRef>>;
|
|
11815
12171
|
|
|
11816
|
-
/**
|
|
11817
|
-
* Dropdown component for creating dropdown menus
|
|
11818
|
-
*/
|
|
11819
|
-
declare const Dropdown: React__default.FC<DropdownProps>;
|
|
11820
|
-
|
|
11821
|
-
/**
|
|
11822
|
-
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
11823
|
-
*
|
|
11824
|
-
* @component
|
|
11825
|
-
* @example
|
|
11826
|
-
* ```tsx
|
|
11827
|
-
* // Basic usage
|
|
11828
|
-
* <EdgePanel
|
|
11829
|
-
* title="My Panel"
|
|
11830
|
-
* isOpen={isOpen}
|
|
11831
|
-
* onOpenChange={setIsOpen}
|
|
11832
|
-
* position="start"
|
|
11833
|
-
* >
|
|
11834
|
-
* <p>Panel content</p>
|
|
11835
|
-
* </EdgePanel>
|
|
11836
|
-
*
|
|
11837
|
-
* // With glass effect
|
|
11838
|
-
* <EdgePanel
|
|
11839
|
-
* title="Glass Panel"
|
|
11840
|
-
* isOpen={isOpen}
|
|
11841
|
-
* onOpenChange={setIsOpen}
|
|
11842
|
-
* position="end"
|
|
11843
|
-
* glass={true}
|
|
11844
|
-
* >
|
|
11845
|
-
* <p>Panel with glass morphism</p>
|
|
11846
|
-
* </EdgePanel>
|
|
11847
|
-
*
|
|
11848
|
-
* // With custom glass configuration
|
|
11849
|
-
* <EdgePanel
|
|
11850
|
-
* title="Custom Glass"
|
|
11851
|
-
* isOpen={isOpen}
|
|
11852
|
-
* onOpenChange={setIsOpen}
|
|
11853
|
-
* position="start"
|
|
11854
|
-
* glass={{
|
|
11855
|
-
* mode: 'shader',
|
|
11856
|
-
* shaderVariant: 'liquidGlass',
|
|
11857
|
-
* displacementScale: 70,
|
|
11858
|
-
* blurAmount: 1.8,
|
|
11859
|
-
* saturation: 170,
|
|
11860
|
-
* }}
|
|
11861
|
-
* >
|
|
11862
|
-
* <p>Panel with custom glass effect</p>
|
|
11863
|
-
* </EdgePanel>
|
|
11864
|
-
* ```
|
|
11865
|
-
*/
|
|
11866
|
-
declare const EdgePanel: React__default.FC<EdgePanelProps>;
|
|
11867
|
-
|
|
11868
12172
|
declare const Checkbox: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
11869
12173
|
|
|
11870
12174
|
/**
|
|
@@ -11950,20 +12254,11 @@ declare const Input: React__default.MemoExoticComponent<React__default.ForwardRe
|
|
|
11950
12254
|
*/
|
|
11951
12255
|
declare const Radio: React__default.FC<RadioProps>;
|
|
11952
12256
|
|
|
11953
|
-
/**
|
|
11954
|
-
* Select - A component for dropdown selection
|
|
11955
|
-
*/
|
|
11956
|
-
declare const Select: React__default.FC<SelectProps>;
|
|
11957
|
-
|
|
11958
12257
|
/**
|
|
11959
12258
|
* Textarea - A component for multiline text input
|
|
11960
12259
|
*/
|
|
11961
12260
|
declare const Textarea: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
11962
12261
|
|
|
11963
|
-
declare const Hero: React__default.FC<HeroProps>;
|
|
11964
|
-
|
|
11965
|
-
declare const List: React__default.FC<ListProps>;
|
|
11966
|
-
|
|
11967
12262
|
type ListGroupProps = ListGroupProps$1;
|
|
11968
12263
|
declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
11969
12264
|
|
|
@@ -11972,11 +12267,6 @@ declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
|
11972
12267
|
*/
|
|
11973
12268
|
declare const Messages: React__default.FC<MessagesProps>;
|
|
11974
12269
|
|
|
11975
|
-
/**
|
|
11976
|
-
* Modal component for displaying overlay content
|
|
11977
|
-
*/
|
|
11978
|
-
declare const Modal: React__default.FC<ModalProps>;
|
|
11979
|
-
|
|
11980
12270
|
/**
|
|
11981
12271
|
* Nav component provides a container for navigation items with proper alignment and accessibility.
|
|
11982
12272
|
*
|
|
@@ -12286,106 +12576,6 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
|
|
|
12286
12576
|
|
|
12287
12577
|
declare const Spinner: React__default.FC<SpinnerProps>;
|
|
12288
12578
|
|
|
12289
|
-
interface StepItem {
|
|
12290
|
-
/**
|
|
12291
|
-
* The number for the step
|
|
12292
|
-
*/
|
|
12293
|
-
number: number | string | ReactNode;
|
|
12294
|
-
/**
|
|
12295
|
-
* The text label for the step
|
|
12296
|
-
*/
|
|
12297
|
-
text: string;
|
|
12298
|
-
/**
|
|
12299
|
-
* Optional custom content for the step
|
|
12300
|
-
*/
|
|
12301
|
-
content?: React__default.ReactNode;
|
|
12302
|
-
}
|
|
12303
|
-
interface StepsProps {
|
|
12304
|
-
/**
|
|
12305
|
-
* Array of step items
|
|
12306
|
-
*/
|
|
12307
|
-
items: StepItem[];
|
|
12308
|
-
/**
|
|
12309
|
-
* Current active step index (0-based)
|
|
12310
|
-
*/
|
|
12311
|
-
activeIndex?: number;
|
|
12312
|
-
/**
|
|
12313
|
-
* Whether to display steps vertically
|
|
12314
|
-
*/
|
|
12315
|
-
vertical?: boolean;
|
|
12316
|
-
/**
|
|
12317
|
-
* Called when active step changes
|
|
12318
|
-
*/
|
|
12319
|
-
onStepChange?: (index: number) => void;
|
|
12320
|
-
/**
|
|
12321
|
-
* Additional CSS class
|
|
12322
|
-
*/
|
|
12323
|
-
className?: string;
|
|
12324
|
-
/**
|
|
12325
|
-
* Inline style for the component
|
|
12326
|
-
*/
|
|
12327
|
-
style?: React__default.CSSProperties;
|
|
12328
|
-
/**
|
|
12329
|
-
* Glass morphism effect for the steps component
|
|
12330
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12331
|
-
*/
|
|
12332
|
-
glass?: AtomixGlassProps | boolean;
|
|
12333
|
-
}
|
|
12334
|
-
/**
|
|
12335
|
-
* Steps component for displaying a sequence of steps
|
|
12336
|
-
*/
|
|
12337
|
-
declare const Steps: React__default.FC<StepsProps>;
|
|
12338
|
-
|
|
12339
|
-
interface TabsItemProps {
|
|
12340
|
-
/**
|
|
12341
|
-
* Label for the tab
|
|
12342
|
-
*/
|
|
12343
|
-
label: string;
|
|
12344
|
-
/**
|
|
12345
|
-
* Content of the tab panel
|
|
12346
|
-
*/
|
|
12347
|
-
content: ReactNode;
|
|
12348
|
-
/**
|
|
12349
|
-
* Whether the tab is initially active
|
|
12350
|
-
*/
|
|
12351
|
-
isActive?: boolean;
|
|
12352
|
-
/**
|
|
12353
|
-
* Additional CSS class for the tab
|
|
12354
|
-
*/
|
|
12355
|
-
className?: string;
|
|
12356
|
-
}
|
|
12357
|
-
interface TabsProps {
|
|
12358
|
-
/**
|
|
12359
|
-
* Array of tab items
|
|
12360
|
-
*/
|
|
12361
|
-
items: TabsItemProps[];
|
|
12362
|
-
/**
|
|
12363
|
-
* Initial active tab index
|
|
12364
|
-
*/
|
|
12365
|
-
activeIndex?: number;
|
|
12366
|
-
/**
|
|
12367
|
-
* Callback when tab changes
|
|
12368
|
-
*/
|
|
12369
|
-
onTabChange?: (index: number) => void;
|
|
12370
|
-
/**
|
|
12371
|
-
* Additional CSS class for the tab component
|
|
12372
|
-
*/
|
|
12373
|
-
className?: string;
|
|
12374
|
-
/**
|
|
12375
|
-
* Custom style for the tab component
|
|
12376
|
-
*/
|
|
12377
|
-
style?: React__default.CSSProperties;
|
|
12378
|
-
/**
|
|
12379
|
-
* Glass morphism effect for the tab component
|
|
12380
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12381
|
-
*/
|
|
12382
|
-
glass?: AtomixGlassProps | boolean;
|
|
12383
|
-
}
|
|
12384
|
-
/**
|
|
12385
|
-
* Tabs component for switching between different content panels
|
|
12386
|
-
*/
|
|
12387
|
-
declare const Tabs: React__default.FC<TabsProps>;
|
|
12388
|
-
|
|
12389
12579
|
interface TestimonialAuthor {
|
|
12390
12580
|
/**
|
|
12391
12581
|
* The author's name
|
|
@@ -15126,17 +15316,28 @@ declare const atomix: {
|
|
|
15126
15316
|
constants: typeof __lib_constants;
|
|
15127
15317
|
types: typeof __lib_types;
|
|
15128
15318
|
layouts: typeof layouts;
|
|
15129
|
-
Accordion: React$1.FC<AccordionProps$1
|
|
15319
|
+
Accordion: React$1.FC<AccordionProps$1> & {
|
|
15320
|
+
Header: typeof AccordionHeader;
|
|
15321
|
+
Body: typeof AccordionBody;
|
|
15322
|
+
};
|
|
15130
15323
|
AtomixLogo: React$1.FC<AtomixLogoProps>;
|
|
15131
15324
|
AtomixGlass: typeof AtomixGlass;
|
|
15132
15325
|
Avatar: React$1.FC<AvatarProps>;
|
|
15133
15326
|
AvatarGroup: React$1.FC<AvatarGroupProps>;
|
|
15134
15327
|
Badge: React$1.FC<BadgeProps>;
|
|
15135
15328
|
Block: React$1.ForwardRefExoticComponent<BlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15136
|
-
Breadcrumb:
|
|
15329
|
+
Breadcrumb: BreadcrumbType;
|
|
15137
15330
|
Button: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
15138
15331
|
ButtonGroup: React$1.FC<ButtonGroupProps>;
|
|
15139
|
-
Callout: React$1.FC<CalloutProps
|
|
15332
|
+
Callout: React$1.FC<CalloutProps> & {
|
|
15333
|
+
Icon: typeof CalloutIcon;
|
|
15334
|
+
Message: typeof CalloutMessage;
|
|
15335
|
+
Title: typeof CalloutTitle;
|
|
15336
|
+
Text: typeof CalloutText;
|
|
15337
|
+
Actions: typeof CalloutActions;
|
|
15338
|
+
CloseButton: typeof CalloutCloseButton;
|
|
15339
|
+
Content: typeof CalloutContent;
|
|
15340
|
+
};
|
|
15140
15341
|
Card: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
15141
15342
|
ElevationCard: React$1.FC<ElevationCardProps>;
|
|
15142
15343
|
AnimatedChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AnimatedChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
@@ -15172,8 +15373,19 @@ declare const atomix: {
|
|
|
15172
15373
|
Countdown: React$1.FC<CountdownProps>;
|
|
15173
15374
|
DataTable: React$1.FC<DataTableProps>;
|
|
15174
15375
|
DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<DatePickerRef>>;
|
|
15175
|
-
Dropdown: React$1.FC<DropdownProps
|
|
15176
|
-
|
|
15376
|
+
Dropdown: React$1.FC<DropdownProps> & {
|
|
15377
|
+
Trigger: typeof DropdownTrigger;
|
|
15378
|
+
Menu: typeof DropdownMenu;
|
|
15379
|
+
Item: typeof DropdownItem;
|
|
15380
|
+
Divider: typeof DropdownDivider;
|
|
15381
|
+
Header: typeof DropdownHeader;
|
|
15382
|
+
};
|
|
15383
|
+
EdgePanel: React$1.FC<EdgePanelProps> & {
|
|
15384
|
+
Header: typeof EdgePanelHeader;
|
|
15385
|
+
Body: typeof EdgePanelBody;
|
|
15386
|
+
Footer: typeof EdgePanelFooter;
|
|
15387
|
+
CloseButton: typeof EdgePanelCloseButton;
|
|
15388
|
+
};
|
|
15177
15389
|
Checkbox: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15178
15390
|
Footer: React$1.ForwardRefExoticComponent<FooterProps & React$1.RefAttributes<HTMLElement>>;
|
|
15179
15391
|
FooterSection: React$1.ForwardRefExoticComponent<FooterSectionProps & {
|
|
@@ -15185,14 +15397,28 @@ declare const atomix: {
|
|
|
15185
15397
|
FormGroup: React$1.FC<FormGroupProps>;
|
|
15186
15398
|
Input: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15187
15399
|
Radio: React$1.FC<RadioProps>;
|
|
15188
|
-
Select:
|
|
15400
|
+
Select: SelectComponent;
|
|
15189
15401
|
Textarea: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>>;
|
|
15190
|
-
Hero: React$1.FC<HeroProps
|
|
15402
|
+
Hero: React$1.FC<HeroProps> & {
|
|
15403
|
+
Title: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
|
|
15404
|
+
Subtitle: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
15405
|
+
Text: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
15406
|
+
Actions: ({ children, className, ...props }: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
15407
|
+
Content: ({ children, className, style, glass, ...props }: HeroContentProps) => react_jsx_runtime.JSX.Element;
|
|
15408
|
+
Image: ({ src, alt, className, wrapperClassName, wrapperStyle, ...props }: HeroImageProps) => react_jsx_runtime.JSX.Element;
|
|
15409
|
+
Background: ({ className, style, src, children, ...props }: React.HTMLAttributes<HTMLDivElement> & {
|
|
15410
|
+
src?: string;
|
|
15411
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
15412
|
+
};
|
|
15191
15413
|
Icon: React$1.FC<IconProps>;
|
|
15192
|
-
List:
|
|
15414
|
+
List: ListComponent;
|
|
15193
15415
|
ListGroup: React$1.FC<ListGroupProps$1>;
|
|
15194
15416
|
Messages: React$1.FC<MessagesProps>;
|
|
15195
|
-
Modal: React$1.FC<ModalProps
|
|
15417
|
+
Modal: React$1.FC<ModalProps> & {
|
|
15418
|
+
Header: typeof ModalHeader;
|
|
15419
|
+
Body: typeof ModalBody;
|
|
15420
|
+
Footer: typeof ModalFooter;
|
|
15421
|
+
};
|
|
15196
15422
|
Nav: React$1.ForwardRefExoticComponent<NavProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
15197
15423
|
NavItem: React$1.ForwardRefExoticComponent<NavItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
15198
15424
|
Navbar: React$1.ForwardRefExoticComponent<NavbarProps & React$1.RefAttributes<HTMLElement>>;
|
|
@@ -15216,8 +15442,16 @@ declare const atomix: {
|
|
|
15216
15442
|
SectionIntro: React$1.FC<SectionIntroProps>;
|
|
15217
15443
|
Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15218
15444
|
Spinner: React$1.FC<SpinnerProps>;
|
|
15219
|
-
Steps: React$1.FC<StepsProps
|
|
15220
|
-
|
|
15445
|
+
Steps: React$1.FC<StepsProps> & {
|
|
15446
|
+
Item: typeof StepsItem;
|
|
15447
|
+
Step: typeof StepsItem;
|
|
15448
|
+
};
|
|
15449
|
+
Tabs: React$1.FC<TabsProps> & {
|
|
15450
|
+
List: typeof TabsList;
|
|
15451
|
+
Trigger: typeof TabsTrigger;
|
|
15452
|
+
Panels: typeof TabsPanels;
|
|
15453
|
+
Panel: typeof TabsPanel;
|
|
15454
|
+
};
|
|
15221
15455
|
Testimonial: React$1.FC<TestimonialProps>;
|
|
15222
15456
|
Todo: React$1.FC<TodoProps>;
|
|
15223
15457
|
Toggle: React$1.FC<ToggleProps>;
|
|
@@ -15226,5 +15460,5 @@ declare const atomix: {
|
|
|
15226
15460
|
VideoPlayer: React$1.ForwardRefExoticComponent<VideoPlayerProps & React$1.RefAttributes<HTMLVideoElement>>;
|
|
15227
15461
|
};
|
|
15228
15462
|
|
|
15229
|
-
export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BLOCK, BREADCRUMB, BUTTON, BUTTON_CSS_VARS, BUTTON_GROUP, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, ButtonGroup, CALLOUT, CARD, CARD_CSS_VARS, CHART, CHECKBOX_CSS_VARS, CLASS_PREFIX, CODE_SNIPPET, COMPONENT_CSS_VARS, COUNTDOWN, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DATA_TABLE_CLASSES, DATA_TABLE_SELECTORS, DATEPICKER, DEFAULT_ATOMIX_FONTS, DOTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DesignTokensCustomizer, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RADIO, RADIO_CSS_VARS, RATING, RIVER, RTLManager, RadarChart, Radio, Rating, River, Row, SECTION_INTRO, SELECT, SIDE_MENU, SIZES, SLIDER, SPINNER, STEPS, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, TAB, TABS_CSS_VARS, TESTIMONIAL, TEXTAREA, THEME_COLORS, THEME_NAMING, TODO, TOGGLE, TOOLTIP, TOOLTIP_CSS_VARS, Tabs, Testimonial, Textarea, ThemeApplicator, ThemeComparator, ThemeContext, ThemeErrorBoundary, ThemeInspector, ThemeLiveEditor, ThemePreview, ThemeProvider, ThemeValidator, Todo, Toggle, Tooltip, TreemapChart, UPLOAD, Upload, VIDEO_PLAYER, VideoPlayer, WaterfallChart, applyCSSVariables, applyCSSVarsToStyle, applyComponentTheme, applyPartStyles, applyTheme, camelToKebab, clearThemes, composables, constants, createCSSVarStyle, 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, getPartStyles, 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, useBreadcrumb, useCard, useChartData, useChartInteraction, useChartScale, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useDataTable, useEdgePanel, useForm, useFormGroup, useGlassContainer, useHero, useHistory, useInput, useLineChart, useMergedProps, useModal, useNav, useNavDropdown, useNavItem, useNavbar, usePagination, usePieChart, useRadio, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlider, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils, validateTheme };
|
|
15230
|
-
export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DesignTokensCustomizerProps, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, 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, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption, SelectParts, SelectProps, SelectionMode, SideMenuItemProps, SideMenuListProps, SideMenuProps, Size, SliderAutoplay, SliderBreakpoint, SliderEffect, SliderLazy, SliderNavigation, SliderPagination, SliderProps, SliderRefs, SliderScrollbar, SliderSlide, SliderState, SliderThumbs, SliderVirtual, SliderZoom, SlotProps, SocialLink, SocialPlatform, SortConfig, SpinnerProps, StateModifier, StepsProps, TabsCSSVariable, TabsParts, TabsProps, TestimonialProps, TextareaParts, TextareaProps, Theme, ThemeChangeEvent, ThemeColor, ThemeComparatorProps, ThemeComponentOverrides, ThemeContextValue, ThemeDefinition, ThemeErrorBoundaryProps, ThemeInspectorProps, ThemeLiveEditorProps, ThemeLoadOptions, ThemeName, ThemePreviewProps, ThemeProviderProps, ThemeTokens, ThemeValidationResult, TodoItem, TodoProps, ToggleProps, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
|
|
15463
|
+
export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, _default as Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BLOCK, BREADCRUMB, BUTTON, BUTTON_CSS_VARS, BUTTON_GROUP, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, ButtonGroup, CALLOUT, CARD, CARD_CSS_VARS, CHART, CHECKBOX_CSS_VARS, CLASS_PREFIX, CODE_SNIPPET, COMPONENT_CSS_VARS, COUNTDOWN, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DATA_TABLE_CLASSES, DATA_TABLE_SELECTORS, DATEPICKER, DEFAULT_ATOMIX_FONTS, DOTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DesignTokensCustomizer, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RADIO, RADIO_CSS_VARS, RATING, RIVER, RTLManager, RadarChart, Radio, Rating, River, Row, SECTION_INTRO, SELECT, SIDE_MENU, SIZES, SLIDER, SPINNER, STEPS, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, TAB, TABS_CSS_VARS, TESTIMONIAL, TEXTAREA, THEME_COLORS, THEME_NAMING, TODO, TOGGLE, TOOLTIP, TOOLTIP_CSS_VARS, Tabs, Testimonial, Textarea, ThemeApplicator, ThemeComparator, ThemeContext, ThemeErrorBoundary, ThemeInspector, ThemeLiveEditor, ThemePreview, ThemeProvider, ThemeValidator, Todo, Toggle, Tooltip, TreemapChart, UPLOAD, Upload, VIDEO_PLAYER, VideoPlayer, WaterfallChart, applyCSSVariables, applyCSSVarsToStyle, applyComponentTheme, applyPartStyles, applyTheme, camelToKebab, clearThemes, composables, constants, createCSSVarStyle, 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, getPartStyles, 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, useBreadcrumb, useCard, useChartData, useChartInteraction, useChartScale, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useDataTable, useEdgePanel, useForm, useFormGroup, useGlassContainer, useHero, useHistory, useInput, useLineChart, useMergedProps, useModal, useNav, useNavDropdown, useNavItem, useNavbar, usePagination, usePieChart, useRadio, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlider, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils, validateTheme };
|
|
15464
|
+
export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DesignTokensCustomizerProps, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger$1 as DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, 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, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption$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, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
|