@tactics/lokaal-loket 0.0.120 → 0.0.122

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1,8 +1,9 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
3
- import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant, ColorVariantKey, ColorKey } from '@tactics/tacky/contract';
3
+ import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
4
4
  export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
5
5
  import { Feature as Feature$1, Point, FeatureCollection, LineString } from 'geojson';
6
+ import { AsyncResult } from '@tactics/js-monad';
6
7
  import { ThemeMode } from '@tactics/tacky';
7
8
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
8
9
 
@@ -348,12 +349,23 @@ interface IPlainText {
348
349
  textDecoration?: TextDecoration;
349
350
  }
350
351
 
352
+ declare enum InformationVariant {
353
+ DEFAULT = "DEFAULT",
354
+ TOOLTIP = "TOOLTIP"
355
+ }
356
+ declare enum InformationBackground {
357
+ DEFAULT = "DEFAULT",
358
+ LIGHT = "LIGHT"
359
+ }
360
+
351
361
  interface IInformation {
352
362
  text: React$1.ReactElement<IPlainText>;
353
363
  frame?: React$1.ReactElement<IFrame>;
364
+ variant?: InformationVariant;
365
+ background?: InformationBackground;
354
366
  }
355
367
 
356
- declare const Information: ({ text, frame }: IInformation) => react_jsx_runtime.JSX.Element;
368
+ declare const Information: ({ text, frame, variant, background, }: IInformation) => react_jsx_runtime.JSX.Element;
357
369
 
358
370
  declare enum InputContext {
359
371
  DISABLED = "DISABLED",
@@ -1475,12 +1487,11 @@ interface IWave {
1475
1487
  }
1476
1488
 
1477
1489
  interface ISurface extends PropsWithChildren {
1478
- tint?: ColorVariantKey;
1479
- color?: ColorKey;
1490
+ background: string;
1480
1491
  withWave?: React$1.ReactElement<IWave>;
1481
1492
  }
1482
1493
 
1483
- declare const Surface: ({ children, color, tint, withWave, }: ISurface) => react_jsx_runtime.JSX.Element;
1494
+ declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
1484
1495
 
1485
1496
  declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
1486
1497
 
@@ -1577,6 +1588,28 @@ interface GoogleProcessingProviderProps extends PropsWithChildren {
1577
1588
  }
1578
1589
  declare const GoogleProcessingProvider: ({ children, apiKey, }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
1579
1590
 
1591
+ interface GooglePlacesServiceContextType {
1592
+ placesLibrary: AsyncResult<google.maps.PlacesLibrary>;
1593
+ }
1594
+ declare const GooglePlacesServiceContext: React$1.Context<GooglePlacesServiceContextType>;
1595
+ interface GooglePlacesServiceProviderProps extends PropsWithChildren {
1596
+ }
1597
+ declare const GooglePlacesServiceProvider: ({ children, }: GooglePlacesServiceProviderProps) => react_jsx_runtime.JSX.Element;
1598
+
1599
+ interface GoogleRoutesServiceContextType {
1600
+ routesLibrary: AsyncResult<google.maps.RoutesLibrary>;
1601
+ }
1602
+ declare const GoogleRoutesServiceContext: React$1.Context<GoogleRoutesServiceContextType>;
1603
+ interface GoogleRoutesServiceProviderProps extends PropsWithChildren {
1604
+ }
1605
+ declare const GoogleRoutesServiceProvider: ({ children, }: GoogleRoutesServiceProviderProps) => react_jsx_runtime.JSX.Element;
1606
+
1607
+ declare const useIsGoogleProcessing: () => boolean;
1608
+
1609
+ declare const useGooglePlaces: () => AsyncResult<google.maps.PlacesLibrary>;
1610
+
1611
+ declare const useGoogleRoutes: () => AsyncResult<google.maps.RoutesLibrary>;
1612
+
1580
1613
  declare const ThemeModeContext: React$1.Context<{
1581
1614
  themeMode: ThemeMode;
1582
1615
  setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
@@ -1638,4 +1671,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1638
1671
 
1639
1672
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1640
1673
 
1641
- 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, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleProcessingProvider, type GoogleProcessingProviderProps, 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 IDestination, type IDetails, type IDetailsSectionHeader, type IDirectionBasedMapBase, 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 ILocationBasedMap, 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 IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, 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 ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, 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, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1674
+ 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, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GooglePlacesServiceContext, GooglePlacesServiceProvider, type GooglePlacesServiceProviderProps, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesServiceContext, GoogleRoutesServiceProvider, type GoogleRoutesServiceProviderProps, 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 IDestination, type IDetails, type IDetailsSectionHeader, type IDirectionBasedMapBase, 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 ILocationBasedMap, 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 IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, 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 ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, 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, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGooglePlaces, useGoogleRoutes, useIsGoogleProcessing, useIsProcessing };
package/build/index.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
3
- import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant, ColorVariantKey, ColorKey } from '@tactics/tacky/contract';
3
+ import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
4
4
  export { Color, ColorVariant, Radius, Spacing, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
5
5
  import { Feature as Feature$1, Point, FeatureCollection, LineString } from 'geojson';
6
+ import { AsyncResult } from '@tactics/js-monad';
6
7
  import { ThemeMode } from '@tactics/tacky';
7
8
  export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
8
9
 
@@ -348,12 +349,23 @@ interface IPlainText {
348
349
  textDecoration?: TextDecoration;
349
350
  }
350
351
 
352
+ declare enum InformationVariant {
353
+ DEFAULT = "DEFAULT",
354
+ TOOLTIP = "TOOLTIP"
355
+ }
356
+ declare enum InformationBackground {
357
+ DEFAULT = "DEFAULT",
358
+ LIGHT = "LIGHT"
359
+ }
360
+
351
361
  interface IInformation {
352
362
  text: React$1.ReactElement<IPlainText>;
353
363
  frame?: React$1.ReactElement<IFrame>;
364
+ variant?: InformationVariant;
365
+ background?: InformationBackground;
354
366
  }
355
367
 
356
- declare const Information: ({ text, frame }: IInformation) => react_jsx_runtime.JSX.Element;
368
+ declare const Information: ({ text, frame, variant, background, }: IInformation) => react_jsx_runtime.JSX.Element;
357
369
 
358
370
  declare enum InputContext {
359
371
  DISABLED = "DISABLED",
@@ -1475,12 +1487,11 @@ interface IWave {
1475
1487
  }
1476
1488
 
1477
1489
  interface ISurface extends PropsWithChildren {
1478
- tint?: ColorVariantKey;
1479
- color?: ColorKey;
1490
+ background: string;
1480
1491
  withWave?: React$1.ReactElement<IWave>;
1481
1492
  }
1482
1493
 
1483
- declare const Surface: ({ children, color, tint, withWave, }: ISurface) => react_jsx_runtime.JSX.Element;
1494
+ declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
1484
1495
 
1485
1496
  declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
1486
1497
 
@@ -1577,6 +1588,28 @@ interface GoogleProcessingProviderProps extends PropsWithChildren {
1577
1588
  }
1578
1589
  declare const GoogleProcessingProvider: ({ children, apiKey, }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
1579
1590
 
1591
+ interface GooglePlacesServiceContextType {
1592
+ placesLibrary: AsyncResult<google.maps.PlacesLibrary>;
1593
+ }
1594
+ declare const GooglePlacesServiceContext: React$1.Context<GooglePlacesServiceContextType>;
1595
+ interface GooglePlacesServiceProviderProps extends PropsWithChildren {
1596
+ }
1597
+ declare const GooglePlacesServiceProvider: ({ children, }: GooglePlacesServiceProviderProps) => react_jsx_runtime.JSX.Element;
1598
+
1599
+ interface GoogleRoutesServiceContextType {
1600
+ routesLibrary: AsyncResult<google.maps.RoutesLibrary>;
1601
+ }
1602
+ declare const GoogleRoutesServiceContext: React$1.Context<GoogleRoutesServiceContextType>;
1603
+ interface GoogleRoutesServiceProviderProps extends PropsWithChildren {
1604
+ }
1605
+ declare const GoogleRoutesServiceProvider: ({ children, }: GoogleRoutesServiceProviderProps) => react_jsx_runtime.JSX.Element;
1606
+
1607
+ declare const useIsGoogleProcessing: () => boolean;
1608
+
1609
+ declare const useGooglePlaces: () => AsyncResult<google.maps.PlacesLibrary>;
1610
+
1611
+ declare const useGoogleRoutes: () => AsyncResult<google.maps.RoutesLibrary>;
1612
+
1580
1613
  declare const ThemeModeContext: React$1.Context<{
1581
1614
  themeMode: ThemeMode;
1582
1615
  setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
@@ -1638,4 +1671,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
1638
1671
 
1639
1672
  declare const LocationExample: () => react_jsx_runtime.JSX.Element;
1640
1673
 
1641
- 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, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GoogleProcessingProvider, type GoogleProcessingProviderProps, 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 IDestination, type IDetails, type IDetailsSectionHeader, type IDirectionBasedMapBase, 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 ILocationBasedMap, 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 IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, 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 ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, 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, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useIsProcessing };
1674
+ 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, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsSectionHeader, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Frame, FramePadding, GooglePlacesServiceContext, GooglePlacesServiceProvider, type GooglePlacesServiceProviderProps, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesServiceContext, GoogleRoutesServiceProvider, type GoogleRoutesServiceProviderProps, 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 IDestination, type IDetails, type IDetailsSectionHeader, type IDirectionBasedMapBase, 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 ILocationBasedMap, 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 IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, 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 ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, 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, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGooglePlaces, useGoogleRoutes, useIsGoogleProcessing, useIsProcessing };