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