@tactics/lokaal-loket 0.0.452 → 0.0.454
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +864 -965
- package/build/index.d.cts +13 -36
- package/build/index.d.ts +13 -36
- package/build/index.js +814 -915
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -588,9 +588,10 @@ declare const Logo: ({ alt, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
|
588
588
|
|
589
589
|
interface INotification {
|
590
590
|
number?: number;
|
591
|
+
label?: string;
|
591
592
|
}
|
592
593
|
|
593
|
-
declare const Notification: ({ number }: INotification) => react_jsx_runtime.JSX.Element;
|
594
|
+
declare const Notification: ({ number, label }: INotification) => react_jsx_runtime.JSX.Element;
|
594
595
|
|
595
596
|
declare enum PickContext {
|
596
597
|
STANDARD = "STANDARD",
|
@@ -653,9 +654,10 @@ interface IRecord {
|
|
653
654
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
654
655
|
label: string;
|
655
656
|
value: string | React__default.ReactNode;
|
657
|
+
id?: string;
|
656
658
|
}
|
657
659
|
|
658
|
-
declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
660
|
+
declare const Record: ({ label, value, withIconBefore, id }: IRecord) => react_jsx_runtime.JSX.Element;
|
659
661
|
|
660
662
|
declare enum StatusContext {
|
661
663
|
SEND = "SEND",
|
@@ -667,13 +669,14 @@ declare enum StatusContext {
|
|
667
669
|
|
668
670
|
interface IStatusCompact {
|
669
671
|
context?: StatusContext;
|
672
|
+
label?: string;
|
670
673
|
}
|
671
674
|
interface IStatus {
|
672
675
|
context?: StatusContext;
|
673
676
|
label: string;
|
674
677
|
}
|
675
678
|
|
676
|
-
declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
679
|
+
declare const StatusCompact: ({ context, label }: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
677
680
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
678
681
|
|
679
682
|
interface ITerm {
|
@@ -708,28 +711,6 @@ interface IYesNo extends IYesNoBase {
|
|
708
711
|
|
709
712
|
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name, defaultChecked, legend, }: IYesNo) => react_jsx_runtime.JSX.Element;
|
710
713
|
|
711
|
-
declare enum BigChoiceContext {
|
712
|
-
STANDARD = "STANDARD",
|
713
|
-
DISABLED = "DISABLED",
|
714
|
-
ERROR = "ERROR"
|
715
|
-
}
|
716
|
-
|
717
|
-
interface IBigChoiceBase {
|
718
|
-
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
719
|
-
value: string;
|
720
|
-
ariaLabel?: string;
|
721
|
-
label: string;
|
722
|
-
name: string;
|
723
|
-
checked?: boolean;
|
724
|
-
defaultChecked?: boolean;
|
725
|
-
icon: React__default.ReactElement<IIcon | IFigure>;
|
726
|
-
}
|
727
|
-
interface IBigChoice extends IBigChoiceBase {
|
728
|
-
context?: BigChoiceContext;
|
729
|
-
}
|
730
|
-
|
731
|
-
declare const BigChoice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigChoice) => react_jsx_runtime.JSX.Element;
|
732
|
-
|
733
714
|
declare enum BigPickContext {
|
734
715
|
STANDARD = "STANDARD",
|
735
716
|
DISABLED = "DISABLED",
|
@@ -1784,8 +1765,6 @@ interface IFooter {
|
|
1784
1765
|
|
1785
1766
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1786
1767
|
|
1787
|
-
type ZoomLevels = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
1788
|
-
|
1789
1768
|
type TravelMode = "DRIVING" | "TRANSIT" | "WALKING" | "BICYCLING";
|
1790
1769
|
|
1791
1770
|
type MapPointType = "DAYCARE" | "CHILDMINDER";
|
@@ -1845,14 +1824,15 @@ interface IClusterOptions {
|
|
1845
1824
|
maxZoom: number;
|
1846
1825
|
}
|
1847
1826
|
declare class Cluster {
|
1827
|
+
readonly options: IClusterOptions;
|
1848
1828
|
readonly clusterer: Supercluster<Supercluster.AnyProps, Supercluster.AnyProps>;
|
1849
1829
|
constructor(clusterOptions: IClusterOptions);
|
1830
|
+
maxZoom(): number;
|
1850
1831
|
}
|
1851
1832
|
|
1852
1833
|
interface IStaticMap {
|
1853
1834
|
points: IMapPoints;
|
1854
1835
|
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1855
|
-
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1856
1836
|
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1857
1837
|
onClickAway?: () => void;
|
1858
1838
|
onAreaChange?: (center: IPosition, bounds: IBound, zoomLevel: number, event: string) => void;
|
@@ -1860,8 +1840,6 @@ interface IStaticMap {
|
|
1860
1840
|
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
|
1861
1841
|
mapBoundary?: number;
|
1862
1842
|
mapLoader: React__default.ReactElement;
|
1863
|
-
maxZoom: ZoomLevels;
|
1864
|
-
minZoom: ZoomLevels;
|
1865
1843
|
controls?: IMapControl[];
|
1866
1844
|
map: google.maps.Map;
|
1867
1845
|
debugMode?: boolean;
|
@@ -1889,17 +1867,14 @@ interface IRouteMap {
|
|
1889
1867
|
routes: Feature$1<LineString, IMapRouteProperties>[];
|
1890
1868
|
points: Feature$1<Point, IMapPointProperties>[];
|
1891
1869
|
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1892
|
-
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1893
1870
|
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1894
1871
|
onClickAway?: () => void;
|
1895
|
-
onTravelModeChange?: (travelMode: TravelMode) => void;
|
1896
|
-
onRouteChange?: (route: IMapRoute, travelMode: TravelMode) => void;
|
1872
|
+
onTravelModeChange?: (travelMode: TravelMode, zoomLevel: number) => void;
|
1873
|
+
onRouteChange?: (route: IMapRoute, travelMode: TravelMode, zoomLevel: number) => void;
|
1897
1874
|
onInit?: () => void;
|
1898
1875
|
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number, points: Feature$1<Point, IMapPointProperties>[]) => void;
|
1899
1876
|
mapBoundary?: number;
|
1900
1877
|
mapLoader: React__default.ReactElement;
|
1901
|
-
maxZoom: ZoomLevels;
|
1902
|
-
minZoom: ZoomLevels;
|
1903
1878
|
controls?: IMapControl[];
|
1904
1879
|
map: google.maps.Map;
|
1905
1880
|
geometry: google.maps.GeometryLibrary;
|
@@ -1943,6 +1918,8 @@ interface IMapLegendItem {
|
|
1943
1918
|
}
|
1944
1919
|
declare const MapLegendItem: (props: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
1945
1920
|
|
1921
|
+
type ZoomLevels = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
1922
|
+
|
1946
1923
|
declare const GoogleDistanceBetween: (point1: google.maps.LatLng, point2: google.maps.LatLng) => number;
|
1947
1924
|
|
1948
1925
|
declare const GoogleGetDirections: (props: {
|
@@ -3138,4 +3115,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3138
3115
|
|
3139
3116
|
declare const useHeader: () => number;
|
3140
3117
|
|
3141
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, 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, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, 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 IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, 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 IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, 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 ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, 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, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
3118
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, 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, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, 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 IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, 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 IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, 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 ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, 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, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -588,9 +588,10 @@ declare const Logo: ({ alt, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
|
588
588
|
|
589
589
|
interface INotification {
|
590
590
|
number?: number;
|
591
|
+
label?: string;
|
591
592
|
}
|
592
593
|
|
593
|
-
declare const Notification: ({ number }: INotification) => react_jsx_runtime.JSX.Element;
|
594
|
+
declare const Notification: ({ number, label }: INotification) => react_jsx_runtime.JSX.Element;
|
594
595
|
|
595
596
|
declare enum PickContext {
|
596
597
|
STANDARD = "STANDARD",
|
@@ -653,9 +654,10 @@ interface IRecord {
|
|
653
654
|
withIconBefore?: React__default.ReactElement<IIcon>;
|
654
655
|
label: string;
|
655
656
|
value: string | React__default.ReactNode;
|
657
|
+
id?: string;
|
656
658
|
}
|
657
659
|
|
658
|
-
declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
660
|
+
declare const Record: ({ label, value, withIconBefore, id }: IRecord) => react_jsx_runtime.JSX.Element;
|
659
661
|
|
660
662
|
declare enum StatusContext {
|
661
663
|
SEND = "SEND",
|
@@ -667,13 +669,14 @@ declare enum StatusContext {
|
|
667
669
|
|
668
670
|
interface IStatusCompact {
|
669
671
|
context?: StatusContext;
|
672
|
+
label?: string;
|
670
673
|
}
|
671
674
|
interface IStatus {
|
672
675
|
context?: StatusContext;
|
673
676
|
label: string;
|
674
677
|
}
|
675
678
|
|
676
|
-
declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
679
|
+
declare const StatusCompact: ({ context, label }: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
677
680
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
678
681
|
|
679
682
|
interface ITerm {
|
@@ -708,28 +711,6 @@ interface IYesNo extends IYesNoBase {
|
|
708
711
|
|
709
712
|
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name, defaultChecked, legend, }: IYesNo) => react_jsx_runtime.JSX.Element;
|
710
713
|
|
711
|
-
declare enum BigChoiceContext {
|
712
|
-
STANDARD = "STANDARD",
|
713
|
-
DISABLED = "DISABLED",
|
714
|
-
ERROR = "ERROR"
|
715
|
-
}
|
716
|
-
|
717
|
-
interface IBigChoiceBase {
|
718
|
-
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
719
|
-
value: string;
|
720
|
-
ariaLabel?: string;
|
721
|
-
label: string;
|
722
|
-
name: string;
|
723
|
-
checked?: boolean;
|
724
|
-
defaultChecked?: boolean;
|
725
|
-
icon: React__default.ReactElement<IIcon | IFigure>;
|
726
|
-
}
|
727
|
-
interface IBigChoice extends IBigChoiceBase {
|
728
|
-
context?: BigChoiceContext;
|
729
|
-
}
|
730
|
-
|
731
|
-
declare const BigChoice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigChoice) => react_jsx_runtime.JSX.Element;
|
732
|
-
|
733
714
|
declare enum BigPickContext {
|
734
715
|
STANDARD = "STANDARD",
|
735
716
|
DISABLED = "DISABLED",
|
@@ -1784,8 +1765,6 @@ interface IFooter {
|
|
1784
1765
|
|
1785
1766
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1786
1767
|
|
1787
|
-
type ZoomLevels = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
1788
|
-
|
1789
1768
|
type TravelMode = "DRIVING" | "TRANSIT" | "WALKING" | "BICYCLING";
|
1790
1769
|
|
1791
1770
|
type MapPointType = "DAYCARE" | "CHILDMINDER";
|
@@ -1845,14 +1824,15 @@ interface IClusterOptions {
|
|
1845
1824
|
maxZoom: number;
|
1846
1825
|
}
|
1847
1826
|
declare class Cluster {
|
1827
|
+
readonly options: IClusterOptions;
|
1848
1828
|
readonly clusterer: Supercluster<Supercluster.AnyProps, Supercluster.AnyProps>;
|
1849
1829
|
constructor(clusterOptions: IClusterOptions);
|
1830
|
+
maxZoom(): number;
|
1850
1831
|
}
|
1851
1832
|
|
1852
1833
|
interface IStaticMap {
|
1853
1834
|
points: IMapPoints;
|
1854
1835
|
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1855
|
-
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1856
1836
|
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1857
1837
|
onClickAway?: () => void;
|
1858
1838
|
onAreaChange?: (center: IPosition, bounds: IBound, zoomLevel: number, event: string) => void;
|
@@ -1860,8 +1840,6 @@ interface IStaticMap {
|
|
1860
1840
|
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
|
1861
1841
|
mapBoundary?: number;
|
1862
1842
|
mapLoader: React__default.ReactElement;
|
1863
|
-
maxZoom: ZoomLevels;
|
1864
|
-
minZoom: ZoomLevels;
|
1865
1843
|
controls?: IMapControl[];
|
1866
1844
|
map: google.maps.Map;
|
1867
1845
|
debugMode?: boolean;
|
@@ -1889,17 +1867,14 @@ interface IRouteMap {
|
|
1889
1867
|
routes: Feature$1<LineString, IMapRouteProperties>[];
|
1890
1868
|
points: Feature$1<Point, IMapPointProperties>[];
|
1891
1869
|
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1892
|
-
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1893
1870
|
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1894
1871
|
onClickAway?: () => void;
|
1895
|
-
onTravelModeChange?: (travelMode: TravelMode) => void;
|
1896
|
-
onRouteChange?: (route: IMapRoute, travelMode: TravelMode) => void;
|
1872
|
+
onTravelModeChange?: (travelMode: TravelMode, zoomLevel: number) => void;
|
1873
|
+
onRouteChange?: (route: IMapRoute, travelMode: TravelMode, zoomLevel: number) => void;
|
1897
1874
|
onInit?: () => void;
|
1898
1875
|
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number, points: Feature$1<Point, IMapPointProperties>[]) => void;
|
1899
1876
|
mapBoundary?: number;
|
1900
1877
|
mapLoader: React__default.ReactElement;
|
1901
|
-
maxZoom: ZoomLevels;
|
1902
|
-
minZoom: ZoomLevels;
|
1903
1878
|
controls?: IMapControl[];
|
1904
1879
|
map: google.maps.Map;
|
1905
1880
|
geometry: google.maps.GeometryLibrary;
|
@@ -1943,6 +1918,8 @@ interface IMapLegendItem {
|
|
1943
1918
|
}
|
1944
1919
|
declare const MapLegendItem: (props: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
1945
1920
|
|
1921
|
+
type ZoomLevels = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
1922
|
+
|
1946
1923
|
declare const GoogleDistanceBetween: (point1: google.maps.LatLng, point2: google.maps.LatLng) => number;
|
1947
1924
|
|
1948
1925
|
declare const GoogleGetDirections: (props: {
|
@@ -3138,4 +3115,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3138
3115
|
|
3139
3116
|
declare const useHeader: () => number;
|
3140
3117
|
|
3141
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, 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, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, 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 IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, 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 IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, 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 ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, 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, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
3118
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, 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, BadgeTitle, BadgeType, BasicMonitorPage, BasicPage, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, Bookmarks, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Cluster, Collapsable, CollapsableContext, CollapsableProvider, CollapsableRatio, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsBody, DetailsHeader, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleDistanceBetween, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GoogleGetDirections, GoogleLatLngToPoint, GoogleLatLngToPosition, GoogleLatLngToTerminal, GooglePlacesContext, GooglePlacesProvider, GooglePointsAtDistanceFromPolyline, GoogleProcessingProvider, type GoogleProcessingProviderProps, GoogleRoutesToMapRoutes, GoogleZoomLevelForRoute, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicMonitorPage, type IBasicPage, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBookmarks, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type IClusterOptions, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDetails, type IDetailsBody, type IDetailsHeader, 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 IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, 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 IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteLeg, type IMapRouteLegProperties, type IMapRouteLegStep, type IMapRouteLegStepProperties, type IMapRouteLegSteps, type IMapRouteLegs, type IMapRouteProperties, type IMapRoutes, type IMapTerminal, type IMapTerminalProperties, type IMapTerminals, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type IMonitorSectionDashboard, type IMonitorSectionList, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecentItems, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, 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 ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type ISummary, type ISummaryItem, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, 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, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, type MapTerminalType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, MonitorSectionDashboard, MonitorSectionList, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, RecentItems, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, type RouteMapHandle, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Summary, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, type ZoomLevels, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|