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