@tactics/lokaal-loket 0.0.419 → 0.0.421
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +754 -880
- package/build/index.d.cts +108 -149
- package/build/index.d.ts +108 -149
- package/build/index.js +754 -880
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -3,7 +3,7 @@ import * as React$1 from 'react';
|
|
3
3
|
import React__default, { PropsWithChildren, Ref, ReactNode, FC } from 'react';
|
4
4
|
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
|
5
5
|
export { Spacing, ThemeConfigI, ThemeI, ThemeVariantsI } from '@tactics/tacky/contract';
|
6
|
-
import { Feature as Feature$1, Point, LineString
|
6
|
+
import { Feature as Feature$1, Point, LineString } from 'geojson';
|
7
7
|
import * as styled_components from 'styled-components';
|
8
8
|
import { AsyncResult } from '@tactics/js-monad';
|
9
9
|
import { ThemeMode } from '@tactics/tacky';
|
@@ -170,13 +170,13 @@ declare enum PinType {
|
|
170
170
|
CHILDMINDER = "CHILDMINDER"
|
171
171
|
}
|
172
172
|
|
173
|
-
interface
|
173
|
+
interface IPin {
|
174
174
|
type: PinType;
|
175
175
|
lifted?: boolean;
|
176
176
|
focus?: boolean;
|
177
177
|
}
|
178
178
|
|
179
|
-
declare const Pin: ({ type, lifted, focus }:
|
179
|
+
declare const Pin: ({ type, lifted, focus }: IPin) => react_jsx_runtime.JSX.Element;
|
180
180
|
|
181
181
|
declare enum BadgeType {
|
182
182
|
DAYCARE = "DAYCARE",
|
@@ -280,136 +280,6 @@ declare enum FramePadding {
|
|
280
280
|
SMALL = "SMALL"
|
281
281
|
}
|
282
282
|
|
283
|
-
interface IExpand {
|
284
|
-
onClick?: () => void;
|
285
|
-
}
|
286
|
-
|
287
|
-
declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
|
288
|
-
|
289
|
-
interface IToggle {
|
290
|
-
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
291
|
-
value: string;
|
292
|
-
ariaLabel?: string;
|
293
|
-
label: string;
|
294
|
-
name: string;
|
295
|
-
checked?: boolean;
|
296
|
-
defaultChecked?: boolean;
|
297
|
-
}
|
298
|
-
|
299
|
-
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
300
|
-
|
301
|
-
type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
|
302
|
-
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
|
303
|
-
interface ITerminal {
|
304
|
-
key: string;
|
305
|
-
name: string;
|
306
|
-
type: TerminalType;
|
307
|
-
}
|
308
|
-
interface IPin {
|
309
|
-
key: string;
|
310
|
-
name: string;
|
311
|
-
address: string;
|
312
|
-
showsExactLocation: boolean;
|
313
|
-
type: PointType;
|
314
|
-
overlay: React__default.ReactNode;
|
315
|
-
}
|
316
|
-
interface ILine {
|
317
|
-
key: string;
|
318
|
-
index: number;
|
319
|
-
label: string;
|
320
|
-
durationInSeconds: number;
|
321
|
-
distanceInMeters: number;
|
322
|
-
steps: IRouteStep[];
|
323
|
-
}
|
324
|
-
interface IStep {
|
325
|
-
key: string;
|
326
|
-
instructions: string;
|
327
|
-
travel_mode: google.maps.TravelMode;
|
328
|
-
}
|
329
|
-
type IOrigin = Feature$1<Point, ITerminal>;
|
330
|
-
type IDestination = Feature$1<Point, ITerminal>;
|
331
|
-
type IPoint = Feature$1<Point, IPin>;
|
332
|
-
type IPoints = IPoint[];
|
333
|
-
type IRoute = Feature$1<LineString, ILine>;
|
334
|
-
type IRoutes = Record<string, IRoute>;
|
335
|
-
type IRouteStep = Feature$1<LineString, IStep>;
|
336
|
-
interface IFailureMap {
|
337
|
-
message: string;
|
338
|
-
}
|
339
|
-
interface IMapLegendLabel$1 {
|
340
|
-
figure: React__default.ReactElement<IFigure>;
|
341
|
-
label: string;
|
342
|
-
}
|
343
|
-
interface IMapLegendItem$1 {
|
344
|
-
pin: React__default.ReactElement<IPin>;
|
345
|
-
label: string;
|
346
|
-
}
|
347
|
-
interface IStaticBasedMap {
|
348
|
-
point: IPoint;
|
349
|
-
}
|
350
|
-
interface ILocationBasedMap {
|
351
|
-
controlAreaTopLeft?: React__default.ReactNode[];
|
352
|
-
controlAreaBottomCenter?: React__default.ReactNode[];
|
353
|
-
updateOriginOnAreaChange: boolean;
|
354
|
-
viewOnly?: boolean;
|
355
|
-
points?: IPoints;
|
356
|
-
showLoader: boolean;
|
357
|
-
loader?: React__default.ReactNode;
|
358
|
-
origin: IOrigin;
|
359
|
-
radius: number;
|
360
|
-
legend?: React__default.ReactElement<IMapLegendItem$1>[];
|
361
|
-
legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
|
362
|
-
onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
363
|
-
}
|
364
|
-
interface IDirectionBasedMapBase {
|
365
|
-
controlAreaTopLeft?: React__default.ReactNode[];
|
366
|
-
controlAreaBottomCenter?: React__default.ReactNode[];
|
367
|
-
routes?: IRoutes;
|
368
|
-
viewOnly?: boolean;
|
369
|
-
activeRoute: string;
|
370
|
-
points?: IPoints;
|
371
|
-
showLoader: boolean;
|
372
|
-
loader?: React__default.ReactNode;
|
373
|
-
origin?: IOrigin;
|
374
|
-
destination?: IDestination;
|
375
|
-
deviation: number;
|
376
|
-
activeTravelMode: google.maps.TravelMode;
|
377
|
-
legend?: React__default.ReactElement<IMapLegendItem$1>[];
|
378
|
-
legendToggle?: React__default.ReactElement<IMapLegendLabel$1>;
|
379
|
-
onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
380
|
-
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
381
|
-
onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
382
|
-
}
|
383
|
-
interface IMap extends PropsWithChildren {
|
384
|
-
mapId: string;
|
385
|
-
defaultCenter: google.maps.LatLngLiteral;
|
386
|
-
zoom?: number;
|
387
|
-
}
|
388
|
-
|
389
|
-
interface DirectionMapHandle {
|
390
|
-
closeMapOverlay: () => void;
|
391
|
-
}
|
392
|
-
|
393
|
-
interface LocationMapHandle {
|
394
|
-
panTo: (lat: number, lng: number) => void;
|
395
|
-
closeMapOverlay: () => void;
|
396
|
-
}
|
397
|
-
|
398
|
-
declare const Map: {
|
399
|
-
(props: IMap): react_jsx_runtime.JSX.Element;
|
400
|
-
Location: (props: ILocationBasedMap & {
|
401
|
-
ref?: React__default.Ref<LocationMapHandle>;
|
402
|
-
}) => React__default.ReactNode;
|
403
|
-
Direction: (props: IDirectionBasedMapBase & {
|
404
|
-
ref?: React__default.Ref<DirectionMapHandle>;
|
405
|
-
}) => React__default.ReactNode;
|
406
|
-
Static: (args: IStaticBasedMap) => react_jsx_runtime.JSX.Element | null;
|
407
|
-
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
408
|
-
Loading: ({ loader }: {
|
409
|
-
loader: React__default.ReactNode;
|
410
|
-
}) => react_jsx_runtime.JSX.Element | null;
|
411
|
-
};
|
412
|
-
|
413
283
|
interface IFrame {
|
414
284
|
around: React__default.ReactElement<IIcon | IFigure | IPin>;
|
415
285
|
split?: string | false;
|
@@ -596,6 +466,12 @@ interface ICollapse {
|
|
596
466
|
|
597
467
|
declare const Collapse: ({ onClick }: ICollapse) => react_jsx_runtime.JSX.Element;
|
598
468
|
|
469
|
+
interface IExpand {
|
470
|
+
onClick?: () => void;
|
471
|
+
}
|
472
|
+
|
473
|
+
declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
|
474
|
+
|
599
475
|
declare enum TextDecoration {
|
600
476
|
NONE = "NONE",
|
601
477
|
UNDERLINE = "UNDERLINE",
|
@@ -778,7 +654,7 @@ interface IRecord {
|
|
778
654
|
value: string | React__default.ReactNode;
|
779
655
|
}
|
780
656
|
|
781
|
-
declare const Record
|
657
|
+
declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
782
658
|
|
783
659
|
declare enum StatusContext {
|
784
660
|
SEND = "SEND",
|
@@ -1138,6 +1014,18 @@ interface IColoredBox {
|
|
1138
1014
|
|
1139
1015
|
declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
|
1140
1016
|
|
1017
|
+
interface IToggle {
|
1018
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
1019
|
+
value: string;
|
1020
|
+
ariaLabel?: string;
|
1021
|
+
label: string;
|
1022
|
+
name: string;
|
1023
|
+
checked?: boolean;
|
1024
|
+
defaultChecked?: boolean;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
1028
|
+
|
1141
1029
|
interface INoResults {
|
1142
1030
|
title: string;
|
1143
1031
|
subtitle?: string;
|
@@ -1777,7 +1665,7 @@ interface IBlockLinkBase {
|
|
1777
1665
|
declare const BlockLink: ({ label, menu, onClick }: IBlockLink) => react_jsx_runtime.JSX.Element;
|
1778
1666
|
|
1779
1667
|
interface IInfoTable {
|
1780
|
-
children:
|
1668
|
+
children: React__default.ReactNode;
|
1781
1669
|
direction?: "row" | "column";
|
1782
1670
|
}
|
1783
1671
|
interface IInfoTableItem {
|
@@ -1909,38 +1797,73 @@ interface IFooter {
|
|
1909
1797
|
|
1910
1798
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1911
1799
|
|
1912
|
-
type ZoomLevels =
|
1800
|
+
type ZoomLevels = 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18;
|
1801
|
+
|
1802
|
+
type TravelMode = "DRIVING" | "TRANSIT" | "WALKING" | "BICYCLING";
|
1913
1803
|
|
1914
1804
|
type MapPointType = "DAYCARE" | "CHILDMINDER";
|
1805
|
+
type MapTerminalType = "ORIGIN" | "DESTINATION";
|
1806
|
+
interface IMapTerminalProperties {
|
1807
|
+
key: string;
|
1808
|
+
type: MapTerminalType;
|
1809
|
+
}
|
1915
1810
|
interface IMapPointProperties {
|
1916
1811
|
key: string;
|
1917
1812
|
showsExactLocation: boolean;
|
1918
1813
|
type: MapPointType;
|
1919
1814
|
point: true;
|
1920
1815
|
}
|
1816
|
+
interface IMapRouteProperties {
|
1817
|
+
key: string;
|
1818
|
+
label: string;
|
1819
|
+
durationInSeconds: number;
|
1820
|
+
distanceInMeters: number;
|
1821
|
+
path: google.maps.LatLng[];
|
1822
|
+
polyline: string;
|
1823
|
+
legs: IMapRouteLegs;
|
1824
|
+
}
|
1825
|
+
interface IMapRouteLegProperties {
|
1826
|
+
key: string;
|
1827
|
+
steps: IMapRouteLegSteps;
|
1828
|
+
}
|
1829
|
+
interface IMapRouteLegStepProperties {
|
1830
|
+
key: string;
|
1831
|
+
path: google.maps.LatLng[];
|
1832
|
+
polyline: string;
|
1833
|
+
instructions: string;
|
1834
|
+
travelMode: TravelMode;
|
1835
|
+
durationInSeconds: number;
|
1836
|
+
distanceInMeters: number;
|
1837
|
+
}
|
1921
1838
|
type IMapPoint = Feature$1<Point, IMapPointProperties>;
|
1922
|
-
type IMapPoints =
|
1839
|
+
type IMapPoints = IMapPoint[];
|
1840
|
+
type IMapRoute = Feature$1<LineString, IMapRouteProperties>;
|
1841
|
+
type IMapRoutes = IMapRoute[];
|
1842
|
+
type IMapRouteLeg = Feature$1<LineString, IMapRouteLegProperties>;
|
1843
|
+
type IMapRouteLegs = IMapRouteLeg[];
|
1844
|
+
type IMapRouteLegStep = Feature$1<LineString, IMapRouteLegStepProperties>;
|
1845
|
+
type IMapRouteLegSteps = IMapRouteLegStep[];
|
1923
1846
|
type IPosition = google.maps.LatLng | google.maps.LatLngLiteral | google.maps.LatLngAltitudeLiteral;
|
1924
1847
|
type IBound = google.maps.LatLngBounds;
|
1925
|
-
|
1926
|
-
|
1927
|
-
position: "TOP_LEFT" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "BOTTOM_CENTER";
|
1848
|
+
interface IMapControl {
|
1849
|
+
position: "TOP_LEFT" | "TOP_CENTER" | "TOP_RIGHT" | "BOTTOM_LEFT" | "BOTTOM_RIGHT" | "BOTTOM_CENTER";
|
1928
1850
|
control: React__default.ReactElement;
|
1929
1851
|
}
|
1852
|
+
|
1930
1853
|
interface IStaticMap {
|
1931
|
-
points:
|
1854
|
+
points: IMapPoints;
|
1932
1855
|
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1933
1856
|
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1934
1857
|
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1935
1858
|
onClickAway?: () => void;
|
1936
1859
|
onAreaChange?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
|
1937
1860
|
onInit?: () => void;
|
1938
|
-
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number
|
1861
|
+
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number) => void;
|
1939
1862
|
mapBoundary?: number;
|
1940
1863
|
mapLoader: React__default.ReactElement;
|
1941
1864
|
maxZoom: ZoomLevels;
|
1942
1865
|
minZoom: ZoomLevels;
|
1943
|
-
controls?:
|
1866
|
+
controls?: IMapControl[];
|
1944
1867
|
map: google.maps.Map;
|
1945
1868
|
}
|
1946
1869
|
interface StaticMapHandle {
|
@@ -1956,6 +1879,42 @@ declare const StaticMap: (props: IStaticMap & {
|
|
1956
1879
|
ref?: Ref<StaticMapHandle>;
|
1957
1880
|
}) => React__default.ReactNode;
|
1958
1881
|
|
1882
|
+
interface IRouteMap {
|
1883
|
+
origin: Feature$1<Point, IMapTerminalProperties>;
|
1884
|
+
destination: Feature$1<Point, IMapTerminalProperties>;
|
1885
|
+
travelMode: TravelMode;
|
1886
|
+
route: Feature$1<LineString, IMapRouteProperties>;
|
1887
|
+
routes: Feature$1<LineString, IMapRouteProperties>[];
|
1888
|
+
points: Feature$1<Point, IMapPointProperties>[];
|
1889
|
+
onClickMarker?: (marker: google.maps.marker.AdvancedMarkerElement, point: IMapPoint) => void;
|
1890
|
+
onClickCluster?: (marker: google.maps.marker.AdvancedMarkerElement, expansionZoom: number) => void;
|
1891
|
+
onFocusMarker?: (marker: google.maps.marker.AdvancedMarkerElement) => void;
|
1892
|
+
onClickAway?: () => void;
|
1893
|
+
onTravelModeChange?: (travelMode: TravelMode) => void;
|
1894
|
+
onRouteChange?: (route: IMapRoute, travelMode: TravelMode) => void;
|
1895
|
+
onInit?: () => void;
|
1896
|
+
onIdle?: (center: IPosition, bounds: IBound, zoomLevel: number, points: Feature$1<Point, IMapPointProperties>[]) => void;
|
1897
|
+
mapBoundary?: number;
|
1898
|
+
mapLoader: React__default.ReactElement;
|
1899
|
+
maxZoom: ZoomLevels;
|
1900
|
+
minZoom: ZoomLevels;
|
1901
|
+
controls?: IMapControl[];
|
1902
|
+
map: google.maps.Map;
|
1903
|
+
geometry: google.maps.GeometryLibrary;
|
1904
|
+
}
|
1905
|
+
interface RouteMapHandle {
|
1906
|
+
focusPoint: (point: IMapPoint, overlay?: React__default.ReactElement) => void;
|
1907
|
+
unfocusPoint: () => void;
|
1908
|
+
openOverlay: (point: IMapPoint | IPosition, content: React__default.ReactElement) => void;
|
1909
|
+
closeOverlay: () => void;
|
1910
|
+
zoomTo: (zoom: number, position?: IPosition) => void;
|
1911
|
+
openLoader: () => void;
|
1912
|
+
closeLoader: () => void;
|
1913
|
+
}
|
1914
|
+
declare const RouteMap: (props: IRouteMap & {
|
1915
|
+
ref?: Ref<RouteMapHandle>;
|
1916
|
+
}) => React__default.ReactNode;
|
1917
|
+
|
1959
1918
|
interface IMapLoading {
|
1960
1919
|
}
|
1961
1920
|
declare const MapLoading: (props: IMapLoading) => react_jsx_runtime.JSX.Element;
|
@@ -1970,7 +1929,7 @@ declare const MapLegendLabel: (props: IMapLegendLabel) => react_jsx_runtime.JSX.
|
|
1970
1929
|
|
1971
1930
|
interface IMapLegend extends PropsWithChildren {
|
1972
1931
|
label: React__default.ReactElement<IMapLegendLabel>;
|
1973
|
-
items: React__default.ReactElement<IMapLegendItem
|
1932
|
+
items: React__default.ReactElement<IMapLegendItem>[];
|
1974
1933
|
}
|
1975
1934
|
declare const MapLegend: (props: IMapLegend) => react_jsx_runtime.JSX.Element | null;
|
1976
1935
|
|
@@ -2128,7 +2087,7 @@ interface ICard {
|
|
2128
2087
|
title: string;
|
2129
2088
|
subtitle?: string;
|
2130
2089
|
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
2131
|
-
labels
|
2090
|
+
labels?: React__default.ReactElement<ILabel>[];
|
2132
2091
|
features?: React__default.ReactElement<IFeatures>;
|
2133
2092
|
action?: React__default.ReactElement<IButton>;
|
2134
2093
|
favorite?: React__default.ReactElement<ICardFavorite>;
|
@@ -2200,8 +2159,8 @@ declare const RequestSummary: ({ state, badge, status, actions, title, subtitle,
|
|
2200
2159
|
interface IRequestDetailsCard {
|
2201
2160
|
title: string;
|
2202
2161
|
subtitle: string;
|
2203
|
-
actions?:
|
2204
|
-
children:
|
2162
|
+
actions?: React__default.ReactNode;
|
2163
|
+
children: React__default.ReactNode;
|
2205
2164
|
detailsAction?: () => void;
|
2206
2165
|
label?: string;
|
2207
2166
|
}
|
@@ -2323,7 +2282,7 @@ interface IDetailsSectionVacation {
|
|
2323
2282
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
2324
2283
|
|
2325
2284
|
interface IDetailsSectionMap {
|
2326
|
-
map: React__default.ReactElement<
|
2285
|
+
map: React__default.ReactElement<IStaticMap | IRouteMap>;
|
2327
2286
|
}
|
2328
2287
|
|
2329
2288
|
declare const DetailsSectionMap: (props: IDetailsSectionMap) => react_jsx_runtime.JSX.Element;
|
@@ -3080,4 +3039,4 @@ declare const HeaderContext: React__default.Context<number | undefined>;
|
|
3080
3039
|
|
3081
3040
|
declare const useHeader: () => number;
|
3082
3041
|
|
3083
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableContext, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStaticMapControl, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, type StaticMapHandle, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, SupportedZoomLevels, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
3042
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, ActionMenu, AppHeader, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeTitle, BadgeType, BasicPage, BigChoice, BigPick, BlockLink, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonGroup, ButtonType, Card, CardApplication, CardFavorite, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, CollapsableContext, CollapsableProvider, Collapse, ColoredBox, CompactDetailsSectionGeneral, CompactDetailsSectionHeader, CompactDetailsSectionHours, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Count, Cover, CoverRatio, Cta, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionMap, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Dock, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Favoured, Feature, Features, Figure, FigureHeading, FigureLink, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Form, FormElement, type FormHandle, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, Header, HeaderContext, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, HorizontalScrollContainer, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IActionMenu, type IActionMenuItem, type IActionMenuToggleItem, type IAppHeader, type IBackdrop, type IBackdropProvider, type IBadge, type IBadgeTitle, type IBasicPage, type IBigChoice, type IBigPick, type IBlockLink, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBound, type IBrand, type IBreadcrumb, type IBurger, type IButton, type IButtonGroup, type ICard, type ICardApplication, type ICardFavorite, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapsableProvider, type ICollapse, type IColoredBox, type ICompactDetailsSectionGeneral, type ICompactDetailsSectionHeader, type ICompactDetailsSectionHours, type ICompactHeader, type IContactData, type ICount, type ICover, type ICta, type IDaySelect, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionMap, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDock, type IDockItem, type IDrawer, type IDrawerProvider, type IDropdown, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFavoured, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFigureLink, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeader, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IHorizontalScrollContainer, type IIcon, type IInfoCard, type IInfoTable, type IInfoTableItem, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILayoutSwitch, type ILink, type ILinkGroup, type ILinkGroupItem, type IList, type IListCard, type ILogo, type IMapControl, type IMapLegend, type IMapLegendItem, type IMapLegendLabel, type IMapLoading, type IMapPoint, type IMapPointProperties, type IMapPoints, type IMapRoute, type IMapRouteProperties, type IMapRoutes, type IMaskedImage, type IMessage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type INotificationIcon, type IOnboarding, type IOpeningHoursSelect, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, type IOverlayProvider, type IPadding, type IPaddingCssItem, type IPaddingItem, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPillStatus, type IPillStatusLegend, type IPin, type IPlaceholderPhoto, type IPlainText, type IPosition, type IProfileNavigation, type IProfileRequestsSectionConfirmModal, type IProfileRequestsSectionEmpty, type IProfileSectionHeader, type IProfileSectionMessages, type IProfileSectionRequest, type IProfileSectionRequests, type IProfileSectionThread, type IProgress, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementConfirm, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestDetailsCard, type IRequestSummary, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionNotAvailable, type ISearchSectionResults, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITextArea, type IThread, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IUnFavoured, type IVerticalTabs, type IVerticalTabsItem, type IWave, type IWizard, type IWizardArrangementInlineControlled, type IWizardArrangementLeftOnly, type IWizardArrangementSplitBox, type IWizardControls, type IWizardPage, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, InfoTable, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, LayoutSwitch, Link, LinkContext, LinkGroup, List, ListCard, ListType, Location, type LocationHandle, type LocationI, Logo, LogoSize, MapControlContainer, MapLegend, MapLegendItem, MapLegendLabel, MapLoading, type MapPointType, MaskType, MaskedImage, Message, MinimalHeader, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, NotificationIcon, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, OverlayProvider, OverlaySize, Padding, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, PillStatus, PillStatusLegend, PillStatusState, PillStatusType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoRatio, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProfileRequestsSectionConfirmModal, ProfileRequestsSectionEmpty, ProfileSectionHeader, ProfileSectionMessages, ProfileSectionRequest, ProfileSectionRequests, ProfileSectionThread, Progress, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record, Records, RequestArrangementConfirm, RequestArrangementHeader, RequestArrangementStep, RequestDetailsCard, RequestSummary, RequestSummarySize, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteMap, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionNotAvailableModal, SearchSectionResults, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, ShoppingCartPage, StatBlock, StaticMap, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Table, TableCellType, Term, Terminal, TextAlignment, TextArea, TextAreaContext, TextDecoration, ThemeModeContext, ThemeModeProvider, Thread, Toggle, TopNavigation, type TravelMode, UnFavoured, VerticalTabs, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardHeader, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useHeader, useIsGoogleProcessing, useIsProcessing, useProcessing };
|