@tactics/lokaal-loket 0.0.316 → 0.0.318
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +748 -774
- package/build/index.d.cts +166 -191
- package/build/index.d.ts +166 -191
- package/build/index.js +706 -732
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
2
|
import * as React$1 from 'react';
|
3
|
-
import React__default, {
|
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 { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
6
6
|
import { Feature as Feature$1, Point, LineString } from 'geojson';
|
@@ -9,51 +9,6 @@ import { AsyncResult } from '@tactics/js-monad';
|
|
9
9
|
import { ThemeMode } from '@tactics/tacky';
|
10
10
|
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
11
11
|
|
12
|
-
interface IDaySelect {
|
13
|
-
onChange: (value: number[]) => void;
|
14
|
-
monLabel: string;
|
15
|
-
tueLabel: string;
|
16
|
-
wedLabel: string;
|
17
|
-
thuLabel: string;
|
18
|
-
friLabel: string;
|
19
|
-
satLabel: string;
|
20
|
-
sunLabel: string;
|
21
|
-
selectedDays: number[];
|
22
|
-
}
|
23
|
-
|
24
|
-
declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, friLabel, satLabel, sunLabel, selectedDays, }: IDaySelect) => react_jsx_runtime.JSX.Element;
|
25
|
-
|
26
|
-
interface OpeningHoursSelectHours {
|
27
|
-
start: string;
|
28
|
-
end: string;
|
29
|
-
}
|
30
|
-
interface IOpeningHoursSelect {
|
31
|
-
selected?: OpeningHoursSelectHours;
|
32
|
-
onChange: (value: OpeningHoursSelectHours) => void;
|
33
|
-
}
|
34
|
-
|
35
|
-
declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
|
36
|
-
|
37
|
-
interface IToggle {
|
38
|
-
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
39
|
-
value: string;
|
40
|
-
ariaLabel?: string;
|
41
|
-
label: string;
|
42
|
-
name: string;
|
43
|
-
checked?: boolean;
|
44
|
-
defaultChecked?: boolean;
|
45
|
-
}
|
46
|
-
|
47
|
-
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
48
|
-
|
49
|
-
interface OpeninghoursI {
|
50
|
-
hours: React__default.ReactElement<IOpeningHoursSelect>;
|
51
|
-
days: React__default.ReactElement<IDaySelect>;
|
52
|
-
toggle?: React__default.ReactElement<IToggle>;
|
53
|
-
}
|
54
|
-
|
55
|
-
declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
|
56
|
-
|
57
12
|
declare enum IconContext {
|
58
13
|
STANDARD = "STANDARD",
|
59
14
|
SUPPORTING = "SUPPORTING",
|
@@ -267,8 +222,115 @@ declare enum FramePadding {
|
|
267
222
|
SMALL = "SMALL"
|
268
223
|
}
|
269
224
|
|
225
|
+
type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
|
226
|
+
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
|
227
|
+
interface ITerminal {
|
228
|
+
key: string;
|
229
|
+
name: string;
|
230
|
+
type: TerminalType;
|
231
|
+
}
|
232
|
+
interface IPin {
|
233
|
+
key: string;
|
234
|
+
name: string;
|
235
|
+
address: string;
|
236
|
+
showsExactLocation: boolean;
|
237
|
+
type: PointType;
|
238
|
+
overlay: React__default.ReactNode;
|
239
|
+
}
|
240
|
+
interface ILine {
|
241
|
+
key: string;
|
242
|
+
index: number;
|
243
|
+
label: string;
|
244
|
+
durationInSeconds: number;
|
245
|
+
distanceInMeters: number;
|
246
|
+
steps: IRouteStep[];
|
247
|
+
}
|
248
|
+
interface IStep {
|
249
|
+
key: string;
|
250
|
+
instructions: string;
|
251
|
+
travel_mode: google.maps.TravelMode;
|
252
|
+
}
|
253
|
+
type IOrigin = Feature$1<Point, ITerminal>;
|
254
|
+
type IDestination = Feature$1<Point, ITerminal>;
|
255
|
+
type IPoint = Feature$1<Point, IPin>;
|
256
|
+
type IPoints = IPoint[];
|
257
|
+
type IRoute = Feature$1<LineString, ILine>;
|
258
|
+
type IRoutes = Record<string, IRoute>;
|
259
|
+
type IRouteStep = Feature$1<LineString, IStep>;
|
260
|
+
interface IFailureMap {
|
261
|
+
message: string;
|
262
|
+
}
|
263
|
+
interface IMapLegendLabel {
|
264
|
+
figure: React__default.ReactElement<IFigure>;
|
265
|
+
label: string;
|
266
|
+
}
|
267
|
+
interface IMapLegendItem {
|
268
|
+
pin: React__default.ReactElement<IPin>;
|
269
|
+
label: string;
|
270
|
+
}
|
271
|
+
interface ILocationBasedMap {
|
272
|
+
updateOriginOnAreaChange: boolean;
|
273
|
+
viewOnly?: boolean;
|
274
|
+
points?: IPoints;
|
275
|
+
showLoader: boolean;
|
276
|
+
loader?: React__default.ReactNode;
|
277
|
+
origin: IOrigin;
|
278
|
+
radius: number;
|
279
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
280
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
281
|
+
onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
282
|
+
}
|
283
|
+
interface IDirectionBasedMapBase {
|
284
|
+
routes?: IRoutes;
|
285
|
+
viewOnly?: boolean;
|
286
|
+
activeRoute: string;
|
287
|
+
points?: IPoints;
|
288
|
+
showLoader: boolean;
|
289
|
+
loader?: React__default.ReactNode;
|
290
|
+
origin?: IOrigin;
|
291
|
+
destination?: IDestination;
|
292
|
+
deviation: number;
|
293
|
+
activeTravelMode: google.maps.TravelMode;
|
294
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
295
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
296
|
+
onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
297
|
+
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
298
|
+
onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
299
|
+
}
|
300
|
+
interface IMap extends PropsWithChildren {
|
301
|
+
mapId: string;
|
302
|
+
defaultCenter: google.maps.LatLngLiteral;
|
303
|
+
zoom?: number;
|
304
|
+
}
|
305
|
+
|
306
|
+
interface DirectionMapHandle {
|
307
|
+
closeMapOverlay: () => void;
|
308
|
+
}
|
309
|
+
|
310
|
+
interface LocationMapHandle {
|
311
|
+
panTo: (lat: number, lng: number) => void;
|
312
|
+
closeMapOverlay: () => void;
|
313
|
+
}
|
314
|
+
|
315
|
+
declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
316
|
+
declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
317
|
+
|
318
|
+
declare const Map: {
|
319
|
+
(props: IMap): react_jsx_runtime.JSX.Element;
|
320
|
+
Location: (props: ILocationBasedMap & {
|
321
|
+
ref?: React__default.Ref<LocationMapHandle>;
|
322
|
+
}) => JSX.Element;
|
323
|
+
Direction: (props: IDirectionBasedMapBase & {
|
324
|
+
ref?: React__default.Ref<DirectionMapHandle>;
|
325
|
+
}) => JSX.Element;
|
326
|
+
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
327
|
+
Loading: ({ loader }: {
|
328
|
+
loader: React__default.ReactNode;
|
329
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
330
|
+
};
|
331
|
+
|
270
332
|
interface IFrame {
|
271
|
-
around: React__default.ReactElement<IIcon | IFigure>;
|
333
|
+
around: React__default.ReactElement<IIcon | IFigure | IPin>;
|
272
334
|
split?: string | false;
|
273
335
|
background?: string;
|
274
336
|
padding?: FramePadding;
|
@@ -752,26 +814,6 @@ interface IBigPick extends IBigPickBase {
|
|
752
814
|
|
753
815
|
declare const BigPick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigPick) => react_jsx_runtime.JSX.Element;
|
754
816
|
|
755
|
-
interface SelectEvent<T> {
|
756
|
-
selected: T;
|
757
|
-
}
|
758
|
-
interface SelectChangeEvent<T> extends SelectEvent<T> {
|
759
|
-
}
|
760
|
-
interface SelectBlurEvent<T> extends SelectEvent<T> {
|
761
|
-
}
|
762
|
-
interface SelectFocusEvent<T> extends SelectEvent<T> {
|
763
|
-
}
|
764
|
-
|
765
|
-
interface InlineSelectI<T> {
|
766
|
-
options: T[];
|
767
|
-
defaultIndex: number;
|
768
|
-
optionToDisplay: (option: T) => React__default.ReactNode;
|
769
|
-
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
770
|
-
onChange?: (e: SelectChangeEvent<T>) => void;
|
771
|
-
}
|
772
|
-
|
773
|
-
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
774
|
-
|
775
817
|
type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
|
776
818
|
interface AutoCompleteContextType<T> {
|
777
819
|
input: string;
|
@@ -1047,6 +1089,18 @@ interface IColoredBox {
|
|
1047
1089
|
|
1048
1090
|
declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
|
1049
1091
|
|
1092
|
+
interface IToggle {
|
1093
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
1094
|
+
value: string;
|
1095
|
+
ariaLabel?: string;
|
1096
|
+
label: string;
|
1097
|
+
name: string;
|
1098
|
+
checked?: boolean;
|
1099
|
+
defaultChecked?: boolean;
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
1103
|
+
|
1050
1104
|
interface INoResults {
|
1051
1105
|
title: string;
|
1052
1106
|
subtitle?: string;
|
@@ -1279,13 +1333,38 @@ declare enum PlaceholderPhotoType {
|
|
1279
1333
|
}
|
1280
1334
|
|
1281
1335
|
interface IPlaceholderPhoto {
|
1282
|
-
figure:
|
1336
|
+
figure: React__default.ReactElement<IFigure>;
|
1283
1337
|
type: PlaceholderPhotoType;
|
1284
1338
|
height: string;
|
1285
1339
|
}
|
1286
1340
|
|
1287
1341
|
declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
|
1288
1342
|
|
1343
|
+
interface OpeningHoursSelectHours {
|
1344
|
+
start: string;
|
1345
|
+
end: string;
|
1346
|
+
}
|
1347
|
+
interface IOpeningHoursSelect {
|
1348
|
+
selected?: OpeningHoursSelectHours;
|
1349
|
+
onChange: (value: OpeningHoursSelectHours) => void;
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
|
1353
|
+
|
1354
|
+
interface IDaySelect {
|
1355
|
+
onChange: (value: number[]) => void;
|
1356
|
+
monLabel: string;
|
1357
|
+
tueLabel: string;
|
1358
|
+
wedLabel: string;
|
1359
|
+
thuLabel: string;
|
1360
|
+
friLabel: string;
|
1361
|
+
satLabel: string;
|
1362
|
+
sunLabel: string;
|
1363
|
+
selectedDays: number[];
|
1364
|
+
}
|
1365
|
+
|
1366
|
+
declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, friLabel, satLabel, sunLabel, selectedDays, }: IDaySelect) => react_jsx_runtime.JSX.Element;
|
1367
|
+
|
1289
1368
|
interface INavigation extends INavigationBase {
|
1290
1369
|
}
|
1291
1370
|
interface INavigationBase {
|
@@ -1339,13 +1418,6 @@ interface IRecords {
|
|
1339
1418
|
|
1340
1419
|
declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
|
1341
1420
|
|
1342
|
-
interface IStatusList {
|
1343
|
-
children?: ReactElement<IStatusCompact> | ReactElement<IStatusCompact>[];
|
1344
|
-
withCount: boolean;
|
1345
|
-
}
|
1346
|
-
|
1347
|
-
declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_runtime.JSX.Element;
|
1348
|
-
|
1349
1421
|
interface ITopNavigation extends ITopNavigationBase {
|
1350
1422
|
}
|
1351
1423
|
interface ITopNavigationBase {
|
@@ -1376,14 +1448,6 @@ interface IOnboardingButton extends IButtonMinimal {
|
|
1376
1448
|
declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
|
1377
1449
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1378
1450
|
|
1379
|
-
interface IQuickSearch {
|
1380
|
-
heading: string;
|
1381
|
-
content: React__default.ReactNode;
|
1382
|
-
action: React__default.ReactNode;
|
1383
|
-
}
|
1384
|
-
|
1385
|
-
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
1386
|
-
|
1387
1451
|
interface IGallery {
|
1388
1452
|
images: string[];
|
1389
1453
|
}
|
@@ -1579,113 +1643,6 @@ interface IFooter {
|
|
1579
1643
|
|
1580
1644
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1581
1645
|
|
1582
|
-
type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
|
1583
|
-
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
|
1584
|
-
interface ITerminal {
|
1585
|
-
key: string;
|
1586
|
-
name: string;
|
1587
|
-
type: TerminalType;
|
1588
|
-
}
|
1589
|
-
interface IPin {
|
1590
|
-
key: string;
|
1591
|
-
name: string;
|
1592
|
-
address: string;
|
1593
|
-
showsExactLocation: boolean;
|
1594
|
-
type: PointType;
|
1595
|
-
overlay: React__default.ReactNode;
|
1596
|
-
}
|
1597
|
-
interface ILine {
|
1598
|
-
key: string;
|
1599
|
-
index: number;
|
1600
|
-
label: string;
|
1601
|
-
durationInSeconds: number;
|
1602
|
-
distanceInMeters: number;
|
1603
|
-
steps: IRouteStep[];
|
1604
|
-
}
|
1605
|
-
interface IStep {
|
1606
|
-
key: string;
|
1607
|
-
instructions: string;
|
1608
|
-
travel_mode: google.maps.TravelMode;
|
1609
|
-
}
|
1610
|
-
type IOrigin = Feature$1<Point, ITerminal>;
|
1611
|
-
type IDestination = Feature$1<Point, ITerminal>;
|
1612
|
-
type IPoint = Feature$1<Point, IPin>;
|
1613
|
-
type IPoints = IPoint[];
|
1614
|
-
type IRoute = Feature$1<LineString, ILine>;
|
1615
|
-
type IRoutes = Record<string, IRoute>;
|
1616
|
-
type IRouteStep = Feature$1<LineString, IStep>;
|
1617
|
-
interface IFailureMap {
|
1618
|
-
message: string;
|
1619
|
-
}
|
1620
|
-
interface IMapLegendLabel {
|
1621
|
-
figure: React__default.ReactElement<IFigure>;
|
1622
|
-
label: string;
|
1623
|
-
}
|
1624
|
-
interface IMapLegendItem {
|
1625
|
-
pin: React__default.ReactElement<IPin>;
|
1626
|
-
label: string;
|
1627
|
-
}
|
1628
|
-
interface ILocationBasedMap {
|
1629
|
-
updateOriginOnAreaChange: boolean;
|
1630
|
-
viewOnly?: boolean;
|
1631
|
-
points?: IPoints;
|
1632
|
-
showLoader: boolean;
|
1633
|
-
loader?: React__default.ReactNode;
|
1634
|
-
origin: IOrigin;
|
1635
|
-
radius: number;
|
1636
|
-
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1637
|
-
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1638
|
-
onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1639
|
-
}
|
1640
|
-
interface IDirectionBasedMapBase {
|
1641
|
-
routes?: IRoutes;
|
1642
|
-
viewOnly?: boolean;
|
1643
|
-
activeRoute: string;
|
1644
|
-
points?: IPoints;
|
1645
|
-
showLoader: boolean;
|
1646
|
-
loader?: React__default.ReactNode;
|
1647
|
-
origin?: IOrigin;
|
1648
|
-
destination?: IDestination;
|
1649
|
-
deviation: number;
|
1650
|
-
activeTravelMode: google.maps.TravelMode;
|
1651
|
-
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1652
|
-
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1653
|
-
onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1654
|
-
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1655
|
-
onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
1656
|
-
}
|
1657
|
-
interface IMap extends PropsWithChildren {
|
1658
|
-
mapId: string;
|
1659
|
-
defaultCenter: google.maps.LatLngLiteral;
|
1660
|
-
zoom?: number;
|
1661
|
-
}
|
1662
|
-
|
1663
|
-
interface DirectionMapHandle {
|
1664
|
-
closeMapOverlay: () => void;
|
1665
|
-
}
|
1666
|
-
|
1667
|
-
interface LocationMapHandle {
|
1668
|
-
panTo: (lat: number, lng: number) => void;
|
1669
|
-
closeMapOverlay: () => void;
|
1670
|
-
}
|
1671
|
-
|
1672
|
-
declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
1673
|
-
declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
1674
|
-
|
1675
|
-
declare const Map: {
|
1676
|
-
(props: IMap): react_jsx_runtime.JSX.Element;
|
1677
|
-
Location: (props: ILocationBasedMap & {
|
1678
|
-
ref?: React__default.Ref<LocationMapHandle>;
|
1679
|
-
}) => JSX.Element;
|
1680
|
-
Direction: (props: IDirectionBasedMapBase & {
|
1681
|
-
ref?: React__default.Ref<DirectionMapHandle>;
|
1682
|
-
}) => JSX.Element;
|
1683
|
-
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1684
|
-
Loading: ({ loader }: {
|
1685
|
-
loader: React__default.ReactNode;
|
1686
|
-
}) => react_jsx_runtime.JSX.Element | null;
|
1687
|
-
};
|
1688
|
-
|
1689
1646
|
interface IProgress {
|
1690
1647
|
steps: number;
|
1691
1648
|
activeStep: number;
|
@@ -1869,6 +1826,14 @@ declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
|
|
1869
1826
|
|
1870
1827
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
1871
1828
|
|
1829
|
+
interface OpeninghoursI {
|
1830
|
+
hours: React__default.ReactElement<IOpeningHoursSelect>;
|
1831
|
+
days: React__default.ReactElement<IDaySelect>;
|
1832
|
+
toggle?: React__default.ReactElement<IToggle>;
|
1833
|
+
}
|
1834
|
+
|
1835
|
+
declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
|
1836
|
+
|
1872
1837
|
interface IFlyoutArrangementSplit {
|
1873
1838
|
top?: React__default.ReactElement;
|
1874
1839
|
left: React__default.ReactElement;
|
@@ -2568,9 +2533,19 @@ declare const InlineSelectLabelAsOptionSelected: <T>(args: InlineSelectOptionI)
|
|
2568
2533
|
declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
2569
2534
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
2570
2535
|
|
2536
|
+
interface SelectEvent<T> {
|
2537
|
+
selected: T;
|
2538
|
+
}
|
2539
|
+
interface SelectChangeEvent<T> extends SelectEvent<T> {
|
2540
|
+
}
|
2541
|
+
interface SelectBlurEvent<T> extends SelectEvent<T> {
|
2542
|
+
}
|
2543
|
+
interface SelectFocusEvent<T> extends SelectEvent<T> {
|
2544
|
+
}
|
2545
|
+
|
2571
2546
|
declare const CardDaycareExample: () => react_jsx_runtime.JSX.Element;
|
2572
2547
|
declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
2573
2548
|
|
2574
2549
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2575
2550
|
|
2576
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, 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, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type
|
2551
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, 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, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlockRadio, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IForm, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInformationTooltip, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestArrangementStep, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IShoppingCartPage, type IStatBlock, type IStatus, type IStatusSectionBasic, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, 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, Information, InformationBackground, InformationTooltip, InformationVariant, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalFooterSticky, ModalHeaderSticky, ModalPaddedContent, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, OverlaySize, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestArrangementStep, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, StatBlock, Status, StatusCompact, StatusContext, StatusSectionBasic, StyleProviderMbp, StyleVarsMbp, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardArrangementInlineControlled, WizardArrangementLeftOnly, WizardArrangementSplitBox, WizardContext, WizardControls, WizardPage, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|