@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.
- package/build/index.cjs +2076 -22223
- package/build/index.d.cts +1403 -2093
- package/build/index.d.ts +1403 -2093
- package/build/index.js +1972 -21347
- package/package.json +19 -17
package/build/index.d.ts
CHANGED
@@ -1,980 +1,867 @@
|
|
1
|
-
import * as react_jsx_runtime from
|
2
|
-
import React$1
|
3
|
-
import {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
}
|
47
|
-
|
48
|
-
declare const DaySelect: ({
|
49
|
-
onChange,
|
50
|
-
monLabel,
|
51
|
-
tueLabel,
|
52
|
-
wedLabel,
|
53
|
-
thuLabel,
|
54
|
-
friLabel,
|
55
|
-
satLabel,
|
56
|
-
sunLabel,
|
57
|
-
selectedDays,
|
58
|
-
}: IDaySelect) => react_jsx_runtime.JSX.Element;
|
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
|
-
|
62
|
-
|
26
|
+
start: string;
|
27
|
+
end: string;
|
63
28
|
}
|
64
29
|
interface IOpeningHoursSelect {
|
65
|
-
|
66
|
-
|
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
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
}
|
80
|
-
|
81
|
-
declare const Toggle: ({
|
82
|
-
label,
|
83
|
-
name,
|
84
|
-
value,
|
85
|
-
ariaLabel,
|
86
|
-
checked,
|
87
|
-
defaultChecked,
|
88
|
-
onChange,
|
89
|
-
}: IToggle) => react_jsx_runtime.JSX.Element;
|
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
|
-
|
93
|
-
|
94
|
-
|
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
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
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
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
68
|
+
XSMALL = "XSMALL",
|
69
|
+
SMALL = "SMALL",
|
70
|
+
MEDIUM = "MEDIUM",
|
71
|
+
LARGE = "LARGE"
|
115
72
|
}
|
116
73
|
declare enum IconType {
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
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
|
-
|
164
|
-
|
121
|
+
icon: React__default.ReactElement<IIcon>;
|
122
|
+
size: IconSize;
|
165
123
|
}
|
166
124
|
interface IIcon {
|
167
|
-
|
168
|
-
|
169
|
-
|
125
|
+
type: IconType;
|
126
|
+
screenReaderText?: string;
|
127
|
+
onClick?: () => void;
|
170
128
|
}
|
171
129
|
|
172
130
|
interface ILabeledIcon {
|
173
|
-
|
174
|
-
|
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
|
-
|
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
|
-
|
187
|
-
|
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
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
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
|
-
|
202
|
-
|
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
|
-
|
209
|
-
|
210
|
-
|
166
|
+
DAYCARE = "DAYCARE",
|
167
|
+
CHILDMINDER = "CHILDMINDER",
|
168
|
+
COOPERATIVE = "COOPERATIVE"
|
211
169
|
}
|
212
170
|
declare enum BadgeSize {
|
213
|
-
|
214
|
-
|
215
|
-
|
171
|
+
DEFAULT = "DEFAULT",
|
172
|
+
LARGE = "LARGE",
|
173
|
+
SMALL = "SMALL"
|
216
174
|
}
|
217
175
|
|
218
176
|
declare enum FigureSize {
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
177
|
+
SMALL = "SMALL",
|
178
|
+
MEDIUM = "MEDIUM",
|
179
|
+
LARGE = "LARGE",
|
180
|
+
XLARGE = "XLARGE"
|
223
181
|
}
|
224
182
|
declare enum FigureType {
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
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
|
-
|
293
|
-
|
250
|
+
type: FigureType;
|
251
|
+
screenReaderText: string;
|
294
252
|
}
|
295
253
|
interface IScaledFigure {
|
296
|
-
|
297
|
-
|
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
|
-
|
305
|
-
|
306
|
-
|
262
|
+
DEFAULT = "DEFAULT",
|
263
|
+
LARGE = "LARGE",
|
264
|
+
SMALL = "SMALL"
|
307
265
|
}
|
308
266
|
|
309
267
|
interface IFrame {
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
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
|
-
|
319
|
-
|
320
|
-
|
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
|
-
|
327
|
-
|
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
|
-
|
335
|
-
|
336
|
-
|
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
|
-
|
343
|
-
|
300
|
+
SMALL = "SMALL",
|
301
|
+
MEDIUM = "MEDIUM"
|
344
302
|
}
|
345
303
|
|
346
304
|
interface ILogoSrc {
|
347
|
-
|
348
|
-
|
305
|
+
srcset: string;
|
306
|
+
src: string;
|
349
307
|
}
|
350
308
|
interface ILogoBase {
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
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
|
-
|
315
|
+
srcset?: ILogoSrc;
|
316
|
+
}
|
317
|
+
interface ILogo extends ILogoLoad {
|
358
318
|
}
|
359
|
-
interface ILogo extends ILogoLoad {}
|
360
319
|
|
361
320
|
interface IBrand {
|
362
|
-
|
363
|
-
|
364
|
-
|
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
|
-
|
371
|
-
|
372
|
-
|
329
|
+
STANDARD = "STANDARD",
|
330
|
+
UI = "UI",
|
331
|
+
BOLD = "BOLD"
|
373
332
|
}
|
374
333
|
declare enum Position {
|
375
|
-
|
376
|
-
|
334
|
+
BEFORE = "BEFORE",
|
335
|
+
AFTER = "AFTER"
|
377
336
|
}
|
378
337
|
|
379
338
|
interface ILink {
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
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
|
-
|
407
|
-
|
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
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
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
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
370
|
+
BUTTON = "BUTTON",
|
371
|
+
RESET = "RESET",
|
372
|
+
SUBMIT = "SUBMIT",
|
373
|
+
LINK = "LINK"
|
426
374
|
}
|
427
375
|
|
428
|
-
type ClickHandler$1 =
|
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
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
378
|
+
id?: string;
|
379
|
+
title: string;
|
380
|
+
ariaLabel: string;
|
381
|
+
onClick?: ClickHandler$1;
|
382
|
+
children?: string;
|
438
383
|
}
|
439
384
|
interface IButton {
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
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:
|
397
|
+
declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
|
453
398
|
|
454
399
|
declare enum CheckboxContext {
|
455
|
-
|
456
|
-
|
457
|
-
|
400
|
+
STANDARD = "STANDARD",
|
401
|
+
DISABLED = "DISABLED",
|
402
|
+
ERROR = "ERROR"
|
458
403
|
}
|
459
404
|
|
460
405
|
interface ICheckboxBase {
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
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
|
-
|
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
|
-
|
475
|
-
|
476
|
-
|
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
|
-
|
486
|
-
|
487
|
-
|
428
|
+
STANDARD = "STANDARD",
|
429
|
+
DISABLED = "DISABLED",
|
430
|
+
ERROR = "ERROR"
|
488
431
|
}
|
489
432
|
|
490
433
|
interface IChoiceBase {
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
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
|
-
|
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
|
-
|
518
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
537
|
-
|
538
|
-
|
469
|
+
NONE = "NONE",
|
470
|
+
UNDERLINE = "UNDERLINE",
|
471
|
+
LINE_THROUGH = "LINE_THROUGH"
|
539
472
|
}
|
540
473
|
declare enum TextAlignment {
|
541
|
-
|
542
|
-
|
543
|
-
|
474
|
+
LEFT = "LEFT",
|
475
|
+
CENTER = "CENTER",
|
476
|
+
RIGHT = "RIGHT"
|
544
477
|
}
|
545
478
|
|
546
479
|
interface IPlainText {
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
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
|
-
|
558
|
-
|
490
|
+
DEFAULT = "DEFAULT",
|
491
|
+
TOOLTIP = "TOOLTIP"
|
559
492
|
}
|
560
493
|
declare enum InformationBackground {
|
561
|
-
|
562
|
-
|
494
|
+
DEFAULT = "DEFAULT",
|
495
|
+
LIGHT = "LIGHT"
|
563
496
|
}
|
564
497
|
|
565
498
|
interface IInformation {
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
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
|
-
|
576
|
-
|
577
|
-
|
508
|
+
DISABLED = "DISABLED",
|
509
|
+
ERROR = "ERROR",
|
510
|
+
STANDARD = "STANDARD"
|
578
511
|
}
|
579
512
|
declare enum HTMLInputType {
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
513
|
+
TEXT = "text",
|
514
|
+
PASSWORD = "password",
|
515
|
+
URL = "url",
|
516
|
+
EMAIL = "email"
|
584
517
|
}
|
585
518
|
|
586
519
|
interface InputChangeEvent {
|
587
|
-
|
588
|
-
|
520
|
+
value: string;
|
521
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
589
522
|
}
|
590
523
|
interface InputBlurEvent {
|
591
|
-
|
592
|
-
|
524
|
+
value: string;
|
525
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
593
526
|
}
|
594
527
|
interface InputFocusEvent {
|
595
|
-
|
596
|
-
|
528
|
+
value: string;
|
529
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
597
530
|
}
|
598
531
|
interface IInputBase {
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
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
|
-
|
545
|
+
context?: InputContext;
|
613
546
|
}
|
614
547
|
interface InteractiveStyledInputProps {
|
615
|
-
|
616
|
-
|
617
|
-
|
548
|
+
border: string;
|
549
|
+
background: string;
|
550
|
+
color: string;
|
618
551
|
}
|
619
552
|
interface IInputTheme {
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
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
|
-
|
631
|
-
|
563
|
+
STANDARD = "STANDARD",
|
564
|
+
NUMBERED = "NUMBERED"
|
632
565
|
}
|
633
566
|
|
634
567
|
interface IListBase {
|
635
|
-
|
636
|
-
|
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
|
-
|
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
|
-
|
646
|
-
|
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
|
-
|
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
|
-
|
659
|
-
|
660
|
-
|
593
|
+
STANDARD = "STANDARD",
|
594
|
+
DISABLED = "DISABLED",
|
595
|
+
ERROR = "ERROR"
|
661
596
|
}
|
662
597
|
|
663
598
|
interface IPickBase {
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
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
|
-
|
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
|
-
|
691
|
-
|
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
|
-
|
708
|
-
|
709
|
-
|
624
|
+
STANDARD = "STANDARD",
|
625
|
+
DISABLED = "DISABLED",
|
626
|
+
ERROR = "ERROR"
|
710
627
|
}
|
711
628
|
|
712
629
|
interface IRadioBase {
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
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
|
-
|
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
|
-
|
727
|
-
|
728
|
-
|
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
|
-
|
738
|
-
|
739
|
-
|
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
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
660
|
+
SEND = "SEND",
|
661
|
+
PROCESSING = "PROCESSING",
|
662
|
+
PROPOSAL = "PROPOSAL",
|
663
|
+
ACCEPTED = "ACCEPTED",
|
664
|
+
REFUSED = "REFUSED"
|
750
665
|
}
|
751
666
|
|
752
667
|
interface IStatusCompact {
|
753
|
-
|
668
|
+
context?: StatusContext;
|
754
669
|
}
|
755
670
|
interface IStatus {
|
756
|
-
|
757
|
-
|
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
|
-
|
765
|
-
|
766
|
-
|
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
|
-
|
775
|
-
|
776
|
-
|
689
|
+
STANDARD = "STANDARD",
|
690
|
+
DISABLED = "DISABLED",
|
691
|
+
ERROR = "ERROR"
|
777
692
|
}
|
778
693
|
|
779
694
|
interface IYesNoBase {
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
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
|
-
|
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
|
-
|
805
|
-
|
806
|
-
|
710
|
+
STANDARD = "STANDARD",
|
711
|
+
DISABLED = "DISABLED",
|
712
|
+
ERROR = "ERROR"
|
807
713
|
}
|
808
714
|
|
809
715
|
interface IBigChoiceBase {
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
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
|
-
|
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
|
-
|
837
|
-
|
838
|
-
|
732
|
+
STANDARD = "STANDARD",
|
733
|
+
DISABLED = "DISABLED",
|
734
|
+
ERROR = "ERROR"
|
839
735
|
}
|
840
736
|
|
841
737
|
interface IBigPickBase {
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
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> =
|
773
|
+
type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
|
885
774
|
interface AutoCompleteContextType<T> {
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
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
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
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
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
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
|
-
|
936
|
-
|
937
|
-
|
824
|
+
label: string;
|
825
|
+
withDetails?: string;
|
826
|
+
withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
|
938
827
|
}
|
939
828
|
interface AutocompleteOptionsI<T> {
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
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
|
-
|
838
|
+
focussed: T;
|
950
839
|
}
|
951
840
|
interface AutocompleteSelectEvent<T> {
|
952
|
-
|
953
|
-
|
841
|
+
input: string;
|
842
|
+
selected: T;
|
954
843
|
}
|
955
844
|
interface AutocompleteChangeEvent {
|
956
|
-
|
845
|
+
input: string;
|
957
846
|
}
|
958
847
|
interface AutocompleteBlurEvent {
|
959
|
-
|
960
|
-
|
848
|
+
input: string;
|
849
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
961
850
|
}
|
962
851
|
interface AutocompleteFocusEvent {
|
963
|
-
|
964
|
-
|
852
|
+
input: string;
|
853
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
965
854
|
}
|
966
855
|
|
967
856
|
interface AutocompleteInputHandle<T> {
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
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
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
}
|
1004
|
-
interface LocationBlurEvent extends AutocompleteBlurEvent {
|
1005
|
-
|
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
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
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
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
}
|
1038
|
-
interface NameBlurEvent extends AutocompleteBlurEvent {
|
1039
|
-
|
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
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
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
|
-
|
1055
|
-
|
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
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
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
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
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
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
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
|
-
|
1123
|
-
|
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
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
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
|
-
|
1144
|
-
|
1145
|
-
|
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
|
-
|
1149
|
-
|
1150
|
-
|
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
|
-
|
1156
|
-
|
1042
|
+
({ children, onChange, init }: SwitchI): react_jsx_runtime.JSX.Element;
|
1043
|
+
Item: (props: SwitchItemI) => null;
|
1157
1044
|
};
|
1158
1045
|
|
1159
1046
|
interface CloseI {
|
1160
|
-
|
1161
|
-
|
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
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
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
|
-
|
1177
|
-
|
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
|
-
|
1184
|
-
|
1185
|
-
|
1070
|
+
PRIMARY = "PRIMARY",
|
1071
|
+
SUPPORTING = "SUPPORTING",
|
1072
|
+
ACCENT = "ACCENT"
|
1186
1073
|
}
|
1187
1074
|
|
1188
1075
|
interface IPillCheckbox {
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
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
|
-
|
1212
|
-
|
1089
|
+
DEFAULT = "DEFAULT",
|
1090
|
+
HEAD = "HEAD"
|
1213
1091
|
}
|
1214
1092
|
|
1215
1093
|
interface ITable {
|
1216
|
-
|
1094
|
+
children: React.ReactNode;
|
1217
1095
|
}
|
1218
1096
|
interface ITableHead {
|
1219
|
-
|
1097
|
+
children: React.ReactNode;
|
1220
1098
|
}
|
1221
1099
|
interface ITableBody {
|
1222
|
-
|
1100
|
+
children: React.ReactNode;
|
1223
1101
|
}
|
1224
1102
|
interface ITableRow {
|
1225
|
-
|
1103
|
+
children: React.ReactNode;
|
1226
1104
|
}
|
1227
1105
|
interface ITableCell {
|
1228
|
-
|
1229
|
-
|
1106
|
+
type?: TableCellType;
|
1107
|
+
children: React.ReactNode;
|
1230
1108
|
}
|
1231
1109
|
|
1232
1110
|
declare const Table: {
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
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
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
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
|
-
|
1258
|
-
|
1134
|
+
OPEN = "OPEN",
|
1135
|
+
CLOSED = "CLOSED"
|
1259
1136
|
}
|
1260
1137
|
|
1261
1138
|
interface ICompactNavigation extends ICompactNavigationBase {
|
1262
|
-
|
1139
|
+
context?: CompactNavigationContext;
|
1263
1140
|
}
|
1264
1141
|
interface ICompactNavigationBase {
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1142
|
+
toggleLabel: string;
|
1143
|
+
children?: React__default.ReactNode;
|
1144
|
+
footer?: React__default.ReactNode;
|
1268
1145
|
}
|
1269
1146
|
interface ICompactNavigationItem {
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
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
|
-
|
1279
|
-
|
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
|
-
|
1285
|
-
|
1286
|
-
|
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
|
-
|
1170
|
+
children?: React__default.ReactNode;
|
1171
|
+
}
|
1172
|
+
interface IDetails extends IDetailsBase {
|
1293
1173
|
}
|
1294
|
-
interface IDetails extends IDetailsBase {}
|
1295
1174
|
interface DetailsHeaderThemeableProps {
|
1296
|
-
|
1297
|
-
|
1175
|
+
title: string;
|
1176
|
+
children?: React__default.ReactNode;
|
1298
1177
|
}
|
1299
1178
|
interface DetailsContentThemeableProps {
|
1300
|
-
|
1179
|
+
children?: React__default.ReactNode;
|
1301
1180
|
}
|
1302
1181
|
|
1303
1182
|
declare const Details: {
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
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
|
-
|
1189
|
+
children?: React__default.ReactNode;
|
1190
|
+
}
|
1191
|
+
interface IFaq extends IFaqBase {
|
1311
1192
|
}
|
1312
|
-
interface IFaq extends IFaqBase {}
|
1313
1193
|
interface FaqHeaderThemeableProps {
|
1314
|
-
|
1194
|
+
title: string;
|
1315
1195
|
}
|
1316
1196
|
interface FaqContentThemeableProps {
|
1317
|
-
|
1197
|
+
children?: React__default.ReactNode;
|
1318
1198
|
}
|
1319
1199
|
|
1320
1200
|
declare const Faq: {
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
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
|
-
|
1207
|
+
children: React__default.ReactNode;
|
1328
1208
|
}
|
1329
1209
|
interface ISelectBoxMenuItem {
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1210
|
+
figure: React__default.ReactElement<IFigure>;
|
1211
|
+
label: string;
|
1212
|
+
action: () => void;
|
1333
1213
|
}
|
1334
1214
|
interface ISelectBoxSelect {
|
1335
|
-
|
1336
|
-
|
1215
|
+
figure: React__default.ReactElement<IFigure>;
|
1216
|
+
label: string;
|
1337
1217
|
}
|
1338
1218
|
interface ISelectBoxMenu {
|
1339
|
-
|
1219
|
+
children: React__default.ReactNode;
|
1340
1220
|
}
|
1341
1221
|
|
1342
1222
|
declare const SelectBox: {
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
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
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
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
|
-
|
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
|
-
|
1373
|
-
|
1374
|
-
|
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
|
-
|
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
|
-
|
1387
|
-
|
1388
|
-
|
1260
|
+
DAYCARE = "DAYCARE",
|
1261
|
+
CHILDMINDER = "CHILDMINDER",
|
1262
|
+
COOPERATIVE = "COOPERATIVE"
|
1389
1263
|
}
|
1390
1264
|
|
1391
1265
|
interface IPlaceholderPhoto {
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
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
|
-
|
1402
|
-
|
1276
|
+
children?: React__default.ReactNode;
|
1277
|
+
logo: React__default.ReactNode;
|
1403
1278
|
}
|
1404
1279
|
interface INavigationItem {
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
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
|
-
|
1414
|
-
|
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
|
-
|
1419
|
-
|
1293
|
+
LINK = "LINK",
|
1294
|
+
BUTTON = "BUTTON"
|
1420
1295
|
}
|
1421
1296
|
|
1422
1297
|
interface IProfileNavigation {
|
1423
|
-
|
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
|
-
|
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 =
|
1303
|
+
type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
|
1433
1304
|
interface ProfileNavigationItemThemeableProps {
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
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
|
-
|
1445
|
-
|
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
|
-
|
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
|
-
|
1464
|
-
|
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
|
-
|
1335
|
+
children?: React__default.ReactNode;
|
1472
1336
|
}
|
1473
1337
|
interface ITopNavigationItemBase {
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
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
|
-
|
1482
|
-
|
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
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
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:
|
1495
|
-
|
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
|
-
|
1501
|
-
|
1502
|
-
|
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
|
-
|
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
|
-
|
1515
|
-
|
1516
|
-
|
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
|
-
|
1523
|
-
|
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
|
-
|
1530
|
-
|
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
|
-
|
1537
|
-
|
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
|
-
|
1544
|
-
|
1406
|
+
SMALL = "small",
|
1407
|
+
LARGE = "large"
|
1545
1408
|
}
|
1546
1409
|
interface ICurrentLocation {
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
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
|
-
|
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
|
-
|
1563
|
-
|
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
|
-
|
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
|
-
|
1577
|
-
|
1578
|
-
|
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
|
-
|
1585
|
-
|
1586
|
-
|
1450
|
+
messages: string[];
|
1451
|
+
type: string;
|
1452
|
+
icon: React__default.ReactElement<IIcon>;
|
1587
1453
|
}
|
1588
1454
|
|
1589
1455
|
declare enum FormMessageType {
|
1590
|
-
|
1591
|
-
|
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
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
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
|
-
|
1607
|
-
|
1473
|
+
header: React.ReactElement<IScheduleSelectHeader>;
|
1474
|
+
children: React.ReactElement<IScheduleSelectRow>[];
|
1608
1475
|
}
|
1609
1476
|
interface IScheduleSelectHeader {
|
1610
|
-
|
1477
|
+
labels: string[];
|
1611
1478
|
}
|
1612
1479
|
interface IScheduleSelectRow {
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1480
|
+
label: string;
|
1481
|
+
actions: React.ReactElement<IPillCheckbox>[];
|
1482
|
+
isActive?: boolean;
|
1616
1483
|
}
|
1617
1484
|
|
1618
1485
|
declare const ScheduleSelect: {
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
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
|
-
|
1626
|
-
|
1492
|
+
profileNavigation: React__default.ReactNode;
|
1493
|
+
compactNavigation: React__default.ReactNode;
|
1627
1494
|
}
|
1628
1495
|
interface IHeaderTop {
|
1629
|
-
|
1630
|
-
|
1496
|
+
brand: React__default.ReactNode;
|
1497
|
+
topNavigation: React__default.ReactNode;
|
1631
1498
|
}
|
1632
1499
|
interface IHeaderBottom extends IHeaderMobile {
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1500
|
+
navigation: React__default.ReactNode;
|
1501
|
+
brand: React__default.ReactNode;
|
1502
|
+
stickOnScroll: boolean;
|
1636
1503
|
}
|
1637
1504
|
interface IHeaderAlternate extends IHeaderMobile {
|
1638
|
-
|
1639
|
-
|
1505
|
+
navigation: React__default.ReactNode;
|
1506
|
+
brand: React__default.ReactNode;
|
1640
1507
|
}
|
1641
1508
|
|
1642
1509
|
interface HeaderContextType {
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
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:
|
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
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
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
|
-
|
1667
|
-
|
1668
|
-
|
1533
|
+
key: string;
|
1534
|
+
name: string;
|
1535
|
+
type: TerminalType;
|
1669
1536
|
}
|
1670
1537
|
interface IPin {
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
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
|
-
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
-
|
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
|
-
|
1688
|
-
|
1689
|
-
|
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
|
-
|
1566
|
+
message: string;
|
1700
1567
|
}
|
1701
1568
|
interface IMapLegendLabel {
|
1702
|
-
|
1703
|
-
|
1569
|
+
figure: React__default.ReactElement<IFigure>;
|
1570
|
+
label: string;
|
1704
1571
|
}
|
1705
1572
|
interface IMapLegendItem {
|
1706
|
-
|
1707
|
-
|
1573
|
+
pin: React__default.ReactElement<IPin>;
|
1574
|
+
label: string;
|
1708
1575
|
}
|
1709
1576
|
interface ILocationBasedMap {
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
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
|
-
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
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
|
-
|
1752
|
-
|
1753
|
-
|
1606
|
+
mapId: string;
|
1607
|
+
defaultCenter: google.maps.LatLngLiteral;
|
1608
|
+
zoom?: number;
|
1754
1609
|
}
|
1755
1610
|
|
1756
1611
|
interface DirectionMapHandle {
|
1757
|
-
|
1612
|
+
closeMapOverlay: () => void;
|
1758
1613
|
}
|
1759
1614
|
|
1760
1615
|
interface LocationMapHandle {
|
1761
|
-
|
1762
|
-
|
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
|
-
|
1770
|
-
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
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
|
-
|
1638
|
+
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1786
1639
|
}
|
1787
1640
|
interface IWizardStep extends PropsWithChildren {
|
1788
|
-
|
1789
|
-
|
1641
|
+
figure?: React__default.ReactElement<IFigure>;
|
1642
|
+
controls?: React__default.ReactElement<IWizardControls>;
|
1790
1643
|
}
|
1791
1644
|
interface IWizardControls {
|
1792
|
-
|
1793
|
-
|
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
|
-
|
1804
|
-
|
1805
|
-
|
1656
|
+
PAGE = "PAGE",
|
1657
|
+
FLYOUT = "FLYOUT",
|
1658
|
+
OVERLAY = "OVERLAY"
|
1806
1659
|
}
|
1807
1660
|
|
1808
1661
|
interface HeadingArrangementI {
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1662
|
+
label: string;
|
1663
|
+
title: string;
|
1664
|
+
type: HeadingType;
|
1812
1665
|
}
|
1813
1666
|
interface HeadingArrangementBaseI {
|
1814
|
-
|
1815
|
-
|
1667
|
+
label: string;
|
1668
|
+
title: string;
|
1816
1669
|
}
|
1817
1670
|
|
1818
1671
|
interface ISearchFiltersSharedActions {
|
1819
|
-
|
1820
|
-
|
1672
|
+
submit: React__default.ReactElement<IButton>;
|
1673
|
+
clear: React__default.ReactElement<IButton>;
|
1821
1674
|
}
|
1822
1675
|
interface ISearchFiltersShared extends ISearchFiltersSharedActions {
|
1823
|
-
|
1824
|
-
|
1825
|
-
|
1676
|
+
filters: React__default.ReactElement<ISearchFiltersItem>[];
|
1677
|
+
activeFilterCount: number;
|
1678
|
+
label: React__default.ReactElement<ISearchFiltersLabel>;
|
1826
1679
|
}
|
1827
1680
|
interface ISearchFilters extends ISearchFiltersShared {
|
1828
|
-
|
1829
|
-
|
1681
|
+
overlay: React__default.ReactElement<ISearchFiltersOverlay>;
|
1682
|
+
modal: React__default.ReactElement<ISearchFiltersModal>;
|
1830
1683
|
}
|
1831
1684
|
interface ISearchFiltersOverlay {
|
1832
|
-
|
1833
|
-
|
1685
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1686
|
+
close: React__default.ReactElement<CloseI>;
|
1834
1687
|
}
|
1835
1688
|
interface ISearchFiltersModal {
|
1836
|
-
|
1689
|
+
heading: string;
|
1837
1690
|
}
|
1838
1691
|
interface ISearchFiltersLabel {
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1692
|
+
label?: string;
|
1693
|
+
description?: string;
|
1694
|
+
icon: React__default.ReactElement<IIcon>;
|
1842
1695
|
}
|
1843
1696
|
interface ISearchFiltersItem {
|
1844
|
-
|
1845
|
-
|
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
|
-
|
1869
|
-
|
1870
|
-
|
1871
|
-
|
1872
|
-
|
1873
|
-
|
1874
|
-
|
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
|
-
|
1722
|
+
overlay: React__default.ReactElement<ISearchInputsOverlay>;
|
1878
1723
|
}
|
1879
1724
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1880
|
-
|
1881
|
-
|
1882
|
-
|
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
|
-
|
1730
|
+
clear?: React__default.ReactElement<IButton>;
|
1886
1731
|
}
|
1887
1732
|
interface ISearchInputsOverlayInput {
|
1888
|
-
|
1889
|
-
|
1733
|
+
label: string;
|
1734
|
+
description: string;
|
1890
1735
|
}
|
1891
1736
|
interface ISearchInputsElement {
|
1892
|
-
|
1893
|
-
|
1894
|
-
|
1895
|
-
|
1896
|
-
|
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
|
-
|
1900
|
-
|
1744
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1745
|
+
input: React__default.ReactNode;
|
1901
1746
|
}
|
1902
1747
|
interface ISearchInputsLabel {
|
1903
|
-
|
1904
|
-
|
1905
|
-
|
1748
|
+
label: string;
|
1749
|
+
description?: string;
|
1750
|
+
figure: React__default.ReactElement<IFigure>;
|
1906
1751
|
}
|
1907
1752
|
interface ISearchInputsLabelWithIcon {
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
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
|
-
|
1927
|
-
|
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
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
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
|
-
|
1973
|
-
|
1974
|
-
|
1975
|
-
|
1976
|
-
|
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
|
-
|
1983
|
-
|
1984
|
-
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
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
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
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
|
-
|
2009
|
-
|
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
|
-
|
2021
|
-
|
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
|
-
|
2028
|
-
|
2029
|
-
|
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
|
-
|
2036
|
-
|
2037
|
-
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
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
|
-
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2050
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
2069
|
-
|
1876
|
+
info: React__default.ReactNode;
|
1877
|
+
contactData: IContactData[];
|
2070
1878
|
}
|
2071
1879
|
interface IContactData {
|
2072
|
-
|
2073
|
-
|
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
|
-
|
2080
|
-
|
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
|
-
|
2087
|
-
|
2088
|
-
|
1894
|
+
title: string;
|
1895
|
+
prices: IPriceData[];
|
1896
|
+
info: React__default.ReactElement<IPlainText>;
|
2089
1897
|
}
|
2090
1898
|
interface IPriceData {
|
2091
|
-
|
2092
|
-
|
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
|
-
|
2099
|
-
|
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
|
-
|
2106
|
-
|
2107
|
-
|
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
|
-
|
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
|
-
|
2120
|
-
|
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
|
-
|
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
|
-
|
2133
|
-
|
2134
|
-
|
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
|
-
|
2141
|
-
|
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
|
-
|
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
|
-
|
2154
|
-
|
2155
|
-
|
2156
|
-
|
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
|
-
|
2163
|
-
|
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
|
-
|
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
|
-
|
2176
|
-
|
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
|
-
|
2183
|
-
|
2184
|
-
|
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
|
-
|
2191
|
-
|
2192
|
-
|
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
|
-
|
2199
|
-
|
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
|
-
|
2206
|
-
|
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
|
-
|
2213
|
-
|
2214
|
-
|
2215
|
-
|
2216
|
-
|
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
|
-
|
2220
|
-
|
2221
|
-
|
2222
|
-
|
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
|
-
|
2226
|
-
|
2227
|
-
|
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
|
-
|
2240
|
-
|
2241
|
-
|
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
|
-
|
2248
|
-
|
2249
|
-
|
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
|
-
|
2256
|
-
|
2257
|
-
|
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
|
-
|
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
|
-
|
2271
|
-
|
2074
|
+
header?: React__default.ReactElement;
|
2075
|
+
content: React__default.ReactElement;
|
2272
2076
|
}
|
2273
2077
|
|
2274
|
-
declare const SearchSectionResults:
|
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
|
-
|
2280
|
-
|
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
|
-
|
2088
|
+
scrollToTop?: () => void;
|
2287
2089
|
}
|
2288
2090
|
interface ISearchSectionResultsWithMap {
|
2289
|
-
|
2290
|
-
|
2091
|
+
content: React__default.ReactElement<IScrollableContentProps>;
|
2092
|
+
map?: React__default.ReactElement;
|
2291
2093
|
}
|
2292
2094
|
|
2293
|
-
declare const SearchSectionResultsWithMap:
|
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
|
-
|
2299
|
-
|
2098
|
+
OPEN = "OPEN",
|
2099
|
+
CLOSED = "CLOSED"
|
2300
2100
|
}
|
2301
2101
|
|
2302
2102
|
interface IAccordeonBase {
|
2303
|
-
|
2103
|
+
children?: React__default.ReactNode;
|
2304
2104
|
}
|
2305
2105
|
interface IAccordeon extends IAccordeonBase {
|
2306
|
-
|
2307
|
-
|
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}: {
|
2112
|
+
declare const AccordeonGroupProvider: ({ children }: {
|
2113
|
+
children: ReactNode;
|
2114
|
+
}) => react_jsx_runtime.JSX.Element;
|
2312
2115
|
|
2313
2116
|
declare const Accordeon: {
|
2314
|
-
|
2315
|
-
|
2316
|
-
|
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
|
-
|
2123
|
+
onClick?: () => void;
|
2321
2124
|
}
|
2322
2125
|
|
2323
|
-
declare const Backdrop: ({onClick}: IBackdrop) =>
|
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
|
-
|
2331
|
-
|
2332
|
-
|
2333
|
-
|
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
|
-
|
2345
|
-
|
2346
|
-
|
2347
|
-
|
2143
|
+
SMALL = "SMALL",
|
2144
|
+
MEDIUM = "MEDIUM",
|
2145
|
+
LARGE = "LARGE",
|
2146
|
+
FULL = "FULL"
|
2348
2147
|
}
|
2349
2148
|
|
2350
2149
|
interface IDrawer {
|
2351
|
-
|
2352
|
-
|
2150
|
+
children?: React__default.ReactNode;
|
2151
|
+
size?: DrawerSize;
|
2353
2152
|
}
|
2354
2153
|
|
2355
|
-
declare const Drawer:
|
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
|
-
|
2359
|
-
|
2360
|
-
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2364
|
-
|
2365
|
-
|
2366
|
-
|
2367
|
-
|
2368
|
-
|
2369
|
-
|
2370
|
-
|
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
|
-
|
2374
|
-
|
2375
|
-
|
2376
|
-
|
2377
|
-
|
2378
|
-
|
2379
|
-
|
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
|
-
|
2403
|
-
|
2190
|
+
NORMAL = "NORMAL",
|
2191
|
+
LARGE = "LARGE"
|
2404
2192
|
}
|
2405
2193
|
|
2406
2194
|
interface IModal {
|
2407
|
-
|
2408
|
-
|
2409
|
-
|
2195
|
+
children?: React__default.ReactNode;
|
2196
|
+
title?: string;
|
2197
|
+
size: ModalSize;
|
2410
2198
|
}
|
2411
2199
|
|
2412
|
-
declare const Modal: ({children, size, title}: IModal) =>
|
2200
|
+
declare const Modal: ({ children, size, title }: IModal) => React__default.ReactPortal;
|
2413
2201
|
|
2414
2202
|
interface IOverlay {
|
2415
|
-
|
2416
|
-
|
2417
|
-
|
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) =>
|
2208
|
+
declare const Overlay: ({ children, header, close }: IOverlay) => React__default.ReactPortal;
|
2421
2209
|
|
2422
2210
|
declare enum WaveType {
|
2423
|
-
|
2424
|
-
|
2211
|
+
ONE = "ONE",
|
2212
|
+
TWO = "TWO"
|
2425
2213
|
}
|
2426
2214
|
declare enum WavePosition {
|
2427
|
-
|
2428
|
-
|
2215
|
+
TOP = "TOP",
|
2216
|
+
BOTTOM = "BOTTOM"
|
2429
2217
|
}
|
2430
2218
|
|
2431
2219
|
interface IWave {
|
2432
|
-
|
2433
|
-
|
2434
|
-
|
2435
|
-
|
2220
|
+
color: Color;
|
2221
|
+
tint: ColorVariant;
|
2222
|
+
type: WaveType;
|
2223
|
+
position: WavePosition;
|
2436
2224
|
}
|
2437
2225
|
|
2438
2226
|
interface ISurface extends PropsWithChildren {
|
2439
|
-
|
2440
|
-
|
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
|
-
|
2234
|
+
children?: React__default.ReactNode;
|
2447
2235
|
}
|
2448
2236
|
interface ISwipeable {
|
2449
|
-
|
2450
|
-
|
2237
|
+
url: string;
|
2238
|
+
height: string;
|
2451
2239
|
}
|
2452
2240
|
|
2453
2241
|
declare global {
|
2454
|
-
|
2455
|
-
|
2456
|
-
|
2457
|
-
|
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
|
-
|
2468
|
-
|
2469
|
-
|
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
|
-
|
2476
|
-
|
2477
|
-
|
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
|
-
|
2484
|
-
|
2485
|
-
|
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
|
-
|
2492
|
-
|
2493
|
-
|
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
|
-
|
2500
|
-
|
2501
|
-
|
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
|
-
|
2508
|
-
|
2509
|
-
|
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
|
-
|
2516
|
-
|
2517
|
-
|
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
|
-
|
2524
|
-
|
2318
|
+
isBackdropVisible: boolean;
|
2319
|
+
setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2525
2320
|
}
|
2526
|
-
declare const BackdropContext:
|
2321
|
+
declare const BackdropContext: React__default.Context<BackdropContextType>;
|
2527
2322
|
interface IBackdropProvider extends PropsWithChildren {
|
2528
|
-
|
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
|
-
|
2534
|
-
|
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
|
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
|
-
|
2542
|
-
|
2337
|
+
isOpen: boolean;
|
2338
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2543
2339
|
}
|
2544
|
-
declare const DrawerContext:
|
2340
|
+
declare const DrawerContext: React__default.Context<DrawerContextType>;
|
2545
2341
|
interface IDrawerProvider extends PropsWithChildren {
|
2546
|
-
|
2547
|
-
|
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
|
-
|
2553
|
-
|
2348
|
+
isOpen: boolean;
|
2349
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2554
2350
|
}
|
2555
|
-
declare const ModalContext:
|
2351
|
+
declare const ModalContext: React__default.Context<ModalContextType>;
|
2556
2352
|
interface IModalProvider extends PropsWithChildren {
|
2557
|
-
|
2558
|
-
|
2559
|
-
|
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
|
-
|
2565
|
-
|
2566
|
-
|
2567
|
-
|
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:
|
2365
|
+
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
2570
2366
|
interface IOverlayProvider extends PropsWithChildren {
|
2571
|
-
|
2572
|
-
|
2573
|
-
|
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
|
-
|
2579
|
-
|
2374
|
+
isDone: boolean;
|
2375
|
+
setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2580
2376
|
}
|
2581
|
-
declare const ProcessingContext:
|
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
|
-
|
2590
|
-
|
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
|
-
|
2600
|
-
|
2391
|
+
autocomplete: google.maps.places.AutocompleteService;
|
2392
|
+
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
2601
2393
|
}
|
2602
|
-
declare const GooglePlacesContext:
|
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:
|
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:
|
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:
|
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:
|
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:
|
2634
|
-
|
2635
|
-
|
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
|
-
|
2430
|
+
fromBrowser: boolean;
|
2639
2431
|
}
|
2640
2432
|
declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
2641
2433
|
|
2642
2434
|
interface SearchContextType {
|
2643
|
-
|
2644
|
-
|
2435
|
+
active: number;
|
2436
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2645
2437
|
}
|
2646
|
-
declare const SearchContext:
|
2647
|
-
interface ISearchProvider extends PropsWithChildren {
|
2648
|
-
|
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
|
-
|
2652
|
-
|
2444
|
+
active: number;
|
2445
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2653
2446
|
}
|
2654
|
-
declare const WizardContext:
|
2447
|
+
declare const WizardContext: React__default.Context<WizardContextType>;
|
2655
2448
|
interface IWizardProvider extends PropsWithChildren {
|
2656
|
-
|
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
|
-
|
2662
|
-
|
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
|
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
|
-
|
2670
|
-
|
2463
|
+
label: string;
|
2464
|
+
withIcon?: React__default.ReactElement<IIcon>;
|
2671
2465
|
}
|
2672
2466
|
interface InlineSelectOptionIconI {
|
2673
|
-
|
2674
|
-
|
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
|
-
|
2687
|
-
|
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 };
|