@tactics/lokaal-loket 0.0.187 → 0.0.189
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +795 -737
- package/build/index.d.cts +61 -2
- package/build/index.d.ts +61 -2
- package/build/index.js +551 -501
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -881,6 +881,15 @@ interface CloseI {
|
|
881
881
|
|
882
882
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
883
883
|
|
884
|
+
interface IColoredBox {
|
885
|
+
title: string;
|
886
|
+
description: string;
|
887
|
+
image?: string;
|
888
|
+
actions?: React.ReactNode;
|
889
|
+
}
|
890
|
+
|
891
|
+
declare const ColoredBox: ({ title, description, image, actions, }: IColoredBox) => react_jsx_runtime.JSX.Element;
|
892
|
+
|
884
893
|
interface IToggle {
|
885
894
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
886
895
|
value: string;
|
@@ -1099,6 +1108,13 @@ interface ICta {
|
|
1099
1108
|
|
1100
1109
|
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
1101
1110
|
|
1111
|
+
interface IFigureHeading {
|
1112
|
+
figure: React.ReactElement<IFigure>;
|
1113
|
+
title: string;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
declare const FigureHeading: ({ figure, title }: IFigureHeading) => react_jsx_runtime.JSX.Element;
|
1117
|
+
|
1102
1118
|
interface IFooterNavigation extends IFooterNavigationBase {
|
1103
1119
|
}
|
1104
1120
|
interface IFooterNavigationBase {
|
@@ -1204,6 +1220,23 @@ interface IDirectionBasedMapBase {
|
|
1204
1220
|
onTravelModeChange?: (modes: google.maps.TravelMode[], deviation: number) => void;
|
1205
1221
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1206
1222
|
}
|
1223
|
+
interface IDirectionRenderBasedMapBase {
|
1224
|
+
routes: IRoutes;
|
1225
|
+
activeRoute: IRoute | null;
|
1226
|
+
points?: IPoints;
|
1227
|
+
showLoader: boolean;
|
1228
|
+
loader?: React$1.ReactNode;
|
1229
|
+
origin: IOrigin;
|
1230
|
+
destination: IDestination;
|
1231
|
+
deviation: number;
|
1232
|
+
travelMode: google.maps.TravelMode | "BestFit";
|
1233
|
+
travelModeLabels: TravelModeLabels;
|
1234
|
+
onRouteChange?: (route: IRoute, modes: google.maps.TravelMode[], deviation: number) => void;
|
1235
|
+
onTravelModeChange?: (modes: google.maps.TravelMode[], deviation: number) => void;
|
1236
|
+
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1237
|
+
directions: google.maps.DirectionsResult;
|
1238
|
+
render: google.maps.DirectionsRenderer;
|
1239
|
+
}
|
1207
1240
|
interface IMap extends PropsWithChildren {
|
1208
1241
|
mapId: string;
|
1209
1242
|
defaultCenter: google.maps.LatLngLiteral;
|
@@ -1219,6 +1252,7 @@ declare const Map: {
|
|
1219
1252
|
(props: IMap): react_jsx_runtime.JSX.Element;
|
1220
1253
|
Location: ({ points, showLoader, loader, origin, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1221
1254
|
Direction: ({ routes, activeRoute, origin, destination, deviation, travelMode, travelModeLabels, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1255
|
+
DirectionRender: ({ routes, activeRoute, origin, destination, deviation, travelMode, travelModeLabels, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, render, directions, }: IDirectionRenderBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1222
1256
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1223
1257
|
Loading: ({ loader }: {
|
1224
1258
|
loader: React$1.ReactNode;
|
@@ -1427,6 +1461,14 @@ interface IDetailsSectionHours {
|
|
1427
1461
|
|
1428
1462
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1429
1463
|
|
1464
|
+
interface IFavoritesSectionHeader {
|
1465
|
+
title: string;
|
1466
|
+
description: string;
|
1467
|
+
figure: React$1.ReactElement<IFigure>;
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1471
|
+
|
1430
1472
|
interface IOnboardingArrangementIntroduction {
|
1431
1473
|
top: React$1.ReactElement;
|
1432
1474
|
left: React$1.ReactElement;
|
@@ -1478,6 +1520,19 @@ interface ISharedSectionFooter {
|
|
1478
1520
|
|
1479
1521
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
1480
1522
|
|
1523
|
+
interface ISearchSectionResults {
|
1524
|
+
content: React$1.ReactElement;
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
declare const SearchSectionResults: (props: ISearchSectionResults) => react_jsx_runtime.JSX.Element;
|
1528
|
+
|
1529
|
+
interface ISearchSectionResultsWithMap {
|
1530
|
+
content: React$1.ReactElement;
|
1531
|
+
map?: React$1.ReactElement;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
declare const SearchSectionResultsWithMap: (props: ISearchSectionResultsWithMap) => react_jsx_runtime.JSX.Element;
|
1535
|
+
|
1481
1536
|
declare enum AccordeonContext {
|
1482
1537
|
OPEN = "OPEN",
|
1483
1538
|
CLOSED = "CLOSED"
|
@@ -1633,7 +1688,6 @@ declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
|
1633
1688
|
interface ISearchWithMapPage {
|
1634
1689
|
header: React$1.ReactElement;
|
1635
1690
|
content: React$1.ReactElement | React$1.ReactElement[];
|
1636
|
-
map?: React$1.ReactElement;
|
1637
1691
|
footer: React$1.ReactElement;
|
1638
1692
|
}
|
1639
1693
|
|
@@ -1723,12 +1777,17 @@ declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react
|
|
1723
1777
|
declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
|
1724
1778
|
declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1725
1779
|
|
1780
|
+
declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
1781
|
+
declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1782
|
+
|
1726
1783
|
declare const useIsGoogleProcessing: () => boolean;
|
1727
1784
|
|
1728
1785
|
declare const useGooglePlaces: () => AsyncResult<GooglePlacesI>;
|
1729
1786
|
|
1730
1787
|
declare const useGoogleDirections: () => AsyncResult<google.maps.DirectionsService>;
|
1731
1788
|
|
1789
|
+
declare const useGoogleDirectionsRenderer: () => AsyncResult<google.maps.DirectionsRenderer>;
|
1790
|
+
|
1732
1791
|
declare const useGoogleGeocoder: () => AsyncResult<google.maps.Geocoder>;
|
1733
1792
|
|
1734
1793
|
declare const useGoogleMapId: () => string;
|
@@ -1796,4 +1855,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1796
1855
|
|
1797
1856
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1798
1857
|
|
1799
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
1858
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionHeader, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionHeader, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
package/build/index.d.ts
CHANGED
@@ -881,6 +881,15 @@ interface CloseI {
|
|
881
881
|
|
882
882
|
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
883
883
|
|
884
|
+
interface IColoredBox {
|
885
|
+
title: string;
|
886
|
+
description: string;
|
887
|
+
image?: string;
|
888
|
+
actions?: React.ReactNode;
|
889
|
+
}
|
890
|
+
|
891
|
+
declare const ColoredBox: ({ title, description, image, actions, }: IColoredBox) => react_jsx_runtime.JSX.Element;
|
892
|
+
|
884
893
|
interface IToggle {
|
885
894
|
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
886
895
|
value: string;
|
@@ -1099,6 +1108,13 @@ interface ICta {
|
|
1099
1108
|
|
1100
1109
|
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
1101
1110
|
|
1111
|
+
interface IFigureHeading {
|
1112
|
+
figure: React.ReactElement<IFigure>;
|
1113
|
+
title: string;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
declare const FigureHeading: ({ figure, title }: IFigureHeading) => react_jsx_runtime.JSX.Element;
|
1117
|
+
|
1102
1118
|
interface IFooterNavigation extends IFooterNavigationBase {
|
1103
1119
|
}
|
1104
1120
|
interface IFooterNavigationBase {
|
@@ -1204,6 +1220,23 @@ interface IDirectionBasedMapBase {
|
|
1204
1220
|
onTravelModeChange?: (modes: google.maps.TravelMode[], deviation: number) => void;
|
1205
1221
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1206
1222
|
}
|
1223
|
+
interface IDirectionRenderBasedMapBase {
|
1224
|
+
routes: IRoutes;
|
1225
|
+
activeRoute: IRoute | null;
|
1226
|
+
points?: IPoints;
|
1227
|
+
showLoader: boolean;
|
1228
|
+
loader?: React$1.ReactNode;
|
1229
|
+
origin: IOrigin;
|
1230
|
+
destination: IDestination;
|
1231
|
+
deviation: number;
|
1232
|
+
travelMode: google.maps.TravelMode | "BestFit";
|
1233
|
+
travelModeLabels: TravelModeLabels;
|
1234
|
+
onRouteChange?: (route: IRoute, modes: google.maps.TravelMode[], deviation: number) => void;
|
1235
|
+
onTravelModeChange?: (modes: google.maps.TravelMode[], deviation: number) => void;
|
1236
|
+
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1237
|
+
directions: google.maps.DirectionsResult;
|
1238
|
+
render: google.maps.DirectionsRenderer;
|
1239
|
+
}
|
1207
1240
|
interface IMap extends PropsWithChildren {
|
1208
1241
|
mapId: string;
|
1209
1242
|
defaultCenter: google.maps.LatLngLiteral;
|
@@ -1219,6 +1252,7 @@ declare const Map: {
|
|
1219
1252
|
(props: IMap): react_jsx_runtime.JSX.Element;
|
1220
1253
|
Location: ({ points, showLoader, loader, origin, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1221
1254
|
Direction: ({ routes, activeRoute, origin, destination, deviation, travelMode, travelModeLabels, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1255
|
+
DirectionRender: ({ routes, activeRoute, origin, destination, deviation, travelMode, travelModeLabels, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, render, directions, }: IDirectionRenderBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1222
1256
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1223
1257
|
Loading: ({ loader }: {
|
1224
1258
|
loader: React$1.ReactNode;
|
@@ -1427,6 +1461,14 @@ interface IDetailsSectionHours {
|
|
1427
1461
|
|
1428
1462
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1429
1463
|
|
1464
|
+
interface IFavoritesSectionHeader {
|
1465
|
+
title: string;
|
1466
|
+
description: string;
|
1467
|
+
figure: React$1.ReactElement<IFigure>;
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1471
|
+
|
1430
1472
|
interface IOnboardingArrangementIntroduction {
|
1431
1473
|
top: React$1.ReactElement;
|
1432
1474
|
left: React$1.ReactElement;
|
@@ -1478,6 +1520,19 @@ interface ISharedSectionFooter {
|
|
1478
1520
|
|
1479
1521
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
1480
1522
|
|
1523
|
+
interface ISearchSectionResults {
|
1524
|
+
content: React$1.ReactElement;
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
declare const SearchSectionResults: (props: ISearchSectionResults) => react_jsx_runtime.JSX.Element;
|
1528
|
+
|
1529
|
+
interface ISearchSectionResultsWithMap {
|
1530
|
+
content: React$1.ReactElement;
|
1531
|
+
map?: React$1.ReactElement;
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
declare const SearchSectionResultsWithMap: (props: ISearchSectionResultsWithMap) => react_jsx_runtime.JSX.Element;
|
1535
|
+
|
1481
1536
|
declare enum AccordeonContext {
|
1482
1537
|
OPEN = "OPEN",
|
1483
1538
|
CLOSED = "CLOSED"
|
@@ -1633,7 +1688,6 @@ declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
|
1633
1688
|
interface ISearchWithMapPage {
|
1634
1689
|
header: React$1.ReactElement;
|
1635
1690
|
content: React$1.ReactElement | React$1.ReactElement[];
|
1636
|
-
map?: React$1.ReactElement;
|
1637
1691
|
footer: React$1.ReactElement;
|
1638
1692
|
}
|
1639
1693
|
|
@@ -1723,12 +1777,17 @@ declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react
|
|
1723
1777
|
declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
|
1724
1778
|
declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1725
1779
|
|
1780
|
+
declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
1781
|
+
declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1782
|
+
|
1726
1783
|
declare const useIsGoogleProcessing: () => boolean;
|
1727
1784
|
|
1728
1785
|
declare const useGooglePlaces: () => AsyncResult<GooglePlacesI>;
|
1729
1786
|
|
1730
1787
|
declare const useGoogleDirections: () => AsyncResult<google.maps.DirectionsService>;
|
1731
1788
|
|
1789
|
+
declare const useGoogleDirectionsRenderer: () => AsyncResult<google.maps.DirectionsRenderer>;
|
1790
|
+
|
1732
1791
|
declare const useGoogleGeocoder: () => AsyncResult<google.maps.Geocoder>;
|
1733
1792
|
|
1734
1793
|
declare const useGoogleMapId: () => string;
|
@@ -1796,4 +1855,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1796
1855
|
|
1797
1856
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1798
1857
|
|
1799
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, Feature, Features, Figure, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFeature, type IFeatures, type IFigure, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
1858
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionFacilities, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionHeader, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionFacilities, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionHeader, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchStep, SearchWithMapPage, type SelectBlurEvent, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|