@tactics/lokaal-loket 0.0.257 → 0.0.260

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -30,7 +30,7 @@ interface IOpeningHoursSelect {
30
30
  onChange: (value: OpeningHoursSelectHours) => void;
31
31
  }
32
32
 
33
- declare const OpeningHoursSelect: ({ selected, onChange, }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
33
+ declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
34
34
 
35
35
  interface IToggle {
36
36
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
@@ -42,7 +42,7 @@ interface IToggle {
42
42
  defaultChecked?: boolean;
43
43
  }
44
44
 
45
- declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, }: IToggle) => react_jsx_runtime.JSX.Element;
45
+ declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
46
46
 
47
47
  interface OpeninghoursI {
48
48
  hours: React$1.ReactElement<IOpeningHoursSelect>;
@@ -136,6 +136,20 @@ interface IFlip {
136
136
 
137
137
  declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
138
138
 
139
+ declare enum PinType {
140
+ DAYCARE = "DAYCARE",
141
+ CHILDMINDER = "CHILDMINDER",
142
+ COOPERATIVE = "COOPERATIVE",
143
+ OUT_OF_RANGE = "OUT_OF_RANGE"
144
+ }
145
+
146
+ interface IPinBase {
147
+ type: PinType;
148
+ lifted?: boolean;
149
+ }
150
+
151
+ declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
152
+
139
153
  declare enum BadgeType {
140
154
  DAYCARE = "DAYCARE",
141
155
  CHILDMINDER = "CHILDMINDER",
@@ -389,7 +403,7 @@ interface ICheckbox extends ICheckboxBase {
389
403
  context?: CheckboxContext;
390
404
  }
391
405
 
392
- declare const Checkbox: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: ICheckbox) => react_jsx_runtime.JSX.Element;
406
+ declare const Checkbox: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox) => react_jsx_runtime.JSX.Element;
393
407
 
394
408
  declare enum ChoiceContext {
395
409
  STANDARD = "STANDARD",
@@ -411,7 +425,7 @@ interface IChoice extends IChoiceBase {
411
425
  context?: ChoiceContext;
412
426
  }
413
427
 
414
- declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IChoice) => react_jsx_runtime.JSX.Element;
428
+ declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IChoice) => react_jsx_runtime.JSX.Element;
415
429
 
416
430
  interface IFeature {
417
431
  withIconBefore?: React$1.ReactElement<IIcon>;
@@ -469,7 +483,7 @@ interface IInformation {
469
483
  background?: InformationBackground;
470
484
  }
471
485
 
472
- declare const Information: ({ text, frame, variant, background, }: IInformation) => react_jsx_runtime.JSX.Element;
486
+ declare const Information: ({ text, frame, variant, background }: IInformation) => react_jsx_runtime.JSX.Element;
473
487
 
474
488
  declare enum InputContext {
475
489
  DISABLED = "DISABLED",
@@ -569,7 +583,7 @@ interface IPick extends IPickBase {
569
583
  context?: PickContext;
570
584
  }
571
585
 
572
- declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IPick) => react_jsx_runtime.JSX.Element;
586
+ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IPick) => react_jsx_runtime.JSX.Element;
573
587
 
574
588
  interface IPill {
575
589
  label: string;
@@ -578,20 +592,6 @@ interface IPill {
578
592
 
579
593
  declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
580
594
 
581
- declare enum PinType {
582
- DAYCARE = "DAYCARE",
583
- CHILDMINDER = "CHILDMINDER",
584
- COOPERATIVE = "COOPERATIVE",
585
- OUT_OF_RANGE = "OUT_OF_RANGE"
586
- }
587
-
588
- interface IPinBase {
589
- type: PinType;
590
- lifted?: boolean;
591
- }
592
-
593
- declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
594
-
595
595
  declare const PlainText: ({ children, size, font, fontWeight, textDecoration, textAlignment, textColor, }: IPlainText) => react_jsx_runtime.JSX.Element;
596
596
 
597
597
  declare enum RadioContext {
@@ -613,7 +613,7 @@ interface IRadio extends IRadioBase {
613
613
  context?: RadioContext;
614
614
  }
615
615
 
616
- declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IRadio) => react_jsx_runtime.JSX.Element;
616
+ declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio) => react_jsx_runtime.JSX.Element;
617
617
 
618
618
  interface IRecord {
619
619
  withIconBefore?: React$1.ReactElement<IIcon>;
@@ -1013,7 +1013,7 @@ interface IColoredBox {
1013
1013
  actions?: React.ReactNode;
1014
1014
  }
1015
1015
 
1016
- declare const ColoredBox: ({ title, description, image, actions, }: IColoredBox) => react_jsx_runtime.JSX.Element;
1016
+ declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
1017
1017
 
1018
1018
  interface INoResults {
1019
1019
  title: string;
@@ -1074,8 +1074,8 @@ interface ICompactNavigationItem {
1074
1074
  }
1075
1075
 
1076
1076
  declare const CompactNavigation: {
1077
- ({ children, context, toggleLabel, footer, }: ICompactNavigation): react_jsx_runtime.JSX.Element;
1078
- Item: ({ label, onClick, isActive, href, icon, }: ICompactNavigationItem) => react_jsx_runtime.JSX.Element;
1077
+ ({ children, context, toggleLabel, footer }: ICompactNavigation): react_jsx_runtime.JSX.Element;
1078
+ Item: ({ label, onClick, isActive, href, icon }: ICompactNavigationItem) => react_jsx_runtime.JSX.Element;
1079
1079
  };
1080
1080
 
1081
1081
  interface ICompactFooter extends ICompactFooterBase {
@@ -1086,7 +1086,7 @@ interface ICompactFooterBase {
1086
1086
  description?: string;
1087
1087
  }
1088
1088
 
1089
- declare const CompactFooter: ({ children, title, description, }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1089
+ declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1090
1090
 
1091
1091
  interface IDetailsBase {
1092
1092
  children?: React$1.ReactNode;
@@ -1156,7 +1156,7 @@ interface ICategoryLink {
1156
1156
  action: () => void;
1157
1157
  }
1158
1158
 
1159
- declare const CategoryLink: ({ figure, title, description, label, action, }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1159
+ declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1160
1160
 
1161
1161
  interface IQuote {
1162
1162
  quote: string;
@@ -1190,7 +1190,7 @@ interface IPlaceholderPhoto {
1190
1190
  height: string;
1191
1191
  }
1192
1192
 
1193
- declare const PlaceholderPhoto: ({ figure, type, height, }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
1193
+ declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
1194
1194
 
1195
1195
  interface INavigation extends INavigationBase {
1196
1196
  }
@@ -1208,7 +1208,7 @@ interface INavigationItem {
1208
1208
 
1209
1209
  declare const Navigation: {
1210
1210
  ({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
1211
- Item: ({ label, onClick, isActive, href, icon, }: INavigationItem) => react_jsx_runtime.JSX.Element;
1211
+ Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
1212
1212
  };
1213
1213
 
1214
1214
  declare enum ItemType {
@@ -1265,7 +1265,7 @@ interface ITopNavigationItemBase {
1265
1265
 
1266
1266
  declare const TopNavigation: {
1267
1267
  ({ children }: ITopNavigation): react_jsx_runtime.JSX.Element;
1268
- Item: ({ onClick, label, icon, href, }: ITopNavigationItemBase) => react_jsx_runtime.JSX.Element;
1268
+ Item: ({ onClick, label, icon, href }: ITopNavigationItemBase) => react_jsx_runtime.JSX.Element;
1269
1269
  };
1270
1270
 
1271
1271
  interface IOnboarding {
@@ -1409,6 +1409,7 @@ interface IPin {
1409
1409
  key: string;
1410
1410
  name: string;
1411
1411
  address: string;
1412
+ showsExactLocation: boolean;
1412
1413
  type: PointType;
1413
1414
  overlay: React$1.ReactNode;
1414
1415
  }
@@ -1444,10 +1445,11 @@ interface IMapLegendItem {
1444
1445
  label: string;
1445
1446
  }
1446
1447
  interface ILocationBasedMap {
1448
+ interaction?: boolean;
1447
1449
  points?: IPoints;
1448
1450
  showLoader: boolean;
1449
1451
  loader?: React$1.ReactNode;
1450
- origin?: IOrigin;
1452
+ origin: IOrigin;
1451
1453
  legend?: React$1.ReactElement<IMapLegendItem>[];
1452
1454
  legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1453
1455
  onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
@@ -1478,7 +1480,7 @@ declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runti
1478
1480
 
1479
1481
  declare const Map: {
1480
1482
  (props: IMap): react_jsx_runtime.JSX.Element;
1481
- Location: ({ points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1483
+ Location: ({ interaction, points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1482
1484
  Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
1483
1485
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1484
1486
  Loading: ({ loader }: {
@@ -1550,7 +1552,7 @@ interface ISearchFiltersItem {
1550
1552
  filter: React$1.ReactNode;
1551
1553
  }
1552
1554
 
1553
- declare const SearchFiltersLabel: ({ label, description, icon, }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
1555
+ declare const SearchFiltersLabel: ({ label, description, icon }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
1554
1556
 
1555
1557
  declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
1556
1558
 
@@ -1558,7 +1560,7 @@ declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
1558
1560
 
1559
1561
  declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
1560
1562
 
1561
- declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay, }: ISearchFilters) => react_jsx_runtime.JSX.Element;
1563
+ declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay }: ISearchFilters) => react_jsx_runtime.JSX.Element;
1562
1564
 
1563
1565
  type SearchInputTypes = "location" | "route" | "name";
1564
1566
  interface ISearchInputsShared {
@@ -1610,13 +1612,13 @@ interface ISearchInputsLabelWithIcon {
1610
1612
 
1611
1613
  declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
1612
1614
 
1613
- declare const SearchInputsOverlayInput: ({ label, description, }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
1615
+ declare const SearchInputsOverlayInput: ({ label, description }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
1614
1616
 
1615
1617
  declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
1616
1618
 
1617
- declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
1619
+ declare const SearchInputsLabel: ({ label, description, figure }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
1618
1620
 
1619
- declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent, }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
1621
+ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
1620
1622
 
1621
1623
  declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
1622
1624
 
@@ -1656,7 +1658,7 @@ interface IListCard {
1656
1658
  actions: React$1.ReactElement<IButton>[] | React$1.ReactElement<IButton>;
1657
1659
  }
1658
1660
 
1659
- declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, }: IListCard) => react_jsx_runtime.JSX.Element;
1661
+ declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
1660
1662
 
1661
1663
  interface IFlyoutArrangementSplit {
1662
1664
  top?: React$1.ReactElement;
@@ -1909,7 +1911,7 @@ interface IAccordeon extends IAccordeonBase {
1909
1911
  interface AccordeonThemeableProps extends IAccordeonBase {
1910
1912
  }
1911
1913
 
1912
- declare const AccordeonGroupProvider: ({ children, }: {
1914
+ declare const AccordeonGroupProvider: ({ children }: {
1913
1915
  children: ReactNode;
1914
1916
  }) => react_jsx_runtime.JSX.Element;
1915
1917
 
@@ -1937,7 +1939,7 @@ interface ICollapsable {
1937
1939
  withContentCollapse?: React$1.ReactNode;
1938
1940
  }
1939
1941
 
1940
- declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
1942
+ declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
1941
1943
 
1942
1944
  declare enum DrawerSize {
1943
1945
  SMALL = "SMALL",
@@ -2128,7 +2130,7 @@ interface IModalProvider extends PropsWithChildren {
2128
2130
  size?: ModalSize;
2129
2131
  title?: string;
2130
2132
  }
2131
- declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider) => react_jsx_runtime.JSX.Element;
2133
+ declare const ModalProvider: ({ children, modal, size, title }: IModalProvider) => react_jsx_runtime.JSX.Element;
2132
2134
 
2133
2135
  interface OverlayContextType {
2134
2136
  isOpen: boolean;
@@ -2142,7 +2144,7 @@ interface IOverlayProvider extends PropsWithChildren {
2142
2144
  header?: React$1.ReactNode;
2143
2145
  close?: React$1.ReactNode;
2144
2146
  }
2145
- declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2147
+ declare const OverlayProvider: ({ children, header, close, overlay }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2146
2148
 
2147
2149
  interface ProcessingContextType {
2148
2150
  isDone: boolean;
@@ -2159,7 +2161,7 @@ interface GoogleProcessingProviderProps extends PropsWithChildren {
2159
2161
  apiKey: string;
2160
2162
  mapId: string;
2161
2163
  }
2162
- declare const GoogleProcessingProvider: ({ children, apiKey, mapId, }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
2164
+ declare const GoogleProcessingProvider: ({ children, apiKey, mapId }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
2163
2165
 
2164
2166
  interface GooglePlacesI {
2165
2167
  autocomplete: google.maps.places.AutocompleteService;
@@ -2172,10 +2174,10 @@ declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geo
2172
2174
  declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2173
2175
 
2174
2176
  declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
2175
- declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2177
+ declare const GoogleDirectionsServiceProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2176
2178
 
2177
2179
  declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2178
- declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2180
+ declare const GoogleDirectionsRendererProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2179
2181
 
2180
2182
  declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
2181
2183
  declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
package/build/index.d.ts CHANGED
@@ -30,7 +30,7 @@ interface IOpeningHoursSelect {
30
30
  onChange: (value: OpeningHoursSelectHours) => void;
31
31
  }
32
32
 
33
- declare const OpeningHoursSelect: ({ selected, onChange, }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
33
+ declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
34
34
 
35
35
  interface IToggle {
36
36
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
@@ -42,7 +42,7 @@ interface IToggle {
42
42
  defaultChecked?: boolean;
43
43
  }
44
44
 
45
- declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, }: IToggle) => react_jsx_runtime.JSX.Element;
45
+ declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
46
46
 
47
47
  interface OpeninghoursI {
48
48
  hours: React$1.ReactElement<IOpeningHoursSelect>;
@@ -136,6 +136,20 @@ interface IFlip {
136
136
 
137
137
  declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
138
138
 
139
+ declare enum PinType {
140
+ DAYCARE = "DAYCARE",
141
+ CHILDMINDER = "CHILDMINDER",
142
+ COOPERATIVE = "COOPERATIVE",
143
+ OUT_OF_RANGE = "OUT_OF_RANGE"
144
+ }
145
+
146
+ interface IPinBase {
147
+ type: PinType;
148
+ lifted?: boolean;
149
+ }
150
+
151
+ declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
152
+
139
153
  declare enum BadgeType {
140
154
  DAYCARE = "DAYCARE",
141
155
  CHILDMINDER = "CHILDMINDER",
@@ -389,7 +403,7 @@ interface ICheckbox extends ICheckboxBase {
389
403
  context?: CheckboxContext;
390
404
  }
391
405
 
392
- declare const Checkbox: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: ICheckbox) => react_jsx_runtime.JSX.Element;
406
+ declare const Checkbox: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox) => react_jsx_runtime.JSX.Element;
393
407
 
394
408
  declare enum ChoiceContext {
395
409
  STANDARD = "STANDARD",
@@ -411,7 +425,7 @@ interface IChoice extends IChoiceBase {
411
425
  context?: ChoiceContext;
412
426
  }
413
427
 
414
- declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IChoice) => react_jsx_runtime.JSX.Element;
428
+ declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IChoice) => react_jsx_runtime.JSX.Element;
415
429
 
416
430
  interface IFeature {
417
431
  withIconBefore?: React$1.ReactElement<IIcon>;
@@ -469,7 +483,7 @@ interface IInformation {
469
483
  background?: InformationBackground;
470
484
  }
471
485
 
472
- declare const Information: ({ text, frame, variant, background, }: IInformation) => react_jsx_runtime.JSX.Element;
486
+ declare const Information: ({ text, frame, variant, background }: IInformation) => react_jsx_runtime.JSX.Element;
473
487
 
474
488
  declare enum InputContext {
475
489
  DISABLED = "DISABLED",
@@ -569,7 +583,7 @@ interface IPick extends IPickBase {
569
583
  context?: PickContext;
570
584
  }
571
585
 
572
- declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IPick) => react_jsx_runtime.JSX.Element;
586
+ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IPick) => react_jsx_runtime.JSX.Element;
573
587
 
574
588
  interface IPill {
575
589
  label: string;
@@ -578,20 +592,6 @@ interface IPill {
578
592
 
579
593
  declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
580
594
 
581
- declare enum PinType {
582
- DAYCARE = "DAYCARE",
583
- CHILDMINDER = "CHILDMINDER",
584
- COOPERATIVE = "COOPERATIVE",
585
- OUT_OF_RANGE = "OUT_OF_RANGE"
586
- }
587
-
588
- interface IPinBase {
589
- type: PinType;
590
- lifted?: boolean;
591
- }
592
-
593
- declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
594
-
595
595
  declare const PlainText: ({ children, size, font, fontWeight, textDecoration, textAlignment, textColor, }: IPlainText) => react_jsx_runtime.JSX.Element;
596
596
 
597
597
  declare enum RadioContext {
@@ -613,7 +613,7 @@ interface IRadio extends IRadioBase {
613
613
  context?: RadioContext;
614
614
  }
615
615
 
616
- declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IRadio) => react_jsx_runtime.JSX.Element;
616
+ declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio) => react_jsx_runtime.JSX.Element;
617
617
 
618
618
  interface IRecord {
619
619
  withIconBefore?: React$1.ReactElement<IIcon>;
@@ -1013,7 +1013,7 @@ interface IColoredBox {
1013
1013
  actions?: React.ReactNode;
1014
1014
  }
1015
1015
 
1016
- declare const ColoredBox: ({ title, description, image, actions, }: IColoredBox) => react_jsx_runtime.JSX.Element;
1016
+ declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
1017
1017
 
1018
1018
  interface INoResults {
1019
1019
  title: string;
@@ -1074,8 +1074,8 @@ interface ICompactNavigationItem {
1074
1074
  }
1075
1075
 
1076
1076
  declare const CompactNavigation: {
1077
- ({ children, context, toggleLabel, footer, }: ICompactNavigation): react_jsx_runtime.JSX.Element;
1078
- Item: ({ label, onClick, isActive, href, icon, }: ICompactNavigationItem) => react_jsx_runtime.JSX.Element;
1077
+ ({ children, context, toggleLabel, footer }: ICompactNavigation): react_jsx_runtime.JSX.Element;
1078
+ Item: ({ label, onClick, isActive, href, icon }: ICompactNavigationItem) => react_jsx_runtime.JSX.Element;
1079
1079
  };
1080
1080
 
1081
1081
  interface ICompactFooter extends ICompactFooterBase {
@@ -1086,7 +1086,7 @@ interface ICompactFooterBase {
1086
1086
  description?: string;
1087
1087
  }
1088
1088
 
1089
- declare const CompactFooter: ({ children, title, description, }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1089
+ declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
1090
1090
 
1091
1091
  interface IDetailsBase {
1092
1092
  children?: React$1.ReactNode;
@@ -1156,7 +1156,7 @@ interface ICategoryLink {
1156
1156
  action: () => void;
1157
1157
  }
1158
1158
 
1159
- declare const CategoryLink: ({ figure, title, description, label, action, }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1159
+ declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
1160
1160
 
1161
1161
  interface IQuote {
1162
1162
  quote: string;
@@ -1190,7 +1190,7 @@ interface IPlaceholderPhoto {
1190
1190
  height: string;
1191
1191
  }
1192
1192
 
1193
- declare const PlaceholderPhoto: ({ figure, type, height, }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
1193
+ declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
1194
1194
 
1195
1195
  interface INavigation extends INavigationBase {
1196
1196
  }
@@ -1208,7 +1208,7 @@ interface INavigationItem {
1208
1208
 
1209
1209
  declare const Navigation: {
1210
1210
  ({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
1211
- Item: ({ label, onClick, isActive, href, icon, }: INavigationItem) => react_jsx_runtime.JSX.Element;
1211
+ Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
1212
1212
  };
1213
1213
 
1214
1214
  declare enum ItemType {
@@ -1265,7 +1265,7 @@ interface ITopNavigationItemBase {
1265
1265
 
1266
1266
  declare const TopNavigation: {
1267
1267
  ({ children }: ITopNavigation): react_jsx_runtime.JSX.Element;
1268
- Item: ({ onClick, label, icon, href, }: ITopNavigationItemBase) => react_jsx_runtime.JSX.Element;
1268
+ Item: ({ onClick, label, icon, href }: ITopNavigationItemBase) => react_jsx_runtime.JSX.Element;
1269
1269
  };
1270
1270
 
1271
1271
  interface IOnboarding {
@@ -1409,6 +1409,7 @@ interface IPin {
1409
1409
  key: string;
1410
1410
  name: string;
1411
1411
  address: string;
1412
+ showsExactLocation: boolean;
1412
1413
  type: PointType;
1413
1414
  overlay: React$1.ReactNode;
1414
1415
  }
@@ -1444,10 +1445,11 @@ interface IMapLegendItem {
1444
1445
  label: string;
1445
1446
  }
1446
1447
  interface ILocationBasedMap {
1448
+ interaction?: boolean;
1447
1449
  points?: IPoints;
1448
1450
  showLoader: boolean;
1449
1451
  loader?: React$1.ReactNode;
1450
- origin?: IOrigin;
1452
+ origin: IOrigin;
1451
1453
  legend?: React$1.ReactElement<IMapLegendItem>[];
1452
1454
  legendToggle?: React$1.ReactElement<IMapLegendLabel>;
1453
1455
  onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
@@ -1478,7 +1480,7 @@ declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runti
1478
1480
 
1479
1481
  declare const Map: {
1480
1482
  (props: IMap): react_jsx_runtime.JSX.Element;
1481
- Location: ({ points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1483
+ Location: ({ interaction, points, showLoader, loader, origin, onAreaChange, legend, legendToggle, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1482
1484
  Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
1483
1485
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1484
1486
  Loading: ({ loader }: {
@@ -1550,7 +1552,7 @@ interface ISearchFiltersItem {
1550
1552
  filter: React$1.ReactNode;
1551
1553
  }
1552
1554
 
1553
- declare const SearchFiltersLabel: ({ label, description, icon, }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
1555
+ declare const SearchFiltersLabel: ({ label, description, icon }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
1554
1556
 
1555
1557
  declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
1556
1558
 
@@ -1558,7 +1560,7 @@ declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
1558
1560
 
1559
1561
  declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
1560
1562
 
1561
- declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay, }: ISearchFilters) => react_jsx_runtime.JSX.Element;
1563
+ declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay }: ISearchFilters) => react_jsx_runtime.JSX.Element;
1562
1564
 
1563
1565
  type SearchInputTypes = "location" | "route" | "name";
1564
1566
  interface ISearchInputsShared {
@@ -1610,13 +1612,13 @@ interface ISearchInputsLabelWithIcon {
1610
1612
 
1611
1613
  declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
1612
1614
 
1613
- declare const SearchInputsOverlayInput: ({ label, description, }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
1615
+ declare const SearchInputsOverlayInput: ({ label, description }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
1614
1616
 
1615
1617
  declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
1616
1618
 
1617
- declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
1619
+ declare const SearchInputsLabel: ({ label, description, figure }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
1618
1620
 
1619
- declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent, }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
1621
+ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
1620
1622
 
1621
1623
  declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
1622
1624
 
@@ -1656,7 +1658,7 @@ interface IListCard {
1656
1658
  actions: React$1.ReactElement<IButton>[] | React$1.ReactElement<IButton>;
1657
1659
  }
1658
1660
 
1659
- declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, }: IListCard) => react_jsx_runtime.JSX.Element;
1661
+ declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
1660
1662
 
1661
1663
  interface IFlyoutArrangementSplit {
1662
1664
  top?: React$1.ReactElement;
@@ -1909,7 +1911,7 @@ interface IAccordeon extends IAccordeonBase {
1909
1911
  interface AccordeonThemeableProps extends IAccordeonBase {
1910
1912
  }
1911
1913
 
1912
- declare const AccordeonGroupProvider: ({ children, }: {
1914
+ declare const AccordeonGroupProvider: ({ children }: {
1913
1915
  children: ReactNode;
1914
1916
  }) => react_jsx_runtime.JSX.Element;
1915
1917
 
@@ -1937,7 +1939,7 @@ interface ICollapsable {
1937
1939
  withContentCollapse?: React$1.ReactNode;
1938
1940
  }
1939
1941
 
1940
- declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
1942
+ declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
1941
1943
 
1942
1944
  declare enum DrawerSize {
1943
1945
  SMALL = "SMALL",
@@ -2128,7 +2130,7 @@ interface IModalProvider extends PropsWithChildren {
2128
2130
  size?: ModalSize;
2129
2131
  title?: string;
2130
2132
  }
2131
- declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider) => react_jsx_runtime.JSX.Element;
2133
+ declare const ModalProvider: ({ children, modal, size, title }: IModalProvider) => react_jsx_runtime.JSX.Element;
2132
2134
 
2133
2135
  interface OverlayContextType {
2134
2136
  isOpen: boolean;
@@ -2142,7 +2144,7 @@ interface IOverlayProvider extends PropsWithChildren {
2142
2144
  header?: React$1.ReactNode;
2143
2145
  close?: React$1.ReactNode;
2144
2146
  }
2145
- declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2147
+ declare const OverlayProvider: ({ children, header, close, overlay }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
2146
2148
 
2147
2149
  interface ProcessingContextType {
2148
2150
  isDone: boolean;
@@ -2159,7 +2161,7 @@ interface GoogleProcessingProviderProps extends PropsWithChildren {
2159
2161
  apiKey: string;
2160
2162
  mapId: string;
2161
2163
  }
2162
- declare const GoogleProcessingProvider: ({ children, apiKey, mapId, }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
2164
+ declare const GoogleProcessingProvider: ({ children, apiKey, mapId }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
2163
2165
 
2164
2166
  interface GooglePlacesI {
2165
2167
  autocomplete: google.maps.places.AutocompleteService;
@@ -2172,10 +2174,10 @@ declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geo
2172
2174
  declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2173
2175
 
2174
2176
  declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
2175
- declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2177
+ declare const GoogleDirectionsServiceProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2176
2178
 
2177
2179
  declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
2178
- declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2180
+ declare const GoogleDirectionsRendererProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
2179
2181
 
2180
2182
  declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
2181
2183
  declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;