@tactics/lokaal-loket 0.0.196 → 0.0.198
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +804 -721
- package/build/index.d.cts +39 -13
- package/build/index.d.ts +39 -13
- package/build/index.js +596 -518
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -990,6 +990,12 @@ declare const Faq: {
|
|
990
990
|
Content: ({ children }: FaqContentThemeableProps) => react_jsx_runtime.JSX.Element;
|
991
991
|
};
|
992
992
|
|
993
|
+
interface IQuote {
|
994
|
+
quote: string;
|
995
|
+
}
|
996
|
+
|
997
|
+
declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
|
998
|
+
|
993
999
|
interface IFeatures {
|
994
1000
|
children: React$1.ReactElement<IFeature> | React$1.ReactElement<IFeature>[];
|
995
1001
|
}
|
@@ -1092,6 +1098,12 @@ interface IQuickSearch {
|
|
1092
1098
|
|
1093
1099
|
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1094
1100
|
|
1101
|
+
interface IGallery {
|
1102
|
+
images: string[];
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
declare const Gallery: ({ images }: IGallery) => react_jsx_runtime.JSX.Element;
|
1106
|
+
|
1095
1107
|
interface IInfoCard {
|
1096
1108
|
figureType: FigureType;
|
1097
1109
|
title: string;
|
@@ -1204,11 +1216,21 @@ type IRoutes = IRoute[];
|
|
1204
1216
|
interface IFailureMap {
|
1205
1217
|
message: string;
|
1206
1218
|
}
|
1219
|
+
interface IMapLegendLabel {
|
1220
|
+
figure: React$1.ReactElement<IFigure>;
|
1221
|
+
label: string;
|
1222
|
+
}
|
1223
|
+
interface IMapLegendItem {
|
1224
|
+
pin: React$1.ReactElement<IPin>;
|
1225
|
+
label: string;
|
1226
|
+
}
|
1207
1227
|
interface ILocationBasedMap {
|
1208
1228
|
points?: IPoints;
|
1209
1229
|
showLoader: boolean;
|
1210
1230
|
loader?: React$1.ReactNode;
|
1211
1231
|
origin: IOrigin;
|
1232
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1233
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1212
1234
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1213
1235
|
}
|
1214
1236
|
interface IDirectionBasedMapBase {
|
@@ -1220,27 +1242,25 @@ interface IDirectionBasedMapBase {
|
|
1220
1242
|
origin?: IOrigin;
|
1221
1243
|
destination?: IDestination;
|
1222
1244
|
deviation: number;
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1245
|
+
activeTravelMode: google.maps.TravelMode;
|
1246
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1247
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1248
|
+
onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1249
|
+
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1227
1250
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1228
1251
|
}
|
1229
1252
|
interface IMap extends PropsWithChildren {
|
1230
1253
|
mapId: string;
|
1231
1254
|
defaultCenter: google.maps.LatLngLiteral;
|
1232
1255
|
}
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
WALKING: string;
|
1237
|
-
BICYCLING: string;
|
1238
|
-
}
|
1256
|
+
|
1257
|
+
declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
1258
|
+
declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
1239
1259
|
|
1240
1260
|
declare const Map: {
|
1241
1261
|
(props: IMap): react_jsx_runtime.JSX.Element;
|
1242
|
-
Location: ({ points, showLoader, loader, origin, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1243
|
-
Direction: ({ routes, activeRoute, origin, destination, deviation,
|
1262
|
+
Location: ({ points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1263
|
+
Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1244
1264
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1245
1265
|
Loading: ({ loader }: {
|
1246
1266
|
loader: React$1.ReactNode;
|
@@ -1449,6 +1469,12 @@ interface IDetailsSectionHours {
|
|
1449
1469
|
|
1450
1470
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1451
1471
|
|
1472
|
+
interface IDetailsSectionQuote {
|
1473
|
+
quote: string;
|
1474
|
+
}
|
1475
|
+
|
1476
|
+
declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
|
1477
|
+
|
1452
1478
|
interface IFavoritesSectionHeader {
|
1453
1479
|
title: string;
|
1454
1480
|
description: string;
|
@@ -1865,4 +1891,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1865
1891
|
|
1866
1892
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1867
1893
|
|
1868
|
-
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, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, 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 IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, 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, TextAlignment, 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 };
|
1894
|
+
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, DetailsSectionQuote, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, 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 IDetailsSectionQuote, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, 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 IQuote, 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, MapLegendItem, MapLegendLabel, 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, Quote, 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, TextAlignment, 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
@@ -990,6 +990,12 @@ declare const Faq: {
|
|
990
990
|
Content: ({ children }: FaqContentThemeableProps) => react_jsx_runtime.JSX.Element;
|
991
991
|
};
|
992
992
|
|
993
|
+
interface IQuote {
|
994
|
+
quote: string;
|
995
|
+
}
|
996
|
+
|
997
|
+
declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
|
998
|
+
|
993
999
|
interface IFeatures {
|
994
1000
|
children: React$1.ReactElement<IFeature> | React$1.ReactElement<IFeature>[];
|
995
1001
|
}
|
@@ -1092,6 +1098,12 @@ interface IQuickSearch {
|
|
1092
1098
|
|
1093
1099
|
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1094
1100
|
|
1101
|
+
interface IGallery {
|
1102
|
+
images: string[];
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
declare const Gallery: ({ images }: IGallery) => react_jsx_runtime.JSX.Element;
|
1106
|
+
|
1095
1107
|
interface IInfoCard {
|
1096
1108
|
figureType: FigureType;
|
1097
1109
|
title: string;
|
@@ -1204,11 +1216,21 @@ type IRoutes = IRoute[];
|
|
1204
1216
|
interface IFailureMap {
|
1205
1217
|
message: string;
|
1206
1218
|
}
|
1219
|
+
interface IMapLegendLabel {
|
1220
|
+
figure: React$1.ReactElement<IFigure>;
|
1221
|
+
label: string;
|
1222
|
+
}
|
1223
|
+
interface IMapLegendItem {
|
1224
|
+
pin: React$1.ReactElement<IPin>;
|
1225
|
+
label: string;
|
1226
|
+
}
|
1207
1227
|
interface ILocationBasedMap {
|
1208
1228
|
points?: IPoints;
|
1209
1229
|
showLoader: boolean;
|
1210
1230
|
loader?: React$1.ReactNode;
|
1211
1231
|
origin: IOrigin;
|
1232
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1233
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1212
1234
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1213
1235
|
}
|
1214
1236
|
interface IDirectionBasedMapBase {
|
@@ -1220,27 +1242,25 @@ interface IDirectionBasedMapBase {
|
|
1220
1242
|
origin?: IOrigin;
|
1221
1243
|
destination?: IDestination;
|
1222
1244
|
deviation: number;
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1245
|
+
activeTravelMode: google.maps.TravelMode;
|
1246
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1247
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1248
|
+
onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1249
|
+
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1227
1250
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1228
1251
|
}
|
1229
1252
|
interface IMap extends PropsWithChildren {
|
1230
1253
|
mapId: string;
|
1231
1254
|
defaultCenter: google.maps.LatLngLiteral;
|
1232
1255
|
}
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
WALKING: string;
|
1237
|
-
BICYCLING: string;
|
1238
|
-
}
|
1256
|
+
|
1257
|
+
declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
1258
|
+
declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
1239
1259
|
|
1240
1260
|
declare const Map: {
|
1241
1261
|
(props: IMap): react_jsx_runtime.JSX.Element;
|
1242
|
-
Location: ({ points, showLoader, loader, origin, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1243
|
-
Direction: ({ routes, activeRoute, origin, destination, deviation,
|
1262
|
+
Location: ({ points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
|
1263
|
+
Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1244
1264
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1245
1265
|
Loading: ({ loader }: {
|
1246
1266
|
loader: React$1.ReactNode;
|
@@ -1449,6 +1469,12 @@ interface IDetailsSectionHours {
|
|
1449
1469
|
|
1450
1470
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1451
1471
|
|
1472
|
+
interface IDetailsSectionQuote {
|
1473
|
+
quote: string;
|
1474
|
+
}
|
1475
|
+
|
1476
|
+
declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
|
1477
|
+
|
1452
1478
|
interface IFavoritesSectionHeader {
|
1453
1479
|
title: string;
|
1454
1480
|
description: string;
|
@@ -1865,4 +1891,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1865
1891
|
|
1866
1892
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1867
1893
|
|
1868
|
-
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, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, 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 IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, 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, TextAlignment, 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 };
|
1894
|
+
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, DetailsSectionQuote, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, 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 IDetailsSectionQuote, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, 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 IQuote, 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, MapLegendItem, MapLegendLabel, 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, Quote, 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, TextAlignment, 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 };
|