@tactics/lokaal-loket 0.0.398 → 0.0.400

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.cts CHANGED
@@ -126,9 +126,9 @@ interface IUnFavoured {
126
126
  ariaLabel: string;
127
127
  }
128
128
 
129
- declare const Favoured: ({ onClick, icon, title, ariaLabel }: IFavoured) => react_jsx_runtime.JSX.Element;
129
+ declare const Favoured: React__default.ForwardRefExoticComponent<IFavoured & React__default.RefAttributes<HTMLButtonElement>>;
130
130
 
131
- declare const UnFavoured: ({ onClick, icon, title, ariaLabel }: IUnFavoured) => react_jsx_runtime.JSX.Element;
131
+ declare const UnFavoured: React__default.ForwardRefExoticComponent<IUnFavoured & React__default.RefAttributes<HTMLButtonElement>>;
132
132
 
133
133
  interface IProgress {
134
134
  steps: number;
@@ -167,10 +167,7 @@ declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element
167
167
 
168
168
  declare enum PinType {
169
169
  DAYCARE = "DAYCARE",
170
- CHILDMINDER = "CHILDMINDER",
171
- COOPERATIVE = "COOPERATIVE",
172
- OUT_OF_RANGE = "OUT_OF_RANGE",
173
- VIEW_ONLY = "VIEW_ONLY"
170
+ CHILDMINDER = "CHILDMINDER"
174
171
  }
175
172
 
176
173
  interface IPinBase {
@@ -339,11 +336,11 @@ type IRouteStep = Feature$1<LineString, IStep>;
339
336
  interface IFailureMap {
340
337
  message: string;
341
338
  }
342
- interface IMapLegendLabel {
339
+ interface IMapLegendLabel$1 {
343
340
  figure: React__default.ReactElement<IFigure>;
344
341
  label: string;
345
342
  }
346
- interface IMapLegendItem {
343
+ interface IMapLegendItem$1 {
347
344
  pin: React__default.ReactElement<IPin>;
348
345
  label: string;
349
346
  }
@@ -360,8 +357,8 @@ interface ILocationBasedMap {
360
357
  loader?: React__default.ReactNode;
361
358
  origin: IOrigin;
362
359
  radius: number;
363
- legend?: React__default.ReactElement<IMapLegendItem>[];
364
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
360
+ legend?: React__default.ReactElement<IMapLegendItem$1>[];
361
+ legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
365
362
  onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
366
363
  }
367
364
  interface IDirectionBasedMapBase {
@@ -377,8 +374,8 @@ interface IDirectionBasedMapBase {
377
374
  destination?: IDestination;
378
375
  deviation: number;
379
376
  activeTravelMode: google.maps.TravelMode;
380
- legend?: React__default.ReactElement<IMapLegendItem>[];
381
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
377
+ legend?: React__default.ReactElement<IMapLegendItem$1>[];
378
+ legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
382
379
  onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
383
380
  onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
384
381
  onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
@@ -398,9 +395,6 @@ interface LocationMapHandle {
398
395
  closeMapOverlay: () => void;
399
396
  }
400
397
 
401
- declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
402
- declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
403
-
404
398
  declare const Map: {
405
399
  (props: IMap): react_jsx_runtime.JSX.Element;
406
400
  Location: (props: ILocationBasedMap & {
@@ -537,7 +531,7 @@ interface IButton {
537
531
  href?: string;
538
532
  }
539
533
 
540
- declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
534
+ declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
541
535
 
542
536
  declare enum CheckboxContext {
543
537
  STANDARD = "STANDARD",
@@ -1913,6 +1907,73 @@ interface IFooter {
1913
1907
 
1914
1908
  declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
1915
1909
 
1910
+ type ZoomLevels = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
1911
+
1912
+ type MapPointType = "DAYCARE" | "CHILDMINDER";
1913
+ interface IMapPointProperties {
1914
+ key: string;
1915
+ showsExactLocation: boolean;
1916
+ type: MapPointType;
1917
+ point: true;
1918
+ }
1919
+ type IMapPoint = Feature$1<Point, IMapPointProperties>;
1920
+ type IPosition = google.maps.LatLng | google.maps.LatLngLiteral | google.maps.LatLngAltitudeLiteral;
1921
+ type IBound = google.maps.LatLngBounds;
1922
+ interface IStaticMapControl {
1923
+ position: "TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT";
1924
+ control: React__default.ReactElement;
1925
+ }
1926
+ interface IStaticMap {
1927
+ points: Feature$1<Point, IMapPointProperties>[];
1928
+ onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
1929
+ onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
1930
+ onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
1931
+ onClickAway?: () => void;
1932
+ onAreaChange?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
1933
+ onIdleAfterLoad?: (center: IPosition, bounds: IBound, zoomLevel: number, points: Feature$1<Point, IMapPointProperties>[]) => void;
1934
+ mapBoundary?: number;
1935
+ mapLoader: React__default.ReactElement;
1936
+ maxZoom: ZoomLevels;
1937
+ minZoom: ZoomLevels;
1938
+ controls?: IStaticMapControl[];
1939
+ }
1940
+ interface StaticMapHandle {
1941
+ focusPoint: (point: IMapPoint, overlay?: React__default.ReactElement) => void;
1942
+ unfocusPoint: () => void;
1943
+ openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
1944
+ closeOverlay: () => void;
1945
+ zoomTo: (zoom: number, position?: IPosition) => void;
1946
+ openLoader: () => void;
1947
+ closeLoader: () => void;
1948
+ }
1949
+ declare const StaticMap: (props: IStaticMap & {
1950
+ ref?: Ref<StaticMapHandle>;
1951
+ }) => React__default.ReactNode;
1952
+
1953
+ interface IMapLoading {
1954
+ }
1955
+ declare const MapLoading: (props: IMapLoading) => react_jsx_runtime.JSX.Element;
1956
+
1957
+ declare const MapControlContainer: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
1958
+
1959
+ interface IMapLegendLabel {
1960
+ figure: React__default.ReactElement<IFigure>;
1961
+ label: string;
1962
+ }
1963
+ declare const MapLegendLabel: (props: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
1964
+
1965
+ interface IMapLegend extends PropsWithChildren {
1966
+ label: React__default.ReactElement<IMapLegendLabel>;
1967
+ items: React__default.ReactElement<IMapLegendItem$1>[];
1968
+ }
1969
+ declare const MapLegend: (props: IMapLegend) => react_jsx_runtime.JSX.Element | null;
1970
+
1971
+ interface IMapLegendItem {
1972
+ pin: React__default.ReactElement<IPin>;
1973
+ label: string;
1974
+ }
1975
+ declare const MapLegendItem: (props: IMapLegendItem) => react_jsx_runtime.JSX.Element;
1976
+
1916
1977
  interface IWizard {
1917
1978
  children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
1918
1979
  }
@@ -2063,13 +2124,22 @@ interface ICard {
2063
2124
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2064
2125
  labels: React__default.ReactElement<ILabel>[];
2065
2126
  features?: React__default.ReactElement<IFeatures>;
2066
- action: React__default.ReactElement<IButton>;
2067
- favoriteAction?: React__default.ReactElement<IButton>;
2068
- detailsAction?: () => void;
2069
- detailsLabel?: string;
2127
+ action?: React__default.ReactElement<IButton>;
2128
+ favorite?: React__default.ReactElement<ICardFavorite>;
2129
+ application?: React__default.ReactElement<ICardApplication>;
2130
+ }
2131
+ interface ICardFavorite {
2132
+ remove: React__default.ReactElement<IFavoured>;
2133
+ add: React__default.ReactElement<IUnFavoured>;
2134
+ isFavorite: boolean;
2135
+ }
2136
+ interface ICardApplication {
2137
+ remove: React__default.ReactElement<IButton>;
2138
+ add: React__default.ReactElement<IButton>;
2139
+ inApp: boolean;
2070
2140
  }
2071
2141
 
2072
- declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
2142
+ declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2073
2143
 
2074
2144
  interface IListCard {
2075
2145
  badge: React__default.ReactElement<IBadge>;
@@ -2937,4 +3007,4 @@ interface ICollapsableProvider extends PropsWithChildren {
2937
3007
  }
2938
3008
  declare const CollapsableProvider: ({ children, compactAt }: ICollapsableProvider) => react_jsx_runtime.JSX.Element | null;
2939
3009
 
2940
- 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, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, 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 IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, 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, 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, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
3010
+ 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, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, 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 IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type 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, type LocationMapHandle, Logo, LogoSize, Map, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, 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, 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, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
package/build/index.d.ts CHANGED
@@ -126,9 +126,9 @@ interface IUnFavoured {
126
126
  ariaLabel: string;
127
127
  }
128
128
 
129
- declare const Favoured: ({ onClick, icon, title, ariaLabel }: IFavoured) => react_jsx_runtime.JSX.Element;
129
+ declare const Favoured: React__default.ForwardRefExoticComponent<IFavoured & React__default.RefAttributes<HTMLButtonElement>>;
130
130
 
131
- declare const UnFavoured: ({ onClick, icon, title, ariaLabel }: IUnFavoured) => react_jsx_runtime.JSX.Element;
131
+ declare const UnFavoured: React__default.ForwardRefExoticComponent<IUnFavoured & React__default.RefAttributes<HTMLButtonElement>>;
132
132
 
133
133
  interface IProgress {
134
134
  steps: number;
@@ -167,10 +167,7 @@ declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element
167
167
 
168
168
  declare enum PinType {
169
169
  DAYCARE = "DAYCARE",
170
- CHILDMINDER = "CHILDMINDER",
171
- COOPERATIVE = "COOPERATIVE",
172
- OUT_OF_RANGE = "OUT_OF_RANGE",
173
- VIEW_ONLY = "VIEW_ONLY"
170
+ CHILDMINDER = "CHILDMINDER"
174
171
  }
175
172
 
176
173
  interface IPinBase {
@@ -339,11 +336,11 @@ type IRouteStep = Feature$1<LineString, IStep>;
339
336
  interface IFailureMap {
340
337
  message: string;
341
338
  }
342
- interface IMapLegendLabel {
339
+ interface IMapLegendLabel$1 {
343
340
  figure: React__default.ReactElement<IFigure>;
344
341
  label: string;
345
342
  }
346
- interface IMapLegendItem {
343
+ interface IMapLegendItem$1 {
347
344
  pin: React__default.ReactElement<IPin>;
348
345
  label: string;
349
346
  }
@@ -360,8 +357,8 @@ interface ILocationBasedMap {
360
357
  loader?: React__default.ReactNode;
361
358
  origin: IOrigin;
362
359
  radius: number;
363
- legend?: React__default.ReactElement<IMapLegendItem>[];
364
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
360
+ legend?: React__default.ReactElement<IMapLegendItem$1>[];
361
+ legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
365
362
  onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
366
363
  }
367
364
  interface IDirectionBasedMapBase {
@@ -377,8 +374,8 @@ interface IDirectionBasedMapBase {
377
374
  destination?: IDestination;
378
375
  deviation: number;
379
376
  activeTravelMode: google.maps.TravelMode;
380
- legend?: React__default.ReactElement<IMapLegendItem>[];
381
- legendToggle?: React__default.ReactElement<IMapLegendLabel>;
377
+ legend?: React__default.ReactElement<IMapLegendItem$1>[];
378
+ legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
382
379
  onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
383
380
  onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
384
381
  onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
@@ -398,9 +395,6 @@ interface LocationMapHandle {
398
395
  closeMapOverlay: () => void;
399
396
  }
400
397
 
401
- declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
402
- declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
403
-
404
398
  declare const Map: {
405
399
  (props: IMap): react_jsx_runtime.JSX.Element;
406
400
  Location: (props: ILocationBasedMap & {
@@ -537,7 +531,7 @@ interface IButton {
537
531
  href?: string;
538
532
  }
539
533
 
540
- declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
534
+ declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
541
535
 
542
536
  declare enum CheckboxContext {
543
537
  STANDARD = "STANDARD",
@@ -1913,6 +1907,73 @@ interface IFooter {
1913
1907
 
1914
1908
  declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
1915
1909
 
1910
+ type ZoomLevels = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21;
1911
+
1912
+ type MapPointType = "DAYCARE" | "CHILDMINDER";
1913
+ interface IMapPointProperties {
1914
+ key: string;
1915
+ showsExactLocation: boolean;
1916
+ type: MapPointType;
1917
+ point: true;
1918
+ }
1919
+ type IMapPoint = Feature$1<Point, IMapPointProperties>;
1920
+ type IPosition = google.maps.LatLng | google.maps.LatLngLiteral | google.maps.LatLngAltitudeLiteral;
1921
+ type IBound = google.maps.LatLngBounds;
1922
+ interface IStaticMapControl {
1923
+ position: "TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT";
1924
+ control: React__default.ReactElement;
1925
+ }
1926
+ interface IStaticMap {
1927
+ points: Feature$1<Point, IMapPointProperties>[];
1928
+ onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
1929
+ onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
1930
+ onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
1931
+ onClickAway?: () => void;
1932
+ onAreaChange?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
1933
+ onIdleAfterLoad?: (center: IPosition, bounds: IBound, zoomLevel: number, points: Feature$1<Point, IMapPointProperties>[]) => void;
1934
+ mapBoundary?: number;
1935
+ mapLoader: React__default.ReactElement;
1936
+ maxZoom: ZoomLevels;
1937
+ minZoom: ZoomLevels;
1938
+ controls?: IStaticMapControl[];
1939
+ }
1940
+ interface StaticMapHandle {
1941
+ focusPoint: (point: IMapPoint, overlay?: React__default.ReactElement) => void;
1942
+ unfocusPoint: () => void;
1943
+ openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
1944
+ closeOverlay: () => void;
1945
+ zoomTo: (zoom: number, position?: IPosition) => void;
1946
+ openLoader: () => void;
1947
+ closeLoader: () => void;
1948
+ }
1949
+ declare const StaticMap: (props: IStaticMap & {
1950
+ ref?: Ref<StaticMapHandle>;
1951
+ }) => React__default.ReactNode;
1952
+
1953
+ interface IMapLoading {
1954
+ }
1955
+ declare const MapLoading: (props: IMapLoading) => react_jsx_runtime.JSX.Element;
1956
+
1957
+ declare const MapControlContainer: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
1958
+
1959
+ interface IMapLegendLabel {
1960
+ figure: React__default.ReactElement<IFigure>;
1961
+ label: string;
1962
+ }
1963
+ declare const MapLegendLabel: (props: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
1964
+
1965
+ interface IMapLegend extends PropsWithChildren {
1966
+ label: React__default.ReactElement<IMapLegendLabel>;
1967
+ items: React__default.ReactElement<IMapLegendItem$1>[];
1968
+ }
1969
+ declare const MapLegend: (props: IMapLegend) => react_jsx_runtime.JSX.Element | null;
1970
+
1971
+ interface IMapLegendItem {
1972
+ pin: React__default.ReactElement<IPin>;
1973
+ label: string;
1974
+ }
1975
+ declare const MapLegendItem: (props: IMapLegendItem) => react_jsx_runtime.JSX.Element;
1976
+
1916
1977
  interface IWizard {
1917
1978
  children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
1918
1979
  }
@@ -2063,13 +2124,22 @@ interface ICard {
2063
2124
  info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
2064
2125
  labels: React__default.ReactElement<ILabel>[];
2065
2126
  features?: React__default.ReactElement<IFeatures>;
2066
- action: React__default.ReactElement<IButton>;
2067
- favoriteAction?: React__default.ReactElement<IButton>;
2068
- detailsAction?: () => void;
2069
- detailsLabel?: string;
2127
+ action?: React__default.ReactElement<IButton>;
2128
+ favorite?: React__default.ReactElement<ICardFavorite>;
2129
+ application?: React__default.ReactElement<ICardApplication>;
2130
+ }
2131
+ interface ICardFavorite {
2132
+ remove: React__default.ReactElement<IFavoured>;
2133
+ add: React__default.ReactElement<IUnFavoured>;
2134
+ isFavorite: boolean;
2135
+ }
2136
+ interface ICardApplication {
2137
+ remove: React__default.ReactElement<IButton>;
2138
+ add: React__default.ReactElement<IButton>;
2139
+ inApp: boolean;
2070
2140
  }
2071
2141
 
2072
- declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
2142
+ declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2073
2143
 
2074
2144
  interface IListCard {
2075
2145
  badge: React__default.ReactElement<IBadge>;
@@ -2937,4 +3007,4 @@ interface ICollapsableProvider extends PropsWithChildren {
2937
3007
  }
2938
3008
  declare const CollapsableProvider: ({ children, compactAt }: ICollapsableProvider) => react_jsx_runtime.JSX.Element | null;
2939
3009
 
2940
- 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, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, 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 IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type 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, type LocationMapHandle, Logo, LogoSize, Map, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, 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, 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, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
3010
+ 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, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, 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, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, 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 IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type 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 ILocationBasedMap, type ILogo, type IMap, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, 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 IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, 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 ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type 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, type LocationMapHandle, Logo, LogoSize, Map, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, 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, 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, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };