@shohojdhara/atomix 0.3.15 → 0.4.1
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/build-tools/index.d.ts +31 -30
- package/build-tools/package.json +4 -21
- package/dist/atomix.css +20234 -2027
- package/dist/atomix.css.map +1 -1
- package/dist/atomix.min.css +76 -2
- package/dist/atomix.min.css.map +1 -1
- package/dist/build-tools/index.d.ts +31 -30
- package/dist/build-tools/package.json +4 -21
- package/dist/charts.js +4 -5
- package/dist/charts.js.map +1 -1
- package/dist/core.d.ts +87 -10
- package/dist/core.js +673 -480
- package/dist/core.js.map +1 -1
- package/dist/forms.d.ts +15 -3
- package/dist/forms.js +530 -97
- package/dist/forms.js.map +1 -1
- package/dist/heavy.js +5 -6
- package/dist/heavy.js.map +1 -1
- package/dist/index.d.ts +644 -277
- package/dist/index.esm.js +1948 -1347
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3333 -2728
- 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.map +1 -1
- package/dist/theme.d.ts +9 -9
- package/dist/theme.js.map +1 -1
- package/package.json +2 -2
- package/scripts/atomix-cli.js +10 -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 +72 -23
- package/src/components/Accordion/Accordion.test.tsx +70 -50
- package/src/components/Accordion/Accordion.tsx +219 -96
- package/src/components/Accordion/AccordionCompound.test.tsx +70 -0
- package/src/components/AtomixGlass/AtomixGlass.test.tsx +1 -1
- package/src/components/AtomixGlass/GlassFilter.tsx +9 -16
- package/src/components/AtomixGlass/glass-utils.ts +4 -3
- package/src/components/AtomixGlass/shader-utils.ts +128 -52
- package/src/components/AtomixGlass/stories/Playground.stories.tsx +1 -1
- package/src/components/AtomixGlass/stories/Shaders.stories.tsx +1 -1
- package/src/components/Avatar/Avatar.stories.tsx +45 -62
- package/src/components/Avatar/Avatar.tsx +58 -56
- package/src/components/Badge/Badge.stories.tsx +20 -9
- package/src/components/Badge/Badge.test.tsx +41 -41
- package/src/components/Badge/Badge.tsx +64 -62
- package/src/components/Block/Block.stories.tsx +14 -4
- package/src/components/Breadcrumb/Breadcrumb.stories.tsx +9 -8
- package/src/components/Breadcrumb/Breadcrumb.tsx +173 -65
- package/src/components/Breadcrumb/BreadcrumbCompound.test.tsx +84 -0
- package/src/components/Button/Button.stories.tsx +13 -22
- package/src/components/Button/Button.test.tsx +97 -81
- package/src/components/Button/Button.tsx +46 -14
- package/src/components/Button/ButtonGroup.stories.tsx +37 -32
- package/src/components/Button/ButtonGroup.tsx +4 -15
- package/src/components/Callout/Callout.stories.tsx +166 -918
- package/src/components/Callout/Callout.tsx +196 -84
- package/src/components/Callout/CalloutCompound.test.tsx +72 -0
- package/src/components/Card/Card.stories.tsx +67 -36
- package/src/components/Card/Card.tsx +30 -14
- package/src/components/Chart/AreaChart.tsx +1 -1
- package/src/components/Chart/CandlestickChart.tsx +23 -16
- package/src/components/Chart/Chart.stories.tsx +4 -9
- package/src/components/Chart/Chart.tsx +40 -44
- package/src/components/Chart/ChartRenderer.tsx +39 -12
- package/src/components/Chart/ChartToolbar.tsx +21 -5
- package/src/components/Chart/DonutChart.tsx +1 -1
- package/src/components/Chart/FunnelChart.tsx +4 -1
- package/src/components/Chart/GaugeChart.tsx +3 -1
- package/src/components/Chart/HeatmapChart.tsx +50 -37
- package/src/components/Chart/LineChart.tsx +3 -2
- package/src/components/Chart/MultiAxisChart.tsx +24 -16
- package/src/components/Chart/RadarChart.tsx +19 -17
- package/src/components/Chart/ScatterChart.tsx +29 -21
- package/src/components/ColorModeToggle/ColorModeToggle.stories.tsx +6 -2
- package/src/components/ColorModeToggle/ColorModeToggle.tsx +15 -3
- package/src/components/Countdown/Countdown.stories.tsx +7 -7
- package/src/components/DataTable/DataTable.stories.tsx +43 -38
- package/src/components/DataTable/DataTable.test.tsx +26 -148
- package/src/components/DataTable/DataTable.tsx +485 -456
- package/src/components/DatePicker/DatePicker.stories.tsx +32 -47
- package/src/components/DatePicker/DatePicker.tsx +31 -26
- package/src/components/Dropdown/Dropdown.stories.tsx +2 -5
- package/src/components/Dropdown/Dropdown.tsx +425 -298
- package/src/components/Dropdown/DropdownCompound.test.tsx +64 -0
- package/src/components/EdgePanel/EdgePanel.stories.tsx +6 -19
- package/src/components/EdgePanel/EdgePanel.tsx +163 -113
- package/src/components/EdgePanel/EdgePanelCompound.test.tsx +53 -0
- package/src/components/Footer/Footer.stories.tsx +21 -16
- package/src/components/Footer/Footer.tsx +130 -128
- package/src/components/Footer/FooterLink.tsx +2 -2
- package/src/components/Form/Checkbox.test.tsx +49 -49
- package/src/components/Form/Checkbox.tsx +108 -100
- package/src/components/Form/Form.stories.tsx +2 -10
- package/src/components/Form/Input.stories.tsx +22 -39
- package/src/components/Form/Input.test.tsx +38 -44
- package/src/components/Form/Radio.stories.tsx +6 -12
- package/src/components/Form/Radio.tsx +68 -66
- package/src/components/Form/Select.stories.tsx +23 -0
- package/src/components/Form/Select.test.tsx +99 -0
- package/src/components/Form/Select.tsx +239 -186
- package/src/components/Form/SelectOption.tsx +88 -0
- package/src/components/Form/Textarea.test.tsx +27 -32
- package/src/components/Hero/Hero.stories.tsx +93 -23
- package/src/components/Hero/Hero.test.tsx +142 -0
- package/src/components/Hero/Hero.tsx +343 -58
- package/src/components/Icon/index.ts +7 -1
- package/src/components/List/List.test.tsx +62 -0
- package/src/components/List/List.tsx +32 -25
- package/src/components/List/ListItem.tsx +20 -0
- package/src/components/Modal/Modal.stories.tsx +67 -2
- package/src/components/Modal/Modal.tsx +208 -125
- package/src/components/Modal/ModalCompound.test.tsx +94 -0
- package/src/components/Navigation/Menu/MegaMenu.tsx +70 -70
- package/src/components/Navigation/Nav/NavDropdown.tsx +1 -5
- package/src/components/Navigation/SideMenu/SideMenu.stories.tsx +128 -28
- package/src/components/Navigation/SideMenu/SideMenu.tsx +5 -7
- package/src/components/Navigation/SideMenu/SideMenuItem.tsx +4 -5
- package/src/components/Pagination/Pagination.stories.tsx +7 -4
- package/src/components/Pagination/Pagination.tsx +199 -202
- package/src/components/PhotoViewer/PhotoViewer.tsx +4 -1
- package/src/components/Popover/Popover.stories.tsx +99 -192
- package/src/components/Popover/Popover.tsx +41 -37
- package/src/components/Progress/Progress.stories.tsx +35 -44
- package/src/components/River/River.stories.tsx +2 -1
- package/src/components/SectionIntro/SectionIntro.stories.tsx +71 -71
- package/src/components/Slider/Slider.stories.tsx +12 -4
- package/src/components/Spinner/Spinner.stories.tsx +3 -1
- package/src/components/Spinner/Spinner.test.tsx +23 -23
- package/src/components/Spinner/Spinner.tsx +43 -46
- package/src/components/Steps/Steps.stories.tsx +8 -6
- package/src/components/Steps/Steps.tsx +124 -21
- package/src/components/Steps/StepsCompound.test.tsx +81 -0
- package/src/components/Tabs/Tabs.stories.tsx +12 -9
- package/src/components/Tabs/Tabs.tsx +230 -75
- package/src/components/Tabs/TabsCompound.test.tsx +64 -0
- package/src/components/Toggle/Toggle.stories.tsx +27 -13
- package/src/components/Toggle/Toggle.test.tsx +65 -70
- package/src/components/Toggle/Toggle.tsx +4 -1
- package/src/components/Tooltip/Tooltip.stories.tsx +24 -20
- package/src/components/Tooltip/Tooltip.tsx +104 -106
- package/src/components/Upload/Upload.stories.tsx +129 -127
- package/src/components/Upload/Upload.tsx +287 -283
- package/src/components/VideoPlayer/VideoPlayer.tsx +6 -1
- package/src/components/index.ts +13 -2
- package/src/layouts/Grid/Grid.stories.tsx +9 -3
- package/src/layouts/MasonryGrid/MasonryGrid.tsx +5 -1
- package/src/lib/__tests__/theme-tools.test.ts +32 -6
- package/src/lib/composables/index.ts +0 -4
- package/src/lib/composables/shared-mouse-tracker.ts +13 -14
- package/src/lib/composables/useAtomixGlass.ts +102 -60
- package/src/lib/composables/useChartExport.ts +1 -1
- package/src/lib/composables/useDataTable.ts +29 -17
- package/src/lib/composables/useHero.ts +58 -14
- package/src/lib/composables/useHeroBackgroundSlider.ts +2 -9
- package/src/lib/composables/useInput.ts +10 -8
- package/src/lib/composables/useSideMenu.ts +6 -5
- package/src/lib/composables/useTooltip.ts +1 -2
- package/src/lib/composables/useVideoPlayer.ts +44 -35
- package/src/lib/config/index.ts +154 -154
- package/src/lib/constants/cssVariables.ts +29 -29
- package/src/lib/hooks/__tests__/useComponentCustomization.test.ts +2 -6
- package/src/lib/hooks/index.ts +1 -1
- package/src/lib/hooks/useComponentCustomization.ts +11 -17
- package/src/lib/hooks/usePerformanceMonitor.ts +6 -7
- package/src/lib/patterns/__tests__/slots.test.ts +1 -1
- package/src/lib/patterns/index.ts +1 -1
- package/src/lib/patterns/slots.tsx +8 -13
- package/src/lib/storybook/InteractiveDemo.tsx +13 -18
- package/src/lib/storybook/PreviewContainer.tsx +1 -1
- package/src/lib/storybook/VariantsGrid.tsx +3 -7
- package/src/lib/storybook/index.ts +1 -1
- package/src/lib/theme/adapters/cssVariableMapper.ts +47 -74
- package/src/lib/theme/adapters/index.ts +3 -9
- package/src/lib/theme/adapters/themeAdapter.ts +41 -26
- package/src/lib/theme/config/index.ts +1 -1
- package/src/lib/theme/config/types.ts +2 -2
- package/src/lib/theme/config/validator.ts +10 -5
- package/src/lib/theme/constants/constants.ts +2 -2
- package/src/lib/theme/constants/index.ts +1 -2
- package/src/lib/theme/core/__tests__/createTheme.test.ts +20 -22
- package/src/lib/theme/core/composeTheme.ts +32 -26
- package/src/lib/theme/core/createTheme.ts +1 -1
- package/src/lib/theme/core/createThemeObject.ts +308 -301
- package/src/lib/theme/core/index.ts +3 -3
- package/src/lib/theme/devtools/CLI.ts +105 -111
- package/src/lib/theme/devtools/Comparator.tsx +50 -32
- package/src/lib/theme/devtools/DesignTokensCustomizer.stories.tsx +50 -48
- package/src/lib/theme/devtools/DesignTokensCustomizer.tsx +257 -63
- package/src/lib/theme/devtools/Inspector.tsx +75 -60
- package/src/lib/theme/devtools/LiveEditor.tsx +97 -76
- package/src/lib/theme/devtools/Preview.tsx +150 -106
- package/src/lib/theme/devtools/ThemeValidator.ts +29 -21
- package/src/lib/theme/devtools/index.ts +3 -9
- package/src/lib/theme/devtools/useHistory.ts +23 -21
- package/src/lib/theme/errors/errors.ts +12 -11
- package/src/lib/theme/errors/index.ts +2 -7
- package/src/lib/theme/generators/generateCSS.ts +9 -13
- package/src/lib/theme/generators/generateCSSNested.ts +1 -6
- package/src/lib/theme/generators/generateCSSVariables.ts +673 -630
- package/src/lib/theme/generators/index.ts +1 -4
- package/src/lib/theme/i18n/index.ts +1 -1
- package/src/lib/theme/i18n/rtl.ts +13 -13
- package/src/lib/theme/index.ts +7 -16
- package/src/lib/theme/runtime/ThemeApplicator.ts +4 -4
- package/src/lib/theme/runtime/ThemeContext.tsx +1 -1
- package/src/lib/theme/runtime/ThemeErrorBoundary.tsx +19 -23
- package/src/lib/theme/runtime/ThemeProvider.tsx +230 -239
- package/src/lib/theme/runtime/__tests__/ThemeProvider.integration.test.tsx +1 -1
- package/src/lib/theme/runtime/__tests__/ThemeProvider.test.tsx +24 -29
- package/src/lib/theme/runtime/index.ts +2 -5
- package/src/lib/theme/runtime/useTheme.ts +18 -18
- package/src/lib/theme/runtime/useThemeTokens.ts +22 -22
- package/src/lib/theme/test/testTheme.ts +15 -16
- package/src/lib/theme/tokens/index.ts +2 -7
- package/src/lib/theme/tokens/tokens.ts +25 -24
- package/src/lib/theme/types.ts +428 -411
- package/src/lib/theme/utils/__tests__/themeValidation.test.ts +3 -3
- package/src/lib/theme/utils/componentTheming.ts +18 -18
- package/src/lib/theme/utils/domUtils.ts +277 -289
- package/src/lib/theme/utils/index.ts +1 -2
- package/src/lib/theme/utils/injectCSS.ts +10 -14
- package/src/lib/theme/utils/naming.ts +20 -16
- package/src/lib/theme/utils/themeHelpers.ts +10 -12
- package/src/lib/theme/utils/themeUtils.ts +85 -86
- package/src/lib/theme/utils/themeValidation.ts +82 -33
- package/src/lib/theme-tools.ts +8 -6
- package/src/lib/types/components.ts +180 -73
- package/src/lib/types/partProps.ts +1 -1
- package/src/lib/utils/__tests__/componentUtils.test.ts +57 -2
- package/src/lib/utils/__tests__/csv.test.ts +1 -1
- package/src/lib/utils/__tests__/themeNaming.test.ts +117 -0
- package/src/lib/utils/componentUtils.ts +8 -12
- package/src/lib/utils/csv.ts +3 -1
- package/src/lib/utils/dataTableExport.ts +1 -5
- package/src/lib/utils/fontPreloader.ts +10 -19
- package/src/lib/utils/icons.ts +4 -1
- package/src/lib/utils/index.ts +2 -6
- package/src/lib/utils/memoryMonitor.ts +10 -8
- package/src/lib/utils/themeNaming.ts +3 -3
- package/src/styles/01-settings/_index.scss +0 -1
- package/src/styles/01-settings/_settings.colors.scss +8 -8
- package/src/styles/01-settings/_settings.design-tokens.scss +61 -50
- package/src/styles/01-settings/_settings.navbar.scss +1 -1
- package/src/styles/01-settings/_settings.spacing.scss +3 -4
- package/src/styles/01-settings/_settings.tooltip.scss +1 -1
- package/src/styles/01-settings/_settings.typography.scss +1 -1
- package/src/styles/02-tools/_tools.breakpoints.scss +1 -1
- package/src/styles/02-tools/_tools.button.scss +51 -21
- package/src/styles/02-tools/_tools.utility-api.scss +36 -24
- package/src/styles/03-generic/_generic.root.scss +4 -3
- package/src/styles/06-components/_components.atomix-glass.scss +13 -9
- package/src/styles/06-components/_components.button.scss +16 -4
- package/src/styles/06-components/_components.callout.scss +27 -21
- package/src/styles/06-components/_components.card.scss +5 -14
- package/src/styles/06-components/_components.chart.scss +22 -19
- package/src/styles/06-components/_components.checkbox.scss +3 -1
- package/src/styles/06-components/_components.color-mode-toggle.scss +3 -1
- package/src/styles/06-components/_components.edge-panel.scss +9 -2
- package/src/styles/06-components/_components.footer.scss +1 -1
- package/src/styles/06-components/_components.side-menu.scss +5 -5
- package/src/styles/06-components/_components.toggle.scss +18 -0
- package/src/styles/06-components/_index.scss +1 -1
- package/src/styles/06-components/old.chart.styles.scss +0 -2
- package/src/styles/99-utilities/_utilities.border.scss +69 -27
- package/src/styles/99-utilities/_utilities.display.scss +1 -1
- package/src/styles/99-utilities/_utilities.opacity.scss +10 -0
- package/src/styles/99-utilities/_utilities.position.scss +16 -9
- package/src/styles/99-utilities/_utilities.scss +1 -1
- package/src/styles/99-utilities/_utilities.sizes.scss +47 -18
- package/src/styles/99-utilities/_utilities.spacing.scss +118 -66
- package/src/styles/99-utilities/_utilities.text-gradient.scss +30 -30
- package/src/styles/99-utilities/_utilities.text.scss +67 -47
package/dist/index.d.ts
CHANGED
|
@@ -1165,7 +1165,7 @@ type ComponentCSSVariables = {
|
|
|
1165
1165
|
/**
|
|
1166
1166
|
* Get CSS variables for a component
|
|
1167
1167
|
*/
|
|
1168
|
-
declare function getComponentCSSVars<T extends keyof typeof COMPONENT_CSS_VARS>(component: T): typeof COMPONENT_CSS_VARS[T];
|
|
1168
|
+
declare function getComponentCSSVars<T extends keyof typeof COMPONENT_CSS_VARS>(component: T): (typeof COMPONENT_CSS_VARS)[T];
|
|
1169
1169
|
|
|
1170
1170
|
/**
|
|
1171
1171
|
* Displacement mode for glass effect
|
|
@@ -1438,7 +1438,7 @@ type StateModifier = 'is-open' | 'is-closed' | 'is-active' | 'is-disabled' | 'is
|
|
|
1438
1438
|
* Icon position options
|
|
1439
1439
|
*/
|
|
1440
1440
|
type IconPosition = 'left' | 'right';
|
|
1441
|
-
type listvariant = 'dash' | 'number' | 'text';
|
|
1441
|
+
type listvariant = 'dash' | 'number' | 'text' | 'default';
|
|
1442
1442
|
/**;
|
|
1443
1443
|
* List component properties
|
|
1444
1444
|
*/
|
|
@@ -1927,14 +1927,72 @@ interface HeroBackgroundSliderConfig {
|
|
|
1927
1927
|
*/
|
|
1928
1928
|
customTransition?: (currentIndex: number, nextIndex: number) => string | React.CSSProperties;
|
|
1929
1929
|
}
|
|
1930
|
+
/**
|
|
1931
|
+
* Hero component parts for granular styling
|
|
1932
|
+
*/
|
|
1933
|
+
interface HeroParts {
|
|
1934
|
+
root?: {
|
|
1935
|
+
className?: string;
|
|
1936
|
+
style?: React.CSSProperties;
|
|
1937
|
+
};
|
|
1938
|
+
container?: {
|
|
1939
|
+
className?: string;
|
|
1940
|
+
style?: React.CSSProperties;
|
|
1941
|
+
};
|
|
1942
|
+
grid?: {
|
|
1943
|
+
className?: string;
|
|
1944
|
+
style?: React.CSSProperties;
|
|
1945
|
+
};
|
|
1946
|
+
content?: {
|
|
1947
|
+
className?: string;
|
|
1948
|
+
style?: React.CSSProperties;
|
|
1949
|
+
};
|
|
1950
|
+
title?: {
|
|
1951
|
+
className?: string;
|
|
1952
|
+
style?: React.CSSProperties;
|
|
1953
|
+
};
|
|
1954
|
+
subtitle?: {
|
|
1955
|
+
className?: string;
|
|
1956
|
+
style?: React.CSSProperties;
|
|
1957
|
+
};
|
|
1958
|
+
text?: {
|
|
1959
|
+
className?: string;
|
|
1960
|
+
style?: React.CSSProperties;
|
|
1961
|
+
};
|
|
1962
|
+
actions?: {
|
|
1963
|
+
className?: string;
|
|
1964
|
+
style?: React.CSSProperties;
|
|
1965
|
+
};
|
|
1966
|
+
imageWrapper?: {
|
|
1967
|
+
className?: string;
|
|
1968
|
+
style?: React.CSSProperties;
|
|
1969
|
+
};
|
|
1970
|
+
image?: {
|
|
1971
|
+
className?: string;
|
|
1972
|
+
style?: React.CSSProperties;
|
|
1973
|
+
};
|
|
1974
|
+
background?: {
|
|
1975
|
+
className?: string;
|
|
1976
|
+
style?: React.CSSProperties;
|
|
1977
|
+
};
|
|
1978
|
+
overlay?: {
|
|
1979
|
+
className?: string;
|
|
1980
|
+
style?: React.CSSProperties;
|
|
1981
|
+
};
|
|
1982
|
+
}
|
|
1930
1983
|
/**
|
|
1931
1984
|
* Hero component properties
|
|
1932
1985
|
*/
|
|
1933
|
-
interface HeroProps extends BaseComponentProps {
|
|
1986
|
+
interface HeroProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' | 'content'>, BaseComponentProps {
|
|
1934
1987
|
/**
|
|
1935
1988
|
* Hero title
|
|
1936
1989
|
*/
|
|
1937
|
-
title:
|
|
1990
|
+
title: ReactNode;
|
|
1991
|
+
/**
|
|
1992
|
+
* HTML Heading level for the title
|
|
1993
|
+
* @default 'h1'
|
|
1994
|
+
*/
|
|
1995
|
+
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
|
|
1938
1996
|
/**
|
|
1939
1997
|
* Hero subtitle
|
|
1940
1998
|
*/
|
|
@@ -1975,10 +2033,26 @@ interface HeroProps extends BaseComponentProps {
|
|
|
1975
2033
|
* Custom grid column size for image (default is 7)
|
|
1976
2034
|
*/
|
|
1977
2035
|
imageColSize?: number;
|
|
2036
|
+
/**
|
|
2037
|
+
* Custom grid column class name for image
|
|
2038
|
+
*/
|
|
2039
|
+
imageColClassName?: string;
|
|
2040
|
+
/**
|
|
2041
|
+
* Custom inline style for image column
|
|
2042
|
+
*/
|
|
2043
|
+
imageColStyle?: React.CSSProperties;
|
|
1978
2044
|
/**
|
|
1979
2045
|
* Custom grid column size for content (default is 5)
|
|
1980
2046
|
*/
|
|
1981
2047
|
contentColSize?: number;
|
|
2048
|
+
/**
|
|
2049
|
+
* Custom grid column class name for content
|
|
2050
|
+
*/
|
|
2051
|
+
contentColClassName?: string;
|
|
2052
|
+
/**
|
|
2053
|
+
* Custom inline style for content column
|
|
2054
|
+
*/
|
|
2055
|
+
contentColStyle?: React.CSSProperties;
|
|
1982
2056
|
/**
|
|
1983
2057
|
* Custom width for the hero content (overrides the default CSS variable)
|
|
1984
2058
|
*/
|
|
@@ -2030,6 +2104,20 @@ interface HeroProps extends BaseComponentProps {
|
|
|
2030
2104
|
* Takes precedence over backgroundImageSrc and videoBackground props
|
|
2031
2105
|
*/
|
|
2032
2106
|
backgroundSlider?: HeroBackgroundSliderConfig;
|
|
2107
|
+
/**
|
|
2108
|
+
* Reverse the stacking order of content and image on mobile devices
|
|
2109
|
+
* @default false
|
|
2110
|
+
*/
|
|
2111
|
+
reverseOnMobile?: boolean;
|
|
2112
|
+
/**
|
|
2113
|
+
* Granular part-based styling
|
|
2114
|
+
*/
|
|
2115
|
+
parts?: HeroParts;
|
|
2116
|
+
/**
|
|
2117
|
+
* Custom background element to render behind the content
|
|
2118
|
+
* @example <Hero.Background src="..." />
|
|
2119
|
+
*/
|
|
2120
|
+
backgroundElement?: ReactNode;
|
|
2033
2121
|
}
|
|
2034
2122
|
/**
|
|
2035
2123
|
* Spinner component properties
|
|
@@ -3086,7 +3174,7 @@ interface InputProps extends BaseComponentProps {
|
|
|
3086
3174
|
/**
|
|
3087
3175
|
* Select option
|
|
3088
3176
|
*/
|
|
3089
|
-
interface SelectOption {
|
|
3177
|
+
interface SelectOption$1 {
|
|
3090
3178
|
/**
|
|
3091
3179
|
* Option value
|
|
3092
3180
|
*/
|
|
@@ -3107,7 +3195,7 @@ interface SelectProps extends BaseComponentProps {
|
|
|
3107
3195
|
/**
|
|
3108
3196
|
* Select options
|
|
3109
3197
|
*/
|
|
3110
|
-
options
|
|
3198
|
+
options?: SelectOption$1[];
|
|
3111
3199
|
/**
|
|
3112
3200
|
* Selected value(s)
|
|
3113
3201
|
*/
|
|
@@ -3861,7 +3949,7 @@ interface PopoverProps {
|
|
|
3861
3949
|
/**
|
|
3862
3950
|
* The trigger method for the dropdown menu
|
|
3863
3951
|
*/
|
|
3864
|
-
type DropdownTrigger = 'click' | 'hover';
|
|
3952
|
+
type DropdownTrigger$1 = 'click' | 'hover';
|
|
3865
3953
|
/**
|
|
3866
3954
|
* The placement of the dropdown menu
|
|
3867
3955
|
*/
|
|
@@ -3881,7 +3969,7 @@ interface DropdownProps extends BaseComponentProps {
|
|
|
3881
3969
|
/**
|
|
3882
3970
|
* How the dropdown is triggered
|
|
3883
3971
|
*/
|
|
3884
|
-
trigger?: DropdownTrigger;
|
|
3972
|
+
trigger?: DropdownTrigger$1;
|
|
3885
3973
|
/**
|
|
3886
3974
|
* The placement of the dropdown menu
|
|
3887
3975
|
*/
|
|
@@ -6568,6 +6656,295 @@ interface GlassContainerProps extends BaseComponentProps {
|
|
|
6568
6656
|
style?: React.CSSProperties;
|
|
6569
6657
|
}
|
|
6570
6658
|
|
|
6659
|
+
interface TabsItemProps {
|
|
6660
|
+
/**
|
|
6661
|
+
* Label for the tab
|
|
6662
|
+
*/
|
|
6663
|
+
label: string;
|
|
6664
|
+
/**
|
|
6665
|
+
* Content of the tab panel
|
|
6666
|
+
*/
|
|
6667
|
+
content: ReactNode;
|
|
6668
|
+
/**
|
|
6669
|
+
* Whether the tab is initially active
|
|
6670
|
+
*/
|
|
6671
|
+
isActive?: boolean;
|
|
6672
|
+
/**
|
|
6673
|
+
* Additional CSS class for the tab
|
|
6674
|
+
*/
|
|
6675
|
+
className?: string;
|
|
6676
|
+
}
|
|
6677
|
+
interface TabsProps {
|
|
6678
|
+
/**
|
|
6679
|
+
* Array of tab items (Legacy mode)
|
|
6680
|
+
*/
|
|
6681
|
+
items?: TabsItemProps[];
|
|
6682
|
+
/**
|
|
6683
|
+
* Initial active tab index
|
|
6684
|
+
*/
|
|
6685
|
+
activeIndex?: number;
|
|
6686
|
+
/**
|
|
6687
|
+
* Callback when tab changes
|
|
6688
|
+
*/
|
|
6689
|
+
onTabChange?: (index: number) => void;
|
|
6690
|
+
/**
|
|
6691
|
+
* Additional CSS class for the tab component
|
|
6692
|
+
*/
|
|
6693
|
+
className?: string;
|
|
6694
|
+
/**
|
|
6695
|
+
* Custom style for the tab component
|
|
6696
|
+
*/
|
|
6697
|
+
style?: React__default.CSSProperties;
|
|
6698
|
+
/**
|
|
6699
|
+
* Glass morphism effect for the tab component
|
|
6700
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
6701
|
+
*/
|
|
6702
|
+
glass?: AtomixGlassProps | boolean;
|
|
6703
|
+
/**
|
|
6704
|
+
* Children (Compound mode)
|
|
6705
|
+
*/
|
|
6706
|
+
children?: ReactNode;
|
|
6707
|
+
}
|
|
6708
|
+
declare const TabsList: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLUListElement> & React__default.RefAttributes<HTMLUListElement>>;
|
|
6709
|
+
interface TabsTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
6710
|
+
index?: number;
|
|
6711
|
+
}
|
|
6712
|
+
declare const TabsTrigger: React__default.ForwardRefExoticComponent<TabsTriggerProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
6713
|
+
declare const TabsPanels: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6714
|
+
interface TabsPanelProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
6715
|
+
index?: number;
|
|
6716
|
+
}
|
|
6717
|
+
declare const TabsPanel: React__default.ForwardRefExoticComponent<TabsPanelProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6718
|
+
/**
|
|
6719
|
+
* Tabs component for switching between different content panels
|
|
6720
|
+
*/
|
|
6721
|
+
type TabsComponent = React__default.FC<TabsProps> & {
|
|
6722
|
+
List: typeof TabsList;
|
|
6723
|
+
Trigger: typeof TabsTrigger;
|
|
6724
|
+
Panels: typeof TabsPanels;
|
|
6725
|
+
Panel: typeof TabsPanel;
|
|
6726
|
+
};
|
|
6727
|
+
declare const Tabs: TabsComponent;
|
|
6728
|
+
|
|
6729
|
+
interface StepItemData {
|
|
6730
|
+
/**
|
|
6731
|
+
* The number for the step
|
|
6732
|
+
*/
|
|
6733
|
+
number: number | string | ReactNode;
|
|
6734
|
+
/**
|
|
6735
|
+
* The text label for the step
|
|
6736
|
+
*/
|
|
6737
|
+
text: string;
|
|
6738
|
+
/**
|
|
6739
|
+
* Optional custom content for the step
|
|
6740
|
+
*/
|
|
6741
|
+
content?: React__default.ReactNode;
|
|
6742
|
+
}
|
|
6743
|
+
|
|
6744
|
+
interface StepsItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
6745
|
+
/**
|
|
6746
|
+
* The number or icon for the step
|
|
6747
|
+
*/
|
|
6748
|
+
number?: number | string | ReactNode;
|
|
6749
|
+
/**
|
|
6750
|
+
* The text label/title for the step
|
|
6751
|
+
*/
|
|
6752
|
+
title?: ReactNode;
|
|
6753
|
+
/**
|
|
6754
|
+
* Whether the step is active
|
|
6755
|
+
*/
|
|
6756
|
+
active?: boolean;
|
|
6757
|
+
/**
|
|
6758
|
+
* Whether the step is completed
|
|
6759
|
+
*/
|
|
6760
|
+
completed?: boolean;
|
|
6761
|
+
/**
|
|
6762
|
+
* Index of the step (injected by parent)
|
|
6763
|
+
*/
|
|
6764
|
+
index?: number;
|
|
6765
|
+
}
|
|
6766
|
+
declare const StepsItem: React__default.ForwardRefExoticComponent<StepsItemProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6767
|
+
interface StepsProps {
|
|
6768
|
+
/**
|
|
6769
|
+
* Array of step items (Legacy)
|
|
6770
|
+
*/
|
|
6771
|
+
items?: StepItemData[];
|
|
6772
|
+
/**
|
|
6773
|
+
* Current active step index (0-based)
|
|
6774
|
+
*/
|
|
6775
|
+
activeIndex?: number;
|
|
6776
|
+
/**
|
|
6777
|
+
* Whether to display steps vertically
|
|
6778
|
+
*/
|
|
6779
|
+
vertical?: boolean;
|
|
6780
|
+
/**
|
|
6781
|
+
* Called when active step changes
|
|
6782
|
+
*/
|
|
6783
|
+
onStepChange?: (index: number) => void;
|
|
6784
|
+
/**
|
|
6785
|
+
* Additional CSS class
|
|
6786
|
+
*/
|
|
6787
|
+
className?: string;
|
|
6788
|
+
/**
|
|
6789
|
+
* Inline style for the component
|
|
6790
|
+
*/
|
|
6791
|
+
style?: React__default.CSSProperties;
|
|
6792
|
+
/**
|
|
6793
|
+
* Glass morphism effect for the steps component
|
|
6794
|
+
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
6795
|
+
*/
|
|
6796
|
+
glass?: AtomixGlassProps | boolean;
|
|
6797
|
+
/**
|
|
6798
|
+
* Children (Compound)
|
|
6799
|
+
*/
|
|
6800
|
+
children?: ReactNode;
|
|
6801
|
+
}
|
|
6802
|
+
type StepsComponent = React__default.FC<StepsProps> & {
|
|
6803
|
+
Item: typeof StepsItem;
|
|
6804
|
+
Step: typeof StepsItem;
|
|
6805
|
+
};
|
|
6806
|
+
declare const Steps: StepsComponent;
|
|
6807
|
+
|
|
6808
|
+
interface ModalHeaderProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
6809
|
+
title?: ReactNode;
|
|
6810
|
+
subtitle?: ReactNode;
|
|
6811
|
+
closeButton?: boolean;
|
|
6812
|
+
onClose?: () => void;
|
|
6813
|
+
}
|
|
6814
|
+
declare const ModalHeader: React__default.ForwardRefExoticComponent<ModalHeaderProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
6815
|
+
declare const ModalBody: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6816
|
+
declare const ModalFooter: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6817
|
+
/**
|
|
6818
|
+
* Modal component for displaying overlay content
|
|
6819
|
+
*/
|
|
6820
|
+
type ModalComponent = React__default.FC<ModalProps> & {
|
|
6821
|
+
Header: typeof ModalHeader;
|
|
6822
|
+
Body: typeof ModalBody;
|
|
6823
|
+
Footer: typeof ModalFooter;
|
|
6824
|
+
};
|
|
6825
|
+
declare const Modal: ModalComponent;
|
|
6826
|
+
|
|
6827
|
+
interface ListItemProps extends React__default.LiHTMLAttributes<HTMLLIElement> {
|
|
6828
|
+
children?: React__default.ReactNode;
|
|
6829
|
+
}
|
|
6830
|
+
declare const ListItem: React__default.ForwardRefExoticComponent<ListItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
6831
|
+
|
|
6832
|
+
type ListComponent = React__default.FC<ListProps> & {
|
|
6833
|
+
Item: typeof ListItem;
|
|
6834
|
+
};
|
|
6835
|
+
declare const List: ListComponent;
|
|
6836
|
+
|
|
6837
|
+
interface HeroTitleProps extends React__default.HTMLAttributes<HTMLHeadingElement> {
|
|
6838
|
+
level?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
|
|
6839
|
+
}
|
|
6840
|
+
declare const HeroTitle: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
|
|
6841
|
+
declare const HeroSubtitle: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
6842
|
+
declare const HeroText: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
6843
|
+
declare const HeroActions: ({ children, className, ...props }: React__default.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
6844
|
+
interface HeroContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
6845
|
+
glass?: AtomixGlassProps | boolean;
|
|
6846
|
+
}
|
|
6847
|
+
declare const HeroContent: ({ children, className, style, glass, ...props }: HeroContentProps) => react_jsx_runtime.JSX.Element;
|
|
6848
|
+
interface HeroImageProps extends React__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
6849
|
+
wrapperClassName?: string;
|
|
6850
|
+
wrapperStyle?: React__default.CSSProperties;
|
|
6851
|
+
}
|
|
6852
|
+
declare const HeroImage: ({ src, alt, className, wrapperClassName, wrapperStyle, ...props }: HeroImageProps) => react_jsx_runtime.JSX.Element;
|
|
6853
|
+
declare const HeroBackground: ({ className, style, src, children, ...props }: React__default.HTMLAttributes<HTMLDivElement> & {
|
|
6854
|
+
src?: string;
|
|
6855
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
6856
|
+
declare const Hero: React__default.FC<HeroProps> & {
|
|
6857
|
+
Title: typeof HeroTitle;
|
|
6858
|
+
Subtitle: typeof HeroSubtitle;
|
|
6859
|
+
Text: typeof HeroText;
|
|
6860
|
+
Actions: typeof HeroActions;
|
|
6861
|
+
Content: typeof HeroContent;
|
|
6862
|
+
Image: typeof HeroImage;
|
|
6863
|
+
Background: typeof HeroBackground;
|
|
6864
|
+
};
|
|
6865
|
+
|
|
6866
|
+
interface SelectOptionProps {
|
|
6867
|
+
value: string;
|
|
6868
|
+
children?: ReactNode;
|
|
6869
|
+
disabled?: boolean;
|
|
6870
|
+
className?: string;
|
|
6871
|
+
style?: React__default.CSSProperties;
|
|
6872
|
+
}
|
|
6873
|
+
declare const SelectOption: React__default.FC<SelectOptionProps>;
|
|
6874
|
+
|
|
6875
|
+
type SelectComponent = React__default.FC<SelectProps> & {
|
|
6876
|
+
Option: typeof SelectOption;
|
|
6877
|
+
};
|
|
6878
|
+
/**
|
|
6879
|
+
* Select - A component for dropdown selection
|
|
6880
|
+
*/
|
|
6881
|
+
declare const Select: SelectComponent;
|
|
6882
|
+
|
|
6883
|
+
declare const EdgePanelHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6884
|
+
declare const EdgePanelBody: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6885
|
+
declare const EdgePanelFooter: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6886
|
+
declare const EdgePanelCloseButton: React__default.ForwardRefExoticComponent<React__default.ButtonHTMLAttributes<HTMLButtonElement> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
6887
|
+
/**
|
|
6888
|
+
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
6889
|
+
*
|
|
6890
|
+
* @component
|
|
6891
|
+
* @example
|
|
6892
|
+
* ```tsx
|
|
6893
|
+
* // Basic usage
|
|
6894
|
+
* <EdgePanel
|
|
6895
|
+
* title="My Panel"
|
|
6896
|
+
* isOpen={isOpen}
|
|
6897
|
+
* onOpenChange={setIsOpen}
|
|
6898
|
+
* position="start"
|
|
6899
|
+
* >
|
|
6900
|
+
* <p>Panel content</p>
|
|
6901
|
+
* </EdgePanel>
|
|
6902
|
+
*
|
|
6903
|
+
* // Compound Usage
|
|
6904
|
+
* <EdgePanel isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
6905
|
+
* <EdgePanel.Header>
|
|
6906
|
+
* <h4>Title</h4>
|
|
6907
|
+
* <EdgePanel.CloseButton onClick={() => setIsOpen(false)} />
|
|
6908
|
+
* </EdgePanel.Header>
|
|
6909
|
+
* <EdgePanel.Body>Content</EdgePanel.Body>
|
|
6910
|
+
* <EdgePanel.Footer>Footer</EdgePanel.Footer>
|
|
6911
|
+
* </EdgePanel>
|
|
6912
|
+
* ```
|
|
6913
|
+
*/
|
|
6914
|
+
type EdgePanelComponent = React__default.FC<EdgePanelProps> & {
|
|
6915
|
+
Header: typeof EdgePanelHeader;
|
|
6916
|
+
Body: typeof EdgePanelBody;
|
|
6917
|
+
Footer: typeof EdgePanelFooter;
|
|
6918
|
+
CloseButton: typeof EdgePanelCloseButton;
|
|
6919
|
+
};
|
|
6920
|
+
declare const EdgePanel: EdgePanelComponent;
|
|
6921
|
+
|
|
6922
|
+
declare const DropdownMenu: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLUListElement> & React__default.RefAttributes<HTMLUListElement>>;
|
|
6923
|
+
declare const DropdownTrigger: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
6924
|
+
/**
|
|
6925
|
+
* DropdownItem component for menu items
|
|
6926
|
+
*/
|
|
6927
|
+
declare const DropdownItem: React__default.FC<DropdownItemProps>;
|
|
6928
|
+
/**
|
|
6929
|
+
* DropdownDivider component for separating groups of items
|
|
6930
|
+
*/
|
|
6931
|
+
declare const DropdownDivider: React__default.FC<DropdownDividerProps>;
|
|
6932
|
+
/**
|
|
6933
|
+
* DropdownHeader component for section headers
|
|
6934
|
+
*/
|
|
6935
|
+
declare const DropdownHeader: React__default.FC<DropdownHeaderProps>;
|
|
6936
|
+
/**
|
|
6937
|
+
* Dropdown component for creating dropdown menus
|
|
6938
|
+
*/
|
|
6939
|
+
type DropdownComponent = React__default.FC<DropdownProps> & {
|
|
6940
|
+
Trigger: typeof DropdownTrigger;
|
|
6941
|
+
Menu: typeof DropdownMenu;
|
|
6942
|
+
Item: typeof DropdownItem;
|
|
6943
|
+
Divider: typeof DropdownDivider;
|
|
6944
|
+
Header: typeof DropdownHeader;
|
|
6945
|
+
};
|
|
6946
|
+
declare const Dropdown: DropdownComponent;
|
|
6947
|
+
|
|
6571
6948
|
type DatePickerPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
6572
6949
|
type DatePickerSize = 'sm' | 'md' | 'lg';
|
|
6573
6950
|
type DatePickerSelectionMode = 'single' | 'range';
|
|
@@ -8330,16 +8707,151 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8330
8707
|
baselineColor?: string;
|
|
8331
8708
|
};
|
|
8332
8709
|
}
|
|
8333
|
-
declare const WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
8710
|
+
declare const WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
8711
|
+
|
|
8712
|
+
declare const CalloutIcon: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8713
|
+
declare const CalloutMessage: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8714
|
+
declare const CalloutTitle: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8715
|
+
declare const CalloutText: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8716
|
+
declare const CalloutActions: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8717
|
+
interface CalloutCloseButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
8718
|
+
}
|
|
8719
|
+
declare const CalloutCloseButton: React__default.ForwardRefExoticComponent<CalloutCloseButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8720
|
+
declare const CalloutContent: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
8721
|
+
/**
|
|
8722
|
+
* Callout component for displaying important messages, notifications, or alerts
|
|
8723
|
+
*/
|
|
8724
|
+
type CalloutComponent = React__default.FC<CalloutProps> & {
|
|
8725
|
+
Icon: typeof CalloutIcon;
|
|
8726
|
+
Message: typeof CalloutMessage;
|
|
8727
|
+
Title: typeof CalloutTitle;
|
|
8728
|
+
Text: typeof CalloutText;
|
|
8729
|
+
Actions: typeof CalloutActions;
|
|
8730
|
+
CloseButton: typeof CalloutCloseButton;
|
|
8731
|
+
Content: typeof CalloutContent;
|
|
8732
|
+
};
|
|
8733
|
+
declare const Callout: CalloutComponent;
|
|
8734
|
+
|
|
8735
|
+
type ButtonAsProp = {
|
|
8736
|
+
as?: ElementType;
|
|
8737
|
+
to?: string;
|
|
8738
|
+
href?: string;
|
|
8739
|
+
LinkComponent?: React__default.ComponentType<any>;
|
|
8740
|
+
[key: string]: any;
|
|
8741
|
+
};
|
|
8742
|
+
declare const Button: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
8743
|
+
|
|
8744
|
+
interface BreadcrumbItemData {
|
|
8745
|
+
/**
|
|
8746
|
+
* Text to display
|
|
8747
|
+
*/
|
|
8748
|
+
label: string;
|
|
8749
|
+
/**
|
|
8750
|
+
* URL for the breadcrumb item
|
|
8751
|
+
*/
|
|
8752
|
+
href?: string;
|
|
8753
|
+
/**
|
|
8754
|
+
* Whether this item is active (current page)
|
|
8755
|
+
*/
|
|
8756
|
+
active?: boolean;
|
|
8757
|
+
/**
|
|
8758
|
+
* Optional icon to display before the label
|
|
8759
|
+
*/
|
|
8760
|
+
icon?: ReactNode;
|
|
8761
|
+
/**
|
|
8762
|
+
* Optional click handler
|
|
8763
|
+
*/
|
|
8764
|
+
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
8765
|
+
/**
|
|
8766
|
+
* Custom style for the breadcrumb item
|
|
8767
|
+
*/
|
|
8768
|
+
style?: React__default.CSSProperties;
|
|
8769
|
+
/**
|
|
8770
|
+
* Additional className
|
|
8771
|
+
*/
|
|
8772
|
+
className?: string;
|
|
8773
|
+
}
|
|
8774
|
+
|
|
8775
|
+
interface BreadcrumbItemProps extends React__default.HTMLAttributes<HTMLLIElement> {
|
|
8776
|
+
/**
|
|
8777
|
+
* URL for the breadcrumb item
|
|
8778
|
+
*/
|
|
8779
|
+
href?: string;
|
|
8780
|
+
/**
|
|
8781
|
+
* Whether this item is active (current page)
|
|
8782
|
+
*/
|
|
8783
|
+
active?: boolean;
|
|
8784
|
+
/**
|
|
8785
|
+
* Optional icon to display before the label
|
|
8786
|
+
*/
|
|
8787
|
+
icon?: ReactNode;
|
|
8788
|
+
/**
|
|
8789
|
+
* Optional click handler for the link
|
|
8790
|
+
*/
|
|
8791
|
+
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement | HTMLSpanElement>) => void;
|
|
8792
|
+
/**
|
|
8793
|
+
* Optional custom link component
|
|
8794
|
+
*/
|
|
8795
|
+
linkAs?: React__default.ElementType;
|
|
8796
|
+
/**
|
|
8797
|
+
* Link props to pass to the underlying anchor or LinkComponent
|
|
8798
|
+
*/
|
|
8799
|
+
linkProps?: Record<string, any>;
|
|
8800
|
+
}
|
|
8801
|
+
declare const BreadcrumbItem: React__default.ForwardRefExoticComponent<BreadcrumbItemProps & React__default.RefAttributes<HTMLLIElement>>;
|
|
8802
|
+
interface BreadcrumbProps {
|
|
8803
|
+
/**
|
|
8804
|
+
* Array of breadcrumb items (Legacy)
|
|
8805
|
+
*/
|
|
8806
|
+
items?: BreadcrumbItemData[];
|
|
8807
|
+
/**
|
|
8808
|
+
* Custom divider character or element
|
|
8809
|
+
*/
|
|
8810
|
+
divider?: ReactNode;
|
|
8811
|
+
/**
|
|
8812
|
+
* Additional className
|
|
8813
|
+
*/
|
|
8814
|
+
className?: string;
|
|
8815
|
+
/**
|
|
8816
|
+
* Aria label for the navigation
|
|
8817
|
+
*/
|
|
8818
|
+
'aria-label'?: string;
|
|
8819
|
+
/**
|
|
8820
|
+
* Optional custom link component
|
|
8821
|
+
*/
|
|
8822
|
+
LinkComponent?: React__default.ElementType;
|
|
8823
|
+
/**
|
|
8824
|
+
* Custom style for the breadcrumb
|
|
8825
|
+
*/
|
|
8826
|
+
style?: React__default.CSSProperties;
|
|
8827
|
+
/**
|
|
8828
|
+
* Children (Compound)
|
|
8829
|
+
*/
|
|
8830
|
+
children?: ReactNode;
|
|
8831
|
+
}
|
|
8832
|
+
type BreadcrumbComponent = React__default.FC<BreadcrumbProps> & {
|
|
8833
|
+
Item: typeof BreadcrumbItem;
|
|
8834
|
+
};
|
|
8835
|
+
declare const Breadcrumb: BreadcrumbComponent;
|
|
8334
8836
|
|
|
8335
|
-
type
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
8837
|
+
type AccordionProps = AccordionProps$1;
|
|
8838
|
+
interface AccordionHeaderProps extends Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, 'title'> {
|
|
8839
|
+
title?: ReactNode;
|
|
8840
|
+
icon?: ReactNode;
|
|
8841
|
+
iconPosition?: 'left' | 'right';
|
|
8842
|
+
isOpen?: boolean;
|
|
8843
|
+
}
|
|
8844
|
+
declare const AccordionHeader: React__default.ForwardRefExoticComponent<AccordionHeaderProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
8845
|
+
interface AccordionBodyProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
8846
|
+
panelRef?: React__default.RefObject<HTMLDivElement>;
|
|
8847
|
+
contentRef?: React__default.RefObject<HTMLDivElement>;
|
|
8848
|
+
}
|
|
8849
|
+
declare const AccordionBody: React__default.ForwardRefExoticComponent<AccordionBodyProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
8850
|
+
type AccordionComponent = React__default.FC<AccordionProps> & {
|
|
8851
|
+
Header: typeof AccordionHeader;
|
|
8852
|
+
Body: typeof AccordionBody;
|
|
8341
8853
|
};
|
|
8342
|
-
declare const
|
|
8854
|
+
declare const _default: AccordionComponent;
|
|
8343
8855
|
|
|
8344
8856
|
type __lib_types_AccordionState = AccordionState;
|
|
8345
8857
|
type __lib_types_AtomixGlassProps = AtomixGlassProps;
|
|
@@ -8363,7 +8875,6 @@ type __lib_types_DropdownHeaderProps = DropdownHeaderProps;
|
|
|
8363
8875
|
type __lib_types_DropdownItemProps = DropdownItemProps;
|
|
8364
8876
|
type __lib_types_DropdownPlacement = DropdownPlacement;
|
|
8365
8877
|
type __lib_types_DropdownProps = DropdownProps;
|
|
8366
|
-
type __lib_types_DropdownTrigger = DropdownTrigger;
|
|
8367
8878
|
type __lib_types_EdgePanelMode = EdgePanelMode;
|
|
8368
8879
|
type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
8369
8880
|
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
@@ -8383,6 +8894,7 @@ type __lib_types_GlassSize = GlassSize;
|
|
|
8383
8894
|
type __lib_types_HeroAlignment = HeroAlignment;
|
|
8384
8895
|
type __lib_types_HeroBackgroundSlide = HeroBackgroundSlide;
|
|
8385
8896
|
type __lib_types_HeroBackgroundSliderConfig = HeroBackgroundSliderConfig;
|
|
8897
|
+
type __lib_types_HeroParts = HeroParts;
|
|
8386
8898
|
type __lib_types_HeroProps = HeroProps;
|
|
8387
8899
|
type __lib_types_IconPosition = IconPosition;
|
|
8388
8900
|
type __lib_types_ImageType = ImageType;
|
|
@@ -8413,7 +8925,6 @@ type __lib_types_PopoverTriggerProps = PopoverTriggerProps;
|
|
|
8413
8925
|
type __lib_types_ProgressProps = ProgressProps;
|
|
8414
8926
|
type __lib_types_RadioProps = RadioProps;
|
|
8415
8927
|
type __lib_types_RatingProps = RatingProps;
|
|
8416
|
-
type __lib_types_SelectOption = SelectOption;
|
|
8417
8928
|
type __lib_types_SelectProps = SelectProps;
|
|
8418
8929
|
type __lib_types_SelectionMode = SelectionMode;
|
|
8419
8930
|
type __lib_types_SideMenuItemProps = SideMenuItemProps;
|
|
@@ -8453,7 +8964,7 @@ type __lib_types_VideoQuality = VideoQuality;
|
|
|
8453
8964
|
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
8454
8965
|
type __lib_types_listvariant = listvariant;
|
|
8455
8966
|
declare namespace __lib_types {
|
|
8456
|
-
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,
|
|
8967
|
+
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 };
|
|
8457
8968
|
}
|
|
8458
8969
|
|
|
8459
8970
|
/**
|
|
@@ -10573,11 +11084,11 @@ interface UseHeroResult {
|
|
|
10573
11084
|
/**
|
|
10574
11085
|
* Generate image column class based on size
|
|
10575
11086
|
*/
|
|
10576
|
-
generateImageColClass: (size?: number) => string;
|
|
11087
|
+
generateImageColClass: (size?: number, customClass?: string) => string;
|
|
10577
11088
|
/**
|
|
10578
11089
|
* Generate content column class based on size
|
|
10579
11090
|
*/
|
|
10580
|
-
generateContentColClass: (size?: number) => string;
|
|
11091
|
+
generateContentColClass: (size?: number, customClass?: string) => string;
|
|
10581
11092
|
/**
|
|
10582
11093
|
* Determine if the hero has a background image
|
|
10583
11094
|
*/
|
|
@@ -10620,7 +11131,7 @@ interface UseHeroResult {
|
|
|
10620
11131
|
* @param initialProps - Initial hero props
|
|
10621
11132
|
* @returns Hero methods
|
|
10622
11133
|
*/
|
|
10623
|
-
declare function useHero(initialProps?:
|
|
11134
|
+
declare function useHero(initialProps?: HeroProps): UseHeroResult;
|
|
10624
11135
|
|
|
10625
11136
|
/**
|
|
10626
11137
|
* River content column interface
|
|
@@ -10950,7 +11461,7 @@ interface UseAtomixGlassReturn {
|
|
|
10950
11461
|
* Composable hook for AtomixGlass component logic
|
|
10951
11462
|
* Manages all state, calculations, and event handlers
|
|
10952
11463
|
*/
|
|
10953
|
-
declare function useAtomixGlass({ glassRef, contentRef, cornerRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, overLight, reducedMotion, highContrast, disableEffects, elasticity, onClick, debugCornerRadius, debugOverLight,
|
|
11464
|
+
declare function useAtomixGlass({ glassRef, contentRef, cornerRadius, globalMousePosition: externalGlobalMousePosition, mouseOffset: externalMouseOffset, mouseContainer, overLight, reducedMotion, highContrast, disableEffects, elasticity, onClick, debugCornerRadius, debugOverLight, children, }: UseAtomixGlassOptions): UseAtomixGlassReturn;
|
|
10954
11465
|
|
|
10955
11466
|
/**
|
|
10956
11467
|
* Input state and functionality
|
|
@@ -11004,64 +11515,6 @@ declare function useTextarea(initialProps?: Partial<TextareaProps>): {
|
|
|
11004
11515
|
generateTextareaClass: (props: Partial<TextareaProps>) => string;
|
|
11005
11516
|
};
|
|
11006
11517
|
|
|
11007
|
-
interface BreadcrumbItem {
|
|
11008
|
-
/**
|
|
11009
|
-
* Text to display
|
|
11010
|
-
*/
|
|
11011
|
-
label: string;
|
|
11012
|
-
/**
|
|
11013
|
-
* URL for the breadcrumb item
|
|
11014
|
-
*/
|
|
11015
|
-
href?: string;
|
|
11016
|
-
/**
|
|
11017
|
-
* Whether this item is active (current page)
|
|
11018
|
-
*/
|
|
11019
|
-
active?: boolean;
|
|
11020
|
-
/**
|
|
11021
|
-
* Optional icon to display before the label
|
|
11022
|
-
*/
|
|
11023
|
-
icon?: ReactNode;
|
|
11024
|
-
/**
|
|
11025
|
-
* Optional click handler
|
|
11026
|
-
*/
|
|
11027
|
-
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
11028
|
-
/**
|
|
11029
|
-
* Custom style for the breadcrumb item
|
|
11030
|
-
*/
|
|
11031
|
-
style?: React__default.CSSProperties;
|
|
11032
|
-
/**
|
|
11033
|
-
* Additional className
|
|
11034
|
-
*/
|
|
11035
|
-
className?: string;
|
|
11036
|
-
}
|
|
11037
|
-
interface BreadcrumbProps {
|
|
11038
|
-
/**
|
|
11039
|
-
* Array of breadcrumb items
|
|
11040
|
-
*/
|
|
11041
|
-
items: BreadcrumbItem[];
|
|
11042
|
-
/**
|
|
11043
|
-
* Custom divider character or element
|
|
11044
|
-
*/
|
|
11045
|
-
divider?: ReactNode;
|
|
11046
|
-
/**
|
|
11047
|
-
* Additional className
|
|
11048
|
-
*/
|
|
11049
|
-
className?: string;
|
|
11050
|
-
/**
|
|
11051
|
-
* Aria label for the navigation
|
|
11052
|
-
*/
|
|
11053
|
-
'aria-label'?: string;
|
|
11054
|
-
/**
|
|
11055
|
-
* Optional custom link component
|
|
11056
|
-
*/
|
|
11057
|
-
LinkComponent?: React__default.ElementType;
|
|
11058
|
-
/**
|
|
11059
|
-
* Custom style for the breadcrumb
|
|
11060
|
-
*/
|
|
11061
|
-
style?: React__default.CSSProperties;
|
|
11062
|
-
}
|
|
11063
|
-
declare const Breadcrumb: React__default.FC<BreadcrumbProps>;
|
|
11064
|
-
|
|
11065
11518
|
interface BreadcrumbOptions {
|
|
11066
11519
|
items: BreadcrumbItem[];
|
|
11067
11520
|
divider?: React.ReactNode;
|
|
@@ -11419,9 +11872,6 @@ declare namespace __lib_composables {
|
|
|
11419
11872
|
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 };
|
|
11420
11873
|
}
|
|
11421
11874
|
|
|
11422
|
-
type AccordionProps = AccordionProps$1;
|
|
11423
|
-
declare const Accordion: React__default.FC<AccordionProps>;
|
|
11424
|
-
|
|
11425
11875
|
interface AtomixLogoProps extends React__default.SVGProps<SVGSVGElement> {
|
|
11426
11876
|
height?: number | string;
|
|
11427
11877
|
width?: number | string;
|
|
@@ -11645,11 +12095,6 @@ declare const Block: React__default.ForwardRefExoticComponent<BlockProps & React
|
|
|
11645
12095
|
*/
|
|
11646
12096
|
declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
11647
12097
|
|
|
11648
|
-
/**
|
|
11649
|
-
* Callout component for displaying important messages, notifications, or alerts
|
|
11650
|
-
*/
|
|
11651
|
-
declare const Callout: React__default.FC<CalloutProps>;
|
|
11652
|
-
|
|
11653
12098
|
declare const Card: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
11654
12099
|
|
|
11655
12100
|
declare const ElevationCard: React__default.FC<ElevationCardProps>;
|
|
@@ -11729,58 +12174,6 @@ declare const DataTable: React__default.FC<DataTableProps>;
|
|
|
11729
12174
|
*/
|
|
11730
12175
|
declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerProps & React__default.RefAttributes<DatePickerRef>>;
|
|
11731
12176
|
|
|
11732
|
-
/**
|
|
11733
|
-
* Dropdown component for creating dropdown menus
|
|
11734
|
-
*/
|
|
11735
|
-
declare const Dropdown: React__default.FC<DropdownProps>;
|
|
11736
|
-
|
|
11737
|
-
/**
|
|
11738
|
-
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
11739
|
-
*
|
|
11740
|
-
* @component
|
|
11741
|
-
* @example
|
|
11742
|
-
* ```tsx
|
|
11743
|
-
* // Basic usage
|
|
11744
|
-
* <EdgePanel
|
|
11745
|
-
* title="My Panel"
|
|
11746
|
-
* isOpen={isOpen}
|
|
11747
|
-
* onOpenChange={setIsOpen}
|
|
11748
|
-
* position="start"
|
|
11749
|
-
* >
|
|
11750
|
-
* <p>Panel content</p>
|
|
11751
|
-
* </EdgePanel>
|
|
11752
|
-
*
|
|
11753
|
-
* // With glass effect
|
|
11754
|
-
* <EdgePanel
|
|
11755
|
-
* title="Glass Panel"
|
|
11756
|
-
* isOpen={isOpen}
|
|
11757
|
-
* onOpenChange={setIsOpen}
|
|
11758
|
-
* position="end"
|
|
11759
|
-
* glass={true}
|
|
11760
|
-
* >
|
|
11761
|
-
* <p>Panel with glass morphism</p>
|
|
11762
|
-
* </EdgePanel>
|
|
11763
|
-
*
|
|
11764
|
-
* // With custom glass configuration
|
|
11765
|
-
* <EdgePanel
|
|
11766
|
-
* title="Custom Glass"
|
|
11767
|
-
* isOpen={isOpen}
|
|
11768
|
-
* onOpenChange={setIsOpen}
|
|
11769
|
-
* position="start"
|
|
11770
|
-
* glass={{
|
|
11771
|
-
* mode: 'shader',
|
|
11772
|
-
* shaderVariant: 'liquidGlass',
|
|
11773
|
-
* displacementScale: 70,
|
|
11774
|
-
* blurAmount: 1.8,
|
|
11775
|
-
* saturation: 170,
|
|
11776
|
-
* }}
|
|
11777
|
-
* >
|
|
11778
|
-
* <p>Panel with custom glass effect</p>
|
|
11779
|
-
* </EdgePanel>
|
|
11780
|
-
* ```
|
|
11781
|
-
*/
|
|
11782
|
-
declare const EdgePanel: React__default.FC<EdgePanelProps>;
|
|
11783
|
-
|
|
11784
12177
|
declare const Checkbox: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
11785
12178
|
|
|
11786
12179
|
/**
|
|
@@ -11866,20 +12259,11 @@ declare const Input: React__default.MemoExoticComponent<React__default.ForwardRe
|
|
|
11866
12259
|
*/
|
|
11867
12260
|
declare const Radio: React__default.FC<RadioProps>;
|
|
11868
12261
|
|
|
11869
|
-
/**
|
|
11870
|
-
* Select - A component for dropdown selection
|
|
11871
|
-
*/
|
|
11872
|
-
declare const Select: React__default.FC<SelectProps>;
|
|
11873
|
-
|
|
11874
12262
|
/**
|
|
11875
12263
|
* Textarea - A component for multiline text input
|
|
11876
12264
|
*/
|
|
11877
12265
|
declare const Textarea: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
11878
12266
|
|
|
11879
|
-
declare const Hero: React__default.FC<HeroProps>;
|
|
11880
|
-
|
|
11881
|
-
declare const List: React__default.FC<ListProps>;
|
|
11882
|
-
|
|
11883
12267
|
type ListGroupProps = ListGroupProps$1;
|
|
11884
12268
|
declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
11885
12269
|
|
|
@@ -11888,11 +12272,6 @@ declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
|
11888
12272
|
*/
|
|
11889
12273
|
declare const Messages: React__default.FC<MessagesProps>;
|
|
11890
12274
|
|
|
11891
|
-
/**
|
|
11892
|
-
* Modal component for displaying overlay content
|
|
11893
|
-
*/
|
|
11894
|
-
declare const Modal: React__default.FC<ModalProps>;
|
|
11895
|
-
|
|
11896
12275
|
/**
|
|
11897
12276
|
* Nav component provides a container for navigation items with proper alignment and accessibility.
|
|
11898
12277
|
*
|
|
@@ -12202,106 +12581,6 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
|
|
|
12202
12581
|
|
|
12203
12582
|
declare const Spinner: React__default.FC<SpinnerProps>;
|
|
12204
12583
|
|
|
12205
|
-
interface StepItem {
|
|
12206
|
-
/**
|
|
12207
|
-
* The number for the step
|
|
12208
|
-
*/
|
|
12209
|
-
number: number | string | ReactNode;
|
|
12210
|
-
/**
|
|
12211
|
-
* The text label for the step
|
|
12212
|
-
*/
|
|
12213
|
-
text: string;
|
|
12214
|
-
/**
|
|
12215
|
-
* Optional custom content for the step
|
|
12216
|
-
*/
|
|
12217
|
-
content?: React__default.ReactNode;
|
|
12218
|
-
}
|
|
12219
|
-
interface StepsProps {
|
|
12220
|
-
/**
|
|
12221
|
-
* Array of step items
|
|
12222
|
-
*/
|
|
12223
|
-
items: StepItem[];
|
|
12224
|
-
/**
|
|
12225
|
-
* Current active step index (0-based)
|
|
12226
|
-
*/
|
|
12227
|
-
activeIndex?: number;
|
|
12228
|
-
/**
|
|
12229
|
-
* Whether to display steps vertically
|
|
12230
|
-
*/
|
|
12231
|
-
vertical?: boolean;
|
|
12232
|
-
/**
|
|
12233
|
-
* Called when active step changes
|
|
12234
|
-
*/
|
|
12235
|
-
onStepChange?: (index: number) => void;
|
|
12236
|
-
/**
|
|
12237
|
-
* Additional CSS class
|
|
12238
|
-
*/
|
|
12239
|
-
className?: string;
|
|
12240
|
-
/**
|
|
12241
|
-
* Inline style for the component
|
|
12242
|
-
*/
|
|
12243
|
-
style?: React__default.CSSProperties;
|
|
12244
|
-
/**
|
|
12245
|
-
* Glass morphism effect for the steps component
|
|
12246
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12247
|
-
*/
|
|
12248
|
-
glass?: AtomixGlassProps | boolean;
|
|
12249
|
-
}
|
|
12250
|
-
/**
|
|
12251
|
-
* Steps component for displaying a sequence of steps
|
|
12252
|
-
*/
|
|
12253
|
-
declare const Steps: React__default.FC<StepsProps>;
|
|
12254
|
-
|
|
12255
|
-
interface TabsItemProps {
|
|
12256
|
-
/**
|
|
12257
|
-
* Label for the tab
|
|
12258
|
-
*/
|
|
12259
|
-
label: string;
|
|
12260
|
-
/**
|
|
12261
|
-
* Content of the tab panel
|
|
12262
|
-
*/
|
|
12263
|
-
content: ReactNode;
|
|
12264
|
-
/**
|
|
12265
|
-
* Whether the tab is initially active
|
|
12266
|
-
*/
|
|
12267
|
-
isActive?: boolean;
|
|
12268
|
-
/**
|
|
12269
|
-
* Additional CSS class for the tab
|
|
12270
|
-
*/
|
|
12271
|
-
className?: string;
|
|
12272
|
-
}
|
|
12273
|
-
interface TabsProps {
|
|
12274
|
-
/**
|
|
12275
|
-
* Array of tab items
|
|
12276
|
-
*/
|
|
12277
|
-
items: TabsItemProps[];
|
|
12278
|
-
/**
|
|
12279
|
-
* Initial active tab index
|
|
12280
|
-
*/
|
|
12281
|
-
activeIndex?: number;
|
|
12282
|
-
/**
|
|
12283
|
-
* Callback when tab changes
|
|
12284
|
-
*/
|
|
12285
|
-
onTabChange?: (index: number) => void;
|
|
12286
|
-
/**
|
|
12287
|
-
* Additional CSS class for the tab component
|
|
12288
|
-
*/
|
|
12289
|
-
className?: string;
|
|
12290
|
-
/**
|
|
12291
|
-
* Custom style for the tab component
|
|
12292
|
-
*/
|
|
12293
|
-
style?: React__default.CSSProperties;
|
|
12294
|
-
/**
|
|
12295
|
-
* Glass morphism effect for the tab component
|
|
12296
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12297
|
-
*/
|
|
12298
|
-
glass?: AtomixGlassProps | boolean;
|
|
12299
|
-
}
|
|
12300
|
-
/**
|
|
12301
|
-
* Tabs component for switching between different content panels
|
|
12302
|
-
*/
|
|
12303
|
-
declare const Tabs: React__default.FC<TabsProps>;
|
|
12304
|
-
|
|
12305
12584
|
interface TestimonialAuthor {
|
|
12306
12585
|
/**
|
|
12307
12586
|
* The author's name
|
|
@@ -12557,14 +12836,14 @@ declare const VideoPlayer: React__default.ForwardRefExoticComponent<VideoPlayerP
|
|
|
12557
12836
|
* Keys use kebab-case format matching CSS variable names (without --atomix- prefix).
|
|
12558
12837
|
*/
|
|
12559
12838
|
interface DesignTokens {
|
|
12560
|
-
|
|
12561
|
-
|
|
12562
|
-
|
|
12563
|
-
|
|
12564
|
-
|
|
12565
|
-
|
|
12566
|
-
|
|
12567
|
-
|
|
12839
|
+
primary: string;
|
|
12840
|
+
secondary: string;
|
|
12841
|
+
success: string;
|
|
12842
|
+
info: string;
|
|
12843
|
+
warning: string;
|
|
12844
|
+
error: string;
|
|
12845
|
+
light: string;
|
|
12846
|
+
dark: string;
|
|
12568
12847
|
'primary-rgb': string;
|
|
12569
12848
|
'secondary-rgb': string;
|
|
12570
12849
|
'success-rgb': string;
|
|
@@ -12681,7 +12960,7 @@ interface DesignTokens {
|
|
|
12681
12960
|
'info-gradient': string;
|
|
12682
12961
|
'warning-gradient': string;
|
|
12683
12962
|
'error-gradient': string;
|
|
12684
|
-
|
|
12963
|
+
gradient: string;
|
|
12685
12964
|
'font-sans-serif': string;
|
|
12686
12965
|
'font-monospace': string;
|
|
12687
12966
|
'body-font-family': string;
|
|
@@ -14719,6 +14998,48 @@ declare const types: typeof __lib_types;
|
|
|
14719
14998
|
declare const constants: typeof __lib_constants;
|
|
14720
14999
|
declare const theme: typeof themeImport;
|
|
14721
15000
|
|
|
15001
|
+
/**
|
|
15002
|
+
* Theme Tools for Library Users
|
|
15003
|
+
*
|
|
15004
|
+
* Developer-friendly utilities for working with Atomix themes
|
|
15005
|
+
*/
|
|
15006
|
+
|
|
15007
|
+
/**
|
|
15008
|
+
* Quick theme creator with sensible defaults
|
|
15009
|
+
*/
|
|
15010
|
+
declare function quickTheme(name: string, primaryColor: string, secondaryColor?: string): Theme;
|
|
15011
|
+
/**
|
|
15012
|
+
* Create a dark theme variant from a light theme
|
|
15013
|
+
*/
|
|
15014
|
+
declare function createDarkVariant(lightTheme: Theme): Theme;
|
|
15015
|
+
/**
|
|
15016
|
+
* Validate theme structure
|
|
15017
|
+
*/
|
|
15018
|
+
declare function validateTheme(theme: Theme): {
|
|
15019
|
+
valid: boolean;
|
|
15020
|
+
errors: string[];
|
|
15021
|
+
};
|
|
15022
|
+
/**
|
|
15023
|
+
* Generate CSS string from theme
|
|
15024
|
+
*/
|
|
15025
|
+
declare function themeToCSS(theme: Theme, selector?: string): string;
|
|
15026
|
+
/**
|
|
15027
|
+
* Get theme metadata
|
|
15028
|
+
*/
|
|
15029
|
+
declare function getThemeMetadata(theme: Theme): ThemeMetadata;
|
|
15030
|
+
/**
|
|
15031
|
+
* Check if theme supports dark mode
|
|
15032
|
+
*/
|
|
15033
|
+
declare function supportsDarkMode(theme: Theme): boolean;
|
|
15034
|
+
/**
|
|
15035
|
+
* Export theme as JSON
|
|
15036
|
+
*/
|
|
15037
|
+
declare function exportTheme(theme: Theme): string;
|
|
15038
|
+
/**
|
|
15039
|
+
* Import theme from JSON
|
|
15040
|
+
*/
|
|
15041
|
+
declare function importTheme(json: string): Theme;
|
|
15042
|
+
|
|
14722
15043
|
interface GridProps extends HTMLAttributes<HTMLDivElement> {
|
|
14723
15044
|
/**
|
|
14724
15045
|
* The content to be rendered within the grid
|
|
@@ -15000,17 +15321,30 @@ declare const atomix: {
|
|
|
15000
15321
|
constants: typeof __lib_constants;
|
|
15001
15322
|
types: typeof __lib_types;
|
|
15002
15323
|
layouts: typeof layouts;
|
|
15003
|
-
Accordion: React$1.FC<AccordionProps$1
|
|
15324
|
+
Accordion: React$1.FC<AccordionProps$1> & {
|
|
15325
|
+
Header: typeof AccordionHeader;
|
|
15326
|
+
Body: typeof AccordionBody;
|
|
15327
|
+
};
|
|
15004
15328
|
AtomixLogo: React$1.FC<AtomixLogoProps>;
|
|
15005
15329
|
AtomixGlass: typeof AtomixGlass;
|
|
15006
15330
|
Avatar: React$1.FC<AvatarProps>;
|
|
15007
15331
|
AvatarGroup: React$1.FC<AvatarGroupProps>;
|
|
15008
15332
|
Badge: React$1.FC<BadgeProps>;
|
|
15009
15333
|
Block: React$1.ForwardRefExoticComponent<BlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15010
|
-
Breadcrumb: React$1.FC<BreadcrumbProps
|
|
15334
|
+
Breadcrumb: React$1.FC<BreadcrumbProps> & {
|
|
15335
|
+
Item: typeof BreadcrumbItemData;
|
|
15336
|
+
};
|
|
15011
15337
|
Button: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
15012
15338
|
ButtonGroup: React$1.FC<ButtonGroupProps>;
|
|
15013
|
-
Callout: React$1.FC<CalloutProps
|
|
15339
|
+
Callout: React$1.FC<CalloutProps> & {
|
|
15340
|
+
Icon: typeof CalloutIcon;
|
|
15341
|
+
Message: typeof CalloutMessage;
|
|
15342
|
+
Title: typeof CalloutTitle;
|
|
15343
|
+
Text: typeof CalloutText;
|
|
15344
|
+
Actions: typeof CalloutActions;
|
|
15345
|
+
CloseButton: typeof CalloutCloseButton;
|
|
15346
|
+
Content: typeof CalloutContent;
|
|
15347
|
+
};
|
|
15014
15348
|
Card: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
15015
15349
|
ElevationCard: React$1.FC<ElevationCardProps>;
|
|
15016
15350
|
AnimatedChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AnimatedChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
@@ -15046,8 +15380,19 @@ declare const atomix: {
|
|
|
15046
15380
|
Countdown: React$1.FC<CountdownProps>;
|
|
15047
15381
|
DataTable: React$1.FC<DataTableProps>;
|
|
15048
15382
|
DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<DatePickerRef>>;
|
|
15049
|
-
Dropdown: React$1.FC<DropdownProps
|
|
15050
|
-
|
|
15383
|
+
Dropdown: React$1.FC<DropdownProps> & {
|
|
15384
|
+
Trigger: typeof DropdownTrigger;
|
|
15385
|
+
Menu: typeof DropdownMenu;
|
|
15386
|
+
Item: typeof DropdownItem;
|
|
15387
|
+
Divider: typeof DropdownDivider;
|
|
15388
|
+
Header: typeof DropdownHeader;
|
|
15389
|
+
};
|
|
15390
|
+
EdgePanel: React$1.FC<EdgePanelProps> & {
|
|
15391
|
+
Header: typeof EdgePanelHeader;
|
|
15392
|
+
Body: typeof EdgePanelBody;
|
|
15393
|
+
Footer: typeof EdgePanelFooter;
|
|
15394
|
+
CloseButton: typeof EdgePanelCloseButton;
|
|
15395
|
+
};
|
|
15051
15396
|
Checkbox: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15052
15397
|
Footer: React$1.ForwardRefExoticComponent<FooterProps & React$1.RefAttributes<HTMLElement>>;
|
|
15053
15398
|
FooterSection: React$1.ForwardRefExoticComponent<FooterSectionProps & {
|
|
@@ -15059,14 +15404,28 @@ declare const atomix: {
|
|
|
15059
15404
|
FormGroup: React$1.FC<FormGroupProps>;
|
|
15060
15405
|
Input: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15061
15406
|
Radio: React$1.FC<RadioProps>;
|
|
15062
|
-
Select:
|
|
15407
|
+
Select: SelectComponent;
|
|
15063
15408
|
Textarea: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>>;
|
|
15064
|
-
Hero: React$1.FC<HeroProps
|
|
15409
|
+
Hero: React$1.FC<HeroProps> & {
|
|
15410
|
+
Title: ({ children, className, level, ...props }: HeroTitleProps) => react_jsx_runtime.JSX.Element;
|
|
15411
|
+
Subtitle: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
15412
|
+
Text: ({ children, className, ...props }: React.HTMLAttributes<HTMLParagraphElement>) => react_jsx_runtime.JSX.Element;
|
|
15413
|
+
Actions: ({ children, className, ...props }: React.HTMLAttributes<HTMLDivElement>) => react_jsx_runtime.JSX.Element;
|
|
15414
|
+
Content: ({ children, className, style, glass, ...props }: HeroContentProps) => react_jsx_runtime.JSX.Element;
|
|
15415
|
+
Image: ({ src, alt, className, wrapperClassName, wrapperStyle, ...props }: HeroImageProps) => react_jsx_runtime.JSX.Element;
|
|
15416
|
+
Background: ({ className, style, src, children, ...props }: React.HTMLAttributes<HTMLDivElement> & {
|
|
15417
|
+
src?: string;
|
|
15418
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
15419
|
+
};
|
|
15065
15420
|
Icon: React$1.FC<IconProps>;
|
|
15066
|
-
List:
|
|
15421
|
+
List: ListComponent;
|
|
15067
15422
|
ListGroup: React$1.FC<ListGroupProps$1>;
|
|
15068
15423
|
Messages: React$1.FC<MessagesProps>;
|
|
15069
|
-
Modal: React$1.FC<ModalProps
|
|
15424
|
+
Modal: React$1.FC<ModalProps> & {
|
|
15425
|
+
Header: typeof ModalHeader;
|
|
15426
|
+
Body: typeof ModalBody;
|
|
15427
|
+
Footer: typeof ModalFooter;
|
|
15428
|
+
};
|
|
15070
15429
|
Nav: React$1.ForwardRefExoticComponent<NavProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
15071
15430
|
NavItem: React$1.ForwardRefExoticComponent<NavItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
15072
15431
|
Navbar: React$1.ForwardRefExoticComponent<NavbarProps & React$1.RefAttributes<HTMLElement>>;
|
|
@@ -15090,8 +15449,16 @@ declare const atomix: {
|
|
|
15090
15449
|
SectionIntro: React$1.FC<SectionIntroProps>;
|
|
15091
15450
|
Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15092
15451
|
Spinner: React$1.FC<SpinnerProps>;
|
|
15093
|
-
Steps: React$1.FC<StepsProps
|
|
15094
|
-
|
|
15452
|
+
Steps: React$1.FC<StepsProps> & {
|
|
15453
|
+
Item: typeof StepsItem;
|
|
15454
|
+
Step: typeof StepsItem;
|
|
15455
|
+
};
|
|
15456
|
+
Tabs: React$1.FC<TabsProps> & {
|
|
15457
|
+
List: typeof TabsList;
|
|
15458
|
+
Trigger: typeof TabsTrigger;
|
|
15459
|
+
Panels: typeof TabsPanels;
|
|
15460
|
+
Panel: typeof TabsPanel;
|
|
15461
|
+
};
|
|
15095
15462
|
Testimonial: React$1.FC<TestimonialProps>;
|
|
15096
15463
|
Todo: React$1.FC<TodoProps>;
|
|
15097
15464
|
Toggle: React$1.FC<ToggleProps>;
|
|
@@ -15100,5 +15467,5 @@ declare const atomix: {
|
|
|
15100
15467
|
VideoPlayer: React$1.ForwardRefExoticComponent<VideoPlayerProps & React$1.RefAttributes<HTMLVideoElement>>;
|
|
15101
15468
|
};
|
|
15102
15469
|
|
|
15103
|
-
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, createDebugAttrs, createFontPreloadLink, createPartProps, createSlotComponent, createSlotProps, createTheme, createThemeRegistry, createTokens, cssVarsToStyle, deepMerge, atomix as default, defaultTokens, defineConfig, designTokensToCSSVars, extendTheme, extractComponentName, extractYouTubeId, generateCSSVariableName, generateCSSVariables, generateCSSVariablesForSelector, generateClassName, generateComponentCSSVars, generateFontPreloadTags, generateUUID, getAllThemes, getCSSVariable, getComponentCSSVars, getComponentThemeValue, getPartStyles, getTheme, getThemeApplicator, getThemeCount, getThemeIds, hasCustomization, hasTheme, injectCSS, injectTheme, isCSSInjected, isDesignTokens, isSlot, isValidCSSVariableName, isYouTubeUrl, mapSCSSTokensToCSSVars, mergeCSSVars, mergeClassNames, mergeComponentProps, mergePartStyles, mergeSlots, mergeTheme, normalizeThemeTokens, preloadFonts, registerTheme, removeCSS, removeCSSVariables, removeTheme, renderSlot, sliderConstants, theme, themePropertyToCSSVar, types, unregisterTheme, useAccordion, useAtomixGlass, useBadge, useBarChart, useBlock, useBreadcrumb, 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 };
|
|
15104
|
-
export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DesignTokensCustomizerProps, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroProps, IconPosition, IconProps, IconSize$1 as IconSize, IconWeight$1 as IconWeight, ImageType, InputCSSVariable, InputElementSlotProps, InputParts, InputProps, InputRootSlotProps, IntegrationConfig, JSThemeDefinition, LineChartOptions, LineChartProps, ListGroupProps$1 as ListGroupProps, ListParts, ListProps, MasonryGridItemProps, MasonryGridProps, MegaMenuColumnProps, MegaMenuLinkProps, MegaMenuProps, MenuDividerProps, MenuItemProps, MenuProps, MergePropsOptions, MessageItem, MessagesProps, ModalBackdropSlotProps, ModalCSSVariable, ModalContentSlotProps, ModalDialogSlotProps, ModalParts, ModalProps, ModalRootSlotProps, MousePosition, MultiAxisChartProps, NamingOptions, NavAlignment, NavDropdownProps, NavItemProps, NavProps, NavVariant, NavbarParts, NavbarPosition, NavbarProps, OverLightConfig, OverLightObjectConfig, PaginationProps, PaletteColorOptions, PartStyleProps, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption, SelectParts, SelectProps, SelectionMode, SideMenuItemProps, SideMenuListProps, SideMenuProps, Size, SliderAutoplay, SliderBreakpoint, SliderEffect, SliderLazy, SliderNavigation, SliderPagination, SliderProps, SliderRefs, SliderScrollbar, SliderSlide, SliderState, SliderThumbs, SliderVirtual, SliderZoom, SlotProps, SocialLink, SocialPlatform, SortConfig, SpinnerProps, StateModifier, StepsProps, TabsCSSVariable, TabsParts, TabsProps, TestimonialProps, TextareaParts, TextareaProps, Theme, ThemeChangeEvent, ThemeColor, ThemeComparatorProps, ThemeComponentOverrides, ThemeContextValue, ThemeDefinition, ThemeErrorBoundaryProps, ThemeInspectorProps, ThemeLiveEditorProps, ThemeLoadOptions, ThemeName, ThemePreviewProps, ThemeProviderProps, ThemeTokens, ThemeValidationResult, TodoItem, TodoProps, ToggleProps, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
|
|
15470
|
+
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 };
|
|
15471
|
+
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 };
|