@tactics/lokaal-loket 0.0.293 → 0.0.296

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