@tactics/lokaal-loket 0.0.339 → 0.0.341
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +781 -715
- package/build/index.d.cts +23 -9
- package/build/index.d.ts +23 -9
- package/build/index.js +731 -665
- package/package.json +12 -12
package/build/index.d.cts
CHANGED
@@ -421,7 +421,7 @@ declare enum Position {
|
|
421
421
|
}
|
422
422
|
|
423
423
|
interface ILink {
|
424
|
-
id
|
424
|
+
id?: string;
|
425
425
|
title: string;
|
426
426
|
href: string;
|
427
427
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -849,6 +849,7 @@ interface AutocompleteI<T> {
|
|
849
849
|
name: string;
|
850
850
|
debounceTime: number;
|
851
851
|
readyForInput: boolean;
|
852
|
+
loadingPlaceholder?: string;
|
852
853
|
placeholder?: string;
|
853
854
|
ariaLabel?: string;
|
854
855
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -868,6 +869,7 @@ interface AutocompleteI<T> {
|
|
868
869
|
interface AutocompleteInputI<T> {
|
869
870
|
name: string;
|
870
871
|
readyForInput: boolean;
|
872
|
+
loadingPlaceholder?: string;
|
871
873
|
debounceTime: number;
|
872
874
|
placeholder?: string;
|
873
875
|
ariaLabel?: string;
|
@@ -950,6 +952,7 @@ interface LocationI<T> {
|
|
950
952
|
onBlur?: (e: LocationBlurEvent) => void;
|
951
953
|
onFocus?: (e: LocationFocusEvent) => void;
|
952
954
|
readyForInput: boolean;
|
955
|
+
loadingPlaceholder?: string;
|
953
956
|
}
|
954
957
|
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
955
958
|
}
|
@@ -969,6 +972,7 @@ declare const Location: <T>(props: LocationI<T> & {
|
|
969
972
|
interface NameI<T> {
|
970
973
|
name: string;
|
971
974
|
readyForInput: boolean;
|
975
|
+
loadingPlaceholder?: string;
|
972
976
|
placeholder?: string;
|
973
977
|
ariaLabel?: string;
|
974
978
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -1688,6 +1692,14 @@ interface IStatBlock {
|
|
1688
1692
|
|
1689
1693
|
declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
|
1690
1694
|
|
1695
|
+
interface IButtonGroup {
|
1696
|
+
direction?: "row" | "column";
|
1697
|
+
alignment?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
1698
|
+
children: React__default.ReactNode;
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
declare const ButtonGroup: ({ direction, alignment, children }: IButtonGroup) => react_jsx_runtime.JSX.Element;
|
1702
|
+
|
1691
1703
|
interface IMinimalHeader {
|
1692
1704
|
branding: React__default.ReactElement<ILogo>;
|
1693
1705
|
siteMenu?: React__default.ReactNode;
|
@@ -1783,9 +1795,11 @@ interface ISearchFilters extends ISearchFiltersShared {
|
|
1783
1795
|
}
|
1784
1796
|
interface ISearchFiltersOverlay {
|
1785
1797
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1798
|
+
close?: React__default.ReactElement<IButton>;
|
1786
1799
|
}
|
1787
1800
|
interface ISearchFiltersModal {
|
1788
|
-
heading:
|
1801
|
+
heading: React__default.ReactNode;
|
1802
|
+
close?: React__default.ReactElement<IButton>;
|
1789
1803
|
}
|
1790
1804
|
interface ISearchFiltersLabel {
|
1791
1805
|
label?: string;
|
@@ -1808,13 +1822,14 @@ declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
|
|
1808
1822
|
declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay }: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1809
1823
|
|
1810
1824
|
type SearchInputTypes = "location" | "route" | "name";
|
1825
|
+
type SearchInputView = "overlay" | "form";
|
1811
1826
|
interface ISearchInputsShared {
|
1812
1827
|
location: React__default.ReactElement<ISearchInputsElement>;
|
1813
1828
|
route: React__default.ReactElement<ISearchInputsElement>;
|
1814
1829
|
name: React__default.ReactElement<ISearchInputsElement>;
|
1815
1830
|
activeInput: SearchInputTypes;
|
1816
|
-
onChanged?: (active: SearchInputTypes) => void;
|
1817
|
-
onInputOpen?: (active: SearchInputTypes) => void;
|
1831
|
+
onChanged?: (active: SearchInputTypes, view: SearchInputView) => void;
|
1832
|
+
onInputOpen?: (active: SearchInputTypes, view: SearchInputView) => void;
|
1818
1833
|
submit: React__default.ReactElement<IButton>;
|
1819
1834
|
}
|
1820
1835
|
interface ISearchInputs extends ISearchInputsShared {
|
@@ -1823,6 +1838,7 @@ interface ISearchInputs extends ISearchInputsShared {
|
|
1823
1838
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1824
1839
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1825
1840
|
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1841
|
+
close?: React__default.ReactElement<IButton>;
|
1826
1842
|
}
|
1827
1843
|
interface ISearchInputsOverlayContentActions {
|
1828
1844
|
clear?: React__default.ReactElement<IButton>;
|
@@ -1988,7 +2004,7 @@ interface IDetailsSectionGeneral {
|
|
1988
2004
|
}
|
1989
2005
|
interface IContactData {
|
1990
2006
|
title: string;
|
1991
|
-
data: React__default.ReactElement<ILabeledIcon>[];
|
2007
|
+
data: React__default.ReactElement<ILabeledIcon | ILink>[];
|
1992
2008
|
}
|
1993
2009
|
|
1994
2010
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
@@ -2326,7 +2342,6 @@ declare enum ModalSize {
|
|
2326
2342
|
|
2327
2343
|
interface IModal {
|
2328
2344
|
children?: React__default.ReactNode;
|
2329
|
-
title?: string;
|
2330
2345
|
size: ModalSize;
|
2331
2346
|
}
|
2332
2347
|
|
@@ -2502,9 +2517,8 @@ declare const ModalContext: React__default.Context<ModalContextType>;
|
|
2502
2517
|
interface IModalProvider extends PropsWithChildren {
|
2503
2518
|
modal?: React__default.ReactNode;
|
2504
2519
|
size?: ModalSize;
|
2505
|
-
title?: string;
|
2506
2520
|
}
|
2507
|
-
declare const ModalProvider: ({ children, modal, size
|
2521
|
+
declare const ModalProvider: ({ children, modal, size }: IModalProvider) => react_jsx_runtime.JSX.Element;
|
2508
2522
|
|
2509
2523
|
interface OverlayContextType {
|
2510
2524
|
isOpen: boolean;
|
@@ -2645,4 +2659,4 @@ declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
|
2645
2659
|
|
2646
2660
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2647
2661
|
|
2648
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, AppHeader, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
2662
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, AppHeader, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -421,7 +421,7 @@ declare enum Position {
|
|
421
421
|
}
|
422
422
|
|
423
423
|
interface ILink {
|
424
|
-
id
|
424
|
+
id?: string;
|
425
425
|
title: string;
|
426
426
|
href: string;
|
427
427
|
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
@@ -849,6 +849,7 @@ interface AutocompleteI<T> {
|
|
849
849
|
name: string;
|
850
850
|
debounceTime: number;
|
851
851
|
readyForInput: boolean;
|
852
|
+
loadingPlaceholder?: string;
|
852
853
|
placeholder?: string;
|
853
854
|
ariaLabel?: string;
|
854
855
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -868,6 +869,7 @@ interface AutocompleteI<T> {
|
|
868
869
|
interface AutocompleteInputI<T> {
|
869
870
|
name: string;
|
870
871
|
readyForInput: boolean;
|
872
|
+
loadingPlaceholder?: string;
|
871
873
|
debounceTime: number;
|
872
874
|
placeholder?: string;
|
873
875
|
ariaLabel?: string;
|
@@ -950,6 +952,7 @@ interface LocationI<T> {
|
|
950
952
|
onBlur?: (e: LocationBlurEvent) => void;
|
951
953
|
onFocus?: (e: LocationFocusEvent) => void;
|
952
954
|
readyForInput: boolean;
|
955
|
+
loadingPlaceholder?: string;
|
953
956
|
}
|
954
957
|
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
955
958
|
}
|
@@ -969,6 +972,7 @@ declare const Location: <T>(props: LocationI<T> & {
|
|
969
972
|
interface NameI<T> {
|
970
973
|
name: string;
|
971
974
|
readyForInput: boolean;
|
975
|
+
loadingPlaceholder?: string;
|
972
976
|
placeholder?: string;
|
973
977
|
ariaLabel?: string;
|
974
978
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
@@ -1688,6 +1692,14 @@ interface IStatBlock {
|
|
1688
1692
|
|
1689
1693
|
declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
|
1690
1694
|
|
1695
|
+
interface IButtonGroup {
|
1696
|
+
direction?: "row" | "column";
|
1697
|
+
alignment?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
1698
|
+
children: React__default.ReactNode;
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
declare const ButtonGroup: ({ direction, alignment, children }: IButtonGroup) => react_jsx_runtime.JSX.Element;
|
1702
|
+
|
1691
1703
|
interface IMinimalHeader {
|
1692
1704
|
branding: React__default.ReactElement<ILogo>;
|
1693
1705
|
siteMenu?: React__default.ReactNode;
|
@@ -1783,9 +1795,11 @@ interface ISearchFilters extends ISearchFiltersShared {
|
|
1783
1795
|
}
|
1784
1796
|
interface ISearchFiltersOverlay {
|
1785
1797
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1798
|
+
close?: React__default.ReactElement<IButton>;
|
1786
1799
|
}
|
1787
1800
|
interface ISearchFiltersModal {
|
1788
|
-
heading:
|
1801
|
+
heading: React__default.ReactNode;
|
1802
|
+
close?: React__default.ReactElement<IButton>;
|
1789
1803
|
}
|
1790
1804
|
interface ISearchFiltersLabel {
|
1791
1805
|
label?: string;
|
@@ -1808,13 +1822,14 @@ declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
|
|
1808
1822
|
declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay }: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1809
1823
|
|
1810
1824
|
type SearchInputTypes = "location" | "route" | "name";
|
1825
|
+
type SearchInputView = "overlay" | "form";
|
1811
1826
|
interface ISearchInputsShared {
|
1812
1827
|
location: React__default.ReactElement<ISearchInputsElement>;
|
1813
1828
|
route: React__default.ReactElement<ISearchInputsElement>;
|
1814
1829
|
name: React__default.ReactElement<ISearchInputsElement>;
|
1815
1830
|
activeInput: SearchInputTypes;
|
1816
|
-
onChanged?: (active: SearchInputTypes) => void;
|
1817
|
-
onInputOpen?: (active: SearchInputTypes) => void;
|
1831
|
+
onChanged?: (active: SearchInputTypes, view: SearchInputView) => void;
|
1832
|
+
onInputOpen?: (active: SearchInputTypes, view: SearchInputView) => void;
|
1818
1833
|
submit: React__default.ReactElement<IButton>;
|
1819
1834
|
}
|
1820
1835
|
interface ISearchInputs extends ISearchInputsShared {
|
@@ -1823,6 +1838,7 @@ interface ISearchInputs extends ISearchInputsShared {
|
|
1823
1838
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1824
1839
|
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1825
1840
|
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1841
|
+
close?: React__default.ReactElement<IButton>;
|
1826
1842
|
}
|
1827
1843
|
interface ISearchInputsOverlayContentActions {
|
1828
1844
|
clear?: React__default.ReactElement<IButton>;
|
@@ -1988,7 +2004,7 @@ interface IDetailsSectionGeneral {
|
|
1988
2004
|
}
|
1989
2005
|
interface IContactData {
|
1990
2006
|
title: string;
|
1991
|
-
data: React__default.ReactElement<ILabeledIcon>[];
|
2007
|
+
data: React__default.ReactElement<ILabeledIcon | ILink>[];
|
1992
2008
|
}
|
1993
2009
|
|
1994
2010
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
@@ -2326,7 +2342,6 @@ declare enum ModalSize {
|
|
2326
2342
|
|
2327
2343
|
interface IModal {
|
2328
2344
|
children?: React__default.ReactNode;
|
2329
|
-
title?: string;
|
2330
2345
|
size: ModalSize;
|
2331
2346
|
}
|
2332
2347
|
|
@@ -2502,9 +2517,8 @@ declare const ModalContext: React__default.Context<ModalContextType>;
|
|
2502
2517
|
interface IModalProvider extends PropsWithChildren {
|
2503
2518
|
modal?: React__default.ReactNode;
|
2504
2519
|
size?: ModalSize;
|
2505
|
-
title?: string;
|
2506
2520
|
}
|
2507
|
-
declare const ModalProvider: ({ children, modal, size
|
2521
|
+
declare const ModalProvider: ({ children, modal, size }: IModalProvider) => react_jsx_runtime.JSX.Element;
|
2508
2522
|
|
2509
2523
|
interface OverlayContextType {
|
2510
2524
|
isOpen: boolean;
|
@@ -2645,4 +2659,4 @@ declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
|
2645
2659
|
|
2646
2660
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2647
2661
|
|
2648
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, AppHeader, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
2662
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, AppHeader, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|