@shohojdhara/atomix 0.4.0 → 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/dist/atomix.css +9231 -9337
- package/dist/atomix.css.map +1 -1
- package/dist/atomix.min.css +2 -2
- package/dist/atomix.min.css.map +1 -1
- 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 +495 -254
- package/dist/index.esm.js +1269 -723
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1273 -723
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +2 -2
- package/scripts/atomix-cli.js +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 +40 -0
- package/src/components/Accordion/Accordion.tsx +174 -56
- package/src/components/Accordion/AccordionCompound.test.tsx +70 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +156 -50
- package/src/components/Breadcrumb/BreadcrumbCompound.test.tsx +84 -0
- package/src/components/Callout/Callout.stories.tsx +166 -1011
- package/src/components/Callout/Callout.tsx +196 -84
- package/src/components/Callout/CalloutCompound.test.tsx +72 -0
- package/src/components/Dropdown/Dropdown.tsx +133 -20
- package/src/components/Dropdown/DropdownCompound.test.tsx +64 -0
- package/src/components/EdgePanel/EdgePanel.tsx +164 -112
- package/src/components/EdgePanel/EdgePanelCompound.test.tsx +53 -0
- package/src/components/Form/Select.stories.tsx +23 -0
- package/src/components/Form/Select.test.tsx +99 -0
- package/src/components/Form/Select.tsx +144 -93
- package/src/components/Form/SelectOption.tsx +88 -0
- package/src/components/Hero/Hero.stories.tsx +37 -0
- package/src/components/Hero/Hero.test.tsx +142 -0
- package/src/components/Hero/Hero.tsx +142 -3
- package/src/components/List/List.test.tsx +62 -0
- package/src/components/List/List.tsx +16 -5
- package/src/components/List/ListItem.tsx +20 -0
- package/src/components/Modal/Modal.stories.tsx +65 -1
- package/src/components/Modal/Modal.tsx +115 -35
- package/src/components/Modal/ModalCompound.test.tsx +94 -0
- package/src/components/Steps/Steps.tsx +124 -21
- package/src/components/Steps/StepsCompound.test.tsx +81 -0
- package/src/components/Tabs/Tabs.tsx +197 -44
- package/src/components/Tabs/TabsCompound.test.tsx +64 -0
- package/src/lib/composables/index.ts +0 -4
- package/src/lib/composables/useAtomixGlass.ts +0 -15
- package/src/lib/theme/devtools/CLI.ts +2 -10
- package/src/lib/types/components.ts +8 -2
- package/src/lib/utils/__tests__/componentUtils.test.ts +57 -2
- package/src/lib/utils/__tests__/themeNaming.test.ts +117 -0
- package/src/lib/utils/themeNaming.ts +1 -1
- package/src/styles/02-tools/_tools.breakpoints.scss +1 -1
- package/src/styles/02-tools/_tools.utility-api.scss +6 -6
- package/src/styles/99-utilities/_utilities.text.scss +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -2113,6 +2113,11 @@ interface HeroProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' |
|
|
|
2113
2113
|
* Granular part-based styling
|
|
2114
2114
|
*/
|
|
2115
2115
|
parts?: HeroParts;
|
|
2116
|
+
/**
|
|
2117
|
+
* Custom background element to render behind the content
|
|
2118
|
+
* @example <Hero.Background src="..." />
|
|
2119
|
+
*/
|
|
2120
|
+
backgroundElement?: ReactNode;
|
|
2116
2121
|
}
|
|
2117
2122
|
/**
|
|
2118
2123
|
* Spinner component properties
|
|
@@ -3169,7 +3174,7 @@ interface InputProps extends BaseComponentProps {
|
|
|
3169
3174
|
/**
|
|
3170
3175
|
* Select option
|
|
3171
3176
|
*/
|
|
3172
|
-
interface SelectOption {
|
|
3177
|
+
interface SelectOption$1 {
|
|
3173
3178
|
/**
|
|
3174
3179
|
* Option value
|
|
3175
3180
|
*/
|
|
@@ -3190,7 +3195,7 @@ interface SelectProps extends BaseComponentProps {
|
|
|
3190
3195
|
/**
|
|
3191
3196
|
* Select options
|
|
3192
3197
|
*/
|
|
3193
|
-
options
|
|
3198
|
+
options?: SelectOption$1[];
|
|
3194
3199
|
/**
|
|
3195
3200
|
* Selected value(s)
|
|
3196
3201
|
*/
|
|
@@ -3944,7 +3949,7 @@ interface PopoverProps {
|
|
|
3944
3949
|
/**
|
|
3945
3950
|
* The trigger method for the dropdown menu
|
|
3946
3951
|
*/
|
|
3947
|
-
type DropdownTrigger = 'click' | 'hover';
|
|
3952
|
+
type DropdownTrigger$1 = 'click' | 'hover';
|
|
3948
3953
|
/**
|
|
3949
3954
|
* The placement of the dropdown menu
|
|
3950
3955
|
*/
|
|
@@ -3964,7 +3969,7 @@ interface DropdownProps extends BaseComponentProps {
|
|
|
3964
3969
|
/**
|
|
3965
3970
|
* How the dropdown is triggered
|
|
3966
3971
|
*/
|
|
3967
|
-
trigger?: DropdownTrigger;
|
|
3972
|
+
trigger?: DropdownTrigger$1;
|
|
3968
3973
|
/**
|
|
3969
3974
|
* The placement of the dropdown menu
|
|
3970
3975
|
*/
|
|
@@ -6651,6 +6656,295 @@ interface GlassContainerProps extends BaseComponentProps {
|
|
|
6651
6656
|
style?: React.CSSProperties;
|
|
6652
6657
|
}
|
|
6653
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
|
+
|
|
6654
6948
|
type DatePickerPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
6655
6949
|
type DatePickerSize = 'sm' | 'md' | 'lg';
|
|
6656
6950
|
type DatePickerSelectionMode = 'single' | 'range';
|
|
@@ -8415,6 +8709,29 @@ interface WaterfallChartProps extends Omit<ChartProps$1, 'type' | 'datasets'> {
|
|
|
8415
8709
|
}
|
|
8416
8710
|
declare const WaterfallChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<WaterfallChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
8417
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
|
+
|
|
8418
8735
|
type ButtonAsProp = {
|
|
8419
8736
|
as?: ElementType;
|
|
8420
8737
|
to?: string;
|
|
@@ -8424,6 +8741,118 @@ type ButtonAsProp = {
|
|
|
8424
8741
|
};
|
|
8425
8742
|
declare const Button: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React__default.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
8426
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;
|
|
8836
|
+
|
|
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;
|
|
8853
|
+
};
|
|
8854
|
+
declare const _default: AccordionComponent;
|
|
8855
|
+
|
|
8427
8856
|
type __lib_types_AccordionState = AccordionState;
|
|
8428
8857
|
type __lib_types_AtomixGlassProps = AtomixGlassProps;
|
|
8429
8858
|
type __lib_types_AvatarGroupProps = AvatarGroupProps;
|
|
@@ -8446,7 +8875,6 @@ type __lib_types_DropdownHeaderProps = DropdownHeaderProps;
|
|
|
8446
8875
|
type __lib_types_DropdownItemProps = DropdownItemProps;
|
|
8447
8876
|
type __lib_types_DropdownPlacement = DropdownPlacement;
|
|
8448
8877
|
type __lib_types_DropdownProps = DropdownProps;
|
|
8449
|
-
type __lib_types_DropdownTrigger = DropdownTrigger;
|
|
8450
8878
|
type __lib_types_EdgePanelMode = EdgePanelMode;
|
|
8451
8879
|
type __lib_types_EdgePanelPosition = EdgePanelPosition;
|
|
8452
8880
|
type __lib_types_EdgePanelProps = EdgePanelProps;
|
|
@@ -8497,7 +8925,6 @@ type __lib_types_PopoverTriggerProps = PopoverTriggerProps;
|
|
|
8497
8925
|
type __lib_types_ProgressProps = ProgressProps;
|
|
8498
8926
|
type __lib_types_RadioProps = RadioProps;
|
|
8499
8927
|
type __lib_types_RatingProps = RatingProps;
|
|
8500
|
-
type __lib_types_SelectOption = SelectOption;
|
|
8501
8928
|
type __lib_types_SelectProps = SelectProps;
|
|
8502
8929
|
type __lib_types_SelectionMode = SelectionMode;
|
|
8503
8930
|
type __lib_types_SideMenuItemProps = SideMenuItemProps;
|
|
@@ -8537,7 +8964,7 @@ type __lib_types_VideoQuality = VideoQuality;
|
|
|
8537
8964
|
type __lib_types_VideoSubtitle = VideoSubtitle;
|
|
8538
8965
|
type __lib_types_listvariant = listvariant;
|
|
8539
8966
|
declare namespace __lib_types {
|
|
8540
|
-
export type { AccordionProps$1 as AccordionProps, __lib_types_AccordionState as AccordionState, __lib_types_AtomixGlassProps as AtomixGlassProps, __lib_types_AvatarGroupProps as AvatarGroupProps, __lib_types_AvatarProps as AvatarProps, __lib_types_AvatarSize as AvatarSize, __lib_types_BadgeProps as BadgeProps, __lib_types_BaseComponentProps as BaseComponentProps, __lib_types_BreadcrumbInstance as BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, __lib_types_ButtonGroupProps as ButtonGroupProps, __lib_types_ButtonProps as ButtonProps, __lib_types_CalloutProps as CalloutProps, __lib_types_CardProps as CardProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, __lib_types_CheckboxProps as CheckboxProps, __lib_types_CodeBlockProps as CodeBlockProps, __lib_types_DataTableColumn as DataTableColumn, __lib_types_DataTableProps as DataTableProps, __lib_types_DisplacementMode as DisplacementMode, __lib_types_DropdownDividerProps as DropdownDividerProps, __lib_types_DropdownHeaderProps as DropdownHeaderProps, __lib_types_DropdownItemProps as DropdownItemProps, __lib_types_DropdownPlacement as DropdownPlacement, __lib_types_DropdownProps as DropdownProps,
|
|
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 };
|
|
8541
8968
|
}
|
|
8542
8969
|
|
|
8543
8970
|
/**
|
|
@@ -11034,7 +11461,7 @@ interface UseAtomixGlassReturn {
|
|
|
11034
11461
|
* Composable hook for AtomixGlass component logic
|
|
11035
11462
|
* Manages all state, calculations, and event handlers
|
|
11036
11463
|
*/
|
|
11037
|
-
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;
|
|
11038
11465
|
|
|
11039
11466
|
/**
|
|
11040
11467
|
* Input state and functionality
|
|
@@ -11088,64 +11515,6 @@ declare function useTextarea(initialProps?: Partial<TextareaProps>): {
|
|
|
11088
11515
|
generateTextareaClass: (props: Partial<TextareaProps>) => string;
|
|
11089
11516
|
};
|
|
11090
11517
|
|
|
11091
|
-
interface BreadcrumbItem {
|
|
11092
|
-
/**
|
|
11093
|
-
* Text to display
|
|
11094
|
-
*/
|
|
11095
|
-
label: string;
|
|
11096
|
-
/**
|
|
11097
|
-
* URL for the breadcrumb item
|
|
11098
|
-
*/
|
|
11099
|
-
href?: string;
|
|
11100
|
-
/**
|
|
11101
|
-
* Whether this item is active (current page)
|
|
11102
|
-
*/
|
|
11103
|
-
active?: boolean;
|
|
11104
|
-
/**
|
|
11105
|
-
* Optional icon to display before the label
|
|
11106
|
-
*/
|
|
11107
|
-
icon?: ReactNode;
|
|
11108
|
-
/**
|
|
11109
|
-
* Optional click handler
|
|
11110
|
-
*/
|
|
11111
|
-
onClick?: (event: React__default.MouseEvent<HTMLAnchorElement>) => void;
|
|
11112
|
-
/**
|
|
11113
|
-
* Custom style for the breadcrumb item
|
|
11114
|
-
*/
|
|
11115
|
-
style?: React__default.CSSProperties;
|
|
11116
|
-
/**
|
|
11117
|
-
* Additional className
|
|
11118
|
-
*/
|
|
11119
|
-
className?: string;
|
|
11120
|
-
}
|
|
11121
|
-
interface BreadcrumbProps {
|
|
11122
|
-
/**
|
|
11123
|
-
* Array of breadcrumb items
|
|
11124
|
-
*/
|
|
11125
|
-
items: BreadcrumbItem[];
|
|
11126
|
-
/**
|
|
11127
|
-
* Custom divider character or element
|
|
11128
|
-
*/
|
|
11129
|
-
divider?: ReactNode;
|
|
11130
|
-
/**
|
|
11131
|
-
* Additional className
|
|
11132
|
-
*/
|
|
11133
|
-
className?: string;
|
|
11134
|
-
/**
|
|
11135
|
-
* Aria label for the navigation
|
|
11136
|
-
*/
|
|
11137
|
-
'aria-label'?: string;
|
|
11138
|
-
/**
|
|
11139
|
-
* Optional custom link component
|
|
11140
|
-
*/
|
|
11141
|
-
LinkComponent?: React__default.ElementType;
|
|
11142
|
-
/**
|
|
11143
|
-
* Custom style for the breadcrumb
|
|
11144
|
-
*/
|
|
11145
|
-
style?: React__default.CSSProperties;
|
|
11146
|
-
}
|
|
11147
|
-
declare const Breadcrumb: React__default.FC<BreadcrumbProps>;
|
|
11148
|
-
|
|
11149
11518
|
interface BreadcrumbOptions {
|
|
11150
11519
|
items: BreadcrumbItem[];
|
|
11151
11520
|
divider?: React.ReactNode;
|
|
@@ -11503,9 +11872,6 @@ declare namespace __lib_composables {
|
|
|
11503
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 };
|
|
11504
11873
|
}
|
|
11505
11874
|
|
|
11506
|
-
type AccordionProps = AccordionProps$1;
|
|
11507
|
-
declare const Accordion: React__default.FC<AccordionProps>;
|
|
11508
|
-
|
|
11509
11875
|
interface AtomixLogoProps extends React__default.SVGProps<SVGSVGElement> {
|
|
11510
11876
|
height?: number | string;
|
|
11511
11877
|
width?: number | string;
|
|
@@ -11729,11 +12095,6 @@ declare const Block: React__default.ForwardRefExoticComponent<BlockProps & React
|
|
|
11729
12095
|
*/
|
|
11730
12096
|
declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
11731
12097
|
|
|
11732
|
-
/**
|
|
11733
|
-
* Callout component for displaying important messages, notifications, or alerts
|
|
11734
|
-
*/
|
|
11735
|
-
declare const Callout: React__default.FC<CalloutProps>;
|
|
11736
|
-
|
|
11737
12098
|
declare const Card: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
11738
12099
|
|
|
11739
12100
|
declare const ElevationCard: React__default.FC<ElevationCardProps>;
|
|
@@ -11813,58 +12174,6 @@ declare const DataTable: React__default.FC<DataTableProps>;
|
|
|
11813
12174
|
*/
|
|
11814
12175
|
declare const DatePicker: React__default.ForwardRefExoticComponent<DatePickerProps & React__default.RefAttributes<DatePickerRef>>;
|
|
11815
12176
|
|
|
11816
|
-
/**
|
|
11817
|
-
* Dropdown component for creating dropdown menus
|
|
11818
|
-
*/
|
|
11819
|
-
declare const Dropdown: React__default.FC<DropdownProps>;
|
|
11820
|
-
|
|
11821
|
-
/**
|
|
11822
|
-
* EdgePanel - A sliding panel component that appears from any screen edge
|
|
11823
|
-
*
|
|
11824
|
-
* @component
|
|
11825
|
-
* @example
|
|
11826
|
-
* ```tsx
|
|
11827
|
-
* // Basic usage
|
|
11828
|
-
* <EdgePanel
|
|
11829
|
-
* title="My Panel"
|
|
11830
|
-
* isOpen={isOpen}
|
|
11831
|
-
* onOpenChange={setIsOpen}
|
|
11832
|
-
* position="start"
|
|
11833
|
-
* >
|
|
11834
|
-
* <p>Panel content</p>
|
|
11835
|
-
* </EdgePanel>
|
|
11836
|
-
*
|
|
11837
|
-
* // With glass effect
|
|
11838
|
-
* <EdgePanel
|
|
11839
|
-
* title="Glass Panel"
|
|
11840
|
-
* isOpen={isOpen}
|
|
11841
|
-
* onOpenChange={setIsOpen}
|
|
11842
|
-
* position="end"
|
|
11843
|
-
* glass={true}
|
|
11844
|
-
* >
|
|
11845
|
-
* <p>Panel with glass morphism</p>
|
|
11846
|
-
* </EdgePanel>
|
|
11847
|
-
*
|
|
11848
|
-
* // With custom glass configuration
|
|
11849
|
-
* <EdgePanel
|
|
11850
|
-
* title="Custom Glass"
|
|
11851
|
-
* isOpen={isOpen}
|
|
11852
|
-
* onOpenChange={setIsOpen}
|
|
11853
|
-
* position="start"
|
|
11854
|
-
* glass={{
|
|
11855
|
-
* mode: 'shader',
|
|
11856
|
-
* shaderVariant: 'liquidGlass',
|
|
11857
|
-
* displacementScale: 70,
|
|
11858
|
-
* blurAmount: 1.8,
|
|
11859
|
-
* saturation: 170,
|
|
11860
|
-
* }}
|
|
11861
|
-
* >
|
|
11862
|
-
* <p>Panel with custom glass effect</p>
|
|
11863
|
-
* </EdgePanel>
|
|
11864
|
-
* ```
|
|
11865
|
-
*/
|
|
11866
|
-
declare const EdgePanel: React__default.FC<EdgePanelProps>;
|
|
11867
|
-
|
|
11868
12177
|
declare const Checkbox: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLInputElement>>>;
|
|
11869
12178
|
|
|
11870
12179
|
/**
|
|
@@ -11950,20 +12259,11 @@ declare const Input: React__default.MemoExoticComponent<React__default.ForwardRe
|
|
|
11950
12259
|
*/
|
|
11951
12260
|
declare const Radio: React__default.FC<RadioProps>;
|
|
11952
12261
|
|
|
11953
|
-
/**
|
|
11954
|
-
* Select - A component for dropdown selection
|
|
11955
|
-
*/
|
|
11956
|
-
declare const Select: React__default.FC<SelectProps>;
|
|
11957
|
-
|
|
11958
12262
|
/**
|
|
11959
12263
|
* Textarea - A component for multiline text input
|
|
11960
12264
|
*/
|
|
11961
12265
|
declare const Textarea: React__default.MemoExoticComponent<React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>>;
|
|
11962
12266
|
|
|
11963
|
-
declare const Hero: React__default.FC<HeroProps>;
|
|
11964
|
-
|
|
11965
|
-
declare const List: React__default.FC<ListProps>;
|
|
11966
|
-
|
|
11967
12267
|
type ListGroupProps = ListGroupProps$1;
|
|
11968
12268
|
declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
11969
12269
|
|
|
@@ -11972,11 +12272,6 @@ declare const ListGroup: React__default.FC<ListGroupProps>;
|
|
|
11972
12272
|
*/
|
|
11973
12273
|
declare const Messages: React__default.FC<MessagesProps>;
|
|
11974
12274
|
|
|
11975
|
-
/**
|
|
11976
|
-
* Modal component for displaying overlay content
|
|
11977
|
-
*/
|
|
11978
|
-
declare const Modal: React__default.FC<ModalProps>;
|
|
11979
|
-
|
|
11980
12275
|
/**
|
|
11981
12276
|
* Nav component provides a container for navigation items with proper alignment and accessibility.
|
|
11982
12277
|
*
|
|
@@ -12286,106 +12581,6 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
|
|
|
12286
12581
|
|
|
12287
12582
|
declare const Spinner: React__default.FC<SpinnerProps>;
|
|
12288
12583
|
|
|
12289
|
-
interface StepItem {
|
|
12290
|
-
/**
|
|
12291
|
-
* The number for the step
|
|
12292
|
-
*/
|
|
12293
|
-
number: number | string | ReactNode;
|
|
12294
|
-
/**
|
|
12295
|
-
* The text label for the step
|
|
12296
|
-
*/
|
|
12297
|
-
text: string;
|
|
12298
|
-
/**
|
|
12299
|
-
* Optional custom content for the step
|
|
12300
|
-
*/
|
|
12301
|
-
content?: React__default.ReactNode;
|
|
12302
|
-
}
|
|
12303
|
-
interface StepsProps {
|
|
12304
|
-
/**
|
|
12305
|
-
* Array of step items
|
|
12306
|
-
*/
|
|
12307
|
-
items: StepItem[];
|
|
12308
|
-
/**
|
|
12309
|
-
* Current active step index (0-based)
|
|
12310
|
-
*/
|
|
12311
|
-
activeIndex?: number;
|
|
12312
|
-
/**
|
|
12313
|
-
* Whether to display steps vertically
|
|
12314
|
-
*/
|
|
12315
|
-
vertical?: boolean;
|
|
12316
|
-
/**
|
|
12317
|
-
* Called when active step changes
|
|
12318
|
-
*/
|
|
12319
|
-
onStepChange?: (index: number) => void;
|
|
12320
|
-
/**
|
|
12321
|
-
* Additional CSS class
|
|
12322
|
-
*/
|
|
12323
|
-
className?: string;
|
|
12324
|
-
/**
|
|
12325
|
-
* Inline style for the component
|
|
12326
|
-
*/
|
|
12327
|
-
style?: React__default.CSSProperties;
|
|
12328
|
-
/**
|
|
12329
|
-
* Glass morphism effect for the steps component
|
|
12330
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12331
|
-
*/
|
|
12332
|
-
glass?: AtomixGlassProps | boolean;
|
|
12333
|
-
}
|
|
12334
|
-
/**
|
|
12335
|
-
* Steps component for displaying a sequence of steps
|
|
12336
|
-
*/
|
|
12337
|
-
declare const Steps: React__default.FC<StepsProps>;
|
|
12338
|
-
|
|
12339
|
-
interface TabsItemProps {
|
|
12340
|
-
/**
|
|
12341
|
-
* Label for the tab
|
|
12342
|
-
*/
|
|
12343
|
-
label: string;
|
|
12344
|
-
/**
|
|
12345
|
-
* Content of the tab panel
|
|
12346
|
-
*/
|
|
12347
|
-
content: ReactNode;
|
|
12348
|
-
/**
|
|
12349
|
-
* Whether the tab is initially active
|
|
12350
|
-
*/
|
|
12351
|
-
isActive?: boolean;
|
|
12352
|
-
/**
|
|
12353
|
-
* Additional CSS class for the tab
|
|
12354
|
-
*/
|
|
12355
|
-
className?: string;
|
|
12356
|
-
}
|
|
12357
|
-
interface TabsProps {
|
|
12358
|
-
/**
|
|
12359
|
-
* Array of tab items
|
|
12360
|
-
*/
|
|
12361
|
-
items: TabsItemProps[];
|
|
12362
|
-
/**
|
|
12363
|
-
* Initial active tab index
|
|
12364
|
-
*/
|
|
12365
|
-
activeIndex?: number;
|
|
12366
|
-
/**
|
|
12367
|
-
* Callback when tab changes
|
|
12368
|
-
*/
|
|
12369
|
-
onTabChange?: (index: number) => void;
|
|
12370
|
-
/**
|
|
12371
|
-
* Additional CSS class for the tab component
|
|
12372
|
-
*/
|
|
12373
|
-
className?: string;
|
|
12374
|
-
/**
|
|
12375
|
-
* Custom style for the tab component
|
|
12376
|
-
*/
|
|
12377
|
-
style?: React__default.CSSProperties;
|
|
12378
|
-
/**
|
|
12379
|
-
* Glass morphism effect for the tab component
|
|
12380
|
-
* Can be a boolean to enable with default settings, or an object with AtomixGlassProps to customize the effect
|
|
12381
|
-
*/
|
|
12382
|
-
glass?: AtomixGlassProps | boolean;
|
|
12383
|
-
}
|
|
12384
|
-
/**
|
|
12385
|
-
* Tabs component for switching between different content panels
|
|
12386
|
-
*/
|
|
12387
|
-
declare const Tabs: React__default.FC<TabsProps>;
|
|
12388
|
-
|
|
12389
12584
|
interface TestimonialAuthor {
|
|
12390
12585
|
/**
|
|
12391
12586
|
* The author's name
|
|
@@ -15126,17 +15321,30 @@ declare const atomix: {
|
|
|
15126
15321
|
constants: typeof __lib_constants;
|
|
15127
15322
|
types: typeof __lib_types;
|
|
15128
15323
|
layouts: typeof layouts;
|
|
15129
|
-
Accordion: React$1.FC<AccordionProps$1
|
|
15324
|
+
Accordion: React$1.FC<AccordionProps$1> & {
|
|
15325
|
+
Header: typeof AccordionHeader;
|
|
15326
|
+
Body: typeof AccordionBody;
|
|
15327
|
+
};
|
|
15130
15328
|
AtomixLogo: React$1.FC<AtomixLogoProps>;
|
|
15131
15329
|
AtomixGlass: typeof AtomixGlass;
|
|
15132
15330
|
Avatar: React$1.FC<AvatarProps>;
|
|
15133
15331
|
AvatarGroup: React$1.FC<AvatarGroupProps>;
|
|
15134
15332
|
Badge: React$1.FC<BadgeProps>;
|
|
15135
15333
|
Block: React$1.ForwardRefExoticComponent<BlockProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15136
|
-
Breadcrumb: React$1.FC<BreadcrumbProps
|
|
15334
|
+
Breadcrumb: React$1.FC<BreadcrumbProps> & {
|
|
15335
|
+
Item: typeof BreadcrumbItemData;
|
|
15336
|
+
};
|
|
15137
15337
|
Button: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<Omit<ButtonProps & ButtonAsProp, "ref"> & React$1.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>>;
|
|
15138
15338
|
ButtonGroup: React$1.FC<ButtonGroupProps>;
|
|
15139
|
-
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
|
+
};
|
|
15140
15348
|
Card: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement | HTMLAnchorElement>>>;
|
|
15141
15349
|
ElevationCard: React$1.FC<ElevationCardProps>;
|
|
15142
15350
|
AnimatedChart: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<AnimatedChartProps & React$1.RefAttributes<HTMLDivElement>>>;
|
|
@@ -15172,8 +15380,19 @@ declare const atomix: {
|
|
|
15172
15380
|
Countdown: React$1.FC<CountdownProps>;
|
|
15173
15381
|
DataTable: React$1.FC<DataTableProps>;
|
|
15174
15382
|
DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<DatePickerRef>>;
|
|
15175
|
-
Dropdown: React$1.FC<DropdownProps
|
|
15176
|
-
|
|
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
|
+
};
|
|
15177
15396
|
Checkbox: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15178
15397
|
Footer: React$1.ForwardRefExoticComponent<FooterProps & React$1.RefAttributes<HTMLElement>>;
|
|
15179
15398
|
FooterSection: React$1.ForwardRefExoticComponent<FooterSectionProps & {
|
|
@@ -15185,14 +15404,28 @@ declare const atomix: {
|
|
|
15185
15404
|
FormGroup: React$1.FC<FormGroupProps>;
|
|
15186
15405
|
Input: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>>;
|
|
15187
15406
|
Radio: React$1.FC<RadioProps>;
|
|
15188
|
-
Select:
|
|
15407
|
+
Select: SelectComponent;
|
|
15189
15408
|
Textarea: React$1.MemoExoticComponent<React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>>;
|
|
15190
|
-
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
|
+
};
|
|
15191
15420
|
Icon: React$1.FC<IconProps>;
|
|
15192
|
-
List:
|
|
15421
|
+
List: ListComponent;
|
|
15193
15422
|
ListGroup: React$1.FC<ListGroupProps$1>;
|
|
15194
15423
|
Messages: React$1.FC<MessagesProps>;
|
|
15195
|
-
Modal: React$1.FC<ModalProps
|
|
15424
|
+
Modal: React$1.FC<ModalProps> & {
|
|
15425
|
+
Header: typeof ModalHeader;
|
|
15426
|
+
Body: typeof ModalBody;
|
|
15427
|
+
Footer: typeof ModalFooter;
|
|
15428
|
+
};
|
|
15196
15429
|
Nav: React$1.ForwardRefExoticComponent<NavProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
15197
15430
|
NavItem: React$1.ForwardRefExoticComponent<NavItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
15198
15431
|
Navbar: React$1.ForwardRefExoticComponent<NavbarProps & React$1.RefAttributes<HTMLElement>>;
|
|
@@ -15216,8 +15449,16 @@ declare const atomix: {
|
|
|
15216
15449
|
SectionIntro: React$1.FC<SectionIntroProps>;
|
|
15217
15450
|
Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
15218
15451
|
Spinner: React$1.FC<SpinnerProps>;
|
|
15219
|
-
Steps: React$1.FC<StepsProps
|
|
15220
|
-
|
|
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
|
+
};
|
|
15221
15462
|
Testimonial: React$1.FC<TestimonialProps>;
|
|
15222
15463
|
Todo: React$1.FC<TodoProps>;
|
|
15223
15464
|
Toggle: React$1.FC<ToggleProps>;
|
|
@@ -15226,5 +15467,5 @@ declare const atomix: {
|
|
|
15226
15467
|
VideoPlayer: React$1.ForwardRefExoticComponent<VideoPlayerProps & React$1.RefAttributes<HTMLVideoElement>>;
|
|
15227
15468
|
};
|
|
15228
15469
|
|
|
15229
|
-
export { ACCORDION, ATOMIX_GLASS, AVATAR, AVATAR_GROUP, Accordion, AnimatedChart, AreaChart, AtomixGlass, AtomixLogo, Avatar, AvatarGroup, BADGE, BADGE_CSS_VARS, BLOCK, BREADCRUMB, BUTTON, BUTTON_CSS_VARS, BUTTON_GROUP, Badge, BarChart, Block, Breadcrumb, BubbleChart, Button, ButtonGroup, CALLOUT, CARD, CARD_CSS_VARS, CHART, CHECKBOX_CSS_VARS, CLASS_PREFIX, CODE_SNIPPET, COMPONENT_CSS_VARS, COUNTDOWN, Callout, CandlestickChart, Card, Chart, ChartRenderer, Checkbox, ColorModeToggle, Container, Countdown, DATA_TABLE_CLASSES, DATA_TABLE_SELECTORS, DATEPICKER, DEFAULT_ATOMIX_FONTS, DOTS, DROPDOWN, DROPDOWN_CSS_VARS, DataTable, DatePicker, DesignTokensCustomizer, DonutChart, Dropdown, EDGE_PANEL, EdgePanel, ElevationCard, FOOTER, FORM, FORM_GROUP, Footer, FooterLink, FooterSection, FooterSocialLink, Form, FormGroup, FunnelChart, GaugeChart, Grid, GridCol, HERO, HeatmapChart, Hero, INPUT, INPUT_CSS_VARS, Icon, Input, LIST, LIST_GROUP, LineChart, List, ListGroup, MESSAGES, MODAL, MODAL_CSS_VARS, MasonryGrid, MasonryGridItem, MegaMenu, MegaMenuColumn, MegaMenuLink, Menu, MenuDivider, MenuItem, Messages, Modal, MultiAxisChart, NAV, NAVBAR, Nav, NavDropdown, NavItem, Navbar, PAGINATION_DEFAULTS, PHOTOVIEWER, POPOVER, PROGRESS, PROGRESS_CSS_VARS, Pagination, PhotoViewer, PieChart, Popover, ProductReview, Progress, RADIO, RADIO_CSS_VARS, RATING, RIVER, RTLManager, RadarChart, Radio, Rating, River, Row, SECTION_INTRO, SELECT, SIDE_MENU, SIZES, SLIDER, SPINNER, STEPS, ScatterChart, SectionIntro, Select, SideMenu, SideMenuItem, SideMenuList, Slider, Spinner, Steps, TAB, TABS_CSS_VARS, TESTIMONIAL, TEXTAREA, THEME_COLORS, THEME_NAMING, TODO, TOGGLE, TOOLTIP, TOOLTIP_CSS_VARS, Tabs, Testimonial, Textarea, ThemeApplicator, ThemeComparator, ThemeContext, ThemeErrorBoundary, ThemeInspector, ThemeLiveEditor, ThemePreview, ThemeProvider, ThemeValidator, Todo, Toggle, Tooltip, TreemapChart, UPLOAD, Upload, VIDEO_PLAYER, VideoPlayer, WaterfallChart, applyCSSVariables, applyCSSVarsToStyle, applyComponentTheme, applyPartStyles, applyTheme, camelToKebab, clearThemes, composables, constants, createCSSVarStyle, createDarkVariant, createDebugAttrs, createFontPreloadLink, createPartProps, createSlotComponent, createSlotProps, createTheme, createThemeRegistry, createTokens, cssVarsToStyle, deepMerge, atomix as default, defaultTokens, defineConfig, designTokensToCSSVars, exportTheme, extendTheme, extractComponentName, extractYouTubeId, generateCSSVariableName, generateCSSVariables, generateCSSVariablesForSelector, generateClassName, generateComponentCSSVars, generateFontPreloadTags, generateUUID, getAllThemes, getCSSVariable, getComponentCSSVars, getComponentThemeValue, getPartStyles, getTheme, getThemeApplicator, getThemeCount, getThemeIds, getThemeMetadata, hasCustomization, hasTheme, importTheme, injectCSS, injectTheme, isCSSInjected, isDesignTokens, isSlot, isValidCSSVariableName, isYouTubeUrl, mapSCSSTokensToCSSVars, mergeCSSVars, mergeClassNames, mergeComponentProps, mergePartStyles, mergeSlots, mergeTheme, normalizeThemeTokens, preloadFonts, quickTheme, registerTheme, removeCSS, removeCSSVariables, removeTheme, renderSlot, sliderConstants, supportsDarkMode, theme, themePropertyToCSSVar, themeToCSS, types, unregisterTheme, useAccordion, useAtomixGlass, useBadge, useBarChart, useBlock, useBreadcrumb, useCard, useChartData, useChartInteraction, useChartScale, useComponentCustomization, useComponentDefaultProps, useComponentTheme, useDataTable, useEdgePanel, useForm, useFormGroup, useGlassContainer, useHero, useHistory, useInput, useLineChart, useMergedProps, useModal, useNav, useNavDropdown, useNavItem, useNavbar, usePagination, usePieChart, useRadio, useRiver, useSelect, useSideMenu, useSideMenuItem, useSlider, useSlot, useSpinner, useTextarea, useTheme, useThemeTokens, useTodo, utils, validateTheme };
|
|
15230
|
-
export type { A11yIssue, AccordionParts, AccordionProps$1 as AccordionProps, AccordionState, AnimatedChartProps, AreaChartProps, AtomixConfig, AtomixGlassProps, AtomixLogoProps, AvatarGroupProps, AvatarParts, AvatarProps, AvatarSize, BadgeCSSVariable, BadgeParts, BadgeProps, BarChartOptions, BarChartProps, BarDimensions, BaseComponentProps, BlockProps, BreadcrumbInstance, BreadcrumbItem$1 as BreadcrumbItem, BreadcrumbOptions$1 as BreadcrumbOptions, BreadcrumbProps, BubbleChartProps, BubbleDataPoint, BuildConfig, ButtonCSSVariable, ButtonGroupProps, ButtonIconSlotProps, ButtonLabelSlotProps, ButtonParts, ButtonProps, ButtonRootSlotProps, ButtonSpinnerSlotProps, CSSThemeDefinition, CSSVariableConfig, CSSVariableNamingOptions, CalloutProps, CandlestickChartProps, CandlestickDataPoint, CardBodySlotProps, CardCSSVariable, CardFooterSlotProps, CardHeaderSlotProps, CardParts, CardProps, CardRootSlotProps, ChartAxis$1 as ChartAxis, ChartConfig$1 as ChartConfig, ChartDataPoint$1 as ChartDataPoint, ChartDataset$1 as ChartDataset, ChartProps$1 as ChartProps, ChartSize$1 as ChartSize, ChartType$1 as ChartType, CheckboxCSSVariable, CheckboxParts, CheckboxProps, CodeBlockProps, ColorModeToggleProps, ColorScale, ComponentCSSVariables, ComponentCustomization, ComponentName, ComponentParts, ComponentPartsMap, ComponentThemeOptions, ComponentThemeOverride, ContainerProps, CountdownProps, CustomizableComponentProps, DataTableColumn, DataTableParts, DataTableProps, DatePickerProps, DesignTokens, DesignTokensCustomizerProps, DisplacementMode, DonutChartProps, DropdownCSSVariable, DropdownDividerProps, DropdownHeaderProps, DropdownItemProps, DropdownMenuSlotProps, DropdownParts, DropdownPlacement, DropdownProps, DropdownRootSlotProps, DropdownToggleSlotProps, DropdownTrigger, EdgePanelMode, EdgePanelPosition, EdgePanelProps, ElementRefs, ElevationCardProps, ExportFormat, FontPreloadConfig, FooterLayout, FooterLinkProps, FooterProps, FooterSectionProps, FooterSocialLinkProps, FormGroupParts, FormGroupProps, FormProps, FunnelChartProps, FunnelDataPoint, GaugeChartProps, GenerateCSSVariablesOptions, GlassContainerProps, GlassMode, GlassSize, GridColProps, GridProps, HeatmapChartProps, HeatmapDataPoint, HeroAlignment, HeroBackgroundSlide, HeroBackgroundSliderConfig, HeroParts, HeroProps, IconPosition, IconProps, IconSize$1 as IconSize, IconWeight$1 as IconWeight, ImageType, InputCSSVariable, InputElementSlotProps, InputParts, InputProps, InputRootSlotProps, IntegrationConfig, JSThemeDefinition, LineChartOptions, LineChartProps, ListGroupProps$1 as ListGroupProps, ListParts, ListProps, MasonryGridItemProps, MasonryGridProps, MegaMenuColumnProps, MegaMenuLinkProps, MegaMenuProps, MenuDividerProps, MenuItemProps, MenuProps, MergePropsOptions, MessageItem, MessagesProps, ModalBackdropSlotProps, ModalCSSVariable, ModalContentSlotProps, ModalDialogSlotProps, ModalParts, ModalProps, ModalRootSlotProps, MousePosition, MultiAxisChartProps, NamingOptions, NavAlignment, NavDropdownProps, NavItemProps, NavProps, NavVariant, NavbarParts, NavbarPosition, NavbarProps, OverLightConfig, OverLightObjectConfig, PaginationProps, PaletteColorOptions, PartStyleProps, PhosphorIconsType$1 as PhosphorIconsType, PhotoViewerProps, PieChartOptions, PieChartProps, PieSlice, PopoverProps, PopoverTriggerProps, ProductReviewProps, ProgressCSSVariable, ProgressParts, ProgressProps, RTLConfig, RadarChartProps, RadioCSSVariable, RadioParts, RadioProps, RatingProps, RiverContentColumn, RiverProps, RowProps, RuntimeConfig, ScatterChartProps, ScatterDataPoint, SectionIntroProps, SelectOption, SelectParts, SelectProps, SelectionMode, SideMenuItemProps, SideMenuListProps, SideMenuProps, Size, SliderAutoplay, SliderBreakpoint, SliderEffect, SliderLazy, SliderNavigation, SliderPagination, SliderProps, SliderRefs, SliderScrollbar, SliderSlide, SliderState, SliderThumbs, SliderVirtual, SliderZoom, SlotProps, SocialLink, SocialPlatform, SortConfig, SpinnerProps, StateModifier, StepsProps, TabsCSSVariable, TabsParts, TabsProps, TestimonialProps, TextareaParts, TextareaProps, Theme, ThemeChangeEvent, ThemeColor, ThemeComparatorProps, ThemeComponentOverrides, ThemeContextValue, ThemeDefinition, ThemeErrorBoundaryProps, ThemeInspectorProps, ThemeLiveEditorProps, ThemeLoadOptions, ThemeName, ThemePreviewProps, ThemeProviderProps, ThemeTokens, ThemeValidationResult, TodoItem, TodoProps, ToggleProps, TooltipCSSVariable, TooltipParts, TooltipProps, TreemapChartProps, TreemapDataPoint, TreemapNode, UploadProps, UseBlockOptions, UseBlockReturn, UseCardOptions, UseCardReturn, UseDataTableProps, UseDataTableReturn, UseHistoryOptions, UseHistoryReturn, UseModalProps, UseModalReturn, UseSliderOptions, UseSliderReturn, UseThemeReturn, ValidationResult, Variant, VideoChapter, VideoPlayerProps, VideoQuality, VideoSubtitle, WaterfallChartProps, WaterfallDataPoint, listvariant };
|
|
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 };
|