@pushui/react 0.0.13 → 0.0.15
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/index.css +1 -1
- package/dist/index.d.mts +24 -22
- package/dist/index.d.ts +24 -22
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -804,15 +804,15 @@ declare function CarouselPrev({ ref, className, label, children, ...props }: Car
|
|
|
804
804
|
declare function CarouselNext({ ref, className, label, children, ...props }: CarouselNextTypes): react_jsx_runtime.JSX.Element;
|
|
805
805
|
declare function CarouselDots({ ref, className, label, navigationLabel, ...props }: CarouselDotsTypes): react_jsx_runtime.JSX.Element;
|
|
806
806
|
|
|
807
|
-
type
|
|
808
|
-
type
|
|
809
|
-
id:
|
|
807
|
+
type GdprCategoryId = string;
|
|
808
|
+
type GdprCategory = {
|
|
809
|
+
id: GdprCategoryId;
|
|
810
810
|
label: string;
|
|
811
811
|
description: string;
|
|
812
812
|
required?: boolean;
|
|
813
813
|
};
|
|
814
|
-
type
|
|
815
|
-
type
|
|
814
|
+
type GdprConsent = Record<GdprCategoryId, boolean>;
|
|
815
|
+
type GdprStrings = {
|
|
816
816
|
title: string;
|
|
817
817
|
description: string;
|
|
818
818
|
acceptAll: string;
|
|
@@ -824,41 +824,43 @@ type GDPRStrings = {
|
|
|
824
824
|
privacyPolicyLabel: string;
|
|
825
825
|
termsLabel: string;
|
|
826
826
|
toggleLabel: string;
|
|
827
|
+
moreChoices: string;
|
|
828
|
+
preferencesDescription: string;
|
|
827
829
|
};
|
|
828
|
-
type
|
|
830
|
+
type GdprProviderTypes = {
|
|
829
831
|
children: ReactNode;
|
|
830
|
-
categories?:
|
|
831
|
-
strings?: Partial<
|
|
832
|
+
categories?: GdprCategory[];
|
|
833
|
+
strings?: Partial<GdprStrings>;
|
|
832
834
|
storageKey?: string;
|
|
833
835
|
autoOpen?: boolean;
|
|
834
836
|
respectGPC?: boolean;
|
|
835
837
|
modalWidth?: string;
|
|
836
838
|
privacyPolicyUrl?: string;
|
|
837
839
|
termsUrl?: string;
|
|
838
|
-
onConsentChange?: (consent:
|
|
840
|
+
onConsentChange?: (consent: GdprConsent) => void;
|
|
839
841
|
};
|
|
840
|
-
type
|
|
841
|
-
consent:
|
|
842
|
+
type GdprContextValue = {
|
|
843
|
+
consent: GdprConsent;
|
|
842
844
|
hasConsented: boolean;
|
|
843
845
|
isGPCEnabled: boolean;
|
|
844
846
|
openSettings: () => void;
|
|
845
|
-
hasCategory: (id:
|
|
847
|
+
hasCategory: (id: GdprCategoryId) => boolean;
|
|
846
848
|
};
|
|
847
849
|
|
|
848
|
-
type
|
|
849
|
-
categories:
|
|
850
|
-
strings:
|
|
851
|
-
consent:
|
|
850
|
+
type GdprModalProps = {
|
|
851
|
+
categories: GdprCategory[];
|
|
852
|
+
strings: GdprStrings;
|
|
853
|
+
consent: GdprConsent;
|
|
852
854
|
isGPCEnabled: boolean;
|
|
853
855
|
privacyPolicyUrl?: string;
|
|
854
856
|
termsUrl?: string;
|
|
855
|
-
onSave: (consent:
|
|
857
|
+
onSave: (consent: GdprConsent) => void;
|
|
856
858
|
};
|
|
857
|
-
declare function
|
|
859
|
+
declare function GdprModal({ categories, strings, consent: initialConsent, isGPCEnabled, privacyPolicyUrl, termsUrl, onSave, }: GdprModalProps): react_jsx_runtime.JSX.Element;
|
|
858
860
|
|
|
859
|
-
declare function buildConsent(categories:
|
|
860
|
-
declare function
|
|
861
|
-
declare function
|
|
861
|
+
declare function buildConsent(categories: GdprCategory[], allEnabled: boolean): GdprConsent;
|
|
862
|
+
declare function GdprProvider({ children, categories, strings: stringOverrides, storageKey, autoOpen, respectGPC, modalWidth, privacyPolicyUrl, termsUrl, onConsentChange, }: GdprProviderTypes): react_jsx_runtime.JSX.Element;
|
|
863
|
+
declare function useGdpr(): GdprContextValue;
|
|
862
864
|
|
|
863
865
|
type GapSize = 0 | 1 | 2 | 3 | 4 | 5;
|
|
864
866
|
type GridTypes = ComponentPropsWithRef<'div'> & {
|
|
@@ -1324,4 +1326,4 @@ type PageRootTypes = ComponentPropsWithRef<'div'> & {
|
|
|
1324
1326
|
|
|
1325
1327
|
declare function PageRoot({ ref, children, className, ...rest }: PageRootTypes): react_jsx_runtime.JSX.Element;
|
|
1326
1328
|
|
|
1327
|
-
export { Accordion, AccordionContent, type AccordionContentTypes, type AccordionContextValue, AccordionItem, type AccordionItemContextValue, type AccordionItemTypes, AccordionTrigger, type AccordionTriggerTypes, type AccordionType, type AccordionTypes, AccountCard, AccountCardBody, type AccountCardBodyTypes, AccountCardFooter, type AccountCardFooterTypes, AccountCardHeader, type AccountCardHeaderTypes, type AccountCardTypes, AccountForm, type AccountFormTypes, AccountSection, type AccountSectionTypes, AccountTitle, type AccountTitleTypes, Audio, type AudioSource, type AudioTypes, AuthCard, AuthCardBody, type AuthCardBodyTypes, AuthCardFooter, type AuthCardFooterTypes, AuthCardHeader, type AuthCardHeaderTypes, type AuthCardTypes, AuthForm, type AuthFormTypes, AuthLink, type AuthLinkTypes, type AuthMessageTypes, AuthSection, type AuthSectionTypes, AuthTitle, type AuthTitleTypes, Avatar, type AvatarTypes, Badge, type BadgeTypes, Banner, BannerActions, type BannerActionsTypes, type BannerBackgroundVideo, BannerBody, type BannerBodyTypes, BannerContent, type BannerContentTypes, type BannerOverlay, type BannerOverlayTypes, BannerSubtitle, type BannerSubtitleTypes, type BannerTextAlignTypes, type BannerTextColor, type BannerTextColorTypes, BannerTitle, type BannerTitleTypes, type BannerTypes, Breadcrumb, type BreadcrumbItemData, type BreadcrumbTypes, Button, type ButtonAppearance, type ButtonTypes, Card, CardBody, type CardBodyTypes, CardFooter, type CardFooterTypes, CardHeader, type CardHeaderTypes, type CardTypes, Carousel, type CarouselCSSProperties, CarouselContainer, type CarouselContainerTypes, type CarouselContextValue, CarouselControls, type CarouselControlsTypes, CarouselDots, type CarouselDotsTypes, CarouselNext, type CarouselNextTypes, type CarouselOptions, CarouselPrev, type CarouselPrevTypes, CarouselSlide, type CarouselSlideTypes, type CarouselTypes, Checkbox, type CheckboxTypes, ChoiceClear, type ChoiceClearTypes, ChoiceList, ChoiceListItem, type ChoiceListItemTypes, type ChoiceListTypes, DashboardBrand, type DashboardBrandTypes, type DashboardHeaderTypes, DashboardLayout, type DashboardLayoutTypes, DashboardMain, DashboardMainHeader, DashboardMainTitle, type DashboardMainTypes, DashboardNav, DashboardNavLink, type DashboardNavLinkTypes, DashboardNavTitle, type DashboardNavTypes, DashboardSidebar, type DashboardSidebarTypes, type DashboardTitleTypes, Divider, type DividerSpacing, type DividerTypes, type DividerVariant, FooterBottom, FooterBottomLink, type FooterBottomLinkTypes, FooterBottomNav, type FooterBottomNavTypes, type FooterBottomTypes, FooterMain, FooterMainLink, type FooterMainLinkTypes, FooterMainLogo, type FooterMainLogoTypes, FooterMainMenu, type FooterMainMenuTypes, FooterMainNav, FooterMainNavTitle, type FooterMainNavTypes, type FooterMainTypes, FooterRoot, type FooterTypes, type
|
|
1329
|
+
export { Accordion, AccordionContent, type AccordionContentTypes, type AccordionContextValue, AccordionItem, type AccordionItemContextValue, type AccordionItemTypes, AccordionTrigger, type AccordionTriggerTypes, type AccordionType, type AccordionTypes, AccountCard, AccountCardBody, type AccountCardBodyTypes, AccountCardFooter, type AccountCardFooterTypes, AccountCardHeader, type AccountCardHeaderTypes, type AccountCardTypes, AccountForm, type AccountFormTypes, AccountSection, type AccountSectionTypes, AccountTitle, type AccountTitleTypes, Audio, type AudioSource, type AudioTypes, AuthCard, AuthCardBody, type AuthCardBodyTypes, AuthCardFooter, type AuthCardFooterTypes, AuthCardHeader, type AuthCardHeaderTypes, type AuthCardTypes, AuthForm, type AuthFormTypes, AuthLink, type AuthLinkTypes, type AuthMessageTypes, AuthSection, type AuthSectionTypes, AuthTitle, type AuthTitleTypes, Avatar, type AvatarTypes, Badge, type BadgeTypes, Banner, BannerActions, type BannerActionsTypes, type BannerBackgroundVideo, BannerBody, type BannerBodyTypes, BannerContent, type BannerContentTypes, type BannerOverlay, type BannerOverlayTypes, BannerSubtitle, type BannerSubtitleTypes, type BannerTextAlignTypes, type BannerTextColor, type BannerTextColorTypes, BannerTitle, type BannerTitleTypes, type BannerTypes, Breadcrumb, type BreadcrumbItemData, type BreadcrumbTypes, Button, type ButtonAppearance, type ButtonTypes, Card, CardBody, type CardBodyTypes, CardFooter, type CardFooterTypes, CardHeader, type CardHeaderTypes, type CardTypes, Carousel, type CarouselCSSProperties, CarouselContainer, type CarouselContainerTypes, type CarouselContextValue, CarouselControls, type CarouselControlsTypes, CarouselDots, type CarouselDotsTypes, CarouselNext, type CarouselNextTypes, type CarouselOptions, CarouselPrev, type CarouselPrevTypes, CarouselSlide, type CarouselSlideTypes, type CarouselTypes, Checkbox, type CheckboxTypes, ChoiceClear, type ChoiceClearTypes, ChoiceList, ChoiceListItem, type ChoiceListItemTypes, type ChoiceListTypes, DashboardBrand, type DashboardBrandTypes, type DashboardHeaderTypes, DashboardLayout, type DashboardLayoutTypes, DashboardMain, DashboardMainHeader, DashboardMainTitle, type DashboardMainTypes, DashboardNav, DashboardNavLink, type DashboardNavLinkTypes, DashboardNavTitle, type DashboardNavTypes, DashboardSidebar, type DashboardSidebarTypes, type DashboardTitleTypes, Divider, type DividerSpacing, type DividerTypes, type DividerVariant, FooterBottom, FooterBottomLink, type FooterBottomLinkTypes, FooterBottomNav, type FooterBottomNavTypes, type FooterBottomTypes, FooterMain, FooterMainLink, type FooterMainLinkTypes, FooterMainLogo, type FooterMainLogoTypes, FooterMainMenu, type FooterMainMenuTypes, FooterMainNav, FooterMainNavTitle, type FooterMainNavTypes, type FooterMainTypes, FooterRoot, type FooterTypes, type GapSize, type GdprCategory, type GdprCategoryId, type GdprConsent, type GdprContextValue, GdprModal, GdprProvider, type GdprProviderTypes, type GdprStrings, Grid, GridItem, type GridItemTypes, type GridTypes, HeaderContext, type HeaderContextTypes, HeaderMain, HeaderMainDropdown, HeaderMainDropdownLink, type HeaderMainDropdownLinkTypes, type HeaderMainDropdownTypes, HeaderMainLink, type HeaderMainLinkTypes, HeaderMainLogo, type HeaderMainLogoTypes, HeaderMainNav, type HeaderMainNavTypes, type HeaderMainTypes, HeaderMobile, HeaderMobileBar, type HeaderMobileBarTypes, HeaderMobileDropdown, HeaderMobileDropdownLink, type HeaderMobileDropdownLinkTypes, type HeaderMobileDropdownTypes, HeaderMobileLink, type HeaderMobileLinkTypes, HeaderMobileLogo, type HeaderMobileLogoTypes, HeaderMobileMenu, type HeaderMobileMenuTypes, HeaderMobileNav, type HeaderMobileNavTypes, HeaderMobileToggle, type HeaderMobileToggleTypes, HeaderMobileTop, type HeaderMobileTopTypes, type HeaderMobileTypes, type HeaderNavTypes, type HeaderOverlay, HeaderRoot, type HeaderTextColor, HeaderTop, HeaderTopDropdown, HeaderTopDropdownLink, type HeaderTopDropdownLinkTypes, type HeaderTopDropdownTypes, HeaderTopLink, type HeaderTopLinkTypes, HeaderTopNav, type HeaderTopNavTypes, type HeaderTopTypes, type HeaderTypes, type HeadingLevel, type HorizontalAlignTypes, Iframe, type IframeTypes, Image, type ImageTypes, InputDate, type InputDateTypes, InputFile, type InputFileTypes, InputNumber, type InputNumberTypes, InputPassword, type InputPasswordTypes, InputRadio, type InputRadioTypes, InputSearch, type InputSearchTypes, InputText, type InputTextTypes, InputTextarea, type InputTextareaTypes, Layout, type LayoutTypes, Link, type LinkAppearance, type LinkTypes, Logo, type LogoTypes, Modal, type ModalConfigTypes, type ModalTypes, Modals, ModalsContext, type ModalsContextTypes, Note, NoteTitle, type NoteTypes, OptionList, OptionListItem, type OptionListItemTypes, type OptionListTypes, type OptionTypes, PageRoot, type PageRootTypes, Pagination, type PaginationTypes, Progress, type ProgressTypes, type RadioOptionTypes, RichText, type RichTextTypes, type SearchResultTypes, Section, SectionHeader, type SectionHeaderTypes, SectionTitle, type SectionTypes, SelectActions, type SelectActionsTypes, SelectContextRoot, type SelectContextTypes, SelectModal, type SelectModalTypes, SelectPlaceholder, type SelectPlaceholderTypes, SelectRoot, type SelectRootTypes, SelectSearch, SelectTrigger, Skeleton, type SkeletonTypes, type SkeletonVariant, Slider, type SliderBaseTypes, type SliderMark, type SliderOrientation, type SliderRangeTypes, type SliderSingleTypes, type SliderSize, type SliderTrack, type SliderTypes, type SliderValueLabelDisplay, Spinner, type SpinnerTypes, Switch, type SwitchTypes, Tab, TabButton, type TabButtonTypes, type TabContextValue, TabList, type TabListTypes, TabPanel, type TabPanelTypes, TabPanels, type TabPanelsTypes, type TabTypes, Table, TableBody, type TableBodyTypes, TableCaption, type TableCaptionTypes, TableCell, type TableCellTypes, TableFoot, type TableFootTypes, TableHead, type TableHeadTypes, TableHeaderCell, type TableHeaderCellTypes, TableRow, type TableRowTypes, type TableTypes, Title, type TitleTypes, Toast, type ToastConfigTypes, type ToastTypes, Toasts, ToastsContext, Tooltip, type TooltipPosition, type TooltipTypes, type VerticalAlignTypes, Video, type VideoSource, type VideoTrack, type VideoTypes, buildConsent, useGdpr, useHeader, useModals, useSelectContext, useToasts };
|
package/dist/index.d.ts
CHANGED
|
@@ -804,15 +804,15 @@ declare function CarouselPrev({ ref, className, label, children, ...props }: Car
|
|
|
804
804
|
declare function CarouselNext({ ref, className, label, children, ...props }: CarouselNextTypes): react_jsx_runtime.JSX.Element;
|
|
805
805
|
declare function CarouselDots({ ref, className, label, navigationLabel, ...props }: CarouselDotsTypes): react_jsx_runtime.JSX.Element;
|
|
806
806
|
|
|
807
|
-
type
|
|
808
|
-
type
|
|
809
|
-
id:
|
|
807
|
+
type GdprCategoryId = string;
|
|
808
|
+
type GdprCategory = {
|
|
809
|
+
id: GdprCategoryId;
|
|
810
810
|
label: string;
|
|
811
811
|
description: string;
|
|
812
812
|
required?: boolean;
|
|
813
813
|
};
|
|
814
|
-
type
|
|
815
|
-
type
|
|
814
|
+
type GdprConsent = Record<GdprCategoryId, boolean>;
|
|
815
|
+
type GdprStrings = {
|
|
816
816
|
title: string;
|
|
817
817
|
description: string;
|
|
818
818
|
acceptAll: string;
|
|
@@ -824,41 +824,43 @@ type GDPRStrings = {
|
|
|
824
824
|
privacyPolicyLabel: string;
|
|
825
825
|
termsLabel: string;
|
|
826
826
|
toggleLabel: string;
|
|
827
|
+
moreChoices: string;
|
|
828
|
+
preferencesDescription: string;
|
|
827
829
|
};
|
|
828
|
-
type
|
|
830
|
+
type GdprProviderTypes = {
|
|
829
831
|
children: ReactNode;
|
|
830
|
-
categories?:
|
|
831
|
-
strings?: Partial<
|
|
832
|
+
categories?: GdprCategory[];
|
|
833
|
+
strings?: Partial<GdprStrings>;
|
|
832
834
|
storageKey?: string;
|
|
833
835
|
autoOpen?: boolean;
|
|
834
836
|
respectGPC?: boolean;
|
|
835
837
|
modalWidth?: string;
|
|
836
838
|
privacyPolicyUrl?: string;
|
|
837
839
|
termsUrl?: string;
|
|
838
|
-
onConsentChange?: (consent:
|
|
840
|
+
onConsentChange?: (consent: GdprConsent) => void;
|
|
839
841
|
};
|
|
840
|
-
type
|
|
841
|
-
consent:
|
|
842
|
+
type GdprContextValue = {
|
|
843
|
+
consent: GdprConsent;
|
|
842
844
|
hasConsented: boolean;
|
|
843
845
|
isGPCEnabled: boolean;
|
|
844
846
|
openSettings: () => void;
|
|
845
|
-
hasCategory: (id:
|
|
847
|
+
hasCategory: (id: GdprCategoryId) => boolean;
|
|
846
848
|
};
|
|
847
849
|
|
|
848
|
-
type
|
|
849
|
-
categories:
|
|
850
|
-
strings:
|
|
851
|
-
consent:
|
|
850
|
+
type GdprModalProps = {
|
|
851
|
+
categories: GdprCategory[];
|
|
852
|
+
strings: GdprStrings;
|
|
853
|
+
consent: GdprConsent;
|
|
852
854
|
isGPCEnabled: boolean;
|
|
853
855
|
privacyPolicyUrl?: string;
|
|
854
856
|
termsUrl?: string;
|
|
855
|
-
onSave: (consent:
|
|
857
|
+
onSave: (consent: GdprConsent) => void;
|
|
856
858
|
};
|
|
857
|
-
declare function
|
|
859
|
+
declare function GdprModal({ categories, strings, consent: initialConsent, isGPCEnabled, privacyPolicyUrl, termsUrl, onSave, }: GdprModalProps): react_jsx_runtime.JSX.Element;
|
|
858
860
|
|
|
859
|
-
declare function buildConsent(categories:
|
|
860
|
-
declare function
|
|
861
|
-
declare function
|
|
861
|
+
declare function buildConsent(categories: GdprCategory[], allEnabled: boolean): GdprConsent;
|
|
862
|
+
declare function GdprProvider({ children, categories, strings: stringOverrides, storageKey, autoOpen, respectGPC, modalWidth, privacyPolicyUrl, termsUrl, onConsentChange, }: GdprProviderTypes): react_jsx_runtime.JSX.Element;
|
|
863
|
+
declare function useGdpr(): GdprContextValue;
|
|
862
864
|
|
|
863
865
|
type GapSize = 0 | 1 | 2 | 3 | 4 | 5;
|
|
864
866
|
type GridTypes = ComponentPropsWithRef<'div'> & {
|
|
@@ -1324,4 +1326,4 @@ type PageRootTypes = ComponentPropsWithRef<'div'> & {
|
|
|
1324
1326
|
|
|
1325
1327
|
declare function PageRoot({ ref, children, className, ...rest }: PageRootTypes): react_jsx_runtime.JSX.Element;
|
|
1326
1328
|
|
|
1327
|
-
export { Accordion, AccordionContent, type AccordionContentTypes, type AccordionContextValue, AccordionItem, type AccordionItemContextValue, type AccordionItemTypes, AccordionTrigger, type AccordionTriggerTypes, type AccordionType, type AccordionTypes, AccountCard, AccountCardBody, type AccountCardBodyTypes, AccountCardFooter, type AccountCardFooterTypes, AccountCardHeader, type AccountCardHeaderTypes, type AccountCardTypes, AccountForm, type AccountFormTypes, AccountSection, type AccountSectionTypes, AccountTitle, type AccountTitleTypes, Audio, type AudioSource, type AudioTypes, AuthCard, AuthCardBody, type AuthCardBodyTypes, AuthCardFooter, type AuthCardFooterTypes, AuthCardHeader, type AuthCardHeaderTypes, type AuthCardTypes, AuthForm, type AuthFormTypes, AuthLink, type AuthLinkTypes, type AuthMessageTypes, AuthSection, type AuthSectionTypes, AuthTitle, type AuthTitleTypes, Avatar, type AvatarTypes, Badge, type BadgeTypes, Banner, BannerActions, type BannerActionsTypes, type BannerBackgroundVideo, BannerBody, type BannerBodyTypes, BannerContent, type BannerContentTypes, type BannerOverlay, type BannerOverlayTypes, BannerSubtitle, type BannerSubtitleTypes, type BannerTextAlignTypes, type BannerTextColor, type BannerTextColorTypes, BannerTitle, type BannerTitleTypes, type BannerTypes, Breadcrumb, type BreadcrumbItemData, type BreadcrumbTypes, Button, type ButtonAppearance, type ButtonTypes, Card, CardBody, type CardBodyTypes, CardFooter, type CardFooterTypes, CardHeader, type CardHeaderTypes, type CardTypes, Carousel, type CarouselCSSProperties, CarouselContainer, type CarouselContainerTypes, type CarouselContextValue, CarouselControls, type CarouselControlsTypes, CarouselDots, type CarouselDotsTypes, CarouselNext, type CarouselNextTypes, type CarouselOptions, CarouselPrev, type CarouselPrevTypes, CarouselSlide, type CarouselSlideTypes, type CarouselTypes, Checkbox, type CheckboxTypes, ChoiceClear, type ChoiceClearTypes, ChoiceList, ChoiceListItem, type ChoiceListItemTypes, type ChoiceListTypes, DashboardBrand, type DashboardBrandTypes, type DashboardHeaderTypes, DashboardLayout, type DashboardLayoutTypes, DashboardMain, DashboardMainHeader, DashboardMainTitle, type DashboardMainTypes, DashboardNav, DashboardNavLink, type DashboardNavLinkTypes, DashboardNavTitle, type DashboardNavTypes, DashboardSidebar, type DashboardSidebarTypes, type DashboardTitleTypes, Divider, type DividerSpacing, type DividerTypes, type DividerVariant, FooterBottom, FooterBottomLink, type FooterBottomLinkTypes, FooterBottomNav, type FooterBottomNavTypes, type FooterBottomTypes, FooterMain, FooterMainLink, type FooterMainLinkTypes, FooterMainLogo, type FooterMainLogoTypes, FooterMainMenu, type FooterMainMenuTypes, FooterMainNav, FooterMainNavTitle, type FooterMainNavTypes, type FooterMainTypes, FooterRoot, type FooterTypes, type
|
|
1329
|
+
export { Accordion, AccordionContent, type AccordionContentTypes, type AccordionContextValue, AccordionItem, type AccordionItemContextValue, type AccordionItemTypes, AccordionTrigger, type AccordionTriggerTypes, type AccordionType, type AccordionTypes, AccountCard, AccountCardBody, type AccountCardBodyTypes, AccountCardFooter, type AccountCardFooterTypes, AccountCardHeader, type AccountCardHeaderTypes, type AccountCardTypes, AccountForm, type AccountFormTypes, AccountSection, type AccountSectionTypes, AccountTitle, type AccountTitleTypes, Audio, type AudioSource, type AudioTypes, AuthCard, AuthCardBody, type AuthCardBodyTypes, AuthCardFooter, type AuthCardFooterTypes, AuthCardHeader, type AuthCardHeaderTypes, type AuthCardTypes, AuthForm, type AuthFormTypes, AuthLink, type AuthLinkTypes, type AuthMessageTypes, AuthSection, type AuthSectionTypes, AuthTitle, type AuthTitleTypes, Avatar, type AvatarTypes, Badge, type BadgeTypes, Banner, BannerActions, type BannerActionsTypes, type BannerBackgroundVideo, BannerBody, type BannerBodyTypes, BannerContent, type BannerContentTypes, type BannerOverlay, type BannerOverlayTypes, BannerSubtitle, type BannerSubtitleTypes, type BannerTextAlignTypes, type BannerTextColor, type BannerTextColorTypes, BannerTitle, type BannerTitleTypes, type BannerTypes, Breadcrumb, type BreadcrumbItemData, type BreadcrumbTypes, Button, type ButtonAppearance, type ButtonTypes, Card, CardBody, type CardBodyTypes, CardFooter, type CardFooterTypes, CardHeader, type CardHeaderTypes, type CardTypes, Carousel, type CarouselCSSProperties, CarouselContainer, type CarouselContainerTypes, type CarouselContextValue, CarouselControls, type CarouselControlsTypes, CarouselDots, type CarouselDotsTypes, CarouselNext, type CarouselNextTypes, type CarouselOptions, CarouselPrev, type CarouselPrevTypes, CarouselSlide, type CarouselSlideTypes, type CarouselTypes, Checkbox, type CheckboxTypes, ChoiceClear, type ChoiceClearTypes, ChoiceList, ChoiceListItem, type ChoiceListItemTypes, type ChoiceListTypes, DashboardBrand, type DashboardBrandTypes, type DashboardHeaderTypes, DashboardLayout, type DashboardLayoutTypes, DashboardMain, DashboardMainHeader, DashboardMainTitle, type DashboardMainTypes, DashboardNav, DashboardNavLink, type DashboardNavLinkTypes, DashboardNavTitle, type DashboardNavTypes, DashboardSidebar, type DashboardSidebarTypes, type DashboardTitleTypes, Divider, type DividerSpacing, type DividerTypes, type DividerVariant, FooterBottom, FooterBottomLink, type FooterBottomLinkTypes, FooterBottomNav, type FooterBottomNavTypes, type FooterBottomTypes, FooterMain, FooterMainLink, type FooterMainLinkTypes, FooterMainLogo, type FooterMainLogoTypes, FooterMainMenu, type FooterMainMenuTypes, FooterMainNav, FooterMainNavTitle, type FooterMainNavTypes, type FooterMainTypes, FooterRoot, type FooterTypes, type GapSize, type GdprCategory, type GdprCategoryId, type GdprConsent, type GdprContextValue, GdprModal, GdprProvider, type GdprProviderTypes, type GdprStrings, Grid, GridItem, type GridItemTypes, type GridTypes, HeaderContext, type HeaderContextTypes, HeaderMain, HeaderMainDropdown, HeaderMainDropdownLink, type HeaderMainDropdownLinkTypes, type HeaderMainDropdownTypes, HeaderMainLink, type HeaderMainLinkTypes, HeaderMainLogo, type HeaderMainLogoTypes, HeaderMainNav, type HeaderMainNavTypes, type HeaderMainTypes, HeaderMobile, HeaderMobileBar, type HeaderMobileBarTypes, HeaderMobileDropdown, HeaderMobileDropdownLink, type HeaderMobileDropdownLinkTypes, type HeaderMobileDropdownTypes, HeaderMobileLink, type HeaderMobileLinkTypes, HeaderMobileLogo, type HeaderMobileLogoTypes, HeaderMobileMenu, type HeaderMobileMenuTypes, HeaderMobileNav, type HeaderMobileNavTypes, HeaderMobileToggle, type HeaderMobileToggleTypes, HeaderMobileTop, type HeaderMobileTopTypes, type HeaderMobileTypes, type HeaderNavTypes, type HeaderOverlay, HeaderRoot, type HeaderTextColor, HeaderTop, HeaderTopDropdown, HeaderTopDropdownLink, type HeaderTopDropdownLinkTypes, type HeaderTopDropdownTypes, HeaderTopLink, type HeaderTopLinkTypes, HeaderTopNav, type HeaderTopNavTypes, type HeaderTopTypes, type HeaderTypes, type HeadingLevel, type HorizontalAlignTypes, Iframe, type IframeTypes, Image, type ImageTypes, InputDate, type InputDateTypes, InputFile, type InputFileTypes, InputNumber, type InputNumberTypes, InputPassword, type InputPasswordTypes, InputRadio, type InputRadioTypes, InputSearch, type InputSearchTypes, InputText, type InputTextTypes, InputTextarea, type InputTextareaTypes, Layout, type LayoutTypes, Link, type LinkAppearance, type LinkTypes, Logo, type LogoTypes, Modal, type ModalConfigTypes, type ModalTypes, Modals, ModalsContext, type ModalsContextTypes, Note, NoteTitle, type NoteTypes, OptionList, OptionListItem, type OptionListItemTypes, type OptionListTypes, type OptionTypes, PageRoot, type PageRootTypes, Pagination, type PaginationTypes, Progress, type ProgressTypes, type RadioOptionTypes, RichText, type RichTextTypes, type SearchResultTypes, Section, SectionHeader, type SectionHeaderTypes, SectionTitle, type SectionTypes, SelectActions, type SelectActionsTypes, SelectContextRoot, type SelectContextTypes, SelectModal, type SelectModalTypes, SelectPlaceholder, type SelectPlaceholderTypes, SelectRoot, type SelectRootTypes, SelectSearch, SelectTrigger, Skeleton, type SkeletonTypes, type SkeletonVariant, Slider, type SliderBaseTypes, type SliderMark, type SliderOrientation, type SliderRangeTypes, type SliderSingleTypes, type SliderSize, type SliderTrack, type SliderTypes, type SliderValueLabelDisplay, Spinner, type SpinnerTypes, Switch, type SwitchTypes, Tab, TabButton, type TabButtonTypes, type TabContextValue, TabList, type TabListTypes, TabPanel, type TabPanelTypes, TabPanels, type TabPanelsTypes, type TabTypes, Table, TableBody, type TableBodyTypes, TableCaption, type TableCaptionTypes, TableCell, type TableCellTypes, TableFoot, type TableFootTypes, TableHead, type TableHeadTypes, TableHeaderCell, type TableHeaderCellTypes, TableRow, type TableRowTypes, type TableTypes, Title, type TitleTypes, Toast, type ToastConfigTypes, type ToastTypes, Toasts, ToastsContext, Tooltip, type TooltipPosition, type TooltipTypes, type VerticalAlignTypes, Video, type VideoSource, type VideoTrack, type VideoTypes, buildConsent, useGdpr, useHeader, useModals, useSelectContext, useToasts };
|