@tactics/lokaal-loket 0.0.101 → 0.0.102

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -5,65 +5,6 @@ export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, Typograph
5
5
  import { ThemeMode } from '@tactics/tacky';
6
6
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, StyleProviderRouter, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
7
7
 
8
- interface IFlip {
9
- onClick?: () => void;
10
- label: string;
11
- }
12
-
13
- declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
14
-
15
- declare enum BadgeType {
16
- DAYCARE = "DAYCARE",
17
- CHILDMINDER = "CHILDMINDER",
18
- COOPERATIVE = "COOPERATIVE"
19
- }
20
-
21
- interface IBadge {
22
- type: BadgeType;
23
- screenReaderText: string;
24
- }
25
-
26
- declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
27
-
28
- declare enum LogoSize {
29
- SMALL = "SMALL",
30
- MEDIUM = "MEDIUM"
31
- }
32
-
33
- interface ILogoSrc {
34
- srcset: string;
35
- src: string;
36
- }
37
- interface ILogoBase {
38
- ariaLabel: string;
39
- alt: string;
40
- size: LogoSize;
41
- children?: React$1.ReactNode | React$1.ReactNode[];
42
- }
43
- interface ILogoLoad extends ILogoBase {
44
- srcset?: ILogoSrc;
45
- }
46
- interface ILogo extends ILogoLoad {
47
- }
48
-
49
- interface IBrand {
50
- ariaLabel: string;
51
- logo: React$1.ReactElement<ILogo>;
52
- name: string;
53
- }
54
-
55
- declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
56
-
57
- declare enum LinkContext {
58
- STANDARD = "STANDARD",
59
- UI = "UI",
60
- BOLD = "BOLD"
61
- }
62
- declare enum Position {
63
- BEFORE = "BEFORE",
64
- AFTER = "AFTER"
65
- }
66
-
67
8
  declare enum IconContext {
68
9
  STANDARD = "STANDARD",
69
10
  SUPPORTING = "SUPPORTING",
@@ -129,6 +70,72 @@ interface IIcon extends IIconLoad {
129
70
  context?: IconContext;
130
71
  }
131
72
 
73
+ interface ILabeledIcon {
74
+ withIconBefore: React$1.ReactElement<IIcon>;
75
+ label: string;
76
+ }
77
+
78
+ declare const LabeledIcon: ({ label, withIconBefore }: ILabeledIcon) => react_jsx_runtime.JSX.Element;
79
+
80
+ interface IFlip {
81
+ onClick?: () => void;
82
+ label: string;
83
+ }
84
+
85
+ declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
86
+
87
+ declare enum BadgeType {
88
+ DAYCARE = "DAYCARE",
89
+ CHILDMINDER = "CHILDMINDER",
90
+ COOPERATIVE = "COOPERATIVE"
91
+ }
92
+
93
+ interface IBadge {
94
+ type: BadgeType;
95
+ screenReaderText: string;
96
+ }
97
+
98
+ declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare enum LogoSize {
101
+ SMALL = "SMALL",
102
+ MEDIUM = "MEDIUM"
103
+ }
104
+
105
+ interface ILogoSrc {
106
+ srcset: string;
107
+ src: string;
108
+ }
109
+ interface ILogoBase {
110
+ ariaLabel: string;
111
+ alt: string;
112
+ size: LogoSize;
113
+ children?: React$1.ReactNode | React$1.ReactNode[];
114
+ }
115
+ interface ILogoLoad extends ILogoBase {
116
+ srcset?: ILogoSrc;
117
+ }
118
+ interface ILogo extends ILogoLoad {
119
+ }
120
+
121
+ interface IBrand {
122
+ ariaLabel: string;
123
+ logo: React$1.ReactElement<ILogo>;
124
+ name: string;
125
+ }
126
+
127
+ declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
128
+
129
+ declare enum LinkContext {
130
+ STANDARD = "STANDARD",
131
+ UI = "UI",
132
+ BOLD = "BOLD"
133
+ }
134
+ declare enum Position {
135
+ BEFORE = "BEFORE",
136
+ AFTER = "AFTER"
137
+ }
138
+
132
139
  interface ILink {
133
140
  id: string;
134
141
  title: string;
@@ -995,6 +1002,29 @@ interface IInstruction {
995
1002
 
996
1003
  declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
997
1004
 
1005
+ interface ICta {
1006
+ label: string;
1007
+ action: React$1.ReactElement<IButton>;
1008
+ }
1009
+
1010
+ declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
1011
+
1012
+ interface IFooterNavigation extends IFooterNavigationBase {
1013
+ }
1014
+ interface IFooterNavigationBase {
1015
+ children?: React$1.ReactNode;
1016
+ }
1017
+
1018
+ declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
1019
+
1020
+ interface IBottomNavigation extends IBottomNavigationBase {
1021
+ }
1022
+ interface IBottomNavigationBase {
1023
+ children?: React.ReactNode;
1024
+ }
1025
+
1026
+ declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
1027
+
998
1028
  interface IHeaderMobile {
999
1029
  profileNavigation: React$1.ReactNode;
1000
1030
  compactNavigation: React$1.ReactNode;
@@ -1122,11 +1152,6 @@ interface ILabel {
1122
1152
  label: string;
1123
1153
  }
1124
1154
 
1125
- interface ILabeledIcon {
1126
- withIconBefore: React$1.ReactElement<IIcon>;
1127
- label: string;
1128
- }
1129
-
1130
1155
  interface ICard {
1131
1156
  swipe?: React$1.ReactNode;
1132
1157
  badge: React$1.ReactElement<IBadge>;
@@ -1530,4 +1555,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1530
1555
 
1531
1556
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1532
1557
 
1533
- export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1558
+ export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabeledIcon, type ILink, type IList, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
package/build/index.d.ts CHANGED
@@ -5,65 +5,6 @@ export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, Typograph
5
5
  import { ThemeMode } from '@tactics/tacky';
6
6
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, StyleProviderRouter, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
7
7
 
8
- interface IFlip {
9
- onClick?: () => void;
10
- label: string;
11
- }
12
-
13
- declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
14
-
15
- declare enum BadgeType {
16
- DAYCARE = "DAYCARE",
17
- CHILDMINDER = "CHILDMINDER",
18
- COOPERATIVE = "COOPERATIVE"
19
- }
20
-
21
- interface IBadge {
22
- type: BadgeType;
23
- screenReaderText: string;
24
- }
25
-
26
- declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
27
-
28
- declare enum LogoSize {
29
- SMALL = "SMALL",
30
- MEDIUM = "MEDIUM"
31
- }
32
-
33
- interface ILogoSrc {
34
- srcset: string;
35
- src: string;
36
- }
37
- interface ILogoBase {
38
- ariaLabel: string;
39
- alt: string;
40
- size: LogoSize;
41
- children?: React$1.ReactNode | React$1.ReactNode[];
42
- }
43
- interface ILogoLoad extends ILogoBase {
44
- srcset?: ILogoSrc;
45
- }
46
- interface ILogo extends ILogoLoad {
47
- }
48
-
49
- interface IBrand {
50
- ariaLabel: string;
51
- logo: React$1.ReactElement<ILogo>;
52
- name: string;
53
- }
54
-
55
- declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
56
-
57
- declare enum LinkContext {
58
- STANDARD = "STANDARD",
59
- UI = "UI",
60
- BOLD = "BOLD"
61
- }
62
- declare enum Position {
63
- BEFORE = "BEFORE",
64
- AFTER = "AFTER"
65
- }
66
-
67
8
  declare enum IconContext {
68
9
  STANDARD = "STANDARD",
69
10
  SUPPORTING = "SUPPORTING",
@@ -129,6 +70,72 @@ interface IIcon extends IIconLoad {
129
70
  context?: IconContext;
130
71
  }
131
72
 
73
+ interface ILabeledIcon {
74
+ withIconBefore: React$1.ReactElement<IIcon>;
75
+ label: string;
76
+ }
77
+
78
+ declare const LabeledIcon: ({ label, withIconBefore }: ILabeledIcon) => react_jsx_runtime.JSX.Element;
79
+
80
+ interface IFlip {
81
+ onClick?: () => void;
82
+ label: string;
83
+ }
84
+
85
+ declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
86
+
87
+ declare enum BadgeType {
88
+ DAYCARE = "DAYCARE",
89
+ CHILDMINDER = "CHILDMINDER",
90
+ COOPERATIVE = "COOPERATIVE"
91
+ }
92
+
93
+ interface IBadge {
94
+ type: BadgeType;
95
+ screenReaderText: string;
96
+ }
97
+
98
+ declare const Badge: ({ type, screenReaderText }: IBadge) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare enum LogoSize {
101
+ SMALL = "SMALL",
102
+ MEDIUM = "MEDIUM"
103
+ }
104
+
105
+ interface ILogoSrc {
106
+ srcset: string;
107
+ src: string;
108
+ }
109
+ interface ILogoBase {
110
+ ariaLabel: string;
111
+ alt: string;
112
+ size: LogoSize;
113
+ children?: React$1.ReactNode | React$1.ReactNode[];
114
+ }
115
+ interface ILogoLoad extends ILogoBase {
116
+ srcset?: ILogoSrc;
117
+ }
118
+ interface ILogo extends ILogoLoad {
119
+ }
120
+
121
+ interface IBrand {
122
+ ariaLabel: string;
123
+ logo: React$1.ReactElement<ILogo>;
124
+ name: string;
125
+ }
126
+
127
+ declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
128
+
129
+ declare enum LinkContext {
130
+ STANDARD = "STANDARD",
131
+ UI = "UI",
132
+ BOLD = "BOLD"
133
+ }
134
+ declare enum Position {
135
+ BEFORE = "BEFORE",
136
+ AFTER = "AFTER"
137
+ }
138
+
132
139
  interface ILink {
133
140
  id: string;
134
141
  title: string;
@@ -995,6 +1002,29 @@ interface IInstruction {
995
1002
 
996
1003
  declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
997
1004
 
1005
+ interface ICta {
1006
+ label: string;
1007
+ action: React$1.ReactElement<IButton>;
1008
+ }
1009
+
1010
+ declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
1011
+
1012
+ interface IFooterNavigation extends IFooterNavigationBase {
1013
+ }
1014
+ interface IFooterNavigationBase {
1015
+ children?: React$1.ReactNode;
1016
+ }
1017
+
1018
+ declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
1019
+
1020
+ interface IBottomNavigation extends IBottomNavigationBase {
1021
+ }
1022
+ interface IBottomNavigationBase {
1023
+ children?: React.ReactNode;
1024
+ }
1025
+
1026
+ declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
1027
+
998
1028
  interface IHeaderMobile {
999
1029
  profileNavigation: React$1.ReactNode;
1000
1030
  compactNavigation: React$1.ReactNode;
@@ -1122,11 +1152,6 @@ interface ILabel {
1122
1152
  label: string;
1123
1153
  }
1124
1154
 
1125
- interface ILabeledIcon {
1126
- withIconBefore: React$1.ReactElement<IIcon>;
1127
- label: string;
1128
- }
1129
-
1130
1155
  interface ICard {
1131
1156
  swipe?: React$1.ReactNode;
1132
1157
  badge: React$1.ReactElement<IBadge>;
@@ -1530,4 +1555,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1530
1555
 
1531
1556
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1532
1557
 
1533
- export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILink, type IList, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1558
+ export { Accordeon, AccordeonContext, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureContext, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, GoogleAPIProvider, type GoogleAPIProviderProps, GoogleApiRoutesDirectionRendererContext, GoogleApiRoutesDirectionRendererProvider, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type ICta, type IDetails, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFrame, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabeledIcon, type ILink, type IList, type ILogo, type IMap, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRouteLocation, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITerm, type ITerminal, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };