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