@tactics/lokaal-loket 0.0.239 → 0.0.241
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +953 -1054
- package/build/index.d.cts +60 -58
- package/build/index.d.ts +60 -58
- package/build/index.js +672 -770
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -772,7 +772,8 @@ interface AutocompleteFocusEvent {
|
|
772
772
|
}
|
773
773
|
|
774
774
|
interface AutocompleteInputHandle<T> {
|
775
|
-
|
775
|
+
setInput: (value: string) => void;
|
776
|
+
setSelected: (value: T) => void;
|
776
777
|
focus: () => void;
|
777
778
|
blur: () => void;
|
778
779
|
}
|
@@ -809,7 +810,8 @@ interface LocationFocusEvent extends AutocompleteFocusEvent {
|
|
809
810
|
}
|
810
811
|
|
811
812
|
interface LocationHandle<T> {
|
812
|
-
|
813
|
+
setInput: (value: string) => void;
|
814
|
+
setSelected: (value: T) => void;
|
813
815
|
focus: () => void;
|
814
816
|
blur: () => void;
|
815
817
|
}
|
@@ -840,7 +842,15 @@ interface NameBlurEvent extends AutocompleteBlurEvent {
|
|
840
842
|
interface NameFocusEvent extends AutocompleteFocusEvent {
|
841
843
|
}
|
842
844
|
|
843
|
-
|
845
|
+
interface NameHandle<T> {
|
846
|
+
setInput: (value: string) => void;
|
847
|
+
setSelected: (value: T) => void;
|
848
|
+
focus: () => void;
|
849
|
+
blur: () => void;
|
850
|
+
}
|
851
|
+
declare const Name: <T>(props: NameI<T> & {
|
852
|
+
ref?: Ref<NameHandle<T>>;
|
853
|
+
}) => JSX.Element;
|
844
854
|
|
845
855
|
declare enum MaskType {
|
846
856
|
ONE = "ONE",
|
@@ -858,7 +868,7 @@ interface IMaskedImageBase {
|
|
858
868
|
|
859
869
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
860
870
|
|
861
|
-
interface RouteI<T,
|
871
|
+
interface RouteI<T, D> {
|
862
872
|
name: string;
|
863
873
|
debounceTime?: number;
|
864
874
|
originPlaceholder?: string;
|
@@ -891,7 +901,19 @@ interface RouteI<T, R, D> {
|
|
891
901
|
onDestinationFocus?: (e: AutocompleteFocusEvent) => void;
|
892
902
|
}
|
893
903
|
|
894
|
-
|
904
|
+
interface RouteHandle<T, D> {
|
905
|
+
setInput: (origin: string, destination: string) => void;
|
906
|
+
setInputOrigin: (origin: string) => void;
|
907
|
+
setInputDestination: (destination: string) => void;
|
908
|
+
setSelected: (origin: T, destination: D) => void;
|
909
|
+
setSelectedOrigin: (origin: T) => void;
|
910
|
+
setSelectedDestination: (destination: D) => void;
|
911
|
+
focus: () => void;
|
912
|
+
blur: () => void;
|
913
|
+
}
|
914
|
+
declare const Route: <T, D>(props: RouteI<T, D> & {
|
915
|
+
ref?: Ref<RouteHandle<T, D>>;
|
916
|
+
}) => JSX.Element;
|
895
917
|
|
896
918
|
interface IFilterTag {
|
897
919
|
label: string;
|
@@ -1467,50 +1489,6 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1467
1489
|
|
1468
1490
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1469
1491
|
|
1470
|
-
interface ISearchBase {
|
1471
|
-
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1472
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1473
|
-
}
|
1474
|
-
interface ISearch extends ISearchBase {
|
1475
|
-
mobileLabel: string;
|
1476
|
-
mobileSubline: string;
|
1477
|
-
}
|
1478
|
-
interface ISearchStep {
|
1479
|
-
label: string;
|
1480
|
-
subline: string;
|
1481
|
-
flyout: ReactElement;
|
1482
|
-
withFigure: ReactElement<IFigure>;
|
1483
|
-
}
|
1484
|
-
interface ISearchAutocomplete<T> {
|
1485
|
-
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1486
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1487
|
-
}
|
1488
|
-
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1489
|
-
withFigure: ReactElement<IFigure>;
|
1490
|
-
label: string;
|
1491
|
-
subline: string;
|
1492
|
-
}
|
1493
|
-
interface ISearchStepAutocomplete<T> {
|
1494
|
-
options: T[];
|
1495
|
-
optionToDisplay: (option: T) => ReactNode;
|
1496
|
-
optionToRawValue: (option: T) => string;
|
1497
|
-
optionToLabel: (option: T) => string;
|
1498
|
-
label: string;
|
1499
|
-
withFigure: ReactElement<IFigure>;
|
1500
|
-
defaultValue?: string;
|
1501
|
-
onChange?: (e: AutocompleteChangeEvent) => void;
|
1502
|
-
onFocus?: (e: AutocompleteFocusEvent) => void;
|
1503
|
-
onBlur?: (e: AutocompleteBlurEvent) => void;
|
1504
|
-
debounceTime: number;
|
1505
|
-
}
|
1506
|
-
|
1507
|
-
declare const SearchStep: (props: ISearchStep) => null;
|
1508
|
-
|
1509
|
-
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1510
|
-
|
1511
|
-
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1512
|
-
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1513
|
-
|
1514
1492
|
declare enum HeadingType {
|
1515
1493
|
PAGE = "PAGE",
|
1516
1494
|
FLYOUT = "FLYOUT",
|
@@ -1544,6 +1522,7 @@ interface ISearchFiltersCompact {
|
|
1544
1522
|
interface ISearchFiltersFull {
|
1545
1523
|
heading: string;
|
1546
1524
|
label?: string;
|
1525
|
+
description?: string;
|
1547
1526
|
icon: React__default.ReactElement<IIcon>;
|
1548
1527
|
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1549
1528
|
activeFilters: number;
|
@@ -1567,7 +1546,7 @@ interface ISearchFiltersCompactActionClear {
|
|
1567
1546
|
|
1568
1547
|
declare const SearchFiltersMobile: ({ icon, label, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
|
1569
1548
|
|
1570
|
-
declare const SearchFiltersFull: ({ label, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1549
|
+
declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1571
1550
|
|
1572
1551
|
declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
|
1573
1552
|
|
@@ -1583,20 +1562,35 @@ interface ISearchInputs {
|
|
1583
1562
|
}
|
1584
1563
|
interface ISearchInputsFull {
|
1585
1564
|
searchOn: "location" | "route" | "name";
|
1565
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1566
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1567
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1586
1568
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1569
|
+
onChanged: (active: "location" | "route" | "name") => void;
|
1587
1570
|
}
|
1588
1571
|
interface ISearchInputsCompact {
|
1589
1572
|
searchOn: "location" | "route" | "name";
|
1590
1573
|
searchOnLabel: string;
|
1591
1574
|
searchOnDescription: string;
|
1592
|
-
location: React__default.
|
1593
|
-
route: React__default.
|
1594
|
-
name: React__default.
|
1575
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1576
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1577
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1595
1578
|
close: React__default.ReactElement<CloseI>;
|
1596
1579
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1597
1580
|
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1598
1581
|
onChanged: (active: "location" | "route" | "name") => void;
|
1599
1582
|
}
|
1583
|
+
interface ISearchInputsElement {
|
1584
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1585
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1586
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1588
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1589
|
+
}
|
1590
|
+
interface ISearchInputsItem {
|
1591
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1592
|
+
input: React__default.ReactNode;
|
1593
|
+
}
|
1600
1594
|
interface ISearchInputsCompactActionSubmit {
|
1601
1595
|
label: string;
|
1602
1596
|
icon: React__default.ReactElement<IIcon>;
|
@@ -1607,18 +1601,25 @@ interface ISearchInputsCompactActionClear {
|
|
1607
1601
|
icon: React__default.ReactElement<IIcon>;
|
1608
1602
|
onClear: () => void;
|
1609
1603
|
}
|
1610
|
-
interface
|
1604
|
+
interface ISearchInputsLabel {
|
1611
1605
|
label: string;
|
1612
1606
|
description?: string;
|
1613
1607
|
figure: React__default.ReactElement<IFigure>;
|
1614
|
-
|
1608
|
+
}
|
1609
|
+
interface ISearchInputsLabelWithIcon {
|
1610
|
+
label: string;
|
1611
|
+
description?: string;
|
1612
|
+
icon: React__default.ReactElement<IIcon>;
|
1613
|
+
prominent: boolean;
|
1615
1614
|
}
|
1616
1615
|
|
1617
1616
|
declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, searchOn, searchOnLabel, searchOnDescription, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
|
1618
1617
|
|
1619
|
-
declare const SearchInputsFull: ({ submit, searchOn }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1618
|
+
declare const SearchInputsFull: ({ location, route, name, submit, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1619
|
+
|
1620
|
+
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1620
1621
|
|
1621
|
-
declare const
|
1622
|
+
declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
1622
1623
|
|
1623
1624
|
declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
|
1624
1625
|
|
@@ -1865,6 +1866,7 @@ declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_
|
|
1865
1866
|
interface ISharedSectionHeader {
|
1866
1867
|
top?: React__default.ReactElement;
|
1867
1868
|
bottom: React__default.ReactElement;
|
1869
|
+
filters?: React__default.ReactElement;
|
1868
1870
|
}
|
1869
1871
|
|
1870
1872
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -2262,4 +2264,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2262
2264
|
|
2263
2265
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2264
2266
|
|
2265
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, 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 IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type
|
2267
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, 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 IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsElement, type ISearchInputsLabel, 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 ISharedSectionHeader, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, 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, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileActionClear, SearchFiltersMobileActionSubmit, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsElement, SearchInputsFull, SearchInputsLabel, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -772,7 +772,8 @@ interface AutocompleteFocusEvent {
|
|
772
772
|
}
|
773
773
|
|
774
774
|
interface AutocompleteInputHandle<T> {
|
775
|
-
|
775
|
+
setInput: (value: string) => void;
|
776
|
+
setSelected: (value: T) => void;
|
776
777
|
focus: () => void;
|
777
778
|
blur: () => void;
|
778
779
|
}
|
@@ -809,7 +810,8 @@ interface LocationFocusEvent extends AutocompleteFocusEvent {
|
|
809
810
|
}
|
810
811
|
|
811
812
|
interface LocationHandle<T> {
|
812
|
-
|
813
|
+
setInput: (value: string) => void;
|
814
|
+
setSelected: (value: T) => void;
|
813
815
|
focus: () => void;
|
814
816
|
blur: () => void;
|
815
817
|
}
|
@@ -840,7 +842,15 @@ interface NameBlurEvent extends AutocompleteBlurEvent {
|
|
840
842
|
interface NameFocusEvent extends AutocompleteFocusEvent {
|
841
843
|
}
|
842
844
|
|
843
|
-
|
845
|
+
interface NameHandle<T> {
|
846
|
+
setInput: (value: string) => void;
|
847
|
+
setSelected: (value: T) => void;
|
848
|
+
focus: () => void;
|
849
|
+
blur: () => void;
|
850
|
+
}
|
851
|
+
declare const Name: <T>(props: NameI<T> & {
|
852
|
+
ref?: Ref<NameHandle<T>>;
|
853
|
+
}) => JSX.Element;
|
844
854
|
|
845
855
|
declare enum MaskType {
|
846
856
|
ONE = "ONE",
|
@@ -858,7 +868,7 @@ interface IMaskedImageBase {
|
|
858
868
|
|
859
869
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
860
870
|
|
861
|
-
interface RouteI<T,
|
871
|
+
interface RouteI<T, D> {
|
862
872
|
name: string;
|
863
873
|
debounceTime?: number;
|
864
874
|
originPlaceholder?: string;
|
@@ -891,7 +901,19 @@ interface RouteI<T, R, D> {
|
|
891
901
|
onDestinationFocus?: (e: AutocompleteFocusEvent) => void;
|
892
902
|
}
|
893
903
|
|
894
|
-
|
904
|
+
interface RouteHandle<T, D> {
|
905
|
+
setInput: (origin: string, destination: string) => void;
|
906
|
+
setInputOrigin: (origin: string) => void;
|
907
|
+
setInputDestination: (destination: string) => void;
|
908
|
+
setSelected: (origin: T, destination: D) => void;
|
909
|
+
setSelectedOrigin: (origin: T) => void;
|
910
|
+
setSelectedDestination: (destination: D) => void;
|
911
|
+
focus: () => void;
|
912
|
+
blur: () => void;
|
913
|
+
}
|
914
|
+
declare const Route: <T, D>(props: RouteI<T, D> & {
|
915
|
+
ref?: Ref<RouteHandle<T, D>>;
|
916
|
+
}) => JSX.Element;
|
895
917
|
|
896
918
|
interface IFilterTag {
|
897
919
|
label: string;
|
@@ -1467,50 +1489,6 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1467
1489
|
|
1468
1490
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1469
1491
|
|
1470
|
-
interface ISearchBase {
|
1471
|
-
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1472
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1473
|
-
}
|
1474
|
-
interface ISearch extends ISearchBase {
|
1475
|
-
mobileLabel: string;
|
1476
|
-
mobileSubline: string;
|
1477
|
-
}
|
1478
|
-
interface ISearchStep {
|
1479
|
-
label: string;
|
1480
|
-
subline: string;
|
1481
|
-
flyout: ReactElement;
|
1482
|
-
withFigure: ReactElement<IFigure>;
|
1483
|
-
}
|
1484
|
-
interface ISearchAutocomplete<T> {
|
1485
|
-
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1486
|
-
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1487
|
-
}
|
1488
|
-
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1489
|
-
withFigure: ReactElement<IFigure>;
|
1490
|
-
label: string;
|
1491
|
-
subline: string;
|
1492
|
-
}
|
1493
|
-
interface ISearchStepAutocomplete<T> {
|
1494
|
-
options: T[];
|
1495
|
-
optionToDisplay: (option: T) => ReactNode;
|
1496
|
-
optionToRawValue: (option: T) => string;
|
1497
|
-
optionToLabel: (option: T) => string;
|
1498
|
-
label: string;
|
1499
|
-
withFigure: ReactElement<IFigure>;
|
1500
|
-
defaultValue?: string;
|
1501
|
-
onChange?: (e: AutocompleteChangeEvent) => void;
|
1502
|
-
onFocus?: (e: AutocompleteFocusEvent) => void;
|
1503
|
-
onBlur?: (e: AutocompleteBlurEvent) => void;
|
1504
|
-
debounceTime: number;
|
1505
|
-
}
|
1506
|
-
|
1507
|
-
declare const SearchStep: (props: ISearchStep) => null;
|
1508
|
-
|
1509
|
-
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1510
|
-
|
1511
|
-
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1512
|
-
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1513
|
-
|
1514
1492
|
declare enum HeadingType {
|
1515
1493
|
PAGE = "PAGE",
|
1516
1494
|
FLYOUT = "FLYOUT",
|
@@ -1544,6 +1522,7 @@ interface ISearchFiltersCompact {
|
|
1544
1522
|
interface ISearchFiltersFull {
|
1545
1523
|
heading: string;
|
1546
1524
|
label?: string;
|
1525
|
+
description?: string;
|
1547
1526
|
icon: React__default.ReactElement<IIcon>;
|
1548
1527
|
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1549
1528
|
activeFilters: number;
|
@@ -1567,7 +1546,7 @@ interface ISearchFiltersCompactActionClear {
|
|
1567
1546
|
|
1568
1547
|
declare const SearchFiltersMobile: ({ icon, label, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
|
1569
1548
|
|
1570
|
-
declare const SearchFiltersFull: ({ label, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1549
|
+
declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1571
1550
|
|
1572
1551
|
declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
|
1573
1552
|
|
@@ -1583,20 +1562,35 @@ interface ISearchInputs {
|
|
1583
1562
|
}
|
1584
1563
|
interface ISearchInputsFull {
|
1585
1564
|
searchOn: "location" | "route" | "name";
|
1565
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1566
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1567
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1586
1568
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1569
|
+
onChanged: (active: "location" | "route" | "name") => void;
|
1587
1570
|
}
|
1588
1571
|
interface ISearchInputsCompact {
|
1589
1572
|
searchOn: "location" | "route" | "name";
|
1590
1573
|
searchOnLabel: string;
|
1591
1574
|
searchOnDescription: string;
|
1592
|
-
location: React__default.
|
1593
|
-
route: React__default.
|
1594
|
-
name: React__default.
|
1575
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1576
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1577
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1595
1578
|
close: React__default.ReactElement<CloseI>;
|
1596
1579
|
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1597
1580
|
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1598
1581
|
onChanged: (active: "location" | "route" | "name") => void;
|
1599
1582
|
}
|
1583
|
+
interface ISearchInputsElement {
|
1584
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1585
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1586
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1588
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1589
|
+
}
|
1590
|
+
interface ISearchInputsItem {
|
1591
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1592
|
+
input: React__default.ReactNode;
|
1593
|
+
}
|
1600
1594
|
interface ISearchInputsCompactActionSubmit {
|
1601
1595
|
label: string;
|
1602
1596
|
icon: React__default.ReactElement<IIcon>;
|
@@ -1607,18 +1601,25 @@ interface ISearchInputsCompactActionClear {
|
|
1607
1601
|
icon: React__default.ReactElement<IIcon>;
|
1608
1602
|
onClear: () => void;
|
1609
1603
|
}
|
1610
|
-
interface
|
1604
|
+
interface ISearchInputsLabel {
|
1611
1605
|
label: string;
|
1612
1606
|
description?: string;
|
1613
1607
|
figure: React__default.ReactElement<IFigure>;
|
1614
|
-
|
1608
|
+
}
|
1609
|
+
interface ISearchInputsLabelWithIcon {
|
1610
|
+
label: string;
|
1611
|
+
description?: string;
|
1612
|
+
icon: React__default.ReactElement<IIcon>;
|
1613
|
+
prominent: boolean;
|
1615
1614
|
}
|
1616
1615
|
|
1617
1616
|
declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, searchOn, searchOnLabel, searchOnDescription, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
|
1618
1617
|
|
1619
|
-
declare const SearchInputsFull: ({ submit, searchOn }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1618
|
+
declare const SearchInputsFull: ({ location, route, name, submit, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1619
|
+
|
1620
|
+
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1620
1621
|
|
1621
|
-
declare const
|
1622
|
+
declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
1622
1623
|
|
1623
1624
|
declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
|
1624
1625
|
|
@@ -1865,6 +1866,7 @@ declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_
|
|
1865
1866
|
interface ISharedSectionHeader {
|
1866
1867
|
top?: React__default.ReactElement;
|
1867
1868
|
bottom: React__default.ReactElement;
|
1869
|
+
filters?: React__default.ReactElement;
|
1868
1870
|
}
|
1869
1871
|
|
1870
1872
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
@@ -2262,4 +2264,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2262
2264
|
|
2263
2265
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2264
2266
|
|
2265
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, 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 IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type
|
2267
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, 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, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, 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 ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, 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 IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsElement, type ISearchInputsLabel, 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 ISharedSectionHeader, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, 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, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileActionClear, SearchFiltersMobileActionSubmit, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsElement, SearchInputsFull, SearchInputsLabel, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|