@tactics/lokaal-loket 0.0.325 → 0.0.326
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +1743 -23436
- package/build/index.d.cts +1423 -2185
- package/build/index.d.ts +1423 -2185
- package/build/index.js +2047 -22670
- package/package.json +14 -14
package/build/index.d.ts
CHANGED
@@ -1,290 +1,265 @@
|
|
1
|
-
import * as react_jsx_runtime from
|
2
|
-
import * as React$1 from
|
3
|
-
import React__default, {PropsWithChildren, Ref, ReactNode, FC} from
|
4
|
-
import {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
} from "@tactics/tacky/contract";
|
12
|
-
export {
|
13
|
-
Color,
|
14
|
-
ColorVariant,
|
15
|
-
Radius,
|
16
|
-
Spacing,
|
17
|
-
ThemeConfigI,
|
18
|
-
ThemeI,
|
19
|
-
ThemeVariantsI,
|
20
|
-
TypographyFont,
|
21
|
-
TypographyFonts,
|
22
|
-
} from "@tactics/tacky/contract";
|
23
|
-
import {Feature as Feature$1, Point, LineString} from "geojson";
|
24
|
-
import * as styled_components from "styled-components";
|
25
|
-
import {AsyncResult} from "@tactics/js-monad";
|
26
|
-
import {ThemeMode} from "@tactics/tacky";
|
27
|
-
export {
|
28
|
-
BuildProvidersTree,
|
29
|
-
ExternalStylesheetLoader,
|
30
|
-
ExternalStylesheetLoaderI,
|
31
|
-
StyleProviderAnimation,
|
32
|
-
StyleProviderPreFlight,
|
33
|
-
ThemeBuilder,
|
34
|
-
ThemeCtx,
|
35
|
-
ThemeMode,
|
36
|
-
} from "@tactics/tacky";
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
+
import * as React$1 from 'react';
|
3
|
+
import React__default, { PropsWithChildren, Ref, ReactNode, FC } from 'react';
|
4
|
+
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
|
5
|
+
export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
6
|
+
import { Feature as Feature$1, Point, LineString } from 'geojson';
|
7
|
+
import * as styled_components from 'styled-components';
|
8
|
+
import { AsyncResult } from '@tactics/js-monad';
|
9
|
+
import { ThemeMode } from '@tactics/tacky';
|
10
|
+
export { BuildProvidersTree, ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
37
11
|
|
38
12
|
declare enum IconContext {
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
13
|
+
STANDARD = "STANDARD",
|
14
|
+
SUPPORTING = "SUPPORTING",
|
15
|
+
DARK = "DARK",
|
16
|
+
LIGHT = "LIGHT",
|
17
|
+
DISABLED = "DISABLED",
|
18
|
+
DANGER = "DANGER",
|
19
|
+
WARNING = "WARNING",
|
20
|
+
SUCCESS = "SUCCESS",
|
21
|
+
INFO = "INFO"
|
48
22
|
}
|
49
23
|
declare enum IconSize {
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
24
|
+
XSMALL = "XSMALL",
|
25
|
+
SMALL = "SMALL",
|
26
|
+
MEDIUM = "MEDIUM",
|
27
|
+
LARGE = "LARGE"
|
54
28
|
}
|
55
29
|
declare enum IconType {
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
30
|
+
CANCEL = "CANCEL",
|
31
|
+
ARROW_LEFT = "ARROW_LEFT",
|
32
|
+
ARROW_RIGHT = "ARROW_RIGHT",
|
33
|
+
CHEVRON_DOWN = "CHEVRON_DOWN",
|
34
|
+
CHEVRON_UP = "CHEVRON_UP",
|
35
|
+
CHEVRON_RIGHT = "CHEVRON_RIGHT",
|
36
|
+
CHEVRON_LEFT = "CHEVRON_LEFT",
|
37
|
+
EDIT = "EDIT",
|
38
|
+
SEND = "SEND",
|
39
|
+
REDO = "REDO",
|
40
|
+
PROFILE = "PROFILE",
|
41
|
+
CHECK = "CHECK",
|
42
|
+
TRANSLATION = "TRANSLATION",
|
43
|
+
MAP = "MAP",
|
44
|
+
EURO = "EURO",
|
45
|
+
BABY = "BABY",
|
46
|
+
PIN = "PIN",
|
47
|
+
DISTANCE = "DISTANCE",
|
48
|
+
DOCUMENT = "DOCUMENT",
|
49
|
+
FAVORITE = "FAVORITE",
|
50
|
+
FAVOURED = "FAVOURED",
|
51
|
+
MENU = "MENU",
|
52
|
+
ADD = "ADD",
|
53
|
+
MINUS = "MINUS",
|
54
|
+
COMMENT = "COMMENT",
|
55
|
+
IN_PROCESS = "IN_PROCESS",
|
56
|
+
COLLAPSE = "COLLAPSE",
|
57
|
+
EXPAND = "EXPAND",
|
58
|
+
SEARCH = "SEARCH",
|
59
|
+
BEST_FIT = "BEST_FIT",
|
60
|
+
BIKE = "BIKE",
|
61
|
+
CAR = "CAR",
|
62
|
+
WALK = "WALK",
|
63
|
+
PUBLIC_TRANSPORT = "PUBLIC_TRANSPORT",
|
64
|
+
FACEBOOK = "FACEBOOK",
|
65
|
+
INSTAGRAM = "INSTAGRAM",
|
66
|
+
LOCATION = "LOCATION",
|
67
|
+
FILTER = "FILTER",
|
68
|
+
HOME = "HOME",
|
69
|
+
INFO = "INFO",
|
70
|
+
TRASH = "TRASH",
|
71
|
+
CROSSHAIR = "CROSSHAIR",
|
72
|
+
EYE = "EYE",
|
73
|
+
EYE_CLOSED = "EYE_CLOSED",
|
74
|
+
CALENDAR = "CALENDAR",
|
75
|
+
WARNING = "WARNING",
|
76
|
+
EMAIL = "EMAIL"
|
102
77
|
}
|
103
78
|
|
104
79
|
interface IScaledIcon {
|
105
|
-
|
106
|
-
|
80
|
+
icon: React__default.ReactElement<IIcon>;
|
81
|
+
size: IconSize;
|
107
82
|
}
|
108
83
|
interface IIcon {
|
109
|
-
|
110
|
-
|
111
|
-
|
84
|
+
type: IconType;
|
85
|
+
screenReaderText?: string;
|
86
|
+
onClick?: () => void;
|
112
87
|
}
|
113
88
|
|
114
|
-
declare const Icon: ({type, screenReaderText, onClick}: IIcon) => react_jsx_runtime.JSX.Element;
|
115
|
-
declare const ScaledIcon: ({icon, size}: IScaledIcon) => react_jsx_runtime.JSX.Element;
|
89
|
+
declare const Icon: ({ type, screenReaderText, onClick }: IIcon) => react_jsx_runtime.JSX.Element;
|
90
|
+
declare const ScaledIcon: ({ icon, size }: IScaledIcon) => react_jsx_runtime.JSX.Element;
|
116
91
|
|
117
92
|
interface IBurger {
|
118
|
-
|
119
|
-
|
93
|
+
icon: React__default.ReactElement<IIcon>;
|
94
|
+
onClick?: () => void;
|
120
95
|
}
|
121
96
|
|
122
|
-
declare const Burger: ({icon, onClick}: IBurger) => react_jsx_runtime.JSX.Element;
|
97
|
+
declare const Burger: ({ icon, onClick }: IBurger) => react_jsx_runtime.JSX.Element;
|
123
98
|
|
124
99
|
interface ILabeledIcon {
|
125
|
-
|
126
|
-
|
100
|
+
withIconBefore: React__default.ReactElement<IIcon>;
|
101
|
+
label: string;
|
127
102
|
}
|
128
103
|
|
129
|
-
declare const LabeledIcon: ({label, withIconBefore}: ILabeledIcon) => react_jsx_runtime.JSX.Element;
|
104
|
+
declare const LabeledIcon: ({ label, withIconBefore }: ILabeledIcon) => react_jsx_runtime.JSX.Element;
|
130
105
|
|
131
106
|
interface ISafeHtml {
|
132
|
-
|
107
|
+
raw: string;
|
133
108
|
}
|
134
109
|
|
135
|
-
declare const SafeHtml: ({raw}: ISafeHtml) => react_jsx_runtime.JSX.Element;
|
110
|
+
declare const SafeHtml: ({ raw }: ISafeHtml) => react_jsx_runtime.JSX.Element;
|
136
111
|
|
137
112
|
interface IFlip {
|
138
|
-
|
139
|
-
|
113
|
+
onClick?: () => void;
|
114
|
+
label: string;
|
140
115
|
}
|
141
116
|
|
142
|
-
declare const Flip: ({onClick, label}: IFlip) => react_jsx_runtime.JSX.Element;
|
117
|
+
declare const Flip: ({ onClick, label }: IFlip) => react_jsx_runtime.JSX.Element;
|
143
118
|
|
144
119
|
declare enum PinType {
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
120
|
+
DAYCARE = "DAYCARE",
|
121
|
+
CHILDMINDER = "CHILDMINDER",
|
122
|
+
COOPERATIVE = "COOPERATIVE",
|
123
|
+
OUT_OF_RANGE = "OUT_OF_RANGE",
|
124
|
+
VIEW_ONLY = "VIEW_ONLY"
|
150
125
|
}
|
151
126
|
|
152
127
|
interface IPinBase {
|
153
|
-
|
154
|
-
|
128
|
+
type: PinType;
|
129
|
+
lifted?: boolean;
|
155
130
|
}
|
156
131
|
|
157
|
-
declare const Pin: ({type, lifted}: IPinBase) => react_jsx_runtime.JSX.Element;
|
132
|
+
declare const Pin: ({ type, lifted }: IPinBase) => react_jsx_runtime.JSX.Element;
|
158
133
|
|
159
134
|
declare enum BadgeType {
|
160
|
-
|
161
|
-
|
162
|
-
|
135
|
+
DAYCARE = "DAYCARE",
|
136
|
+
CHILDMINDER = "CHILDMINDER",
|
137
|
+
COOPERATIVE = "COOPERATIVE"
|
163
138
|
}
|
164
139
|
declare enum BadgeSize {
|
165
|
-
|
166
|
-
|
167
|
-
|
140
|
+
DEFAULT = "DEFAULT",
|
141
|
+
LARGE = "LARGE",
|
142
|
+
SMALL = "SMALL"
|
168
143
|
}
|
169
144
|
|
170
145
|
declare enum FigureSize {
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
146
|
+
SMALL = "SMALL",
|
147
|
+
MEDIUM = "MEDIUM",
|
148
|
+
LARGE = "LARGE",
|
149
|
+
XLARGE = "XLARGE"
|
175
150
|
}
|
176
151
|
declare enum FigureType {
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
152
|
+
CHILD = "CHILD",
|
153
|
+
FAMILY = "FAMILY",
|
154
|
+
CALENDAR = "CALENDAR",
|
155
|
+
BIN = "BIN",
|
156
|
+
ALERT = "ALERT",
|
157
|
+
PASSWORD = "PASSWORD",
|
158
|
+
SEARCH = "SEARCH",
|
159
|
+
FOLDER = "FOLDER",
|
160
|
+
PASSPORT = "PASSPORT",
|
161
|
+
SETTING = "SETTING",
|
162
|
+
FACE = "FACE",
|
163
|
+
PIN = "PIN",
|
164
|
+
MONEY = "MONEY",
|
165
|
+
IDEA = "IDEA",
|
166
|
+
OFFER = "OFFER",
|
167
|
+
FAVORITE = "FAVORITE",
|
168
|
+
FOLLOW_UP = "FOLLOW_UP",
|
169
|
+
STAR = "STAR",
|
170
|
+
COINS = "COINS",
|
171
|
+
CHECK = "CHECK",
|
172
|
+
LIKE = "LIKE",
|
173
|
+
MAP = "MAP",
|
174
|
+
ADD = "ADD",
|
175
|
+
APPLICATION = "APPLICATION",
|
176
|
+
BABY = "BABY",
|
177
|
+
BOOKMARK = "BOOKMARK",
|
178
|
+
CONVERSATION = "CONVERSATION",
|
179
|
+
CANCEL = "CANCEL",
|
180
|
+
DAD = "DAD",
|
181
|
+
DATETIME = "DATETIME",
|
182
|
+
FILE = "FILE",
|
183
|
+
HOME = "HOME",
|
184
|
+
INFORMATION = "INFORMATION",
|
185
|
+
MAIL = "MAIL",
|
186
|
+
MOM = "MOM",
|
187
|
+
NO = "NO",
|
188
|
+
NOTE = "NOTE",
|
189
|
+
YES = "YES",
|
190
|
+
FENCE = "FENCE",
|
191
|
+
BUILDING = "BUILDING",
|
192
|
+
BABY_BOTTLE = "BABY_BOTTLE",
|
193
|
+
DIAPERS = "DIAPERS",
|
194
|
+
CART = "CART",
|
195
|
+
PLANT = "PLANT",
|
196
|
+
CAMERA = "CAMERA",
|
197
|
+
CAR = "CAR",
|
198
|
+
HEART = "HEART",
|
199
|
+
CONTROL = "CONTROL",
|
200
|
+
ACCOUNT_VALIDATION = "ACCOUNT_VALIDATION",
|
201
|
+
DATE_TIME_SETTING = "DATE_TIME_SETTING",
|
202
|
+
TYPE = "TYPE",
|
203
|
+
PARENTS = "PARENTS",
|
204
|
+
LOCATION = "LOCATION",
|
205
|
+
SEARCH_GLASS = "SEARCH_GLASS",
|
206
|
+
NOTIFICATIONS = "NOTIFICATIONS",
|
207
|
+
EDIT_DOCUMENT = "EDIT_DOCUMENT",
|
208
|
+
PINNED = "PINNED",
|
209
|
+
DUPLICATE = "DUPLICATE",
|
210
|
+
WRITING = "WRITING",
|
211
|
+
EMERGENCY_FILE = "EMERGENCY_FILE",
|
212
|
+
PIN_DOCUMENT = "PIN_DOCUMENT",
|
213
|
+
TOYS = "TOYS",
|
214
|
+
NUTRITION_INFO = "NUTRITION_INFO",
|
215
|
+
DIRECTIONS = "DIRECTIONS"
|
241
216
|
}
|
242
217
|
|
243
218
|
interface IFigure {
|
244
|
-
|
245
|
-
|
219
|
+
type: FigureType;
|
220
|
+
screenReaderText: string;
|
246
221
|
}
|
247
222
|
interface IScaledFigure {
|
248
|
-
|
249
|
-
|
223
|
+
figure: React__default.ReactElement<IFigure>;
|
224
|
+
size: FigureSize;
|
250
225
|
}
|
251
226
|
|
252
|
-
declare const Figure: ({type, screenReaderText}: IFigure) => react_jsx_runtime.JSX.Element;
|
253
|
-
declare const ScaledFigure: ({figure, size}: IScaledFigure) => react_jsx_runtime.JSX.Element;
|
227
|
+
declare const Figure: ({ type, screenReaderText }: IFigure) => react_jsx_runtime.JSX.Element;
|
228
|
+
declare const ScaledFigure: ({ figure, size }: IScaledFigure) => react_jsx_runtime.JSX.Element;
|
254
229
|
|
255
230
|
declare enum FramePadding {
|
256
|
-
|
257
|
-
|
258
|
-
|
231
|
+
DEFAULT = "DEFAULT",
|
232
|
+
LARGE = "LARGE",
|
233
|
+
SMALL = "SMALL"
|
259
234
|
}
|
260
235
|
|
261
236
|
type TerminalType = "ORIGIN" | "DESTINATION" | "VIEW_ONLY";
|
262
237
|
type PointType = "DAYCARE" | "CHILDMINDER" | "COOPERATIVE" | "OUT_OF_RANGE" | "VIEW_ONLY";
|
263
238
|
interface ITerminal {
|
264
|
-
|
265
|
-
|
266
|
-
|
239
|
+
key: string;
|
240
|
+
name: string;
|
241
|
+
type: TerminalType;
|
267
242
|
}
|
268
243
|
interface IPin {
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
244
|
+
key: string;
|
245
|
+
name: string;
|
246
|
+
address: string;
|
247
|
+
showsExactLocation: boolean;
|
248
|
+
type: PointType;
|
249
|
+
overlay: React__default.ReactNode;
|
275
250
|
}
|
276
251
|
interface ILine {
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
252
|
+
key: string;
|
253
|
+
index: number;
|
254
|
+
label: string;
|
255
|
+
durationInSeconds: number;
|
256
|
+
distanceInMeters: number;
|
257
|
+
steps: IRouteStep[];
|
283
258
|
}
|
284
259
|
interface IStep {
|
285
|
-
|
286
|
-
|
287
|
-
|
260
|
+
key: string;
|
261
|
+
instructions: string;
|
262
|
+
travel_mode: google.maps.TravelMode;
|
288
263
|
}
|
289
264
|
type IOrigin = Feature$1<Point, ITerminal>;
|
290
265
|
type IDestination = Feature$1<Point, ITerminal>;
|
@@ -294,746 +269,651 @@ type IRoute = Feature$1<LineString, ILine>;
|
|
294
269
|
type IRoutes = Record<string, IRoute>;
|
295
270
|
type IRouteStep = Feature$1<LineString, IStep>;
|
296
271
|
interface IFailureMap {
|
297
|
-
|
272
|
+
message: string;
|
298
273
|
}
|
299
274
|
interface IMapLegendLabel {
|
300
|
-
|
301
|
-
|
275
|
+
figure: React__default.ReactElement<IFigure>;
|
276
|
+
label: string;
|
302
277
|
}
|
303
278
|
interface IMapLegendItem {
|
304
|
-
|
305
|
-
|
279
|
+
pin: React__default.ReactElement<IPin>;
|
280
|
+
label: string;
|
306
281
|
}
|
307
282
|
interface ILocationBasedMap {
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
origin: google.maps.LatLng,
|
319
|
-
center: google.maps.LatLng,
|
320
|
-
bounds: google.maps.LatLngBounds,
|
321
|
-
radius: number,
|
322
|
-
zoomLevel: number
|
323
|
-
) => void;
|
283
|
+
updateOriginOnAreaChange: boolean;
|
284
|
+
viewOnly?: boolean;
|
285
|
+
points?: IPoints;
|
286
|
+
showLoader: boolean;
|
287
|
+
loader?: React__default.ReactNode;
|
288
|
+
origin: IOrigin;
|
289
|
+
radius: number;
|
290
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
291
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
292
|
+
onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
324
293
|
}
|
325
294
|
interface IDirectionBasedMapBase {
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
origin: google.maps.LatLng,
|
342
|
-
destination: google.maps.LatLng,
|
343
|
-
center: google.maps.LatLng,
|
344
|
-
bounds: google.maps.LatLngBounds,
|
345
|
-
zoomLevel: number
|
346
|
-
) => void;
|
295
|
+
routes?: IRoutes;
|
296
|
+
viewOnly?: boolean;
|
297
|
+
activeRoute: string;
|
298
|
+
points?: IPoints;
|
299
|
+
showLoader: boolean;
|
300
|
+
loader?: React__default.ReactNode;
|
301
|
+
origin?: IOrigin;
|
302
|
+
destination?: IDestination;
|
303
|
+
deviation: number;
|
304
|
+
activeTravelMode: google.maps.TravelMode;
|
305
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
306
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
307
|
+
onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
308
|
+
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
309
|
+
onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
347
310
|
}
|
348
311
|
interface IMap extends PropsWithChildren {
|
349
|
-
|
350
|
-
|
351
|
-
|
312
|
+
mapId: string;
|
313
|
+
defaultCenter: google.maps.LatLngLiteral;
|
314
|
+
zoom?: number;
|
352
315
|
}
|
353
316
|
|
354
317
|
interface DirectionMapHandle {
|
355
|
-
|
318
|
+
closeMapOverlay: () => void;
|
356
319
|
}
|
357
320
|
|
358
321
|
interface LocationMapHandle {
|
359
|
-
|
360
|
-
|
322
|
+
panTo: (lat: number, lng: number) => void;
|
323
|
+
closeMapOverlay: () => void;
|
361
324
|
}
|
362
325
|
|
363
|
-
declare const MapLegendLabel: ({figure, label}: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
364
|
-
declare const MapLegendItem: ({pin, label}: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
326
|
+
declare const MapLegendLabel: ({ figure, label }: IMapLegendLabel) => react_jsx_runtime.JSX.Element;
|
327
|
+
declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runtime.JSX.Element;
|
365
328
|
|
366
329
|
declare const Map: {
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
Failed: ({message}: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
379
|
-
Loading: ({loader}: {loader: React__default.ReactNode}) => react_jsx_runtime.JSX.Element | null;
|
330
|
+
(props: IMap): react_jsx_runtime.JSX.Element;
|
331
|
+
Location: (props: ILocationBasedMap & {
|
332
|
+
ref?: React__default.Ref<LocationMapHandle>;
|
333
|
+
}) => JSX.Element;
|
334
|
+
Direction: (props: IDirectionBasedMapBase & {
|
335
|
+
ref?: React__default.Ref<DirectionMapHandle>;
|
336
|
+
}) => JSX.Element;
|
337
|
+
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
338
|
+
Loading: ({ loader }: {
|
339
|
+
loader: React__default.ReactNode;
|
340
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
380
341
|
};
|
381
342
|
|
382
343
|
interface IFrame {
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
344
|
+
around: React__default.ReactElement<IIcon | IFigure | IPin>;
|
345
|
+
split?: string | false;
|
346
|
+
background?: string;
|
347
|
+
padding?: FramePadding;
|
348
|
+
lifted?: boolean;
|
388
349
|
}
|
389
350
|
|
390
351
|
interface IBadge {
|
391
|
-
|
392
|
-
|
393
|
-
|
352
|
+
type: BadgeType;
|
353
|
+
figure: React__default.ReactElement<IFigure>;
|
354
|
+
size?: BadgeSize;
|
394
355
|
}
|
395
356
|
|
396
|
-
declare const Badge: ({type, size, figure}: IBadge) => react_jsx_runtime.JSX.Element;
|
357
|
+
declare const Badge: ({ type, size, figure }: IBadge) => react_jsx_runtime.JSX.Element;
|
397
358
|
|
398
359
|
declare enum LabelSize {
|
399
|
-
|
400
|
-
|
360
|
+
DEFAULT = "DEFAULT",
|
361
|
+
LARGE = "LARGE"
|
401
362
|
}
|
402
363
|
|
403
364
|
interface ILabel {
|
404
|
-
|
405
|
-
|
406
|
-
|
365
|
+
iconType?: IconType;
|
366
|
+
size?: LabelSize;
|
367
|
+
label: string;
|
407
368
|
}
|
408
369
|
|
409
|
-
declare const Label: ({iconType, label, size}: ILabel) => react_jsx_runtime.JSX.Element;
|
370
|
+
declare const Label: ({ iconType, label, size }: ILabel) => react_jsx_runtime.JSX.Element;
|
410
371
|
|
411
372
|
declare enum LogoSize {
|
412
|
-
|
413
|
-
|
373
|
+
SMALL = "SMALL",
|
374
|
+
MEDIUM = "MEDIUM"
|
414
375
|
}
|
415
376
|
|
416
377
|
interface ILogoSrc {
|
417
|
-
|
418
|
-
|
378
|
+
srcset: string;
|
379
|
+
src: string;
|
419
380
|
}
|
420
381
|
interface ILogoBase {
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
382
|
+
ariaLabel: string;
|
383
|
+
alt: string;
|
384
|
+
size: LogoSize;
|
385
|
+
children?: React__default.ReactNode | React__default.ReactNode[];
|
425
386
|
}
|
426
387
|
interface ILogoLoad extends ILogoBase {
|
427
|
-
|
388
|
+
srcset?: ILogoSrc;
|
389
|
+
}
|
390
|
+
interface ILogo extends ILogoLoad {
|
428
391
|
}
|
429
|
-
interface ILogo extends ILogoLoad {}
|
430
392
|
|
431
393
|
interface IBrand {
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
394
|
+
ariaLabel: string;
|
395
|
+
logo: React__default.ReactElement<ILogo>;
|
396
|
+
name: string;
|
397
|
+
onClick?: () => void;
|
436
398
|
}
|
437
399
|
|
438
|
-
declare const Brand: ({logo, name, ariaLabel, onClick}: IBrand) => react_jsx_runtime.JSX.Element;
|
400
|
+
declare const Brand: ({ logo, name, ariaLabel, onClick }: IBrand) => react_jsx_runtime.JSX.Element;
|
439
401
|
|
440
402
|
declare enum LinkContext {
|
441
|
-
|
442
|
-
|
443
|
-
|
403
|
+
STANDARD = "STANDARD",
|
404
|
+
UI = "UI",
|
405
|
+
BOLD = "BOLD"
|
444
406
|
}
|
445
407
|
declare enum Position {
|
446
|
-
|
447
|
-
|
408
|
+
BEFORE = "BEFORE",
|
409
|
+
AFTER = "AFTER"
|
448
410
|
}
|
449
411
|
|
450
412
|
interface ILink {
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
}
|
462
|
-
|
463
|
-
declare const Link: ({
|
464
|
-
id,
|
465
|
-
title,
|
466
|
-
href,
|
467
|
-
onClick,
|
468
|
-
ariaLabel,
|
469
|
-
children,
|
470
|
-
context,
|
471
|
-
withIconBefore,
|
472
|
-
withIconAfter,
|
473
|
-
target,
|
474
|
-
}: ILink) => react_jsx_runtime.JSX.Element;
|
413
|
+
id: string;
|
414
|
+
title: string;
|
415
|
+
href: string;
|
416
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
417
|
+
ariaLabel: string;
|
418
|
+
children?: string;
|
419
|
+
context?: LinkContext;
|
420
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
421
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
422
|
+
target?: React__default.HTMLAttributeAnchorTarget;
|
423
|
+
}
|
424
|
+
|
425
|
+
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
475
426
|
|
476
427
|
interface IBreadcrumb {
|
477
|
-
|
478
|
-
|
428
|
+
crumbs: React__default.ReactElement<ILink>[];
|
429
|
+
currentPage: string;
|
479
430
|
}
|
480
431
|
|
481
|
-
declare const Breadcrumb: ({crumbs, currentPage}: IBreadcrumb) => react_jsx_runtime.JSX.Element;
|
432
|
+
declare const Breadcrumb: ({ crumbs, currentPage }: IBreadcrumb) => react_jsx_runtime.JSX.Element;
|
482
433
|
|
483
434
|
declare enum ButtonContext {
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
435
|
+
DISABLED = "DISABLED",
|
436
|
+
PRIMARY = "PRIMARY",
|
437
|
+
SUPPORTING = "SUPPORTING",
|
438
|
+
NEUTRAL = "NEUTRAL",
|
439
|
+
OUTLINED = "OUTLINED",
|
440
|
+
GHOST = "GHOST",
|
441
|
+
UI = "UI"
|
491
442
|
}
|
492
443
|
declare enum ButtonType {
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
444
|
+
BUTTON = "BUTTON",
|
445
|
+
RESET = "RESET",
|
446
|
+
SUBMIT = "SUBMIT",
|
447
|
+
LINK = "LINK"
|
497
448
|
}
|
498
449
|
|
499
|
-
type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> &
|
500
|
-
React__default.MouseEventHandler<HTMLButtonElement> &
|
501
|
-
React__default.KeyboardEventHandler<HTMLAnchorElement> &
|
502
|
-
React__default.KeyboardEventHandler<HTMLButtonElement>;
|
450
|
+
type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement> & React__default.KeyboardEventHandler<HTMLAnchorElement> & React__default.KeyboardEventHandler<HTMLButtonElement>;
|
503
451
|
interface IButtonMinimal {
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
452
|
+
id?: string;
|
453
|
+
title: string;
|
454
|
+
ariaLabel: string;
|
455
|
+
onClick?: ClickHandler$1;
|
456
|
+
children?: string;
|
509
457
|
}
|
510
458
|
interface IButton {
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
}
|
522
|
-
|
523
|
-
declare const Button: React__default.ForwardRefExoticComponent<
|
524
|
-
IButton & React__default.RefAttributes<HTMLButtonElement>
|
525
|
-
>;
|
459
|
+
id?: string;
|
460
|
+
title: string;
|
461
|
+
ariaLabel: string;
|
462
|
+
onClick?: ClickHandler$1;
|
463
|
+
children?: string;
|
464
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
465
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
466
|
+
type?: ButtonType;
|
467
|
+
context?: ButtonContext;
|
468
|
+
href?: string;
|
469
|
+
}
|
470
|
+
|
471
|
+
declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
|
526
472
|
|
527
473
|
declare enum CheckboxContext {
|
528
|
-
|
529
|
-
|
530
|
-
|
474
|
+
STANDARD = "STANDARD",
|
475
|
+
DISABLED = "DISABLED",
|
476
|
+
ERROR = "ERROR"
|
531
477
|
}
|
532
478
|
|
533
479
|
interface ICheckboxBase {
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
480
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
481
|
+
value: string;
|
482
|
+
ariaLabel?: string;
|
483
|
+
label: string;
|
484
|
+
name: string;
|
485
|
+
checked?: boolean;
|
486
|
+
defaultChecked?: boolean;
|
541
487
|
}
|
542
488
|
interface ICheckbox extends ICheckboxBase {
|
543
|
-
|
489
|
+
context?: CheckboxContext;
|
544
490
|
}
|
545
491
|
interface ICheckboxGroup {
|
546
|
-
|
547
|
-
|
492
|
+
direction?: "row" | "column";
|
493
|
+
children: React__default.ReactNode;
|
548
494
|
}
|
549
495
|
|
550
496
|
declare const Checkbox: {
|
551
|
-
|
552
|
-
|
553
|
-
onChange,
|
554
|
-
value,
|
555
|
-
ariaLabel,
|
556
|
-
label,
|
557
|
-
name,
|
558
|
-
checked,
|
559
|
-
defaultChecked,
|
560
|
-
}: ICheckbox): react_jsx_runtime.JSX.Element;
|
561
|
-
Group: ({direction, children}: ICheckboxGroup) => react_jsx_runtime.JSX.Element;
|
497
|
+
({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox): react_jsx_runtime.JSX.Element;
|
498
|
+
Group: ({ direction, children }: ICheckboxGroup) => react_jsx_runtime.JSX.Element;
|
562
499
|
};
|
563
500
|
|
564
501
|
declare enum ChoiceContext {
|
565
|
-
|
566
|
-
|
567
|
-
|
502
|
+
STANDARD = "STANDARD",
|
503
|
+
DISABLED = "DISABLED",
|
504
|
+
ERROR = "ERROR"
|
568
505
|
}
|
569
506
|
|
570
507
|
interface IChoiceBase {
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
508
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
509
|
+
value: string;
|
510
|
+
ariaLabel?: string;
|
511
|
+
label: string;
|
512
|
+
name: string;
|
513
|
+
checked?: boolean;
|
514
|
+
defaultChecked?: boolean;
|
515
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
579
516
|
}
|
580
517
|
interface IChoice extends IChoiceBase {
|
581
|
-
|
518
|
+
context?: ChoiceContext;
|
582
519
|
}
|
583
520
|
|
584
|
-
declare const Choice: ({
|
585
|
-
context,
|
586
|
-
onChange,
|
587
|
-
value,
|
588
|
-
ariaLabel,
|
589
|
-
label,
|
590
|
-
name,
|
591
|
-
checked,
|
592
|
-
defaultChecked,
|
593
|
-
icon,
|
594
|
-
}: IChoice) => react_jsx_runtime.JSX.Element;
|
521
|
+
declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IChoice) => react_jsx_runtime.JSX.Element;
|
595
522
|
|
596
523
|
interface IFeature {
|
597
|
-
|
598
|
-
|
524
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
525
|
+
label: string;
|
599
526
|
}
|
600
527
|
|
601
|
-
declare const Feature: ({label, withIconBefore}: IFeature) => react_jsx_runtime.JSX.Element;
|
528
|
+
declare const Feature: ({ label, withIconBefore }: IFeature) => react_jsx_runtime.JSX.Element;
|
602
529
|
|
603
530
|
interface ICollapse {
|
604
|
-
|
531
|
+
onClick?: () => void;
|
605
532
|
}
|
606
533
|
|
607
|
-
declare const Collapse: ({onClick}: ICollapse) => react_jsx_runtime.JSX.Element;
|
534
|
+
declare const Collapse: ({ onClick }: ICollapse) => react_jsx_runtime.JSX.Element;
|
608
535
|
|
609
536
|
interface IExpand {
|
610
|
-
|
537
|
+
onClick?: () => void;
|
611
538
|
}
|
612
539
|
|
613
|
-
declare const Expand: ({onClick}: IExpand) => react_jsx_runtime.JSX.Element;
|
540
|
+
declare const Expand: ({ onClick }: IExpand) => react_jsx_runtime.JSX.Element;
|
614
541
|
|
615
542
|
declare enum TextDecoration {
|
616
|
-
|
617
|
-
|
618
|
-
|
543
|
+
NONE = "NONE",
|
544
|
+
UNDERLINE = "UNDERLINE",
|
545
|
+
LINE_THROUGH = "LINE_THROUGH"
|
619
546
|
}
|
620
547
|
declare enum TextAlignment {
|
621
|
-
|
622
|
-
|
623
|
-
|
548
|
+
LEFT = "LEFT",
|
549
|
+
CENTER = "CENTER",
|
550
|
+
RIGHT = "RIGHT"
|
624
551
|
}
|
625
552
|
|
626
553
|
interface IPlainText {
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
554
|
+
children?: string;
|
555
|
+
size?: TypographyFontKey;
|
556
|
+
font?: TypographyFontsKey;
|
557
|
+
fontWeight?: TypographyFontWeightKey;
|
558
|
+
textDecoration?: TextDecoration;
|
559
|
+
textAlignment?: TextAlignment;
|
560
|
+
textColor?: string;
|
634
561
|
}
|
635
562
|
|
636
563
|
declare enum InformationVariant {
|
637
|
-
|
638
|
-
|
564
|
+
DEFAULT = "DEFAULT",
|
565
|
+
TOOLTIP = "TOOLTIP"
|
639
566
|
}
|
640
567
|
declare enum InformationBackground {
|
641
|
-
|
642
|
-
|
568
|
+
DEFAULT = "DEFAULT",
|
569
|
+
LIGHT = "LIGHT"
|
643
570
|
}
|
644
571
|
|
645
572
|
interface IInformation {
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
573
|
+
text: React__default.ReactElement<IPlainText>;
|
574
|
+
frame?: React__default.ReactElement<IFrame>;
|
575
|
+
variant?: InformationVariant;
|
576
|
+
background?: InformationBackground;
|
650
577
|
}
|
651
578
|
|
652
|
-
declare const Information: ({text, frame, variant, background}: IInformation) => react_jsx_runtime.JSX.Element;
|
579
|
+
declare const Information: ({ text, frame, variant, background }: IInformation) => react_jsx_runtime.JSX.Element;
|
653
580
|
|
654
581
|
declare enum InputContext {
|
655
|
-
|
656
|
-
|
657
|
-
|
582
|
+
DISABLED = "DISABLED",
|
583
|
+
ERROR = "ERROR",
|
584
|
+
STANDARD = "STANDARD"
|
658
585
|
}
|
659
586
|
declare enum HTMLInputType {
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
587
|
+
TEXT = "text",
|
588
|
+
PASSWORD = "password",
|
589
|
+
URL = "url",
|
590
|
+
EMAIL = "email"
|
664
591
|
}
|
665
592
|
|
666
593
|
interface InputChangeEvent {
|
667
|
-
|
668
|
-
|
594
|
+
value: string;
|
595
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
669
596
|
}
|
670
597
|
interface InputBlurEvent {
|
671
|
-
|
672
|
-
|
598
|
+
value: string;
|
599
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
673
600
|
}
|
674
601
|
interface InputFocusEvent {
|
675
|
-
|
676
|
-
|
602
|
+
value: string;
|
603
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
677
604
|
}
|
678
605
|
interface IInputBase {
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
606
|
+
htmlType?: HTMLInputType;
|
607
|
+
defaultValue?: string;
|
608
|
+
onChange?: (e: InputChangeEvent) => void;
|
609
|
+
onBlur?: (e: InputBlurEvent) => void;
|
610
|
+
onFocus?: (e: InputFocusEvent) => void;
|
611
|
+
value?: string;
|
612
|
+
placeholder?: string;
|
613
|
+
ariaLabel?: string;
|
614
|
+
name: string;
|
615
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
616
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
690
617
|
}
|
691
618
|
interface IInput extends IInputBase {
|
692
|
-
|
619
|
+
context?: InputContext;
|
693
620
|
}
|
694
621
|
interface InteractiveStyledInputProps {
|
695
|
-
|
696
|
-
|
697
|
-
|
622
|
+
Border: string;
|
623
|
+
BackgroundColor: string;
|
624
|
+
Color: string;
|
698
625
|
}
|
699
626
|
interface IInputTheme {
|
700
|
-
|
701
|
-
|
702
|
-
|
627
|
+
Init: InteractiveStyledInputProps;
|
628
|
+
Hover: InteractiveStyledInputProps;
|
629
|
+
Active: InteractiveStyledInputProps;
|
703
630
|
}
|
704
631
|
|
705
632
|
declare const Input: (args: IInput) => react_jsx_runtime.JSX.Element;
|
706
633
|
|
707
634
|
declare enum ListType {
|
708
|
-
|
709
|
-
|
635
|
+
STANDARD = "STANDARD",
|
636
|
+
NUMBERED = "NUMBERED"
|
710
637
|
}
|
711
638
|
|
712
639
|
interface IListBase {
|
713
|
-
|
714
|
-
|
640
|
+
type?: ListType;
|
641
|
+
children?: React__default.ReactNode;
|
642
|
+
}
|
643
|
+
interface IList extends IListBase {
|
715
644
|
}
|
716
|
-
interface IList extends IListBase {}
|
717
645
|
interface IListItemBase {
|
718
|
-
|
646
|
+
children?: React__default.ReactNode;
|
647
|
+
}
|
648
|
+
interface ListItemThemeableProps extends IListItemBase {
|
719
649
|
}
|
720
|
-
interface ListItemThemeableProps extends IListItemBase {}
|
721
650
|
|
722
651
|
declare const List: {
|
723
|
-
|
724
|
-
|
652
|
+
({ type, children }: IList): react_jsx_runtime.JSX.Element;
|
653
|
+
Item: ({ children }: ListItemThemeableProps) => react_jsx_runtime.JSX.Element;
|
725
654
|
};
|
726
655
|
|
727
|
-
declare const Logo: ({srcset, alt, ariaLabel, size}: ILogo) => react_jsx_runtime.JSX.Element;
|
656
|
+
declare const Logo: ({ srcset, alt, ariaLabel, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
728
657
|
|
729
658
|
interface INotification {
|
730
|
-
|
659
|
+
number: number;
|
731
660
|
}
|
732
661
|
|
733
|
-
declare const Notification: ({number}: INotification) => react_jsx_runtime.JSX.Element;
|
662
|
+
declare const Notification: ({ number }: INotification) => react_jsx_runtime.JSX.Element;
|
734
663
|
|
735
664
|
declare enum PickContext {
|
736
|
-
|
737
|
-
|
738
|
-
|
665
|
+
STANDARD = "STANDARD",
|
666
|
+
DISABLED = "DISABLED",
|
667
|
+
ERROR = "ERROR"
|
739
668
|
}
|
740
669
|
|
741
670
|
interface IPickBase {
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
671
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
672
|
+
value: string;
|
673
|
+
ariaLabel?: string;
|
674
|
+
label: string;
|
675
|
+
name: string;
|
676
|
+
checked?: boolean;
|
677
|
+
defaultChecked?: boolean;
|
678
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
750
679
|
}
|
751
680
|
interface IPick extends IPickBase {
|
752
|
-
|
681
|
+
context?: PickContext;
|
753
682
|
}
|
754
683
|
|
755
|
-
declare const Pick: ({
|
756
|
-
context,
|
757
|
-
onChange,
|
758
|
-
value,
|
759
|
-
ariaLabel,
|
760
|
-
label,
|
761
|
-
name,
|
762
|
-
checked,
|
763
|
-
defaultChecked,
|
764
|
-
icon,
|
765
|
-
}: IPick) => react_jsx_runtime.JSX.Element;
|
684
|
+
declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IPick) => react_jsx_runtime.JSX.Element;
|
766
685
|
|
767
686
|
interface IPill {
|
768
|
-
|
769
|
-
|
687
|
+
label: string;
|
688
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
770
689
|
}
|
771
690
|
|
772
|
-
declare const Pill: ({withIconBefore, label}: IPill) => react_jsx_runtime.JSX.Element;
|
691
|
+
declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
|
773
692
|
|
774
|
-
declare const PlainText: ({
|
775
|
-
children,
|
776
|
-
size,
|
777
|
-
font,
|
778
|
-
fontWeight,
|
779
|
-
textDecoration,
|
780
|
-
textAlignment,
|
781
|
-
textColor,
|
782
|
-
}: IPlainText) => react_jsx_runtime.JSX.Element;
|
693
|
+
declare const PlainText: ({ children, size, font, fontWeight, textDecoration, textAlignment, textColor, }: IPlainText) => react_jsx_runtime.JSX.Element;
|
783
694
|
|
784
695
|
declare enum RadioContext {
|
785
|
-
|
786
|
-
|
787
|
-
|
696
|
+
STANDARD = "STANDARD",
|
697
|
+
DISABLED = "DISABLED",
|
698
|
+
ERROR = "ERROR"
|
788
699
|
}
|
789
700
|
|
790
701
|
interface IRadioBase {
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
702
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
703
|
+
value: string;
|
704
|
+
ariaLabel?: string;
|
705
|
+
label: string;
|
706
|
+
name: string;
|
707
|
+
checked?: boolean;
|
708
|
+
defaultChecked?: boolean;
|
798
709
|
}
|
799
710
|
interface IRadio extends IRadioBase {
|
800
|
-
|
711
|
+
context?: RadioContext;
|
801
712
|
}
|
802
713
|
interface IRadioGroup {
|
803
|
-
|
804
|
-
|
714
|
+
direction?: "row" | "column";
|
715
|
+
children: React__default.ReactNode;
|
805
716
|
}
|
806
717
|
|
807
718
|
declare const Radio: {
|
808
|
-
|
809
|
-
|
719
|
+
({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
|
720
|
+
Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
|
810
721
|
};
|
811
722
|
|
812
723
|
interface IRecord {
|
813
|
-
|
814
|
-
|
815
|
-
|
724
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
725
|
+
label: string;
|
726
|
+
value: string | React__default.ReactNode;
|
816
727
|
}
|
817
728
|
|
818
|
-
declare const Record$1: ({label, value, withIconBefore}: IRecord) => react_jsx_runtime.JSX.Element;
|
729
|
+
declare const Record$1: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
819
730
|
|
820
731
|
declare enum StatusContext {
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
732
|
+
SEND = "SEND",
|
733
|
+
PROCESSING = "PROCESSING",
|
734
|
+
PROPOSAL = "PROPOSAL",
|
735
|
+
ACCEPTED = "ACCEPTED",
|
736
|
+
REFUSED = "REFUSED"
|
826
737
|
}
|
827
738
|
|
828
739
|
interface IStatusCompact {
|
829
|
-
|
740
|
+
context?: StatusContext;
|
830
741
|
}
|
831
742
|
interface IStatus {
|
832
|
-
|
833
|
-
|
743
|
+
context?: StatusContext;
|
744
|
+
label: string;
|
834
745
|
}
|
835
746
|
|
836
|
-
declare const StatusCompact: ({context}: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
837
|
-
declare const Status: ({context, label}: IStatus) => react_jsx_runtime.JSX.Element;
|
747
|
+
declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.JSX.Element;
|
748
|
+
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
838
749
|
|
839
750
|
interface ITerm {
|
840
|
-
|
841
|
-
|
842
|
-
|
751
|
+
figure: React__default.ReactElement<IFigure>;
|
752
|
+
label: string;
|
753
|
+
description?: string;
|
843
754
|
}
|
844
755
|
|
845
|
-
declare const Term: ({label, description, figure}: ITerm) => react_jsx_runtime.JSX.Element;
|
756
|
+
declare const Term: ({ label, description, figure }: ITerm) => react_jsx_runtime.JSX.Element;
|
846
757
|
|
847
758
|
declare const Terminal: () => react_jsx_runtime.JSX.Element;
|
848
759
|
|
849
760
|
declare enum YesNoContext {
|
850
|
-
|
851
|
-
|
852
|
-
|
761
|
+
STANDARD = "STANDARD",
|
762
|
+
DISABLED = "DISABLED",
|
763
|
+
ERROR = "ERROR"
|
853
764
|
}
|
854
765
|
|
855
766
|
interface IYesNoBase {
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
767
|
+
onChange?: (yesNo: boolean) => void;
|
768
|
+
ariaYesLabel?: string;
|
769
|
+
ariaNoLabel?: string;
|
770
|
+
yesLabel: string;
|
771
|
+
noLabel: string;
|
772
|
+
name: string;
|
773
|
+
defaultChecked?: boolean;
|
863
774
|
}
|
864
775
|
interface IYesNo extends IYesNoBase {
|
865
|
-
|
776
|
+
context?: YesNoContext;
|
866
777
|
}
|
867
778
|
|
868
|
-
declare const YesNo: ({
|
869
|
-
context,
|
870
|
-
onChange,
|
871
|
-
ariaYesLabel,
|
872
|
-
ariaNoLabel,
|
873
|
-
yesLabel,
|
874
|
-
noLabel,
|
875
|
-
name,
|
876
|
-
defaultChecked,
|
877
|
-
}: IYesNo) => react_jsx_runtime.JSX.Element;
|
779
|
+
declare const YesNo: ({ context, onChange, ariaYesLabel, ariaNoLabel, yesLabel, noLabel, name, defaultChecked, }: IYesNo) => react_jsx_runtime.JSX.Element;
|
878
780
|
|
879
781
|
declare enum BigChoiceContext {
|
880
|
-
|
881
|
-
|
882
|
-
|
782
|
+
STANDARD = "STANDARD",
|
783
|
+
DISABLED = "DISABLED",
|
784
|
+
ERROR = "ERROR"
|
883
785
|
}
|
884
786
|
|
885
787
|
interface IBigChoiceBase {
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
788
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
789
|
+
value: string;
|
790
|
+
ariaLabel?: string;
|
791
|
+
label: string;
|
792
|
+
name: string;
|
793
|
+
checked?: boolean;
|
794
|
+
defaultChecked?: boolean;
|
795
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
894
796
|
}
|
895
797
|
interface IBigChoice extends IBigChoiceBase {
|
896
|
-
|
798
|
+
context?: BigChoiceContext;
|
897
799
|
}
|
898
800
|
|
899
|
-
declare const BigChoice: ({
|
900
|
-
context,
|
901
|
-
onChange,
|
902
|
-
value,
|
903
|
-
ariaLabel,
|
904
|
-
label,
|
905
|
-
name,
|
906
|
-
checked,
|
907
|
-
defaultChecked,
|
908
|
-
icon,
|
909
|
-
}: IBigChoice) => react_jsx_runtime.JSX.Element;
|
801
|
+
declare const BigChoice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigChoice) => react_jsx_runtime.JSX.Element;
|
910
802
|
|
911
803
|
declare enum BigPickContext {
|
912
|
-
|
913
|
-
|
914
|
-
|
804
|
+
STANDARD = "STANDARD",
|
805
|
+
DISABLED = "DISABLED",
|
806
|
+
ERROR = "ERROR"
|
915
807
|
}
|
916
808
|
|
917
809
|
interface IBigPickBase {
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
810
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
811
|
+
value: string;
|
812
|
+
ariaLabel?: string;
|
813
|
+
label: string;
|
814
|
+
name: string;
|
815
|
+
checked?: boolean;
|
816
|
+
defaultChecked?: boolean;
|
817
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
926
818
|
}
|
927
819
|
interface IBigPick extends IBigPickBase {
|
928
|
-
|
820
|
+
context?: BigPickContext;
|
929
821
|
}
|
930
822
|
|
931
|
-
declare const BigPick: ({
|
932
|
-
context,
|
933
|
-
onChange,
|
934
|
-
value,
|
935
|
-
ariaLabel,
|
936
|
-
label,
|
937
|
-
name,
|
938
|
-
checked,
|
939
|
-
defaultChecked,
|
940
|
-
icon,
|
941
|
-
}: IBigPick) => react_jsx_runtime.JSX.Element;
|
823
|
+
declare const BigPick: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IBigPick) => react_jsx_runtime.JSX.Element;
|
942
824
|
|
943
825
|
type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
|
944
826
|
interface AutoCompleteContextType<T> {
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
827
|
+
input: string;
|
828
|
+
setInput: SetState<string>;
|
829
|
+
selected: T | null;
|
830
|
+
setSelected: SetState<T | null>;
|
831
|
+
index: number | null;
|
832
|
+
setIndex: SetState<number | null>;
|
833
|
+
hasFocus: boolean;
|
834
|
+
setHasFocus: SetState<boolean>;
|
953
835
|
}
|
954
836
|
|
955
837
|
interface AutocompleteI<T> {
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
838
|
+
name: string;
|
839
|
+
debounceTime: number;
|
840
|
+
readyForInput: boolean;
|
841
|
+
placeholder?: string;
|
842
|
+
ariaLabel?: string;
|
843
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
844
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
845
|
+
withIconLabelAfter?: string;
|
846
|
+
options: T[];
|
847
|
+
optionDefault?: T;
|
848
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
849
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
850
|
+
optionToInputValue: (option: T) => string;
|
851
|
+
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
852
|
+
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
853
|
+
onBlur?: (e: AutocompleteBlurEvent) => void;
|
854
|
+
onFocus?: (e: AutocompleteFocusEvent) => void;
|
855
|
+
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
974
856
|
}
|
975
857
|
interface AutocompleteInputI<T> {
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
858
|
+
name: string;
|
859
|
+
readyForInput: boolean;
|
860
|
+
debounceTime: number;
|
861
|
+
placeholder?: string;
|
862
|
+
ariaLabel?: string;
|
863
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
864
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
865
|
+
withIconLabelAfter?: string;
|
866
|
+
theme: IInputTheme;
|
867
|
+
options: T[];
|
868
|
+
optionToInputValue: (option: T) => string;
|
869
|
+
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
870
|
+
onBlur?: (e: AutocompleteBlurEvent) => void;
|
871
|
+
onFocus?: (e: AutocompleteFocusEvent) => void;
|
872
|
+
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
873
|
+
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
992
874
|
}
|
993
875
|
interface AutocompleteOptionI<T> {
|
994
|
-
|
995
|
-
|
996
|
-
|
876
|
+
label: string;
|
877
|
+
withDetails?: string;
|
878
|
+
withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
|
997
879
|
}
|
998
880
|
interface AutocompleteOptionsI<T> {
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
881
|
+
options: T[];
|
882
|
+
optionDefault?: T;
|
883
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
884
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
885
|
+
optionToInputValue: (option: T) => string;
|
886
|
+
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
887
|
+
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
1006
888
|
}
|
1007
889
|
interface AutocompleteOptionNavigatedEvent<T> {
|
1008
|
-
|
890
|
+
focussed: T;
|
1009
891
|
}
|
1010
892
|
interface AutocompleteSelectEvent<T> {
|
1011
|
-
|
1012
|
-
|
893
|
+
input: string;
|
894
|
+
selected: T;
|
1013
895
|
}
|
1014
896
|
interface AutocompleteChangeEvent {
|
1015
|
-
|
897
|
+
input: string;
|
1016
898
|
}
|
1017
899
|
interface AutocompleteBlurEvent {
|
1018
|
-
|
1019
|
-
|
900
|
+
input: string;
|
901
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
1020
902
|
}
|
1021
903
|
interface AutocompleteFocusEvent {
|
1022
|
-
|
1023
|
-
|
904
|
+
input: string;
|
905
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
1024
906
|
}
|
1025
907
|
|
1026
908
|
interface AutocompleteInputHandle<T> {
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
909
|
+
setInput: (value: string) => void;
|
910
|
+
setSelected: (value: T) => void;
|
911
|
+
focus: () => void;
|
912
|
+
blur: () => void;
|
1031
913
|
}
|
1032
|
-
declare const AutocompleteInput: <T>(
|
1033
|
-
props: AutocompleteInputI<T> & {
|
914
|
+
declare const AutocompleteInput: <T>(props: AutocompleteInputI<T> & {
|
1034
915
|
ref?: Ref<AutocompleteInputHandle<T>>;
|
1035
|
-
|
1036
|
-
) => JSX.Element;
|
916
|
+
}) => JSX.Element;
|
1037
917
|
|
1038
918
|
declare const AutocompleteOptions: <T>(args: AutocompleteOptionsI<T>) => react_jsx_runtime.JSX.Element;
|
1039
919
|
|
@@ -1041,906 +921,838 @@ declare const AutocompleteOption: <T>(args: AutocompleteOptionI<T>) => react_jsx
|
|
1041
921
|
declare const AutocompleteOptionSelected: <T>(args: AutocompleteOptionI<T>) => react_jsx_runtime.JSX.Element;
|
1042
922
|
|
1043
923
|
interface LocationI<T> {
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
}
|
1063
|
-
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
1064
|
-
|
924
|
+
name: string;
|
925
|
+
placeholder?: string;
|
926
|
+
ariaLabel?: string;
|
927
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
928
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
929
|
+
withIconLabelAfter?: string;
|
930
|
+
debounceTime?: number;
|
931
|
+
options: T[];
|
932
|
+
optionDefault?: T;
|
933
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
934
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
935
|
+
optionToInputValue: (option: T) => string;
|
936
|
+
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
937
|
+
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
938
|
+
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
939
|
+
onBlur?: (e: LocationBlurEvent) => void;
|
940
|
+
onFocus?: (e: LocationFocusEvent) => void;
|
941
|
+
readyForInput: boolean;
|
942
|
+
}
|
943
|
+
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
944
|
+
}
|
945
|
+
interface LocationFocusEvent extends AutocompleteFocusEvent {
|
946
|
+
}
|
1065
947
|
|
1066
948
|
interface LocationHandle<T> {
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
949
|
+
setInput: (value: string) => void;
|
950
|
+
setSelected: (value: T) => void;
|
951
|
+
focus: () => void;
|
952
|
+
blur: () => void;
|
1071
953
|
}
|
1072
|
-
declare const Location: <T>(
|
1073
|
-
props: LocationI<T> & {
|
954
|
+
declare const Location: <T>(props: LocationI<T> & {
|
1074
955
|
ref?: Ref<LocationHandle<T>>;
|
1075
|
-
|
1076
|
-
) => JSX.Element;
|
956
|
+
}) => JSX.Element;
|
1077
957
|
|
1078
958
|
interface NameI<T> {
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
}
|
1097
|
-
interface NameBlurEvent extends AutocompleteBlurEvent {
|
1098
|
-
|
959
|
+
name: string;
|
960
|
+
readyForInput: boolean;
|
961
|
+
placeholder?: string;
|
962
|
+
ariaLabel?: string;
|
963
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
964
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
965
|
+
debounceTime?: number;
|
966
|
+
options: T[];
|
967
|
+
optionDefault?: T;
|
968
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
969
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
970
|
+
optionToInputValue: (option: T) => string;
|
971
|
+
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
972
|
+
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
973
|
+
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
974
|
+
onBlur?: (e: NameBlurEvent) => void;
|
975
|
+
onFocus?: (e: NameFocusEvent) => void;
|
976
|
+
}
|
977
|
+
interface NameBlurEvent extends AutocompleteBlurEvent {
|
978
|
+
}
|
979
|
+
interface NameFocusEvent extends AutocompleteFocusEvent {
|
980
|
+
}
|
1099
981
|
|
1100
982
|
interface NameHandle<T> {
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
983
|
+
setInput: (value: string) => void;
|
984
|
+
setSelected: (value: T) => void;
|
985
|
+
focus: () => void;
|
986
|
+
blur: () => void;
|
1105
987
|
}
|
1106
|
-
declare const Name: <T>(
|
1107
|
-
props: NameI<T> & {
|
988
|
+
declare const Name: <T>(props: NameI<T> & {
|
1108
989
|
ref?: Ref<NameHandle<T>>;
|
1109
|
-
|
1110
|
-
) => JSX.Element;
|
990
|
+
}) => JSX.Element;
|
1111
991
|
|
1112
992
|
declare enum MaskType {
|
1113
|
-
|
1114
|
-
|
993
|
+
ONE = "ONE",
|
994
|
+
TWO = "TWO"
|
1115
995
|
}
|
1116
996
|
|
1117
|
-
interface IMaskedImage extends IMaskedImageBase {
|
997
|
+
interface IMaskedImage extends IMaskedImageBase {
|
998
|
+
}
|
1118
999
|
interface IMaskedImageBase {
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1000
|
+
height: number;
|
1001
|
+
maskType: MaskType;
|
1002
|
+
imagePath: string;
|
1003
|
+
withDecorations?: boolean;
|
1123
1004
|
}
|
1124
1005
|
|
1125
1006
|
declare const MaskedImage: (props: IMaskedImage) => react_jsx_runtime.JSX.Element;
|
1126
1007
|
|
1127
1008
|
interface RouteI<T, D> {
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1009
|
+
name: string;
|
1010
|
+
readyForInput: boolean;
|
1011
|
+
debounceTime?: number;
|
1012
|
+
originPlaceholder?: string;
|
1013
|
+
originAriaLabel?: string;
|
1014
|
+
originWithIconBefore?: React__default.ReactElement<IIcon>;
|
1015
|
+
originWithIconAfter?: React__default.ReactElement<IIcon>;
|
1016
|
+
originWithIconLabelAfter?: string;
|
1017
|
+
destinationPlaceholder?: string;
|
1018
|
+
destinationAriaLabel?: string;
|
1019
|
+
destinationWithIconBefore?: React__default.ReactElement<IIcon>;
|
1020
|
+
destinationWithIconAfter?: React__default.ReactElement<IIcon>;
|
1021
|
+
destinationWithIconLabelAfter?: string;
|
1022
|
+
originOptions: T[];
|
1023
|
+
originOptionDefault?: T;
|
1024
|
+
originOptionToDisplay: (option: T) => React__default.ReactNode;
|
1025
|
+
originOptionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
1026
|
+
originOptionToInputValue: (option: T) => string;
|
1027
|
+
destinationOptions: D[];
|
1028
|
+
destinationOptionDefault?: D;
|
1029
|
+
destinationOptionToDisplay: (option: D) => React__default.ReactNode;
|
1030
|
+
destinationOptionToDisplayWhenSelected?: (option: D) => React__default.ReactNode;
|
1031
|
+
destinationOptionToInputValue: (option: D) => string;
|
1032
|
+
onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
1033
|
+
onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
|
1034
|
+
onOriginNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
1035
|
+
onOriginBlur?: (e: AutocompleteBlurEvent) => void;
|
1036
|
+
onOriginFocus?: (e: AutocompleteFocusEvent) => void;
|
1037
|
+
onDestinationSelected?: (e: AutocompleteSelectEvent<D>) => void;
|
1038
|
+
onDestinationInputChange?: (e: AutocompleteChangeEvent) => void;
|
1039
|
+
onDestinationNavigate?: (e: AutocompleteOptionNavigatedEvent<D>) => void;
|
1040
|
+
onDestinationBlur?: (e: AutocompleteBlurEvent) => void;
|
1041
|
+
onDestinationFocus?: (e: AutocompleteFocusEvent) => void;
|
1161
1042
|
}
|
1162
1043
|
|
1163
1044
|
interface RouteHandle<T, D> {
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
}
|
1174
|
-
declare const Route: <T, D>(
|
1175
|
-
props: RouteI<T, D> & {
|
1045
|
+
setInput: (origin: string, destination: string) => void;
|
1046
|
+
setInputOrigin: (origin: string) => void;
|
1047
|
+
setInputDestination: (destination: string) => void;
|
1048
|
+
setSelected: (origin: T, destination: D) => void;
|
1049
|
+
setSelectedOrigin: (origin: T) => void;
|
1050
|
+
setSelectedDestination: (destination: D) => void;
|
1051
|
+
focusOrigin: () => void;
|
1052
|
+
focusDestination: () => void;
|
1053
|
+
blur: () => void;
|
1054
|
+
}
|
1055
|
+
declare const Route: <T, D>(props: RouteI<T, D> & {
|
1176
1056
|
ref?: Ref<RouteHandle<T, D>>;
|
1177
|
-
|
1178
|
-
) => JSX.Element;
|
1057
|
+
}) => JSX.Element;
|
1179
1058
|
|
1180
1059
|
interface IFilterTag {
|
1181
|
-
|
1182
|
-
|
1060
|
+
label: string;
|
1061
|
+
action: () => void;
|
1183
1062
|
}
|
1184
1063
|
|
1185
|
-
declare const FilterTag: ({label, action}: IFilterTag) => react_jsx_runtime.JSX.Element;
|
1064
|
+
declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JSX.Element;
|
1186
1065
|
|
1187
1066
|
interface SwitchI {
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1067
|
+
children: React__default.ReactElement<SwitchItemI>[];
|
1068
|
+
onChange?: (e: React__default.MouseEvent<HTMLDivElement>, value: string) => void;
|
1069
|
+
init: string;
|
1191
1070
|
}
|
1192
1071
|
interface SwitchItemI {
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1072
|
+
label: string;
|
1073
|
+
content: React__default.ReactElement;
|
1074
|
+
value: string;
|
1075
|
+
}
|
1076
|
+
interface SwitchItemContentI extends PropsWithChildren {
|
1196
1077
|
}
|
1197
|
-
interface SwitchItemContentI extends PropsWithChildren {}
|
1198
1078
|
|
1199
1079
|
declare const Switch: {
|
1200
|
-
|
1201
|
-
|
1080
|
+
({ children, onChange, init }: SwitchI): react_jsx_runtime.JSX.Element;
|
1081
|
+
Item: (props: SwitchItemI) => null;
|
1202
1082
|
};
|
1203
1083
|
|
1204
1084
|
interface CloseI {
|
1205
|
-
|
1206
|
-
|
1085
|
+
label: string;
|
1086
|
+
screenReaderText: string;
|
1207
1087
|
}
|
1208
1088
|
|
1209
|
-
declare const Close: ({label, screenReaderText}: CloseI) => react_jsx_runtime.JSX.Element;
|
1089
|
+
declare const Close: ({ label, screenReaderText }: CloseI) => react_jsx_runtime.JSX.Element;
|
1210
1090
|
|
1211
1091
|
interface IColoredBox {
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1092
|
+
title: string;
|
1093
|
+
description: string;
|
1094
|
+
image?: string;
|
1095
|
+
actions?: React.ReactNode;
|
1216
1096
|
}
|
1217
1097
|
|
1218
|
-
declare const ColoredBox: ({title, description, image, actions}: IColoredBox) => react_jsx_runtime.JSX.Element;
|
1098
|
+
declare const ColoredBox: ({ title, description, image, actions }: IColoredBox) => react_jsx_runtime.JSX.Element;
|
1219
1099
|
|
1220
1100
|
interface IToggle {
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
}
|
1229
|
-
|
1230
|
-
declare const Toggle: ({
|
1231
|
-
label,
|
1232
|
-
name,
|
1233
|
-
value,
|
1234
|
-
ariaLabel,
|
1235
|
-
checked,
|
1236
|
-
defaultChecked,
|
1237
|
-
onChange,
|
1238
|
-
}: IToggle) => react_jsx_runtime.JSX.Element;
|
1101
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
1102
|
+
value: string;
|
1103
|
+
ariaLabel?: string;
|
1104
|
+
label: string;
|
1105
|
+
name: string;
|
1106
|
+
checked?: boolean;
|
1107
|
+
defaultChecked?: boolean;
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
1239
1111
|
|
1240
1112
|
interface INoResults {
|
1241
|
-
|
1242
|
-
|
1113
|
+
title: string;
|
1114
|
+
subtitle?: string;
|
1243
1115
|
}
|
1244
1116
|
|
1245
|
-
declare const NoResults: ({title, subtitle}: INoResults) => react_jsx_runtime.JSX.Element;
|
1117
|
+
declare const NoResults: ({ title, subtitle }: INoResults) => react_jsx_runtime.JSX.Element;
|
1246
1118
|
|
1247
1119
|
declare enum PillCheckboxType {
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1120
|
+
PRIMARY = "PRIMARY",
|
1121
|
+
SUPPORTING = "SUPPORTING",
|
1122
|
+
ACCENT = "ACCENT"
|
1251
1123
|
}
|
1252
1124
|
|
1253
1125
|
interface IPillCheckbox {
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
}
|
1263
|
-
|
1264
|
-
declare const PillCheckbox: ({
|
1265
|
-
label,
|
1266
|
-
name,
|
1267
|
-
value,
|
1268
|
-
ariaLabel,
|
1269
|
-
checked,
|
1270
|
-
defaultChecked,
|
1271
|
-
onChange,
|
1272
|
-
type,
|
1273
|
-
}: IPillCheckbox) => react_jsx_runtime.JSX.Element;
|
1126
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
1127
|
+
value: string;
|
1128
|
+
ariaLabel?: string;
|
1129
|
+
label: string;
|
1130
|
+
name: string;
|
1131
|
+
checked?: boolean;
|
1132
|
+
defaultChecked?: boolean;
|
1133
|
+
type?: PillCheckboxType;
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
declare const PillCheckbox: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange, type, }: IPillCheckbox) => react_jsx_runtime.JSX.Element;
|
1274
1137
|
|
1275
1138
|
declare enum TableCellType {
|
1276
|
-
|
1277
|
-
|
1139
|
+
DEFAULT = "DEFAULT",
|
1140
|
+
HEAD = "HEAD"
|
1278
1141
|
}
|
1279
1142
|
|
1280
1143
|
interface ITable {
|
1281
|
-
|
1144
|
+
children: React.ReactNode;
|
1282
1145
|
}
|
1283
1146
|
interface ITableHead {
|
1284
|
-
|
1147
|
+
children: React.ReactNode;
|
1285
1148
|
}
|
1286
1149
|
interface ITableBody {
|
1287
|
-
|
1150
|
+
children: React.ReactNode;
|
1288
1151
|
}
|
1289
1152
|
interface ITableRow {
|
1290
|
-
|
1153
|
+
children: React.ReactNode;
|
1291
1154
|
}
|
1292
1155
|
interface ITableCell {
|
1293
|
-
|
1294
|
-
|
1156
|
+
type?: TableCellType;
|
1157
|
+
children: React.ReactNode;
|
1295
1158
|
}
|
1296
1159
|
|
1297
1160
|
declare const Table: {
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1161
|
+
({ children }: ITable): react_jsx_runtime.JSX.Element;
|
1162
|
+
Body: ({ children }: ITableBody) => react_jsx_runtime.JSX.Element;
|
1163
|
+
Head: ({ children }: ITableHead) => react_jsx_runtime.JSX.Element;
|
1164
|
+
Row: ({ children }: ITableRow) => react_jsx_runtime.JSX.Element;
|
1165
|
+
Cell: ({ type, children }: ITableCell) => react_jsx_runtime.JSX.Element;
|
1303
1166
|
};
|
1304
1167
|
|
1305
1168
|
interface DayOfBirthI {
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
declare const DayOfBirth: ({
|
1319
|
-
onChange,
|
1320
|
-
placeholder,
|
1321
|
-
name,
|
1322
|
-
format,
|
1323
|
-
context,
|
1324
|
-
initialValue,
|
1325
|
-
}: DayOfBirthI) => react_jsx_runtime.JSX.Element;
|
1169
|
+
name: string;
|
1170
|
+
format?: string;
|
1171
|
+
initialValue?: {
|
1172
|
+
year: number;
|
1173
|
+
month: number;
|
1174
|
+
day: number;
|
1175
|
+
};
|
1176
|
+
onChange?: (year: number, month: number, day: number) => void;
|
1177
|
+
placeholder?: string;
|
1178
|
+
context?: InputContext;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
declare const DayOfBirth: ({ onChange, placeholder, name, format, context, initialValue }: DayOfBirthI) => react_jsx_runtime.JSX.Element;
|
1326
1182
|
|
1327
1183
|
declare enum BlockRadioContext {
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1184
|
+
STANDARD = "STANDARD",
|
1185
|
+
DISABLED = "DISABLED",
|
1186
|
+
ERROR = "ERROR"
|
1331
1187
|
}
|
1332
1188
|
|
1333
1189
|
interface IBlockRadioBase {
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1190
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
1191
|
+
value: string;
|
1192
|
+
ariaLabel?: string;
|
1193
|
+
label: string;
|
1194
|
+
name: string;
|
1195
|
+
checked?: boolean;
|
1196
|
+
defaultChecked?: boolean;
|
1341
1197
|
}
|
1342
1198
|
interface IBlockRadio extends IBlockRadioBase {
|
1343
|
-
|
1199
|
+
context?: BlockRadioContext;
|
1344
1200
|
}
|
1345
1201
|
interface IBlockRadioGroup {
|
1346
|
-
|
1347
|
-
|
1202
|
+
direction?: "row" | "column";
|
1203
|
+
children: React__default.ReactNode;
|
1348
1204
|
}
|
1349
1205
|
|
1350
1206
|
declare const BlockRadio: {
|
1351
|
-
|
1352
|
-
|
1353
|
-
onChange,
|
1354
|
-
value,
|
1355
|
-
ariaLabel,
|
1356
|
-
label,
|
1357
|
-
name,
|
1358
|
-
checked,
|
1359
|
-
defaultChecked,
|
1360
|
-
}: IBlockRadio): react_jsx_runtime.JSX.Element;
|
1361
|
-
Group: ({direction, children}: IBlockRadioGroup) => react_jsx_runtime.JSX.Element;
|
1207
|
+
({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IBlockRadio): react_jsx_runtime.JSX.Element;
|
1208
|
+
Group: ({ direction, children }: IBlockRadioGroup) => react_jsx_runtime.JSX.Element;
|
1362
1209
|
};
|
1363
1210
|
|
1364
1211
|
declare enum DropdownContext {
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1212
|
+
DISABLED = "DISABLED",
|
1213
|
+
ERROR = "ERROR",
|
1214
|
+
STANDARD = "STANDARD"
|
1368
1215
|
}
|
1369
1216
|
|
1370
1217
|
interface DropdownChangeEvent {
|
1371
|
-
|
1372
|
-
|
1218
|
+
value: string;
|
1219
|
+
event: React.ChangeEvent<HTMLSelectElement>;
|
1373
1220
|
}
|
1374
1221
|
interface DropdownBlurEvent {
|
1375
|
-
|
1376
|
-
|
1222
|
+
value: string;
|
1223
|
+
event: React.FocusEvent<HTMLSelectElement, Element>;
|
1377
1224
|
}
|
1378
1225
|
interface DropdownFocusEvent {
|
1379
|
-
|
1380
|
-
|
1226
|
+
value: string;
|
1227
|
+
event: React.FocusEvent<HTMLSelectElement, Element>;
|
1381
1228
|
}
|
1382
1229
|
interface IDropdownBase {
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1230
|
+
onChange?: (e: DropdownChangeEvent) => void;
|
1231
|
+
onBlur?: (e: DropdownBlurEvent) => void;
|
1232
|
+
onFocus?: (e: DropdownFocusEvent) => void;
|
1233
|
+
value?: string;
|
1234
|
+
defaultValue?: string;
|
1235
|
+
ariaLabel?: string;
|
1236
|
+
name: string;
|
1237
|
+
children: React.ReactNode;
|
1391
1238
|
}
|
1392
1239
|
interface IDropdown extends IDropdownBase {
|
1393
|
-
|
1240
|
+
context?: DropdownContext;
|
1394
1241
|
}
|
1395
1242
|
|
1396
|
-
declare const Dropdown: ({context, ...rest}: IDropdown) => react_jsx_runtime.JSX.Element;
|
1243
|
+
declare const Dropdown: ({ context, ...rest }: IDropdown) => react_jsx_runtime.JSX.Element;
|
1397
1244
|
|
1398
|
-
interface IOverlayNavigation extends IOverlayNavigationBase {
|
1245
|
+
interface IOverlayNavigation extends IOverlayNavigationBase {
|
1246
|
+
}
|
1399
1247
|
interface IOverlayNavigationHeader {
|
1400
|
-
|
1401
|
-
|
1248
|
+
branding: React__default.ReactNode;
|
1249
|
+
contextualArea?: React__default.ReactNode;
|
1402
1250
|
}
|
1403
1251
|
interface IOverlayNavigationFooter {
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1252
|
+
children?: React__default.ReactNode;
|
1253
|
+
title?: string;
|
1254
|
+
description?: string;
|
1407
1255
|
}
|
1408
1256
|
interface IOverlayNavigationBase {
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1257
|
+
header: React__default.ReactElement<IOverlayNavigationHeader>;
|
1258
|
+
children?: React__default.ReactNode;
|
1259
|
+
footer?: React__default.ReactElement<IOverlayNavigationFooter>;
|
1412
1260
|
}
|
1413
1261
|
interface IOverlayNavigationItem {
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1262
|
+
label: string;
|
1263
|
+
href: string;
|
1264
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1265
|
+
isActive?: boolean;
|
1266
|
+
icon: React__default.ReactElement<IIcon>;
|
1419
1267
|
}
|
1420
1268
|
|
1421
1269
|
declare const OverlayNavigation: {
|
1422
|
-
|
1423
|
-
|
1270
|
+
({ header, children, footer }: IOverlayNavigation): react_jsx_runtime.JSX.Element;
|
1271
|
+
Item: ({ label, onClick, isActive, href, icon }: IOverlayNavigationItem) => react_jsx_runtime.JSX.Element;
|
1424
1272
|
};
|
1425
|
-
declare const OverlayNavigationHeader: ({
|
1426
|
-
|
1427
|
-
contextualArea,
|
1428
|
-
}: IOverlayNavigationHeader) => react_jsx_runtime.JSX.Element;
|
1429
|
-
declare const OverlayNavigationFooter: ({
|
1430
|
-
children,
|
1431
|
-
title,
|
1432
|
-
description,
|
1433
|
-
}: IOverlayNavigationFooter) => react_jsx_runtime.JSX.Element;
|
1273
|
+
declare const OverlayNavigationHeader: ({ branding, contextualArea }: IOverlayNavigationHeader) => react_jsx_runtime.JSX.Element;
|
1274
|
+
declare const OverlayNavigationFooter: ({ children, title, description }: IOverlayNavigationFooter) => react_jsx_runtime.JSX.Element;
|
1434
1275
|
|
1435
1276
|
interface IDetailsBase {
|
1436
|
-
|
1277
|
+
children?: React__default.ReactNode;
|
1278
|
+
}
|
1279
|
+
interface IDetails extends IDetailsBase {
|
1437
1280
|
}
|
1438
|
-
interface IDetails extends IDetailsBase {}
|
1439
1281
|
interface DetailsHeaderThemeableProps {
|
1440
|
-
|
1441
|
-
|
1282
|
+
title: string;
|
1283
|
+
children?: React__default.ReactNode;
|
1442
1284
|
}
|
1443
1285
|
interface DetailsContentThemeableProps {
|
1444
|
-
|
1286
|
+
children?: React__default.ReactNode;
|
1445
1287
|
}
|
1446
1288
|
|
1447
1289
|
declare const Details: {
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1290
|
+
({ children }: IDetails): react_jsx_runtime.JSX.Element;
|
1291
|
+
Header: ({ title, children }: DetailsHeaderThemeableProps) => react_jsx_runtime.JSX.Element;
|
1292
|
+
Content: ({ children }: DetailsContentThemeableProps) => react_jsx_runtime.JSX.Element;
|
1451
1293
|
};
|
1452
1294
|
|
1453
1295
|
interface IFaqBase {
|
1454
|
-
|
1296
|
+
children?: React__default.ReactNode;
|
1297
|
+
}
|
1298
|
+
interface IFaq extends IFaqBase {
|
1455
1299
|
}
|
1456
|
-
interface IFaq extends IFaqBase {}
|
1457
1300
|
interface FaqHeaderThemeableProps {
|
1458
|
-
|
1301
|
+
title: string;
|
1459
1302
|
}
|
1460
1303
|
interface FaqContentThemeableProps {
|
1461
|
-
|
1304
|
+
children?: React__default.ReactNode;
|
1462
1305
|
}
|
1463
1306
|
|
1464
1307
|
declare const Faq: {
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1308
|
+
({ children }: IFaq): react_jsx_runtime.JSX.Element;
|
1309
|
+
Header: ({ title }: FaqHeaderThemeableProps) => react_jsx_runtime.JSX.Element;
|
1310
|
+
Content: ({ children }: FaqContentThemeableProps) => react_jsx_runtime.JSX.Element;
|
1468
1311
|
};
|
1469
1312
|
|
1470
1313
|
interface ISelectBox {
|
1471
|
-
|
1314
|
+
children: React__default.ReactNode;
|
1472
1315
|
}
|
1473
1316
|
interface ISelectBoxMenuItem {
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1317
|
+
figure: React__default.ReactElement<IFigure>;
|
1318
|
+
label: string;
|
1319
|
+
action: () => void;
|
1477
1320
|
}
|
1478
1321
|
interface ISelectBoxSelect {
|
1479
|
-
|
1480
|
-
|
1322
|
+
figure: React__default.ReactElement<IFigure>;
|
1323
|
+
label: string;
|
1481
1324
|
}
|
1482
1325
|
interface ISelectBoxMenu {
|
1483
|
-
|
1326
|
+
children: React__default.ReactNode;
|
1484
1327
|
}
|
1485
1328
|
|
1486
1329
|
declare const SelectBox: {
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1330
|
+
({ children }: ISelectBox): react_jsx_runtime.JSX.Element;
|
1331
|
+
Select: ({ figure, label }: ISelectBoxSelect) => react_jsx_runtime.JSX.Element;
|
1332
|
+
Menu: ({ children }: ISelectBoxMenu) => react_jsx_runtime.JSX.Element;
|
1333
|
+
Item: ({ action, figure, label }: ISelectBoxMenuItem) => react_jsx_runtime.JSX.Element;
|
1491
1334
|
};
|
1492
1335
|
|
1493
1336
|
interface ICategoryLink {
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1337
|
+
figure: React__default.ReactElement<IFigure>;
|
1338
|
+
title: string;
|
1339
|
+
description: string;
|
1340
|
+
label: string;
|
1341
|
+
action: () => void;
|
1499
1342
|
}
|
1500
1343
|
|
1501
|
-
declare const CategoryLink: ({
|
1502
|
-
figure,
|
1503
|
-
title,
|
1504
|
-
description,
|
1505
|
-
label,
|
1506
|
-
action,
|
1507
|
-
}: ICategoryLink) => react_jsx_runtime.JSX.Element;
|
1344
|
+
declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
|
1508
1345
|
|
1509
1346
|
interface IQuote {
|
1510
|
-
|
1347
|
+
quote: React__default.ReactElement<ISafeHtml>;
|
1511
1348
|
}
|
1512
1349
|
|
1513
|
-
declare const Quote: ({quote}: IQuote) => react_jsx_runtime.JSX.Element;
|
1350
|
+
declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
|
1514
1351
|
|
1515
1352
|
interface IResultHeading {
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1353
|
+
title: string;
|
1354
|
+
amount: number;
|
1355
|
+
actions: React.ReactNode;
|
1519
1356
|
}
|
1520
1357
|
|
1521
|
-
declare const ResultHeading: ({title, amount, actions}: IResultHeading) => react_jsx_runtime.JSX.Element;
|
1358
|
+
declare const ResultHeading: ({ title, amount, actions }: IResultHeading) => react_jsx_runtime.JSX.Element;
|
1522
1359
|
|
1523
1360
|
interface IFeatures {
|
1524
|
-
|
1361
|
+
children: React__default.ReactElement<IFeature> | React__default.ReactElement<IFeature>[];
|
1525
1362
|
}
|
1526
1363
|
|
1527
|
-
declare const Features: ({children}: IFeatures) => react_jsx_runtime.JSX.Element;
|
1364
|
+
declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
|
1528
1365
|
|
1529
1366
|
declare enum PlaceholderPhotoType {
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1367
|
+
DAYCARE = "DAYCARE",
|
1368
|
+
CHILDMINDER = "CHILDMINDER",
|
1369
|
+
COOPERATIVE = "COOPERATIVE"
|
1533
1370
|
}
|
1534
1371
|
|
1535
1372
|
interface IPlaceholderPhoto {
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1373
|
+
figure: React__default.ReactElement<IFigure>;
|
1374
|
+
type: PlaceholderPhotoType;
|
1375
|
+
height: string;
|
1539
1376
|
}
|
1540
1377
|
|
1541
|
-
declare const PlaceholderPhoto: ({figure, type, height}: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
|
1378
|
+
declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) => react_jsx_runtime.JSX.Element;
|
1542
1379
|
|
1543
1380
|
interface OpeningHoursSelectHours {
|
1544
|
-
|
1545
|
-
|
1381
|
+
start: string;
|
1382
|
+
end: string;
|
1546
1383
|
}
|
1547
1384
|
interface IOpeningHoursSelect {
|
1548
|
-
|
1549
|
-
|
1385
|
+
selected?: OpeningHoursSelectHours;
|
1386
|
+
onChange: (value: OpeningHoursSelectHours) => void;
|
1550
1387
|
}
|
1551
1388
|
|
1552
|
-
declare const OpeningHoursSelect: ({selected, onChange}: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
|
1389
|
+
declare const OpeningHoursSelect: ({ selected, onChange }: IOpeningHoursSelect) => react_jsx_runtime.JSX.Element;
|
1553
1390
|
|
1554
1391
|
interface IDaySelect {
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
}
|
1565
|
-
|
1566
|
-
declare const DaySelect: ({
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
wedLabel,
|
1571
|
-
thuLabel,
|
1572
|
-
friLabel,
|
1573
|
-
satLabel,
|
1574
|
-
sunLabel,
|
1575
|
-
selectedDays,
|
1576
|
-
}: IDaySelect) => react_jsx_runtime.JSX.Element;
|
1577
|
-
|
1578
|
-
interface INavigation extends INavigationBase {}
|
1392
|
+
onChange: (value: number[]) => void;
|
1393
|
+
monLabel: string;
|
1394
|
+
tueLabel: string;
|
1395
|
+
wedLabel: string;
|
1396
|
+
thuLabel: string;
|
1397
|
+
friLabel: string;
|
1398
|
+
satLabel: string;
|
1399
|
+
sunLabel: string;
|
1400
|
+
selectedDays: number[];
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, friLabel, satLabel, sunLabel, selectedDays, }: IDaySelect) => react_jsx_runtime.JSX.Element;
|
1404
|
+
|
1405
|
+
interface INavigation extends INavigationBase {
|
1406
|
+
}
|
1579
1407
|
interface INavigationBase {
|
1580
|
-
|
1408
|
+
children?: React__default.ReactNode;
|
1581
1409
|
}
|
1582
1410
|
interface INavigationItem {
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
1411
|
+
label: string;
|
1412
|
+
href: string;
|
1413
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1414
|
+
isActive?: boolean;
|
1415
|
+
icon?: React__default.ReactElement<IIcon>;
|
1588
1416
|
}
|
1589
1417
|
|
1590
1418
|
declare const Navigation: {
|
1591
|
-
|
1592
|
-
|
1419
|
+
({ children }: INavigation): react_jsx_runtime.JSX.Element;
|
1420
|
+
Item: ({ label, onClick, isActive, href, icon }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
1593
1421
|
};
|
1594
1422
|
|
1595
1423
|
declare enum ItemType {
|
1596
|
-
|
1597
|
-
|
1424
|
+
LINK = "LINK",
|
1425
|
+
BUTTON = "BUTTON"
|
1598
1426
|
}
|
1599
1427
|
|
1600
1428
|
interface IProfileNavigation {
|
1601
|
-
|
1602
|
-
| React__default.ReactElement<ProfileNavigationItemThemeableProps>
|
1603
|
-
| React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1429
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1604
1430
|
}
|
1605
1431
|
interface ProfileNavigationThemeableProps {
|
1606
|
-
|
1607
|
-
| React__default.ReactElement<ProfileNavigationItemThemeableProps>
|
1608
|
-
| React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1432
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1609
1433
|
}
|
1610
|
-
type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> &
|
1611
|
-
React__default.MouseEventHandler<HTMLButtonElement>;
|
1434
|
+
type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
|
1612
1435
|
interface ProfileNavigationItemThemeableProps {
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1436
|
+
label?: string;
|
1437
|
+
title: string;
|
1438
|
+
icon: IconType;
|
1439
|
+
type: ItemType;
|
1440
|
+
href?: string;
|
1441
|
+
onClick?: ClickHandler;
|
1442
|
+
count?: number;
|
1443
|
+
isHighlighted?: boolean;
|
1621
1444
|
}
|
1622
1445
|
|
1623
1446
|
declare const ProfileNavigation: {
|
1624
|
-
|
1625
|
-
|
1626
|
-
icon,
|
1627
|
-
label,
|
1628
|
-
title,
|
1629
|
-
onClick,
|
1630
|
-
count,
|
1631
|
-
type,
|
1632
|
-
isHighlighted,
|
1633
|
-
href,
|
1634
|
-
}: ProfileNavigationItemThemeableProps) => react_jsx_runtime.JSX.Element;
|
1447
|
+
({ children }: IProfileNavigation): react_jsx_runtime.JSX.Element;
|
1448
|
+
Item: ({ icon, label, title, onClick, count, type, isHighlighted, href, }: ProfileNavigationItemThemeableProps) => react_jsx_runtime.JSX.Element;
|
1635
1449
|
};
|
1636
1450
|
|
1637
1451
|
interface IRecords {
|
1638
|
-
|
1452
|
+
children: React__default.ReactElement<IRecord> | React__default.ReactElement<IRecord>[];
|
1639
1453
|
}
|
1640
1454
|
|
1641
|
-
declare const Records: ({children}: IRecords) => react_jsx_runtime.JSX.Element;
|
1455
|
+
declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
|
1642
1456
|
|
1643
|
-
interface ITopNavigation extends ITopNavigationBase {
|
1457
|
+
interface ITopNavigation extends ITopNavigationBase {
|
1458
|
+
}
|
1644
1459
|
interface ITopNavigationBase {
|
1645
|
-
|
1460
|
+
children?: React__default.ReactNode;
|
1646
1461
|
}
|
1647
1462
|
interface ITopNavigationItemBase {
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1463
|
+
href: string;
|
1464
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1465
|
+
label: string;
|
1466
|
+
icon: IconType;
|
1652
1467
|
}
|
1653
1468
|
|
1654
1469
|
declare const TopNavigation: {
|
1655
|
-
|
1656
|
-
|
1470
|
+
({ children }: ITopNavigation): react_jsx_runtime.JSX.Element;
|
1471
|
+
Item: ({ onClick, label, icon, href }: ITopNavigationItemBase) => react_jsx_runtime.JSX.Element;
|
1657
1472
|
};
|
1658
1473
|
|
1659
1474
|
interface IOnboarding {
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1475
|
+
heading: string;
|
1476
|
+
content: string;
|
1477
|
+
cta: React__default.ReactElement;
|
1478
|
+
figure: React__default.ReactElement<IFigure>;
|
1479
|
+
onClick?: (e: React__default.MouseEvent<HTMLButtonElement>) => void;
|
1480
|
+
}
|
1481
|
+
interface IOnboardingButton extends IButtonMinimal {
|
1665
1482
|
}
|
1666
|
-
interface IOnboardingButton extends IButtonMinimal {}
|
1667
1483
|
|
1668
|
-
declare const OnboardingButton: React__default.ForwardRefExoticComponent<
|
1669
|
-
|
1670
|
-
>;
|
1671
|
-
declare const Onboarding: ({heading, content, cta, figure}: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1484
|
+
declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
|
1485
|
+
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1672
1486
|
|
1673
1487
|
interface IGallery {
|
1674
|
-
|
1488
|
+
images: string[];
|
1675
1489
|
}
|
1676
1490
|
|
1677
|
-
declare const Gallery: ({images}: IGallery) => react_jsx_runtime.JSX.Element;
|
1491
|
+
declare const Gallery: ({ images }: IGallery) => react_jsx_runtime.JSX.Element;
|
1678
1492
|
|
1679
1493
|
interface IInfoCard {
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1494
|
+
figureType: FigureType;
|
1495
|
+
title: string;
|
1496
|
+
body: string;
|
1683
1497
|
}
|
1684
1498
|
|
1685
|
-
declare const InfoCard: ({figureType, title, body}: IInfoCard) => react_jsx_runtime.JSX.Element;
|
1499
|
+
declare const InfoCard: ({ figureType, title, body }: IInfoCard) => react_jsx_runtime.JSX.Element;
|
1686
1500
|
|
1687
1501
|
interface IInformationTooltip {
|
1688
|
-
|
1689
|
-
|
1502
|
+
icon: React__default.ReactElement<IIcon>;
|
1503
|
+
tooltip: string;
|
1690
1504
|
}
|
1691
1505
|
|
1692
|
-
declare const InformationTooltip: ({icon, tooltip}: IInformationTooltip) => react_jsx_runtime.JSX.Element;
|
1506
|
+
declare const InformationTooltip: ({ icon, tooltip }: IInformationTooltip) => react_jsx_runtime.JSX.Element;
|
1693
1507
|
|
1694
1508
|
interface IInstruction {
|
1695
|
-
|
1696
|
-
|
1509
|
+
figureType: FigureType;
|
1510
|
+
label: string;
|
1697
1511
|
}
|
1698
1512
|
|
1699
|
-
declare const Instruction: ({figureType, label}: IInstruction) => react_jsx_runtime.JSX.Element;
|
1513
|
+
declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_runtime.JSX.Element;
|
1700
1514
|
|
1701
1515
|
interface ICta {
|
1702
|
-
|
1703
|
-
|
1516
|
+
label: string;
|
1517
|
+
action: React__default.ReactElement<IButton>;
|
1704
1518
|
}
|
1705
1519
|
|
1706
|
-
declare const Cta: ({label, action}: ICta) => react_jsx_runtime.JSX.Element;
|
1520
|
+
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
1707
1521
|
|
1708
1522
|
interface IFigureHeading {
|
1709
|
-
|
1710
|
-
|
1523
|
+
figure: React.ReactElement<IFigure>;
|
1524
|
+
title: string;
|
1711
1525
|
}
|
1712
1526
|
|
1713
|
-
declare const FigureHeading: ({figure, title}: IFigureHeading) => react_jsx_runtime.JSX.Element;
|
1527
|
+
declare const FigureHeading: ({ figure, title }: IFigureHeading) => react_jsx_runtime.JSX.Element;
|
1714
1528
|
|
1715
1529
|
declare enum CurrentLocationSize {
|
1716
|
-
|
1717
|
-
|
1530
|
+
SMALL = "small",
|
1531
|
+
LARGE = "large"
|
1718
1532
|
}
|
1719
1533
|
interface ICurrentLocation {
|
1720
|
-
|
1721
|
-
|
1722
|
-
|
1534
|
+
label: string;
|
1535
|
+
action: () => void;
|
1536
|
+
size: CurrentLocationSize;
|
1723
1537
|
}
|
1724
1538
|
|
1725
|
-
declare const CurrentLocation: ({label, action, size}: ICurrentLocation) => react_jsx_runtime.JSX.Element;
|
1539
|
+
declare const CurrentLocation: ({ label, action, size }: ICurrentLocation) => react_jsx_runtime.JSX.Element;
|
1726
1540
|
|
1727
|
-
interface IFooterNavigation extends IFooterNavigationBase {
|
1541
|
+
interface IFooterNavigation extends IFooterNavigationBase {
|
1542
|
+
}
|
1728
1543
|
interface IFooterNavigationBase {
|
1729
|
-
|
1544
|
+
children?: React__default.ReactNode;
|
1730
1545
|
}
|
1731
1546
|
|
1732
|
-
declare const FooterNavigation: ({children}: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
1547
|
+
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
1733
1548
|
|
1734
1549
|
interface IPageHeader {
|
1735
|
-
|
1736
|
-
|
1550
|
+
title: string;
|
1551
|
+
figure: React.ReactElement<IFigure>;
|
1737
1552
|
}
|
1738
1553
|
|
1739
|
-
declare const PageHeader: ({title, figure}: IPageHeader) => react_jsx_runtime.JSX.Element;
|
1554
|
+
declare const PageHeader: ({ title, figure }: IPageHeader) => react_jsx_runtime.JSX.Element;
|
1740
1555
|
|
1741
|
-
interface IBottomNavigation extends IBottomNavigationBase {
|
1556
|
+
interface IBottomNavigation extends IBottomNavigationBase {
|
1557
|
+
}
|
1742
1558
|
interface IBottomNavigationBase {
|
1743
|
-
|
1559
|
+
children?: React.ReactNode;
|
1744
1560
|
}
|
1745
1561
|
|
1746
|
-
declare const BottomNavigation: ({children}: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1562
|
+
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1747
1563
|
|
1748
1564
|
interface IForm extends PropsWithChildren {
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1565
|
+
onSubmit: (data: FormData) => void;
|
1566
|
+
autocomplete?: boolean;
|
1567
|
+
novalidate?: boolean;
|
1752
1568
|
}
|
1753
1569
|
|
1754
1570
|
interface FormHandle {
|
1755
|
-
|
1571
|
+
doSubmit: () => void;
|
1756
1572
|
}
|
1757
|
-
declare const Form: (
|
1758
|
-
props: IForm & {
|
1573
|
+
declare const Form: (props: IForm & {
|
1759
1574
|
ref?: Ref<FormHandle>;
|
1760
|
-
|
1761
|
-
) => JSX.Element;
|
1575
|
+
}) => JSX.Element;
|
1762
1576
|
|
1763
1577
|
interface IFormElement {
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1578
|
+
label: string;
|
1579
|
+
input: React.ReactNode;
|
1580
|
+
description?: string;
|
1581
|
+
required?: boolean;
|
1768
1582
|
}
|
1769
1583
|
|
1770
|
-
declare const FormElement: ({label, input, description, required}: IFormElement) => react_jsx_runtime.JSX.Element;
|
1584
|
+
declare const FormElement: ({ label, input, description, required }: IFormElement) => react_jsx_runtime.JSX.Element;
|
1771
1585
|
|
1772
1586
|
interface IFormMessage {
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1587
|
+
messages: string[];
|
1588
|
+
type: string;
|
1589
|
+
icon: React__default.ReactElement<IIcon>;
|
1776
1590
|
}
|
1777
1591
|
|
1778
1592
|
declare enum FormMessageType {
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1593
|
+
ERROR = "ERROR",
|
1594
|
+
SUCCESS = "SUCCESS",
|
1595
|
+
WARNING = "WARNING"
|
1782
1596
|
}
|
1783
1597
|
|
1784
|
-
declare const FormMessage: ({icon, messages, type}: IFormMessage) => react_jsx_runtime.JSX.Element;
|
1598
|
+
declare const FormMessage: ({ icon, messages, type }: IFormMessage) => react_jsx_runtime.JSX.Element;
|
1785
1599
|
|
1786
1600
|
interface IProgressSteps {
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1601
|
+
amount: number;
|
1602
|
+
active: number;
|
1603
|
+
title: string;
|
1604
|
+
description: string;
|
1791
1605
|
}
|
1792
1606
|
|
1793
|
-
declare const ProgressSteps: ({amount, active, title, description}: IProgressSteps) => react_jsx_runtime.JSX.Element;
|
1607
|
+
declare const ProgressSteps: ({ amount, active, title, description }: IProgressSteps) => react_jsx_runtime.JSX.Element;
|
1794
1608
|
|
1795
1609
|
interface IScheduleSelect {
|
1796
|
-
|
1797
|
-
|
1610
|
+
header: React.ReactElement<IScheduleSelectHeader>;
|
1611
|
+
children: React.ReactElement<IScheduleSelectRow>[];
|
1798
1612
|
}
|
1799
1613
|
interface IScheduleSelectHeader {
|
1800
|
-
|
1614
|
+
labels: string[];
|
1801
1615
|
}
|
1802
1616
|
interface IScheduleSelectRow {
|
1803
|
-
|
1804
|
-
|
1805
|
-
|
1617
|
+
label: string;
|
1618
|
+
actions: React.ReactElement<IPillCheckbox>[];
|
1619
|
+
isActive?: boolean;
|
1806
1620
|
}
|
1807
1621
|
|
1808
1622
|
declare const ScheduleSelect: {
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1623
|
+
({ header, children }: IScheduleSelect): react_jsx_runtime.JSX.Element;
|
1624
|
+
Header: ({ labels }: IScheduleSelectHeader) => react_jsx_runtime.JSX.Element;
|
1625
|
+
Row: ({ label, actions, isActive }: IScheduleSelectRow) => react_jsx_runtime.JSX.Element;
|
1812
1626
|
};
|
1813
1627
|
|
1814
1628
|
declare enum StatBlockSize {
|
1815
|
-
|
1816
|
-
|
1629
|
+
MEDIUM = "MEDIUM",
|
1630
|
+
LARGE = "LARGE"
|
1817
1631
|
}
|
1818
1632
|
|
1819
1633
|
interface IStatBlock {
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
1634
|
+
figure: React.ReactElement<IFigure>;
|
1635
|
+
amount: number;
|
1636
|
+
label: string;
|
1637
|
+
size: StatBlockSize;
|
1638
|
+
onclick?: () => void;
|
1825
1639
|
}
|
1826
1640
|
|
1827
1641
|
declare const StatBlock: (props: IStatBlock) => react_jsx_runtime.JSX.Element;
|
1828
1642
|
|
1829
1643
|
interface IMinimalHeader {
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1644
|
+
branding: React__default.ReactElement<ILogo>;
|
1645
|
+
siteMenu?: React__default.ReactNode;
|
1646
|
+
contextualArea?: React__default.ReactNode;
|
1833
1647
|
}
|
1834
1648
|
|
1835
1649
|
declare const MinimalHeader: (props: IMinimalHeader) => react_jsx_runtime.JSX.Element;
|
1836
1650
|
|
1837
1651
|
interface ICompactHeader {
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1652
|
+
overlay: React__default.ReactElement<PropsWithChildren>;
|
1653
|
+
contextualArea?: React__default.ReactNode;
|
1654
|
+
contained?: boolean;
|
1841
1655
|
}
|
1842
1656
|
|
1843
1657
|
interface CompactHeaderOverlayHandle {
|
1844
|
-
|
1658
|
+
close: () => void;
|
1845
1659
|
}
|
1846
1660
|
declare const CompactHeader: (props: ICompactHeader) => react_jsx_runtime.JSX.Element;
|
1847
|
-
declare const CompactHeaderOverlay: <T>(
|
1848
|
-
props: PropsWithChildren & {
|
1661
|
+
declare const CompactHeaderOverlay: <T>(props: PropsWithChildren & {
|
1849
1662
|
ref?: Ref<CompactHeaderOverlayHandle>;
|
1850
|
-
|
1851
|
-
) => JSX.Element;
|
1663
|
+
}) => JSX.Element;
|
1852
1664
|
|
1853
1665
|
interface IHeader {
|
1854
|
-
|
1855
|
-
|
1856
|
-
|
1857
|
-
|
1666
|
+
branding: React__default.ReactElement<IBrand>;
|
1667
|
+
siteMenu: React__default.ReactNode;
|
1668
|
+
settingsMenu: React__default.ReactNode;
|
1669
|
+
userMenu: React__default.ReactNode;
|
1858
1670
|
}
|
1859
1671
|
|
1860
1672
|
declare const Header: (props: IHeader) => react_jsx_runtime.JSX.Element;
|
1861
1673
|
|
1862
1674
|
interface IFooter {
|
1863
|
-
|
1864
|
-
|
1865
|
-
|
1866
|
-
|
1675
|
+
top: React__default.ReactNode;
|
1676
|
+
left: React__default.ReactNode;
|
1677
|
+
right: React__default.ReactNode;
|
1678
|
+
bottom: React__default.ReactNode;
|
1867
1679
|
}
|
1868
1680
|
|
1869
|
-
declare const Footer: ({top, left, right, bottom}: IFooter) => react_jsx_runtime.JSX.Element;
|
1681
|
+
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
1870
1682
|
|
1871
1683
|
interface IProgress {
|
1872
|
-
|
1873
|
-
|
1684
|
+
steps: number;
|
1685
|
+
activeStep: number;
|
1874
1686
|
}
|
1875
1687
|
|
1876
1688
|
interface IWizard {
|
1877
|
-
|
1689
|
+
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1878
1690
|
}
|
1879
1691
|
interface IWizardStep extends PropsWithChildren {
|
1880
|
-
|
1881
|
-
|
1692
|
+
header?: React__default.ReactElement<IWizardHeader>;
|
1693
|
+
controls?: React__default.ReactElement<IWizardControls>;
|
1882
1694
|
}
|
1883
1695
|
interface IWizardHeader {
|
1884
|
-
|
1885
|
-
|
1696
|
+
top?: React__default.ReactNode;
|
1697
|
+
progress: React__default.ReactElement<IProgress>;
|
1886
1698
|
}
|
1887
1699
|
interface IWizardControls {
|
1888
|
-
|
1889
|
-
|
1700
|
+
back?: React__default.ReactElement<IButton>;
|
1701
|
+
next?: React__default.ReactElement<IButton>;
|
1890
1702
|
}
|
1891
1703
|
|
1892
|
-
declare const WizardStep: ({children, controls, header}: IWizardStep) => react_jsx_runtime.JSX.Element;
|
1704
|
+
declare const WizardStep: ({ children, controls, header }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
1893
1705
|
|
1894
|
-
declare const WizardControls: ({next, back}: IWizardControls) => react_jsx_runtime.JSX.Element;
|
1706
|
+
declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_runtime.JSX.Element;
|
1895
1707
|
|
1896
|
-
declare const Wizard: ({children}: IWizard) => react_jsx_runtime.JSX.Element;
|
1708
|
+
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1897
1709
|
|
1898
1710
|
declare enum HeadingType {
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1711
|
+
PAGE = "PAGE",
|
1712
|
+
FLYOUT = "FLYOUT",
|
1713
|
+
OVERLAY = "OVERLAY"
|
1902
1714
|
}
|
1903
1715
|
|
1904
1716
|
interface HeadingArrangementI {
|
1905
|
-
|
1906
|
-
|
1907
|
-
|
1717
|
+
label: string;
|
1718
|
+
title: string;
|
1719
|
+
type: HeadingType;
|
1908
1720
|
}
|
1909
1721
|
interface HeadingArrangementBaseI {
|
1910
|
-
|
1911
|
-
|
1722
|
+
label: string;
|
1723
|
+
title: string;
|
1912
1724
|
}
|
1913
1725
|
|
1914
1726
|
interface ISearchFiltersSharedActions {
|
1915
|
-
|
1916
|
-
|
1727
|
+
submit: React__default.ReactElement<IButton>;
|
1728
|
+
clear: React__default.ReactElement<IButton>;
|
1917
1729
|
}
|
1918
1730
|
interface ISearchFiltersShared extends ISearchFiltersSharedActions {
|
1919
|
-
|
1920
|
-
|
1921
|
-
|
1731
|
+
filters: React__default.ReactElement<ISearchFiltersItem>[];
|
1732
|
+
activeFilterCount: number;
|
1733
|
+
label: React__default.ReactElement<ISearchFiltersLabel>;
|
1922
1734
|
}
|
1923
1735
|
interface ISearchFilters extends ISearchFiltersShared {
|
1924
|
-
|
1925
|
-
|
1736
|
+
overlay: React__default.ReactElement<ISearchFiltersOverlay>;
|
1737
|
+
modal: React__default.ReactElement<ISearchFiltersModal>;
|
1926
1738
|
}
|
1927
1739
|
interface ISearchFiltersOverlay {
|
1928
|
-
|
1740
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1929
1741
|
}
|
1930
1742
|
interface ISearchFiltersModal {
|
1931
|
-
|
1743
|
+
heading: string;
|
1932
1744
|
}
|
1933
1745
|
interface ISearchFiltersLabel {
|
1934
|
-
|
1935
|
-
|
1936
|
-
|
1746
|
+
label?: string;
|
1747
|
+
description?: string;
|
1748
|
+
icon: React__default.ReactElement<IIcon>;
|
1937
1749
|
}
|
1938
1750
|
interface ISearchFiltersItem {
|
1939
|
-
|
1940
|
-
|
1751
|
+
label: string;
|
1752
|
+
filter: React__default.ReactNode;
|
1941
1753
|
}
|
1942
1754
|
|
1943
|
-
declare const SearchFiltersLabel: ({label, description, icon}: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
|
1755
|
+
declare const SearchFiltersLabel: ({ label, description, icon }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
|
1944
1756
|
|
1945
1757
|
declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
|
1946
1758
|
|
@@ -1948,824 +1760,750 @@ declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
|
|
1948
1760
|
|
1949
1761
|
declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
|
1950
1762
|
|
1951
|
-
declare const SearchFilters: ({
|
1952
|
-
filters,
|
1953
|
-
activeFilterCount,
|
1954
|
-
label,
|
1955
|
-
submit,
|
1956
|
-
clear,
|
1957
|
-
modal,
|
1958
|
-
overlay,
|
1959
|
-
}: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1763
|
+
declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay }: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1960
1764
|
|
1961
1765
|
type SearchInputTypes = "location" | "route" | "name";
|
1962
1766
|
interface ISearchInputsShared {
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
|
1767
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1768
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1769
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1770
|
+
activeInput: SearchInputTypes;
|
1771
|
+
onChanged?: (active: SearchInputTypes) => void;
|
1772
|
+
onInputOpen?: (active: SearchInputTypes) => void;
|
1773
|
+
submit: React__default.ReactElement<IButton>;
|
1970
1774
|
}
|
1971
1775
|
interface ISearchInputs extends ISearchInputsShared {
|
1972
|
-
|
1776
|
+
overlay: React__default.ReactElement<ISearchInputsOverlay>;
|
1973
1777
|
}
|
1974
1778
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1975
|
-
|
1976
|
-
|
1779
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1780
|
+
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1977
1781
|
}
|
1978
1782
|
interface ISearchInputsOverlayContentActions {
|
1979
|
-
|
1783
|
+
clear?: React__default.ReactElement<IButton>;
|
1980
1784
|
}
|
1981
1785
|
interface ISearchInputsOverlayInput {
|
1982
|
-
|
1983
|
-
|
1786
|
+
label: string;
|
1787
|
+
description: string;
|
1984
1788
|
}
|
1985
1789
|
interface ISearchInputsElement {
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1790
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1791
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1792
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1793
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1794
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1991
1795
|
}
|
1992
1796
|
interface ISearchInputsItem {
|
1993
|
-
|
1994
|
-
|
1797
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1798
|
+
input: React__default.ReactNode;
|
1995
1799
|
}
|
1996
1800
|
interface ISearchInputsLabel {
|
1997
|
-
|
1998
|
-
|
1999
|
-
|
1801
|
+
label: string;
|
1802
|
+
description?: string;
|
1803
|
+
figure: React__default.ReactElement<IFigure>;
|
2000
1804
|
}
|
2001
1805
|
interface ISearchInputsLabelWithIcon {
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
1806
|
+
label: string;
|
1807
|
+
description?: string;
|
1808
|
+
icon: React__default.ReactElement<IIcon>;
|
1809
|
+
prominent: boolean;
|
2006
1810
|
}
|
2007
1811
|
|
2008
1812
|
declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
|
2009
1813
|
|
2010
|
-
declare const SearchInputsOverlayInput: ({
|
2011
|
-
label,
|
2012
|
-
description,
|
2013
|
-
}: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
|
1814
|
+
declare const SearchInputsOverlayInput: ({ label, description }: ISearchInputsOverlayInput) => react_jsx_runtime.JSX.Element;
|
2014
1815
|
|
2015
1816
|
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
2016
1817
|
|
2017
|
-
declare const SearchInputsLabel: ({label, description, figure}: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
2018
|
-
|
2019
|
-
declare const SearchInputsLabelWithIcon: ({
|
2020
|
-
|
2021
|
-
|
2022
|
-
icon,
|
2023
|
-
prominent,
|
2024
|
-
}: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
|
2025
|
-
|
2026
|
-
declare const SearchInputs: ({
|
2027
|
-
location,
|
2028
|
-
route,
|
2029
|
-
name,
|
2030
|
-
overlay,
|
2031
|
-
onChanged,
|
2032
|
-
onInputOpen,
|
2033
|
-
activeInput,
|
2034
|
-
submit,
|
2035
|
-
}: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
1818
|
+
declare const SearchInputsLabel: ({ label, description, figure }: ISearchInputsLabel) => react_jsx_runtime.JSX.Element;
|
1819
|
+
|
1820
|
+
declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
|
1821
|
+
|
1822
|
+
declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
2036
1823
|
|
2037
1824
|
interface ICard {
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2048
|
-
|
2049
|
-
}
|
2050
|
-
|
2051
|
-
declare const Card: ({
|
2052
|
-
badge,
|
2053
|
-
swipe,
|
2054
|
-
title,
|
2055
|
-
subtitle,
|
2056
|
-
info,
|
2057
|
-
labels,
|
2058
|
-
features,
|
2059
|
-
action,
|
2060
|
-
detailsAction,
|
2061
|
-
detailsLabel,
|
2062
|
-
favoriteAction,
|
2063
|
-
}: ICard) => react_jsx_runtime.JSX.Element;
|
1825
|
+
swipe?: React__default.ReactNode;
|
1826
|
+
badge: React__default.ReactElement<IBadge>;
|
1827
|
+
title: string;
|
1828
|
+
subtitle?: string;
|
1829
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1830
|
+
labels: React__default.ReactElement<ILabel>[];
|
1831
|
+
features?: React__default.ReactElement<IFeatures>;
|
1832
|
+
action: React__default.ReactElement<IButton>;
|
1833
|
+
favoriteAction?: React__default.ReactElement<IButton>;
|
1834
|
+
detailsAction?: () => void;
|
1835
|
+
detailsLabel?: string;
|
1836
|
+
}
|
1837
|
+
|
1838
|
+
declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
|
2064
1839
|
|
2065
1840
|
interface IMapCard {
|
2066
|
-
|
2067
|
-
|
2068
|
-
|
2069
|
-
|
2070
|
-
|
1841
|
+
swipe?: React__default.ReactNode;
|
1842
|
+
badge: React__default.ReactElement<IBadge>;
|
1843
|
+
title: string;
|
1844
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1845
|
+
action: React__default.ReactElement<IButton>;
|
2071
1846
|
}
|
2072
1847
|
|
2073
|
-
declare const MapCard: ({badge, swipe, title, info, action}: IMapCard) => react_jsx_runtime.JSX.Element;
|
1848
|
+
declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
|
2074
1849
|
|
2075
1850
|
interface IListCard {
|
2076
|
-
|
2077
|
-
|
2078
|
-
|
2079
|
-
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
}
|
2084
|
-
|
2085
|
-
declare const ListCard: ({
|
2086
|
-
badge,
|
2087
|
-
title,
|
2088
|
-
subtitle,
|
2089
|
-
info,
|
2090
|
-
labels,
|
2091
|
-
features,
|
2092
|
-
actions,
|
2093
|
-
}: IListCard) => react_jsx_runtime.JSX.Element;
|
1851
|
+
badge: React__default.ReactElement<IBadge>;
|
1852
|
+
title: string;
|
1853
|
+
subtitle?: string;
|
1854
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1855
|
+
labels: React__default.ReactElement<ILabel>[];
|
1856
|
+
features?: React__default.ReactElement<IFeatures>;
|
1857
|
+
actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
|
2094
1861
|
|
2095
1862
|
declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
|
2096
1863
|
|
2097
1864
|
declare const StyleProviderMbp: React$1.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
2098
1865
|
|
2099
1866
|
interface OpeninghoursI {
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
1867
|
+
hours: React__default.ReactElement<IOpeningHoursSelect>;
|
1868
|
+
days: React__default.ReactElement<IDaySelect>;
|
1869
|
+
toggle?: React__default.ReactElement<IToggle>;
|
2103
1870
|
}
|
2104
1871
|
|
2105
|
-
declare const Openinghours: ({hours, days, toggle}: OpeninghoursI) => react_jsx_runtime.JSX.Element;
|
1872
|
+
declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
|
2106
1873
|
|
2107
1874
|
interface IFlyoutArrangementSplit {
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
1875
|
+
top?: React__default.ReactElement;
|
1876
|
+
left: React__default.ReactElement;
|
1877
|
+
right: React__default.ReactElement;
|
1878
|
+
compactAt: number;
|
2112
1879
|
}
|
2113
1880
|
interface IFlyoutArrangementFull {
|
2114
|
-
|
2115
|
-
|
1881
|
+
top?: React__default.ReactElement;
|
1882
|
+
content: React__default.ReactElement;
|
2116
1883
|
}
|
2117
1884
|
|
2118
1885
|
declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
|
2119
1886
|
declare const FlyoutArrangementFull: (props: IFlyoutArrangementFull) => react_jsx_runtime.JSX.Element;
|
2120
1887
|
|
2121
|
-
declare const FlyoutHeading: ({title, label}: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
2122
|
-
declare const OverlayHeading: ({title, label}: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
2123
|
-
declare const PageHeading: ({title, label}: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1888
|
+
declare const FlyoutHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1889
|
+
declare const OverlayHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1890
|
+
declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
2124
1891
|
|
2125
1892
|
interface IHomeSectionCards {
|
2126
|
-
|
2127
|
-
|
1893
|
+
title: string;
|
1894
|
+
cards: React__default.ReactElement<IInfoCard>[];
|
2128
1895
|
}
|
2129
1896
|
|
2130
1897
|
declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
|
2131
1898
|
|
2132
1899
|
interface IHomeSectionFaq {
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
1900
|
+
title: string;
|
1901
|
+
content: React__default.ReactElement;
|
1902
|
+
faqs: React__default.ReactElement<IFaq>[];
|
2136
1903
|
}
|
2137
1904
|
|
2138
1905
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
2139
1906
|
|
2140
1907
|
interface IHomeSectionGettingStarted {
|
2141
|
-
|
2142
|
-
|
2143
|
-
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
1908
|
+
title: string;
|
1909
|
+
locationLink: React__default.ReactElement;
|
1910
|
+
routeLink: React__default.ReactElement;
|
1911
|
+
nameLink: React__default.ReactElement;
|
1912
|
+
onBoarding: React__default.ReactElement;
|
1913
|
+
imagePath: string;
|
2147
1914
|
}
|
2148
1915
|
|
2149
1916
|
declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) => react_jsx_runtime.JSX.Element;
|
2150
1917
|
|
2151
1918
|
interface IDetailsSectionHeader {
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
2155
|
-
|
2156
|
-
|
1919
|
+
title: string;
|
1920
|
+
subtitle?: string;
|
1921
|
+
badge: React__default.ReactNode;
|
1922
|
+
labels: React__default.ReactNode;
|
1923
|
+
actions: React__default.ReactNode;
|
2157
1924
|
}
|
2158
1925
|
|
2159
1926
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
2160
1927
|
|
2161
1928
|
interface IDetailsSectionBack {
|
2162
|
-
|
1929
|
+
link: React__default.ReactElement<ILink>;
|
2163
1930
|
}
|
2164
1931
|
|
2165
1932
|
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
2166
1933
|
|
2167
1934
|
interface IDetailsSectionGallery {
|
2168
|
-
|
1935
|
+
images: string[];
|
2169
1936
|
}
|
2170
1937
|
|
2171
1938
|
declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
|
2172
1939
|
|
2173
1940
|
interface IDetailsSectionGeneral {
|
2174
|
-
|
2175
|
-
|
1941
|
+
info: React__default.ReactNode;
|
1942
|
+
contactData: IContactData[];
|
2176
1943
|
}
|
2177
1944
|
interface IContactData {
|
2178
|
-
|
2179
|
-
|
1945
|
+
title: string;
|
1946
|
+
data: React__default.ReactElement<ILabeledIcon>[];
|
2180
1947
|
}
|
2181
1948
|
|
2182
1949
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
2183
1950
|
|
2184
1951
|
interface IDetailsSectionFacilities {
|
2185
|
-
|
2186
|
-
|
1952
|
+
title: string;
|
1953
|
+
facilities: React__default.ReactElement<ITerm>[];
|
2187
1954
|
}
|
2188
1955
|
|
2189
1956
|
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
2190
1957
|
|
2191
1958
|
interface IDetailsSectionPrice {
|
2192
|
-
|
2193
|
-
|
2194
|
-
|
1959
|
+
title: string;
|
1960
|
+
prices: IPriceData[];
|
1961
|
+
info: React__default.ReactElement<IPlainText>;
|
2195
1962
|
}
|
2196
1963
|
interface IPriceData {
|
2197
|
-
|
2198
|
-
|
1964
|
+
title: string;
|
1965
|
+
data: React__default.ReactElement<ITable>;
|
2199
1966
|
}
|
2200
1967
|
|
2201
1968
|
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
2202
1969
|
|
2203
1970
|
interface IDetailsSectionVacation {
|
2204
|
-
|
2205
|
-
|
1971
|
+
title: string;
|
1972
|
+
vacations: React__default.ReactElement<ITable>;
|
2206
1973
|
}
|
2207
1974
|
|
2208
1975
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
2209
1976
|
|
2210
1977
|
interface IDetailsSectionHours {
|
2211
|
-
|
2212
|
-
|
2213
|
-
|
1978
|
+
title: string;
|
1979
|
+
hours: React__default.ReactElement<ITable>;
|
1980
|
+
info?: string;
|
2214
1981
|
}
|
2215
1982
|
|
2216
1983
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
2217
1984
|
|
2218
1985
|
interface IDetailsSectionQuote {
|
2219
|
-
|
1986
|
+
quote: React__default.ReactElement<ISafeHtml>;
|
2220
1987
|
}
|
2221
1988
|
|
2222
1989
|
declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
|
2223
1990
|
|
2224
1991
|
interface IDetailsSectionBasic {
|
2225
|
-
|
2226
|
-
|
1992
|
+
title: string;
|
1993
|
+
body: React__default.ReactElement<ISafeHtml>;
|
2227
1994
|
}
|
2228
1995
|
|
2229
1996
|
declare const DetailsSectionBasic: (props: IDetailsSectionBasic) => react_jsx_runtime.JSX.Element;
|
2230
1997
|
|
2231
1998
|
interface IDetailsSectionTitle {
|
2232
|
-
|
1999
|
+
title: string;
|
2233
2000
|
}
|
2234
2001
|
|
2235
2002
|
declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_runtime.JSX.Element;
|
2236
2003
|
|
2237
2004
|
interface IFavoritesSectionHeader {
|
2238
|
-
|
2239
|
-
|
2240
|
-
|
2005
|
+
title: string;
|
2006
|
+
description: string;
|
2007
|
+
figure: React__default.ReactElement<IFigure>;
|
2241
2008
|
}
|
2242
2009
|
|
2243
2010
|
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
2244
2011
|
|
2245
2012
|
interface IFavoritesSectionEmpty {
|
2246
|
-
|
2247
|
-
|
2013
|
+
description: string;
|
2014
|
+
action: React__default.ReactElement<IButton>;
|
2248
2015
|
}
|
2249
2016
|
|
2250
2017
|
declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
|
2251
2018
|
|
2252
2019
|
interface IFavoritesSectionList {
|
2253
|
-
|
2020
|
+
cards: React__default.ReactElement<ICard>[];
|
2254
2021
|
}
|
2255
2022
|
|
2256
2023
|
declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
|
2257
2024
|
|
2258
2025
|
interface IFavoritesSectionConfirm {
|
2259
|
-
|
2260
|
-
|
2261
|
-
|
2262
|
-
|
2026
|
+
title: string;
|
2027
|
+
description: string;
|
2028
|
+
location: React__default.ReactElement<IColoredBox>;
|
2029
|
+
actions: React__default.ReactElement<IButton>[];
|
2263
2030
|
}
|
2264
2031
|
|
2265
2032
|
declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
|
2266
2033
|
|
2267
2034
|
interface IRequestsSectionHeader {
|
2268
|
-
|
2269
|
-
|
2035
|
+
title: string;
|
2036
|
+
figure: React__default.ReactElement<IFigure>;
|
2270
2037
|
}
|
2271
2038
|
|
2272
2039
|
declare const RequestsSectionHeader: (props: IRequestsSectionHeader) => react_jsx_runtime.JSX.Element;
|
2273
2040
|
|
2274
2041
|
interface IRequestsSectionFooter {
|
2275
|
-
|
2042
|
+
action: React__default.ReactElement<IButton>;
|
2276
2043
|
}
|
2277
2044
|
|
2278
2045
|
declare const RequestsSectionFooter: (props: IRequestsSectionFooter) => react_jsx_runtime.JSX.Element;
|
2279
2046
|
|
2280
2047
|
interface IRequestsSectionList {
|
2281
|
-
|
2282
|
-
|
2048
|
+
cards: React__default.ReactElement<IListCard>[];
|
2049
|
+
action?: React__default.ReactElement<IButton>;
|
2283
2050
|
}
|
2284
2051
|
|
2285
2052
|
declare const RequestsSectionList: (props: IRequestsSectionList) => react_jsx_runtime.JSX.Element;
|
2286
2053
|
|
2287
2054
|
interface IAccountSectionHeader {
|
2288
|
-
|
2289
|
-
|
2290
|
-
|
2055
|
+
title: string;
|
2056
|
+
subtitle?: string;
|
2057
|
+
figure: React__default.ReactElement<IFigure>;
|
2291
2058
|
}
|
2292
2059
|
|
2293
2060
|
declare const AccountSectionHeader: (props: IAccountSectionHeader) => react_jsx_runtime.JSX.Element;
|
2294
2061
|
|
2295
2062
|
interface IAccountSectionRegister {
|
2296
|
-
|
2297
|
-
|
2298
|
-
|
2063
|
+
description: string;
|
2064
|
+
action: React__default.ReactNode;
|
2065
|
+
withContainer: boolean;
|
2299
2066
|
}
|
2300
2067
|
|
2301
2068
|
declare const AccountSectionRegister: (props: IAccountSectionRegister) => react_jsx_runtime.JSX.Element;
|
2302
2069
|
|
2303
2070
|
interface IAccountSectionProfile {
|
2304
|
-
|
2305
|
-
|
2071
|
+
form: React__default.ReactNode;
|
2072
|
+
action: React__default.ReactNode;
|
2306
2073
|
}
|
2307
2074
|
|
2308
2075
|
declare const AccountSectionProfile: (props: IAccountSectionProfile) => react_jsx_runtime.JSX.Element;
|
2309
2076
|
|
2310
2077
|
interface IRequestArrangementHeader {
|
2311
|
-
|
2312
|
-
|
2078
|
+
figure: React__default.ReactElement<IFigure>;
|
2079
|
+
progress: React__default.ReactElement<IProgressSteps>;
|
2313
2080
|
}
|
2314
2081
|
interface IRequestArrangementStep {
|
2315
|
-
|
2316
|
-
|
2317
|
-
|
2082
|
+
left: React__default.ReactElement;
|
2083
|
+
right: React__default.ReactElement;
|
2084
|
+
image?: React__default.ReactElement;
|
2318
2085
|
}
|
2319
2086
|
|
2320
2087
|
declare const RequestArrangementHeader: (props: IRequestArrangementHeader) => react_jsx_runtime.JSX.Element;
|
2321
2088
|
declare const RequestArrangementStep: (props: IRequestArrangementStep) => react_jsx_runtime.JSX.Element;
|
2322
2089
|
|
2323
2090
|
interface IWizardArrangementSplitBox {
|
2324
|
-
|
2325
|
-
|
2326
|
-
|
2327
|
-
|
2091
|
+
top: React__default.ReactElement;
|
2092
|
+
left: React__default.ReactElement;
|
2093
|
+
right: React__default.ReactElement;
|
2094
|
+
image?: React__default.ReactElement;
|
2328
2095
|
}
|
2329
2096
|
|
2330
2097
|
declare const WizardArrangementSplitBox: (props: IWizardArrangementSplitBox) => react_jsx_runtime.JSX.Element;
|
2331
2098
|
|
2332
2099
|
interface IWizardArrangementInlineControlled {
|
2333
|
-
|
2334
|
-
|
2335
|
-
|
2336
|
-
|
2100
|
+
left: React__default.ReactElement;
|
2101
|
+
right?: React__default.ReactElement;
|
2102
|
+
controls: React__default.ReactElement;
|
2103
|
+
image?: React__default.ReactElement;
|
2337
2104
|
}
|
2338
2105
|
|
2339
|
-
declare const WizardArrangementInlineControlled: (
|
2340
|
-
props: IWizardArrangementInlineControlled
|
2341
|
-
) => react_jsx_runtime.JSX.Element;
|
2106
|
+
declare const WizardArrangementInlineControlled: (props: IWizardArrangementInlineControlled) => react_jsx_runtime.JSX.Element;
|
2342
2107
|
|
2343
2108
|
interface IWizardArrangementLeftOnly {
|
2344
|
-
|
2345
|
-
|
2346
|
-
|
2109
|
+
top?: React__default.ReactElement;
|
2110
|
+
left: React__default.ReactElement;
|
2111
|
+
image?: React__default.ReactElement;
|
2347
2112
|
}
|
2348
2113
|
|
2349
2114
|
declare const WizardArrangementLeftOnly: (props: IWizardArrangementLeftOnly) => react_jsx_runtime.JSX.Element;
|
2350
2115
|
|
2351
2116
|
interface IAppHeader {
|
2352
|
-
|
2353
|
-
|
2354
|
-
|
2355
|
-
|
2117
|
+
top?: React__default.ReactNode;
|
2118
|
+
main: React__default.ReactNode;
|
2119
|
+
bottom?: React__default.ReactNode;
|
2120
|
+
contained?: boolean;
|
2356
2121
|
}
|
2357
2122
|
|
2358
2123
|
declare const AppHeader: (props: IAppHeader) => react_jsx_runtime.JSX.Element;
|
2359
2124
|
|
2360
2125
|
interface ISearchSectionFilters {
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2126
|
+
primary: React__default.ReactElement;
|
2127
|
+
secondary: React__default.ReactElement | false;
|
2128
|
+
secondary_active: React__default.ReactElement<IFilterTag>[];
|
2364
2129
|
}
|
2365
2130
|
|
2366
2131
|
declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
|
2367
2132
|
|
2368
2133
|
interface IHomeSectionLeftSplit {
|
2369
|
-
|
2370
|
-
|
2371
|
-
|
2134
|
+
title: string;
|
2135
|
+
content: React__default.ReactElement;
|
2136
|
+
imagePath: string;
|
2372
2137
|
}
|
2373
2138
|
|
2374
2139
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
2375
2140
|
|
2376
2141
|
interface ISharedSectionFooter {
|
2377
|
-
|
2142
|
+
content: React__default.ReactElement;
|
2378
2143
|
}
|
2379
2144
|
|
2380
2145
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
2381
2146
|
|
2382
2147
|
interface ISearchSectionResults {
|
2383
|
-
|
2384
|
-
|
2148
|
+
header?: React__default.ReactElement;
|
2149
|
+
content: React__default.ReactElement;
|
2385
2150
|
}
|
2386
2151
|
|
2387
|
-
declare const SearchSectionResults: React__default.ForwardRefExoticComponent<
|
2388
|
-
ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>
|
2389
|
-
>;
|
2152
|
+
declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
|
2390
2153
|
|
2391
2154
|
interface ISearchSectionEmpty extends PropsWithChildren {
|
2392
|
-
|
2393
|
-
|
2155
|
+
title: string;
|
2156
|
+
description?: string;
|
2394
2157
|
}
|
2395
2158
|
|
2396
2159
|
declare const SearchSectionEmpty: (props: ISearchSectionEmpty) => react_jsx_runtime.JSX.Element;
|
2397
2160
|
|
2398
2161
|
interface IStatusSectionBasic {
|
2399
|
-
|
2400
|
-
|
2401
|
-
|
2162
|
+
title: string;
|
2163
|
+
description: string;
|
2164
|
+
figure: React__default.ReactElement<IFigure>;
|
2402
2165
|
}
|
2403
2166
|
|
2404
2167
|
declare const StatusSectionBasic: (props: IStatusSectionBasic) => react_jsx_runtime.JSX.Element;
|
2405
2168
|
|
2406
2169
|
interface IScrollableContentProps {
|
2407
|
-
|
2170
|
+
scrollToTop?: () => void;
|
2408
2171
|
}
|
2409
2172
|
interface ISearchSectionResultsWithMap {
|
2410
|
-
|
2411
|
-
|
2173
|
+
content: React__default.ReactElement<IScrollableContentProps>;
|
2174
|
+
map?: React__default.ReactElement;
|
2412
2175
|
}
|
2413
2176
|
|
2414
|
-
declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<
|
2415
|
-
ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>
|
2416
|
-
>;
|
2177
|
+
declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
|
2417
2178
|
|
2418
2179
|
declare enum AccordeonContext {
|
2419
|
-
|
2420
|
-
|
2180
|
+
OPEN = "OPEN",
|
2181
|
+
CLOSED = "CLOSED"
|
2421
2182
|
}
|
2422
2183
|
|
2423
2184
|
interface IAccordeonBase {
|
2424
|
-
|
2185
|
+
children?: React__default.ReactNode;
|
2425
2186
|
}
|
2426
2187
|
interface IAccordeon extends IAccordeonBase {
|
2427
|
-
|
2428
|
-
|
2188
|
+
id?: string;
|
2189
|
+
context?: AccordeonContext;
|
2190
|
+
}
|
2191
|
+
interface AccordeonThemeableProps extends IAccordeonBase {
|
2429
2192
|
}
|
2430
|
-
interface AccordeonThemeableProps extends IAccordeonBase {}
|
2431
2193
|
|
2432
|
-
declare const AccordeonGroupProvider: ({children}: {
|
2194
|
+
declare const AccordeonGroupProvider: ({ children }: {
|
2195
|
+
children: ReactNode;
|
2196
|
+
}) => react_jsx_runtime.JSX.Element;
|
2433
2197
|
|
2434
2198
|
declare const Accordeon: {
|
2435
|
-
|
2436
|
-
|
2437
|
-
|
2199
|
+
({ id, children, context }: IAccordeon): react_jsx_runtime.JSX.Element;
|
2200
|
+
Header: ({ children }: AccordeonThemeableProps) => react_jsx_runtime.JSX.Element;
|
2201
|
+
Content: ({ children }: AccordeonThemeableProps) => react_jsx_runtime.JSX.Element;
|
2438
2202
|
};
|
2439
2203
|
|
2440
2204
|
interface IBackdrop {
|
2441
|
-
|
2205
|
+
onClick?: () => void;
|
2442
2206
|
}
|
2443
2207
|
|
2444
|
-
declare const Backdrop: ({onClick}: IBackdrop) => React__default.ReactPortal;
|
2208
|
+
declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
|
2445
2209
|
|
2446
|
-
interface IBlur extends PropsWithChildren {
|
2210
|
+
interface IBlur extends PropsWithChildren {
|
2211
|
+
}
|
2447
2212
|
|
2448
|
-
declare const Blur: ({children}: IBlur) => react_jsx_runtime.JSX.Element;
|
2213
|
+
declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
|
2449
2214
|
|
2450
2215
|
interface ICollapsable {
|
2451
|
-
|
2452
|
-
|
2453
|
-
|
2454
|
-
|
2216
|
+
content: React__default.ReactNode;
|
2217
|
+
additional: React__default.ReactNode;
|
2218
|
+
withContentExpand: React__default.ReactNode;
|
2219
|
+
withContentCollapse?: React__default.ReactNode;
|
2455
2220
|
}
|
2456
2221
|
|
2457
|
-
declare const Collapsable: ({
|
2458
|
-
content,
|
2459
|
-
additional,
|
2460
|
-
withContentExpand,
|
2461
|
-
withContentCollapse,
|
2462
|
-
}: ICollapsable) => react_jsx_runtime.JSX.Element;
|
2222
|
+
declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
|
2463
2223
|
|
2464
2224
|
declare enum DrawerSize {
|
2465
|
-
|
2466
|
-
|
2467
|
-
|
2468
|
-
|
2225
|
+
SMALL = "SMALL",
|
2226
|
+
MEDIUM = "MEDIUM",
|
2227
|
+
LARGE = "LARGE",
|
2228
|
+
FULL = "FULL"
|
2469
2229
|
}
|
2470
2230
|
|
2471
2231
|
interface IDrawer {
|
2472
|
-
|
2473
|
-
|
2232
|
+
children?: React__default.ReactNode;
|
2233
|
+
size?: DrawerSize;
|
2474
2234
|
}
|
2475
2235
|
|
2476
2236
|
declare const Drawer: {
|
2477
|
-
|
2478
|
-
|
2237
|
+
({ children, size }: IDrawer): React$1.ReactPortal;
|
2238
|
+
Header: () => react_jsx_runtime.JSX.Element;
|
2479
2239
|
};
|
2480
2240
|
|
2481
2241
|
interface GridProps {
|
2482
|
-
|
2483
|
-
|
2484
|
-
|
2485
|
-
|
2486
|
-
|
2487
|
-
|
2488
|
-
|
2489
|
-
|
2490
|
-
|
2491
|
-
|
2492
|
-
|
2493
|
-
|
2494
|
-
|
2242
|
+
children: React.ReactNode;
|
2243
|
+
gap?: SpacingKey;
|
2244
|
+
smGap?: SpacingKey;
|
2245
|
+
mdGap?: SpacingKey;
|
2246
|
+
lgGap?: SpacingKey;
|
2247
|
+
xlGap?: SpacingKey;
|
2248
|
+
xxlGap?: SpacingKey;
|
2249
|
+
smBreakpoint?: number;
|
2250
|
+
mdBreakpoint?: number;
|
2251
|
+
lgBreakpoint?: number;
|
2252
|
+
xlBreakpoint?: number;
|
2253
|
+
xxlBreakpoint?: number;
|
2254
|
+
alignItems?: "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
|
2495
2255
|
}
|
2496
2256
|
interface GridItemProps {
|
2497
|
-
|
2498
|
-
|
2499
|
-
|
2500
|
-
|
2501
|
-
|
2502
|
-
|
2503
|
-
|
2257
|
+
children: React.ReactNode;
|
2258
|
+
initial?: number;
|
2259
|
+
sm?: number;
|
2260
|
+
md?: number;
|
2261
|
+
lg?: number;
|
2262
|
+
xl?: number;
|
2263
|
+
xxl?: number;
|
2504
2264
|
}
|
2505
2265
|
|
2506
2266
|
declare const Grid: {
|
2507
|
-
|
2508
|
-
children
|
2509
|
-
gap,
|
2510
|
-
smGap,
|
2511
|
-
mdGap,
|
2512
|
-
lgGap,
|
2513
|
-
xlGap,
|
2514
|
-
xxlGap,
|
2515
|
-
smBreakpoint,
|
2516
|
-
mdBreakpoint,
|
2517
|
-
lgBreakpoint,
|
2518
|
-
xlBreakpoint,
|
2519
|
-
xxlBreakpoint,
|
2520
|
-
alignItems,
|
2521
|
-
}: GridProps): react_jsx_runtime.JSX.Element;
|
2522
|
-
Item: ({initial, sm, md, lg, xl, xxl, children}: GridItemProps) => react_jsx_runtime.JSX.Element;
|
2267
|
+
({ children, gap, smGap, mdGap, lgGap, xlGap, xxlGap, smBreakpoint, mdBreakpoint, lgBreakpoint, xlBreakpoint, xxlBreakpoint, alignItems, }: GridProps): react_jsx_runtime.JSX.Element;
|
2268
|
+
Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
|
2523
2269
|
};
|
2524
2270
|
|
2525
2271
|
declare enum ModalSize {
|
2526
|
-
|
2527
|
-
|
2272
|
+
NORMAL = "NORMAL",
|
2273
|
+
LARGE = "LARGE"
|
2528
2274
|
}
|
2529
2275
|
|
2530
2276
|
interface IModal {
|
2531
|
-
|
2532
|
-
|
2533
|
-
|
2277
|
+
children?: React__default.ReactNode;
|
2278
|
+
title?: string;
|
2279
|
+
size: ModalSize;
|
2534
2280
|
}
|
2535
2281
|
|
2536
|
-
declare const ModalHeaderSticky: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2282
|
+
declare const ModalHeaderSticky: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2537
2283
|
|
2538
|
-
declare const ModalFooterSticky: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2284
|
+
declare const ModalFooterSticky: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2539
2285
|
|
2540
|
-
declare const ModalPaddedContent: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2286
|
+
declare const ModalPaddedContent: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2541
2287
|
|
2542
|
-
declare const Modal: ({children, size}: IModal) => React__default.ReactPortal;
|
2288
|
+
declare const Modal: ({ children, size }: IModal) => React__default.ReactPortal;
|
2543
2289
|
|
2544
2290
|
declare enum OverlaySize {
|
2545
|
-
|
2546
|
-
|
2291
|
+
FULL = "FULL",
|
2292
|
+
MEDIUM = "MEDIUM"
|
2547
2293
|
}
|
2548
2294
|
|
2549
2295
|
interface IOverlay {
|
2550
|
-
|
2551
|
-
|
2552
|
-
|
2296
|
+
children: React__default.ReactNode;
|
2297
|
+
size: OverlaySize;
|
2298
|
+
transition: boolean;
|
2553
2299
|
}
|
2554
2300
|
|
2555
|
-
declare const Overlay: ({children, size, transition}: IOverlay) => React__default.ReactPortal;
|
2301
|
+
declare const Overlay: ({ children, size, transition }: IOverlay) => React__default.ReactPortal;
|
2556
2302
|
|
2557
2303
|
declare enum WaveType {
|
2558
|
-
|
2559
|
-
|
2304
|
+
ONE = "ONE",
|
2305
|
+
TWO = "TWO"
|
2560
2306
|
}
|
2561
2307
|
declare enum WavePosition {
|
2562
|
-
|
2563
|
-
|
2308
|
+
TOP = "TOP",
|
2309
|
+
BOTTOM = "BOTTOM"
|
2564
2310
|
}
|
2565
2311
|
|
2566
2312
|
interface IWave {
|
2567
|
-
|
2568
|
-
|
2569
|
-
|
2570
|
-
|
2313
|
+
color: Color;
|
2314
|
+
tint: ColorVariant;
|
2315
|
+
type: WaveType;
|
2316
|
+
position: WavePosition;
|
2571
2317
|
}
|
2572
2318
|
|
2573
2319
|
interface ISurface extends PropsWithChildren {
|
2574
|
-
|
2575
|
-
|
2320
|
+
background: string;
|
2321
|
+
withWave?: React__default.ReactElement<IWave>;
|
2576
2322
|
}
|
2577
2323
|
|
2578
|
-
declare const Surface: ({children, background, withWave}: ISurface) => react_jsx_runtime.JSX.Element;
|
2324
|
+
declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
|
2579
2325
|
|
2580
2326
|
interface ISwipe {
|
2581
|
-
|
2327
|
+
children?: React__default.ReactNode;
|
2582
2328
|
}
|
2583
2329
|
interface ISwipeable {
|
2584
|
-
|
2585
|
-
|
2330
|
+
url: string;
|
2331
|
+
height: string;
|
2586
2332
|
}
|
2587
2333
|
|
2588
2334
|
declare global {
|
2589
|
-
|
2590
|
-
|
2591
|
-
|
2592
|
-
|
2335
|
+
namespace JSX {
|
2336
|
+
interface IntrinsicElements {
|
2337
|
+
"swiper-container": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2338
|
+
"swiper-slide": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2339
|
+
}
|
2593
2340
|
}
|
2594
|
-
}
|
2595
2341
|
}
|
2596
|
-
declare function Swipe({children}: ISwipe): react_jsx_runtime.JSX.Element;
|
2597
|
-
declare function Swipeable({url, height}: ISwipeable): react_jsx_runtime.JSX.Element;
|
2342
|
+
declare function Swipe({ children }: ISwipe): react_jsx_runtime.JSX.Element;
|
2343
|
+
declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.Element;
|
2598
2344
|
|
2599
|
-
declare const Wave: ({type, position, tint, color}: IWave) => react_jsx_runtime.JSX.Element;
|
2345
|
+
declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
|
2600
2346
|
|
2601
2347
|
interface IBasicPage {
|
2602
|
-
|
2603
|
-
|
2604
|
-
|
2348
|
+
header: React__default.ReactElement;
|
2349
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2350
|
+
footer: React__default.ReactElement;
|
2605
2351
|
}
|
2606
2352
|
|
2607
2353
|
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
2608
2354
|
|
2609
2355
|
interface IAccountPage {
|
2610
|
-
|
2611
|
-
|
2612
|
-
|
2356
|
+
header: React__default.ReactElement;
|
2357
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2358
|
+
footer: React__default.ReactElement;
|
2613
2359
|
}
|
2614
2360
|
|
2615
2361
|
declare const AccountPage: (props: IAccountPage) => react_jsx_runtime.JSX.Element;
|
2616
2362
|
|
2617
2363
|
interface IDetailsPage {
|
2618
|
-
|
2619
|
-
|
2620
|
-
|
2364
|
+
header: React__default.ReactElement;
|
2365
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2366
|
+
footer: React__default.ReactElement;
|
2621
2367
|
}
|
2622
2368
|
|
2623
2369
|
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
2624
2370
|
|
2625
2371
|
interface ISearchPage {
|
2626
|
-
|
2627
|
-
|
2628
|
-
|
2372
|
+
header: React__default.ReactElement;
|
2373
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2374
|
+
footer: React__default.ReactElement;
|
2629
2375
|
}
|
2630
2376
|
|
2631
2377
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
2632
2378
|
|
2633
2379
|
interface IEmptySearchPage {
|
2634
|
-
|
2635
|
-
|
2636
|
-
|
2380
|
+
header: React__default.ReactElement;
|
2381
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2382
|
+
footer: React__default.ReactElement;
|
2637
2383
|
}
|
2638
2384
|
|
2639
2385
|
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
2640
2386
|
|
2641
2387
|
interface ISearchWithMapPage {
|
2642
|
-
|
2643
|
-
|
2644
|
-
|
2388
|
+
header: React__default.ReactElement;
|
2389
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2390
|
+
footer: React__default.ReactElement;
|
2645
2391
|
}
|
2646
2392
|
|
2647
2393
|
declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
|
2648
2394
|
|
2649
2395
|
interface IShoppingCartPage {
|
2650
|
-
|
2651
|
-
|
2652
|
-
|
2396
|
+
header: React__default.ReactElement;
|
2397
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2398
|
+
footer: React__default.ReactElement;
|
2653
2399
|
}
|
2654
2400
|
|
2655
2401
|
declare const ShoppingCartPage: (props: IShoppingCartPage) => react_jsx_runtime.JSX.Element;
|
2656
2402
|
|
2657
2403
|
interface IHeaderlessPage {
|
2658
|
-
|
2659
|
-
|
2404
|
+
header: React__default.ReactElement;
|
2405
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2660
2406
|
}
|
2661
2407
|
|
2662
2408
|
declare const HeaderlessPage: (props: IHeaderlessPage) => react_jsx_runtime.JSX.Element;
|
2663
2409
|
|
2664
2410
|
interface IWizardPage {
|
2665
|
-
|
2411
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2666
2412
|
}
|
2667
2413
|
|
2668
2414
|
declare const WizardPage: (props: IWizardPage) => react_jsx_runtime.JSX.Element;
|
2669
2415
|
|
2670
2416
|
interface BackdropContextType {
|
2671
|
-
|
2672
|
-
|
2417
|
+
isBackdropVisible: boolean;
|
2418
|
+
setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2673
2419
|
}
|
2674
2420
|
declare const BackdropContext: React__default.Context<BackdropContextType>;
|
2675
2421
|
interface IBackdropProvider extends PropsWithChildren {
|
2676
|
-
|
2422
|
+
onClick?: () => void;
|
2677
2423
|
}
|
2678
|
-
declare const BackdropProvider: ({children, onClick}: IBackdropProvider) => react_jsx_runtime.JSX.Element;
|
2424
|
+
declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => react_jsx_runtime.JSX.Element;
|
2679
2425
|
|
2680
2426
|
interface BlurContextType {
|
2681
|
-
|
2682
|
-
|
2427
|
+
isBlurred: boolean;
|
2428
|
+
setIsBlurred: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2683
2429
|
}
|
2684
2430
|
declare const BlurContext: React__default.Context<BlurContextType>;
|
2685
|
-
interface IBlurProvider extends PropsWithChildren {
|
2431
|
+
interface IBlurProvider extends PropsWithChildren {
|
2432
|
+
}
|
2686
2433
|
declare const BlurProvider: React__default.FC<PropsWithChildren<{}>>;
|
2687
2434
|
|
2688
2435
|
interface DrawerContextType {
|
2689
|
-
|
2690
|
-
|
2436
|
+
isOpen: boolean;
|
2437
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2691
2438
|
}
|
2692
2439
|
declare const DrawerContext: React__default.Context<DrawerContextType>;
|
2693
2440
|
interface IDrawerProvider extends PropsWithChildren {
|
2694
|
-
|
2695
|
-
|
2441
|
+
drawer?: React__default.ReactNode;
|
2442
|
+
size?: DrawerSize;
|
2696
2443
|
}
|
2697
|
-
declare const DrawerProvider: ({children, drawer, size}: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
2444
|
+
declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
2698
2445
|
|
2699
2446
|
interface ModalContextType {
|
2700
|
-
|
2701
|
-
|
2447
|
+
isOpen: boolean;
|
2448
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2702
2449
|
}
|
2703
2450
|
declare const ModalContext: React__default.Context<ModalContextType>;
|
2704
2451
|
interface IModalProvider extends PropsWithChildren {
|
2705
|
-
|
2706
|
-
|
2707
|
-
|
2452
|
+
modal?: React__default.ReactNode;
|
2453
|
+
size?: ModalSize;
|
2454
|
+
title?: string;
|
2708
2455
|
}
|
2709
|
-
declare const ModalProvider: ({children, modal, size, title}: IModalProvider) => react_jsx_runtime.JSX.Element;
|
2456
|
+
declare const ModalProvider: ({ children, modal, size, title }: IModalProvider) => react_jsx_runtime.JSX.Element;
|
2710
2457
|
|
2711
2458
|
interface OverlayContextType {
|
2712
|
-
|
2713
|
-
|
2714
|
-
|
2715
|
-
|
2459
|
+
isOpen: boolean;
|
2460
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2461
|
+
headerHeight: number;
|
2462
|
+
setHeaderHeight: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2716
2463
|
}
|
2717
2464
|
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
2718
2465
|
interface IOverlayProvider extends PropsWithChildren {
|
2719
|
-
|
2720
|
-
|
2721
|
-
|
2466
|
+
overlay: React__default.ReactNode;
|
2467
|
+
size?: OverlaySize;
|
2468
|
+
transition?: boolean;
|
2722
2469
|
}
|
2723
|
-
declare const OverlayProvider: ({
|
2724
|
-
children,
|
2725
|
-
overlay,
|
2726
|
-
size,
|
2727
|
-
transition,
|
2728
|
-
}: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2470
|
+
declare const OverlayProvider: ({ children, overlay, size, transition }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2729
2471
|
|
2730
2472
|
interface ProcessingContextType {
|
2731
|
-
|
2732
|
-
|
2473
|
+
isDone: boolean;
|
2474
|
+
setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2733
2475
|
}
|
2734
2476
|
declare const ProcessingContext: React__default.Context<ProcessingContextType>;
|
2735
|
-
declare const ProcessingProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2477
|
+
declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2736
2478
|
|
2737
2479
|
declare const useIsProcessing: () => boolean;
|
2738
2480
|
|
2739
2481
|
declare const useProcessing: () => ProcessingContextType;
|
2740
2482
|
|
2741
2483
|
interface GoogleProcessingProviderProps extends PropsWithChildren {
|
2742
|
-
|
2743
|
-
|
2484
|
+
apiKey: string;
|
2485
|
+
mapId: string;
|
2744
2486
|
}
|
2745
|
-
declare const GoogleProcessingProvider: ({
|
2746
|
-
children,
|
2747
|
-
apiKey,
|
2748
|
-
mapId,
|
2749
|
-
}: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
|
2487
|
+
declare const GoogleProcessingProvider: ({ children, apiKey, mapId }: GoogleProcessingProviderProps) => react_jsx_runtime.JSX.Element;
|
2750
2488
|
|
2751
2489
|
interface GooglePlacesI {
|
2752
|
-
|
2753
|
-
|
2490
|
+
autocomplete: google.maps.places.AutocompleteService;
|
2491
|
+
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
2754
2492
|
}
|
2755
2493
|
declare const GooglePlacesContext: React__default.Context<AsyncResult<GooglePlacesI>>;
|
2756
|
-
declare const GooglePlacesProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2494
|
+
declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2757
2495
|
|
2758
2496
|
declare const GoogleGeocoderContext: React__default.Context<AsyncResult<google.maps.Geocoder>>;
|
2759
|
-
declare const GoogleGeocoderProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2497
|
+
declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2760
2498
|
|
2761
2499
|
declare const GoogleDirectionsServiceContext: React__default.Context<AsyncResult<google.maps.DirectionsService>>;
|
2762
|
-
declare const GoogleDirectionsServiceProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2500
|
+
declare const GoogleDirectionsServiceProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2763
2501
|
|
2764
2502
|
declare const GoogleDirectionsRendererContext: React__default.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
2765
|
-
declare const GoogleDirectionsRendererProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2503
|
+
declare const GoogleDirectionsRendererProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2766
2504
|
|
2767
2505
|
declare const GoogleGeometryContext: React__default.Context<AsyncResult<google.maps.GeometryLibrary>>;
|
2768
|
-
declare const GoogleGeometryProvider: ({children}: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2506
|
+
declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2769
2507
|
|
2770
2508
|
declare const useIsGoogleProcessing: () => boolean;
|
2771
2509
|
|
@@ -2784,47 +2522,49 @@ declare const useGoogleMapId: () => string;
|
|
2784
2522
|
declare const useGoogleApiKey: () => string;
|
2785
2523
|
|
2786
2524
|
declare const ThemeModeContext: React__default.Context<{
|
2787
|
-
|
2788
|
-
|
2525
|
+
themeMode: ThemeMode;
|
2526
|
+
setThemeMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
|
2789
2527
|
}>;
|
2790
2528
|
interface PropsForThemeModeProvider extends PropsWithChildren {
|
2791
|
-
|
2529
|
+
fromBrowser: boolean;
|
2792
2530
|
}
|
2793
2531
|
declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
2794
2532
|
|
2795
2533
|
interface SearchContextType {
|
2796
|
-
|
2797
|
-
|
2534
|
+
active: number;
|
2535
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2798
2536
|
}
|
2799
2537
|
declare const SearchContext: React__default.Context<SearchContextType>;
|
2800
|
-
interface ISearchProvider extends PropsWithChildren {
|
2801
|
-
|
2538
|
+
interface ISearchProvider extends PropsWithChildren {
|
2539
|
+
}
|
2540
|
+
declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
|
2802
2541
|
|
2803
2542
|
interface WizardContextType {
|
2804
|
-
|
2805
|
-
|
2543
|
+
active: number;
|
2544
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2806
2545
|
}
|
2807
2546
|
declare const WizardContext: React__default.Context<WizardContextType>;
|
2808
2547
|
interface IWizardProvider extends PropsWithChildren {
|
2809
|
-
|
2548
|
+
onClick?: () => void;
|
2810
2549
|
}
|
2811
|
-
declare const WizardProvider: ({children}: IWizardProvider) => react_jsx_runtime.JSX.Element;
|
2550
|
+
declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runtime.JSX.Element;
|
2812
2551
|
|
2813
2552
|
interface WizardStepContextType {
|
2814
|
-
|
2815
|
-
|
2553
|
+
complete: boolean;
|
2554
|
+
setComplete: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2816
2555
|
}
|
2817
2556
|
declare const WizardStepContext: React__default.Context<WizardStepContextType>;
|
2818
|
-
interface IWizardStepProvider extends PropsWithChildren {
|
2819
|
-
|
2557
|
+
interface IWizardStepProvider extends PropsWithChildren {
|
2558
|
+
}
|
2559
|
+
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
2820
2560
|
|
2821
2561
|
interface InlineSelectOptionI {
|
2822
|
-
|
2823
|
-
|
2562
|
+
label: string;
|
2563
|
+
withIcon?: React__default.ReactElement<IIcon>;
|
2824
2564
|
}
|
2825
2565
|
interface InlineSelectOptionIconI {
|
2826
|
-
|
2827
|
-
|
2566
|
+
label: string;
|
2567
|
+
withIcon: React__default.ReactElement<IIcon>;
|
2828
2568
|
}
|
2829
2569
|
|
2830
2570
|
declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
|
@@ -2833,15 +2573,18 @@ declare const InlineSelectIconAsOption: <T>(args: InlineSelectOptionIconI) => re
|
|
2833
2573
|
declare const InlineSelectIconAsOptionSelected: <T>(args: InlineSelectOptionIconI) => react_jsx_runtime.JSX.Element;
|
2834
2574
|
|
2835
2575
|
interface SelectEvent<T> {
|
2836
|
-
|
2576
|
+
selected: T;
|
2577
|
+
}
|
2578
|
+
interface SelectChangeEvent<T> extends SelectEvent<T> {
|
2579
|
+
}
|
2580
|
+
interface SelectBlurEvent<T> extends SelectEvent<T> {
|
2581
|
+
}
|
2582
|
+
interface SelectFocusEvent<T> extends SelectEvent<T> {
|
2837
2583
|
}
|
2838
|
-
interface SelectChangeEvent<T> extends SelectEvent<T> {}
|
2839
|
-
interface SelectBlurEvent<T> extends SelectEvent<T> {}
|
2840
|
-
interface SelectFocusEvent<T> extends SelectEvent<T> {}
|
2841
2584
|
|
2842
2585
|
interface ILayoutSwitch extends PropsWithChildren {
|
2843
|
-
|
2844
|
-
|
2586
|
+
size: number;
|
2587
|
+
whenBigger: ReactNode;
|
2845
2588
|
}
|
2846
2589
|
|
2847
2590
|
declare const LayoutSwitch: (props: ILayoutSwitch) => React$1.ReactNode;
|
@@ -2851,509 +2594,4 @@ declare const CardChildminderExample: () => react_jsx_runtime.JSX.Element;
|
|
2851
2594
|
|
2852
2595
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2853
2596
|
|
2854
|
-
export {
|
2855
|
-
Accordeon,
|
2856
|
-
AccordeonContext,
|
2857
|
-
AccordeonGroupProvider,
|
2858
|
-
AccountPage,
|
2859
|
-
AccountSectionHeader,
|
2860
|
-
AccountSectionProfile,
|
2861
|
-
AccountSectionRegister,
|
2862
|
-
AppHeader,
|
2863
|
-
type AutoCompleteContextType,
|
2864
|
-
type AutocompleteBlurEvent,
|
2865
|
-
type AutocompleteChangeEvent,
|
2866
|
-
type AutocompleteFocusEvent,
|
2867
|
-
type AutocompleteI,
|
2868
|
-
AutocompleteInput,
|
2869
|
-
type AutocompleteInputI,
|
2870
|
-
AutocompleteOption,
|
2871
|
-
type AutocompleteOptionNavigatedEvent,
|
2872
|
-
AutocompleteOptionSelected,
|
2873
|
-
AutocompleteOptions,
|
2874
|
-
type AutocompleteOptionsI,
|
2875
|
-
type AutocompleteSelectEvent,
|
2876
|
-
Backdrop,
|
2877
|
-
BackdropContext,
|
2878
|
-
BackdropProvider,
|
2879
|
-
Badge,
|
2880
|
-
BadgeSize,
|
2881
|
-
BadgeType,
|
2882
|
-
BasicPage,
|
2883
|
-
BigChoice,
|
2884
|
-
BigPick,
|
2885
|
-
BlockRadio,
|
2886
|
-
BlockRadioContext,
|
2887
|
-
Blur,
|
2888
|
-
BlurContext,
|
2889
|
-
BlurProvider,
|
2890
|
-
BottomNavigation,
|
2891
|
-
Brand,
|
2892
|
-
Breadcrumb,
|
2893
|
-
Burger,
|
2894
|
-
Button,
|
2895
|
-
ButtonContext,
|
2896
|
-
ButtonType,
|
2897
|
-
Card,
|
2898
|
-
CardChildminderExample,
|
2899
|
-
CardDaycareExample,
|
2900
|
-
CategoryLink,
|
2901
|
-
Checkbox,
|
2902
|
-
CheckboxContext,
|
2903
|
-
Choice,
|
2904
|
-
ChoiceContext,
|
2905
|
-
Close,
|
2906
|
-
type CloseI,
|
2907
|
-
Collapsable,
|
2908
|
-
Collapse,
|
2909
|
-
ColoredBox,
|
2910
|
-
CompactHeader,
|
2911
|
-
CompactHeaderOverlay,
|
2912
|
-
type CompactHeaderOverlayHandle,
|
2913
|
-
Cta,
|
2914
|
-
CurrentLocation,
|
2915
|
-
CurrentLocationSize,
|
2916
|
-
DayOfBirth,
|
2917
|
-
type DayOfBirthI,
|
2918
|
-
DaySelect,
|
2919
|
-
Details,
|
2920
|
-
DetailsPage,
|
2921
|
-
DetailsSectionBack,
|
2922
|
-
DetailsSectionBasic,
|
2923
|
-
DetailsSectionFacilities,
|
2924
|
-
DetailsSectionGallery,
|
2925
|
-
DetailsSectionGeneral,
|
2926
|
-
DetailsSectionHeader,
|
2927
|
-
DetailsSectionHours,
|
2928
|
-
DetailsSectionPrice,
|
2929
|
-
DetailsSectionQuote,
|
2930
|
-
DetailsSectionTitle,
|
2931
|
-
DetailsSectionVacation,
|
2932
|
-
Drawer,
|
2933
|
-
DrawerContext,
|
2934
|
-
DrawerProvider,
|
2935
|
-
DrawerSize,
|
2936
|
-
Dropdown,
|
2937
|
-
DropdownContext,
|
2938
|
-
EmptySearchPage,
|
2939
|
-
Expand,
|
2940
|
-
Faq,
|
2941
|
-
FavoritesSectionConfirm,
|
2942
|
-
FavoritesSectionEmpty,
|
2943
|
-
FavoritesSectionHeader,
|
2944
|
-
FavoritesSectionList,
|
2945
|
-
Feature,
|
2946
|
-
Features,
|
2947
|
-
Figure,
|
2948
|
-
FigureHeading,
|
2949
|
-
FigureSize,
|
2950
|
-
FigureType,
|
2951
|
-
FilterTag,
|
2952
|
-
Flip,
|
2953
|
-
FlyoutArrangementFull,
|
2954
|
-
FlyoutArrangementSplit,
|
2955
|
-
FlyoutHeading,
|
2956
|
-
Footer,
|
2957
|
-
FooterNavigation,
|
2958
|
-
Form,
|
2959
|
-
FormElement,
|
2960
|
-
type FormHandle,
|
2961
|
-
FormMessage,
|
2962
|
-
FormMessageType,
|
2963
|
-
Gallery,
|
2964
|
-
GoogleDirectionsRendererContext,
|
2965
|
-
GoogleDirectionsRendererProvider,
|
2966
|
-
GoogleDirectionsServiceContext,
|
2967
|
-
GoogleDirectionsServiceProvider,
|
2968
|
-
GoogleGeocoderContext,
|
2969
|
-
GoogleGeocoderProvider,
|
2970
|
-
GoogleGeometryContext,
|
2971
|
-
GoogleGeometryProvider,
|
2972
|
-
GooglePlacesContext,
|
2973
|
-
GooglePlacesProvider,
|
2974
|
-
GoogleProcessingProvider,
|
2975
|
-
type GoogleProcessingProviderProps,
|
2976
|
-
Grid,
|
2977
|
-
type GridItemProps,
|
2978
|
-
type GridProps,
|
2979
|
-
HTMLInputType,
|
2980
|
-
Header,
|
2981
|
-
HeaderlessPage,
|
2982
|
-
type HeadingArrangementI,
|
2983
|
-
HomeSectionCards,
|
2984
|
-
HomeSectionFaq,
|
2985
|
-
HomeSectionGettingStarted,
|
2986
|
-
HomeSectionLeftSplit,
|
2987
|
-
type IAccordeon,
|
2988
|
-
type IAccountPage,
|
2989
|
-
type IAccountSectionHeader,
|
2990
|
-
type IAccountSectionProfile,
|
2991
|
-
type IAccountSectionRegister,
|
2992
|
-
type IAppHeader,
|
2993
|
-
type IBackdrop,
|
2994
|
-
type IBackdropProvider,
|
2995
|
-
type IBadge,
|
2996
|
-
type IBasicPage,
|
2997
|
-
type IBigChoice,
|
2998
|
-
type IBigPick,
|
2999
|
-
type IBlockRadio,
|
3000
|
-
type IBlur,
|
3001
|
-
type IBlurProvider,
|
3002
|
-
type IBottomNavigation,
|
3003
|
-
type IBrand,
|
3004
|
-
type IBreadcrumb,
|
3005
|
-
type IBurger,
|
3006
|
-
type IButton,
|
3007
|
-
type ICard,
|
3008
|
-
type ICategoryLink,
|
3009
|
-
type ICheckbox,
|
3010
|
-
type IChoice,
|
3011
|
-
type ICollapsable,
|
3012
|
-
type ICollapse,
|
3013
|
-
type IColoredBox,
|
3014
|
-
type ICompactHeader,
|
3015
|
-
type IContactData,
|
3016
|
-
type ICta,
|
3017
|
-
type ICurrentLocation,
|
3018
|
-
type IDaySelect,
|
3019
|
-
type IDestination,
|
3020
|
-
type IDetails,
|
3021
|
-
type IDetailsPage,
|
3022
|
-
type IDetailsSectionBack,
|
3023
|
-
type IDetailsSectionBasic,
|
3024
|
-
type IDetailsSectionFacilities,
|
3025
|
-
type IDetailsSectionGallery,
|
3026
|
-
type IDetailsSectionGeneral,
|
3027
|
-
type IDetailsSectionHeader,
|
3028
|
-
type IDetailsSectionHours,
|
3029
|
-
type IDetailsSectionPrice,
|
3030
|
-
type IDetailsSectionQuote,
|
3031
|
-
type IDetailsSectionTitle,
|
3032
|
-
type IDetailsSectionVacation,
|
3033
|
-
type IDirectionBasedMapBase,
|
3034
|
-
type IDrawer,
|
3035
|
-
type IDrawerProvider,
|
3036
|
-
type IDropdown,
|
3037
|
-
type IEmptySearchPage,
|
3038
|
-
type IExpand,
|
3039
|
-
type IFaq,
|
3040
|
-
type IFavoritesSectionConfirm,
|
3041
|
-
type IFavoritesSectionEmpty,
|
3042
|
-
type IFavoritesSectionHeader,
|
3043
|
-
type IFavoritesSectionList,
|
3044
|
-
type IFeature,
|
3045
|
-
type IFeatures,
|
3046
|
-
type IFigure,
|
3047
|
-
type IFigureHeading,
|
3048
|
-
type IFilterTag,
|
3049
|
-
type IFlip,
|
3050
|
-
type IFlyoutArrangementFull,
|
3051
|
-
type IFlyoutArrangementSplit,
|
3052
|
-
type IFooter,
|
3053
|
-
type IFooterNavigation,
|
3054
|
-
type IForm,
|
3055
|
-
type IFormElement,
|
3056
|
-
type IFormMessage,
|
3057
|
-
type IGallery,
|
3058
|
-
type IHeader,
|
3059
|
-
type IHeaderlessPage,
|
3060
|
-
type IHomeSectionCards,
|
3061
|
-
type IHomeSectionFaq,
|
3062
|
-
type IHomeSectionGettingStarted,
|
3063
|
-
type IHomeSectionLeftSplit,
|
3064
|
-
type IIcon,
|
3065
|
-
type IInfoCard,
|
3066
|
-
type IInformation,
|
3067
|
-
type IInformationTooltip,
|
3068
|
-
type IInput,
|
3069
|
-
type IInstruction,
|
3070
|
-
type ILabel,
|
3071
|
-
type ILabeledIcon,
|
3072
|
-
type ILayoutSwitch,
|
3073
|
-
type ILink,
|
3074
|
-
type IList,
|
3075
|
-
type IListCard,
|
3076
|
-
type ILocationBasedMap,
|
3077
|
-
type ILogo,
|
3078
|
-
type IMap,
|
3079
|
-
type IMapCard,
|
3080
|
-
type IMapLegendItem,
|
3081
|
-
type IMapLegendLabel,
|
3082
|
-
type IMaskedImage,
|
3083
|
-
type IMinimalHeader,
|
3084
|
-
type IModal,
|
3085
|
-
type IModalProvider,
|
3086
|
-
type INavigation,
|
3087
|
-
type INavigationItem,
|
3088
|
-
type INoResults,
|
3089
|
-
type INotification,
|
3090
|
-
type IOnboarding,
|
3091
|
-
type IOpeningHoursSelect,
|
3092
|
-
type IOrigin,
|
3093
|
-
type IOverlay,
|
3094
|
-
type IOverlayNavigation,
|
3095
|
-
type IOverlayNavigationFooter,
|
3096
|
-
type IOverlayNavigationHeader,
|
3097
|
-
type IOverlayProvider,
|
3098
|
-
type IPageHeader,
|
3099
|
-
type IPick,
|
3100
|
-
type IPill,
|
3101
|
-
type IPillCheckbox,
|
3102
|
-
type IPin,
|
3103
|
-
type IPinBase,
|
3104
|
-
type IPlaceholderPhoto,
|
3105
|
-
type IPlainText,
|
3106
|
-
type IPoint,
|
3107
|
-
type IPoints,
|
3108
|
-
type IProfileNavigation,
|
3109
|
-
type IProgressSteps,
|
3110
|
-
type IQuote,
|
3111
|
-
type IRadio,
|
3112
|
-
type IRecord,
|
3113
|
-
type IRecords,
|
3114
|
-
type IRequestArrangementHeader,
|
3115
|
-
type IRequestArrangementStep,
|
3116
|
-
type IRequestsSectionFooter,
|
3117
|
-
type IRequestsSectionHeader,
|
3118
|
-
type IRequestsSectionList,
|
3119
|
-
type IResultHeading,
|
3120
|
-
type IRoute,
|
3121
|
-
type IRouteStep,
|
3122
|
-
type IRoutes,
|
3123
|
-
type ISafeHtml,
|
3124
|
-
type IScheduleSelect,
|
3125
|
-
type IScheduleSelectHeader,
|
3126
|
-
type IScheduleSelectRow,
|
3127
|
-
type IScrollableContentProps,
|
3128
|
-
type ISearchFilters,
|
3129
|
-
type ISearchFiltersItem,
|
3130
|
-
type ISearchFiltersModal,
|
3131
|
-
type ISearchFiltersOverlay,
|
3132
|
-
type ISearchInputs,
|
3133
|
-
type ISearchInputsElement,
|
3134
|
-
type ISearchInputsLabel,
|
3135
|
-
type ISearchInputsLabelWithIcon,
|
3136
|
-
type ISearchInputsOverlayInput,
|
3137
|
-
type ISearchPage,
|
3138
|
-
type ISearchProvider,
|
3139
|
-
type ISearchSectionEmpty,
|
3140
|
-
type ISearchSectionFilters,
|
3141
|
-
type ISearchSectionResults,
|
3142
|
-
type ISearchSectionResultsWithMap,
|
3143
|
-
type ISearchWithMapPage,
|
3144
|
-
type ISelectBox,
|
3145
|
-
type ISelectBoxMenu,
|
3146
|
-
type ISelectBoxMenuItem,
|
3147
|
-
type ISelectBoxSelect,
|
3148
|
-
type ISharedSectionFooter,
|
3149
|
-
type IShoppingCartPage,
|
3150
|
-
type IStatBlock,
|
3151
|
-
type IStatus,
|
3152
|
-
type IStatusSectionBasic,
|
3153
|
-
type IStep,
|
3154
|
-
type ISurface,
|
3155
|
-
type ISwipe,
|
3156
|
-
type ISwipeable,
|
3157
|
-
type ITable,
|
3158
|
-
type ITableBody,
|
3159
|
-
type ITableCell,
|
3160
|
-
type ITableHead,
|
3161
|
-
type ITableRow,
|
3162
|
-
type ITerm,
|
3163
|
-
type ITerminal,
|
3164
|
-
type IToggle,
|
3165
|
-
type ITopNavigation,
|
3166
|
-
type ITopNavigationItemBase,
|
3167
|
-
type IWave,
|
3168
|
-
type IWizard,
|
3169
|
-
type IWizardArrangementInlineControlled,
|
3170
|
-
type IWizardArrangementLeftOnly,
|
3171
|
-
type IWizardArrangementSplitBox,
|
3172
|
-
type IWizardControls,
|
3173
|
-
type IWizardPage,
|
3174
|
-
type IWizardProvider,
|
3175
|
-
type IWizardStep,
|
3176
|
-
type IWizardStepProvider,
|
3177
|
-
type IYesNo,
|
3178
|
-
Icon,
|
3179
|
-
IconContext,
|
3180
|
-
IconSize,
|
3181
|
-
IconType,
|
3182
|
-
InfoCard,
|
3183
|
-
Information,
|
3184
|
-
InformationBackground,
|
3185
|
-
InformationTooltip,
|
3186
|
-
InformationVariant,
|
3187
|
-
InlineSelectIconAsOption,
|
3188
|
-
InlineSelectIconAsOptionSelected,
|
3189
|
-
InlineSelectLabelAsOption,
|
3190
|
-
InlineSelectLabelAsOptionSelected,
|
3191
|
-
type InlineSelectOptionI,
|
3192
|
-
Input,
|
3193
|
-
InputContext,
|
3194
|
-
Instruction,
|
3195
|
-
ItemType,
|
3196
|
-
Label,
|
3197
|
-
LabelSize,
|
3198
|
-
LabeledIcon,
|
3199
|
-
LayoutSwitch,
|
3200
|
-
Link,
|
3201
|
-
LinkContext,
|
3202
|
-
List,
|
3203
|
-
ListCard,
|
3204
|
-
ListType,
|
3205
|
-
Location,
|
3206
|
-
LocationExample,
|
3207
|
-
type LocationHandle,
|
3208
|
-
type LocationI,
|
3209
|
-
type LocationMapHandle,
|
3210
|
-
Logo,
|
3211
|
-
LogoSize,
|
3212
|
-
Map,
|
3213
|
-
MapCard,
|
3214
|
-
MapLegendItem,
|
3215
|
-
MapLegendLabel,
|
3216
|
-
MaskType,
|
3217
|
-
MaskedImage,
|
3218
|
-
MinimalHeader,
|
3219
|
-
Modal,
|
3220
|
-
ModalContext,
|
3221
|
-
ModalFooterSticky,
|
3222
|
-
ModalHeaderSticky,
|
3223
|
-
ModalPaddedContent,
|
3224
|
-
ModalProvider,
|
3225
|
-
Name,
|
3226
|
-
type NameHandle,
|
3227
|
-
type NameI,
|
3228
|
-
Navigation,
|
3229
|
-
NoResults,
|
3230
|
-
Notification,
|
3231
|
-
Onboarding,
|
3232
|
-
OnboardingButton,
|
3233
|
-
OpeningHoursSelect,
|
3234
|
-
type OpeningHoursSelectHours,
|
3235
|
-
Openinghours,
|
3236
|
-
type OpeninghoursI,
|
3237
|
-
Overlay,
|
3238
|
-
OverlayContext,
|
3239
|
-
OverlayHeading,
|
3240
|
-
OverlayNavigation,
|
3241
|
-
OverlayNavigationFooter,
|
3242
|
-
OverlayNavigationHeader,
|
3243
|
-
OverlayProvider,
|
3244
|
-
OverlaySize,
|
3245
|
-
PageHeader,
|
3246
|
-
PageHeading,
|
3247
|
-
Pick,
|
3248
|
-
PickContext,
|
3249
|
-
Pill,
|
3250
|
-
PillCheckbox,
|
3251
|
-
PillCheckboxType,
|
3252
|
-
Pin,
|
3253
|
-
PinType,
|
3254
|
-
PlaceholderPhoto,
|
3255
|
-
PlaceholderPhotoType,
|
3256
|
-
PlainText,
|
3257
|
-
Position,
|
3258
|
-
ProcessingContext,
|
3259
|
-
type ProcessingContextType,
|
3260
|
-
ProcessingProvider,
|
3261
|
-
ProfileNavigation,
|
3262
|
-
type ProfileNavigationItemThemeableProps,
|
3263
|
-
type ProfileNavigationThemeableProps,
|
3264
|
-
ProgressSteps,
|
3265
|
-
type PropsForThemeModeProvider,
|
3266
|
-
Quote,
|
3267
|
-
Radio,
|
3268
|
-
RadioContext,
|
3269
|
-
Record$1 as Record,
|
3270
|
-
Records,
|
3271
|
-
RequestArrangementHeader,
|
3272
|
-
RequestArrangementStep,
|
3273
|
-
RequestsSectionFooter,
|
3274
|
-
RequestsSectionHeader,
|
3275
|
-
RequestsSectionList,
|
3276
|
-
ResultHeading,
|
3277
|
-
Route,
|
3278
|
-
type RouteHandle,
|
3279
|
-
type RouteI,
|
3280
|
-
SafeHtml,
|
3281
|
-
ScaledFigure,
|
3282
|
-
ScaledIcon,
|
3283
|
-
ScheduleSelect,
|
3284
|
-
SearchContext,
|
3285
|
-
SearchFilters,
|
3286
|
-
SearchFiltersItem,
|
3287
|
-
SearchFiltersLabel,
|
3288
|
-
SearchFiltersModal,
|
3289
|
-
SearchFiltersOverlay,
|
3290
|
-
SearchInputs,
|
3291
|
-
SearchInputsElement,
|
3292
|
-
SearchInputsLabel,
|
3293
|
-
SearchInputsLabelWithIcon,
|
3294
|
-
SearchInputsOverlay,
|
3295
|
-
SearchInputsOverlayInput,
|
3296
|
-
SearchPage,
|
3297
|
-
SearchProvider,
|
3298
|
-
SearchSectionEmpty,
|
3299
|
-
SearchSectionFilters,
|
3300
|
-
SearchSectionResults,
|
3301
|
-
SearchSectionResultsWithMap,
|
3302
|
-
SearchWithMapPage,
|
3303
|
-
type SelectBlurEvent,
|
3304
|
-
SelectBox,
|
3305
|
-
type SelectChangeEvent,
|
3306
|
-
type SelectFocusEvent,
|
3307
|
-
SharedSectionFooter,
|
3308
|
-
ShoppingCartPage,
|
3309
|
-
StatBlock,
|
3310
|
-
Status,
|
3311
|
-
StatusCompact,
|
3312
|
-
StatusContext,
|
3313
|
-
StatusSectionBasic,
|
3314
|
-
StyleProviderMbp,
|
3315
|
-
StyleVarsMbp,
|
3316
|
-
Surface,
|
3317
|
-
Swipe,
|
3318
|
-
Swipeable,
|
3319
|
-
Switch,
|
3320
|
-
type SwitchI,
|
3321
|
-
type SwitchItemContentI,
|
3322
|
-
type SwitchItemI,
|
3323
|
-
Table,
|
3324
|
-
TableCellType,
|
3325
|
-
Term,
|
3326
|
-
Terminal,
|
3327
|
-
TextAlignment,
|
3328
|
-
TextDecoration,
|
3329
|
-
ThemeModeContext,
|
3330
|
-
ThemeModeProvider,
|
3331
|
-
Toggle,
|
3332
|
-
TopNavigation,
|
3333
|
-
Wave,
|
3334
|
-
WavePosition,
|
3335
|
-
WaveType,
|
3336
|
-
Wizard,
|
3337
|
-
WizardArrangementInlineControlled,
|
3338
|
-
WizardArrangementLeftOnly,
|
3339
|
-
WizardArrangementSplitBox,
|
3340
|
-
WizardContext,
|
3341
|
-
WizardControls,
|
3342
|
-
WizardPage,
|
3343
|
-
WizardProvider,
|
3344
|
-
WizardStep,
|
3345
|
-
WizardStepContext,
|
3346
|
-
WizardStepProvider,
|
3347
|
-
YesNo,
|
3348
|
-
YesNoContext,
|
3349
|
-
useGoogleApiKey,
|
3350
|
-
useGoogleDirections,
|
3351
|
-
useGoogleDirectionsRenderer,
|
3352
|
-
useGoogleGeocoder,
|
3353
|
-
useGoogleGeometry,
|
3354
|
-
useGoogleMapId,
|
3355
|
-
useGooglePlaces,
|
3356
|
-
useIsGoogleProcessing,
|
3357
|
-
useIsProcessing,
|
3358
|
-
useProcessing,
|
3359
|
-
};
|
2597
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, 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, BadgeType, BasicPage, BigChoice, BigPick, BlockRadio, BlockRadioContext, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Burger, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactHeader, CompactHeaderOverlay, type CompactHeaderOverlayHandle, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Dropdown, DropdownContext, 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, Header, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IAppHeader, 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 IBurger, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactHeader, 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 IDropdown, 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 IHeader, 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 ILayoutSwitch, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IMinimalHeader, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayNavigation, type IOverlayNavigationFooter, type IOverlayNavigationHeader, 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 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, LayoutSwitch, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, MinimalHeader, 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, OverlayNavigation, OverlayNavigationFooter, OverlayNavigationHeader, 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, 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 };
|