@tactics/lokaal-loket 0.0.245 → 0.0.247
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +876 -838
- package/build/index.d.cts +344 -365
- package/build/index.d.ts +344 -365
- package/build/index.js +614 -573
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import
|
3
|
-
import React__default, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
|
2
|
+
import React$1, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
|
4
3
|
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
|
5
4
|
export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
6
5
|
import { Feature as Feature$1, Point, LineString } from 'geojson';
|
@@ -69,7 +68,7 @@ declare enum IconType {
|
|
69
68
|
}
|
70
69
|
|
71
70
|
interface IScaledIcon {
|
72
|
-
icon:
|
71
|
+
icon: React$1.ReactElement<IIcon>;
|
73
72
|
size: IconSize;
|
74
73
|
}
|
75
74
|
interface IIcon {
|
@@ -78,7 +77,7 @@ interface IIcon {
|
|
78
77
|
}
|
79
78
|
|
80
79
|
interface ILabeledIcon {
|
81
|
-
withIconBefore:
|
80
|
+
withIconBefore: React$1.ReactElement<IIcon>;
|
82
81
|
label: string;
|
83
82
|
}
|
84
83
|
|
@@ -180,7 +179,7 @@ interface IFigure {
|
|
180
179
|
screenReaderText: string;
|
181
180
|
}
|
182
181
|
interface IScaledFigure {
|
183
|
-
figure:
|
182
|
+
figure: React$1.ReactElement<IFigure>;
|
184
183
|
size: FigureSize;
|
185
184
|
}
|
186
185
|
|
@@ -194,7 +193,7 @@ declare enum FramePadding {
|
|
194
193
|
}
|
195
194
|
|
196
195
|
interface IFrame {
|
197
|
-
around:
|
196
|
+
around: React$1.ReactElement<IIcon | IFigure>;
|
198
197
|
split?: string | false;
|
199
198
|
background?: string;
|
200
199
|
padding?: FramePadding;
|
@@ -203,7 +202,7 @@ interface IFrame {
|
|
203
202
|
|
204
203
|
interface IBadge {
|
205
204
|
type: BadgeType;
|
206
|
-
figure:
|
205
|
+
figure: React$1.ReactElement<IFigure>;
|
207
206
|
size?: BadgeSize;
|
208
207
|
}
|
209
208
|
|
@@ -238,7 +237,7 @@ interface ILogoBase {
|
|
238
237
|
ariaLabel: string;
|
239
238
|
alt: string;
|
240
239
|
size: LogoSize;
|
241
|
-
children?:
|
240
|
+
children?: React$1.ReactNode | React$1.ReactNode[];
|
242
241
|
}
|
243
242
|
interface ILogoLoad extends ILogoBase {
|
244
243
|
srcset?: ILogoSrc;
|
@@ -248,7 +247,7 @@ interface ILogo extends ILogoLoad {
|
|
248
247
|
|
249
248
|
interface IBrand {
|
250
249
|
ariaLabel: string;
|
251
|
-
logo:
|
250
|
+
logo: React$1.ReactElement<ILogo>;
|
252
251
|
name: string;
|
253
252
|
}
|
254
253
|
|
@@ -268,19 +267,19 @@ interface ILink {
|
|
268
267
|
id: string;
|
269
268
|
title: string;
|
270
269
|
href: string;
|
271
|
-
onClick?:
|
270
|
+
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
272
271
|
ariaLabel: string;
|
273
272
|
children?: string;
|
274
273
|
context?: LinkContext;
|
275
|
-
withIconBefore?:
|
276
|
-
withIconAfter?:
|
277
|
-
target?:
|
274
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
275
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
276
|
+
target?: React$1.HTMLAttributeAnchorTarget;
|
278
277
|
}
|
279
278
|
|
280
279
|
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
281
280
|
|
282
281
|
interface IBreadcrumb {
|
283
|
-
crumbs:
|
282
|
+
crumbs: React$1.ReactElement<ILink>[];
|
284
283
|
currentPage: string;
|
285
284
|
}
|
286
285
|
|
@@ -302,7 +301,7 @@ declare enum ButtonType {
|
|
302
301
|
LINK = "LINK"
|
303
302
|
}
|
304
303
|
|
305
|
-
type ClickHandler$1 =
|
304
|
+
type ClickHandler$1 = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement> & React$1.KeyboardEventHandler<HTMLAnchorElement> & React$1.KeyboardEventHandler<HTMLButtonElement>;
|
306
305
|
interface IButtonMinimal {
|
307
306
|
id?: string;
|
308
307
|
title: string;
|
@@ -316,14 +315,14 @@ interface IButton {
|
|
316
315
|
ariaLabel: string;
|
317
316
|
onClick?: ClickHandler$1;
|
318
317
|
children?: string;
|
319
|
-
withIconBefore?:
|
320
|
-
withIconAfter?:
|
318
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
319
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
321
320
|
type?: ButtonType;
|
322
321
|
context?: ButtonContext;
|
323
322
|
href?: string;
|
324
323
|
}
|
325
324
|
|
326
|
-
declare const Button:
|
325
|
+
declare const Button: React$1.ForwardRefExoticComponent<IButton & React$1.RefAttributes<HTMLButtonElement>>;
|
327
326
|
|
328
327
|
declare enum CheckboxContext {
|
329
328
|
STANDARD = "STANDARD",
|
@@ -332,7 +331,7 @@ declare enum CheckboxContext {
|
|
332
331
|
}
|
333
332
|
|
334
333
|
interface ICheckboxBase {
|
335
|
-
onChange?: (e:
|
334
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
336
335
|
value: string;
|
337
336
|
ariaLabel?: string;
|
338
337
|
label: string;
|
@@ -353,14 +352,14 @@ declare enum ChoiceContext {
|
|
353
352
|
}
|
354
353
|
|
355
354
|
interface IChoiceBase {
|
356
|
-
onChange?: (e:
|
355
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
357
356
|
value: string;
|
358
357
|
ariaLabel?: string;
|
359
358
|
label: string;
|
360
359
|
name: string;
|
361
360
|
checked?: boolean;
|
362
361
|
defaultChecked?: boolean;
|
363
|
-
icon:
|
362
|
+
icon: React$1.ReactElement<IIcon | IFigure>;
|
364
363
|
}
|
365
364
|
interface IChoice extends IChoiceBase {
|
366
365
|
context?: ChoiceContext;
|
@@ -369,7 +368,7 @@ interface IChoice extends IChoiceBase {
|
|
369
368
|
declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IChoice) => react_jsx_runtime.JSX.Element;
|
370
369
|
|
371
370
|
interface IFeature {
|
372
|
-
withIconBefore?:
|
371
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
373
372
|
label: string;
|
374
373
|
}
|
375
374
|
|
@@ -418,8 +417,8 @@ declare enum InformationBackground {
|
|
418
417
|
}
|
419
418
|
|
420
419
|
interface IInformation {
|
421
|
-
text:
|
422
|
-
frame?:
|
420
|
+
text: React$1.ReactElement<IPlainText>;
|
421
|
+
frame?: React$1.ReactElement<IFrame>;
|
423
422
|
variant?: InformationVariant;
|
424
423
|
background?: InformationBackground;
|
425
424
|
}
|
@@ -434,15 +433,15 @@ declare enum InputContext {
|
|
434
433
|
|
435
434
|
interface InputChangeEvent {
|
436
435
|
value: string;
|
437
|
-
event:
|
436
|
+
event: React$1.ChangeEvent<HTMLInputElement>;
|
438
437
|
}
|
439
438
|
interface InputBlurEvent {
|
440
439
|
value: string;
|
441
|
-
event:
|
440
|
+
event: React$1.FocusEvent<HTMLInputElement, Element>;
|
442
441
|
}
|
443
442
|
interface InputFocusEvent {
|
444
443
|
value: string;
|
445
|
-
event:
|
444
|
+
event: React$1.FocusEvent<HTMLInputElement, Element>;
|
446
445
|
}
|
447
446
|
interface IInputBase {
|
448
447
|
defaultValue?: string;
|
@@ -453,8 +452,8 @@ interface IInputBase {
|
|
453
452
|
placeholder?: string;
|
454
453
|
ariaLabel?: string;
|
455
454
|
name: string;
|
456
|
-
withIconBefore?:
|
457
|
-
withIconAfter?:
|
455
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
456
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
458
457
|
}
|
459
458
|
interface IInput extends IInputBase {
|
460
459
|
context?: InputContext;
|
@@ -481,12 +480,12 @@ declare enum ListType {
|
|
481
480
|
|
482
481
|
interface IListBase {
|
483
482
|
type?: ListType;
|
484
|
-
children?:
|
483
|
+
children?: React$1.ReactNode;
|
485
484
|
}
|
486
485
|
interface IList extends IListBase {
|
487
486
|
}
|
488
487
|
interface IListItemBase {
|
489
|
-
children?:
|
488
|
+
children?: React$1.ReactNode;
|
490
489
|
}
|
491
490
|
interface ListItemThemeableProps extends IListItemBase {
|
492
491
|
}
|
@@ -511,14 +510,14 @@ declare enum PickContext {
|
|
511
510
|
}
|
512
511
|
|
513
512
|
interface IPickBase {
|
514
|
-
onChange?: (e:
|
513
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
515
514
|
value: string;
|
516
515
|
ariaLabel?: string;
|
517
516
|
label: string;
|
518
517
|
name: string;
|
519
518
|
checked?: boolean;
|
520
519
|
defaultChecked?: boolean;
|
521
|
-
icon:
|
520
|
+
icon: React$1.ReactElement<IIcon | IFigure>;
|
522
521
|
}
|
523
522
|
interface IPick extends IPickBase {
|
524
523
|
context?: PickContext;
|
@@ -528,7 +527,7 @@ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked
|
|
528
527
|
|
529
528
|
interface IPill {
|
530
529
|
label: string;
|
531
|
-
withIconBefore?:
|
530
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
532
531
|
}
|
533
532
|
|
534
533
|
declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
|
@@ -556,7 +555,7 @@ declare enum RadioContext {
|
|
556
555
|
}
|
557
556
|
|
558
557
|
interface IRadioBase {
|
559
|
-
onChange?: (e:
|
558
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
560
559
|
value: string;
|
561
560
|
ariaLabel?: string;
|
562
561
|
label: string;
|
@@ -571,9 +570,9 @@ interface IRadio extends IRadioBase {
|
|
571
570
|
declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IRadio) => react_jsx_runtime.JSX.Element;
|
572
571
|
|
573
572
|
interface IRecord {
|
574
|
-
withIconBefore?:
|
573
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
575
574
|
label: string;
|
576
|
-
value: string |
|
575
|
+
value: string | React$1.ReactNode;
|
577
576
|
}
|
578
577
|
|
579
578
|
declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
@@ -598,7 +597,7 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
|
|
598
597
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
599
598
|
|
600
599
|
interface ITerm {
|
601
|
-
figure:
|
600
|
+
figure: React$1.ReactElement<IFigure>;
|
602
601
|
label: string;
|
603
602
|
description?: string;
|
604
603
|
}
|
@@ -635,14 +634,14 @@ declare enum BigChoiceContext {
|
|
635
634
|
}
|
636
635
|
|
637
636
|
interface IBigChoiceBase {
|
638
|
-
onChange?: (e:
|
637
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
639
638
|
value: string;
|
640
639
|
ariaLabel?: string;
|
641
640
|
label: string;
|
642
641
|
name: string;
|
643
642
|
checked?: boolean;
|
644
643
|
defaultChecked?: boolean;
|
645
|
-
icon:
|
644
|
+
icon: React$1.ReactElement<IIcon | IFigure>;
|
646
645
|
}
|
647
646
|
interface IBigChoice extends IBigChoiceBase {
|
648
647
|
context?: BigChoiceContext;
|
@@ -657,14 +656,14 @@ declare enum BigPickContext {
|
|
657
656
|
}
|
658
657
|
|
659
658
|
interface IBigPickBase {
|
660
|
-
onChange?: (e:
|
659
|
+
onChange?: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
661
660
|
value: string;
|
662
661
|
ariaLabel?: string;
|
663
662
|
label: string;
|
664
663
|
name: string;
|
665
664
|
checked?: boolean;
|
666
665
|
defaultChecked?: boolean;
|
667
|
-
icon:
|
666
|
+
icon: React$1.ReactElement<IIcon | IFigure>;
|
668
667
|
}
|
669
668
|
interface IBigPick extends IBigPickBase {
|
670
669
|
context?: BigPickContext;
|
@@ -685,14 +684,14 @@ interface SelectFocusEvent<T> extends SelectEvent<T> {
|
|
685
684
|
interface InlineSelectI<T> {
|
686
685
|
options: T[];
|
687
686
|
defaultIndex: number;
|
688
|
-
optionToDisplay: (option: T) =>
|
689
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
687
|
+
optionToDisplay: (option: T) => React$1.ReactNode;
|
688
|
+
optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
690
689
|
onChange?: (e: SelectChangeEvent<T>) => void;
|
691
690
|
}
|
692
691
|
|
693
692
|
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
694
693
|
|
695
|
-
type SetState<T> =
|
694
|
+
type SetState<T> = React$1.Dispatch<React$1.SetStateAction<T>>;
|
696
695
|
interface AutoCompleteContextType<T> {
|
697
696
|
input: string;
|
698
697
|
setInput: SetState<string>;
|
@@ -709,12 +708,12 @@ interface AutocompleteI<T> {
|
|
709
708
|
debounceTime: number;
|
710
709
|
placeholder?: string;
|
711
710
|
ariaLabel?: string;
|
712
|
-
withIconBefore?:
|
713
|
-
withIconAfter?:
|
711
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
712
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
714
713
|
options: T[];
|
715
714
|
optionDefault?: T;
|
716
|
-
optionToDisplay: (option: T) =>
|
717
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
715
|
+
optionToDisplay: (option: T) => React$1.ReactNode;
|
716
|
+
optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
718
717
|
optionToInputValue: (option: T) => string;
|
719
718
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
720
719
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -727,8 +726,8 @@ interface AutocompleteInputI<T> {
|
|
727
726
|
debounceTime: number;
|
728
727
|
placeholder?: string;
|
729
728
|
ariaLabel?: string;
|
730
|
-
withIconBefore?:
|
731
|
-
withIconAfter?:
|
729
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
730
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
732
731
|
theme: IInputTheme;
|
733
732
|
options: T[];
|
734
733
|
optionToInputValue: (option: T) => string;
|
@@ -741,13 +740,13 @@ interface AutocompleteInputI<T> {
|
|
741
740
|
interface AutocompleteOptionI<T> {
|
742
741
|
label: string;
|
743
742
|
withDetails?: string;
|
744
|
-
withFigure?:
|
743
|
+
withFigure?: React$1.ReactElement<IFigure> | React$1.ReactElement<IIcon>;
|
745
744
|
}
|
746
745
|
interface AutocompleteOptionsI<T> {
|
747
746
|
options: T[];
|
748
747
|
optionDefault?: T;
|
749
|
-
optionToDisplay: (option: T) =>
|
750
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
748
|
+
optionToDisplay: (option: T) => React$1.ReactNode;
|
749
|
+
optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
751
750
|
optionToInputValue: (option: T) => string;
|
752
751
|
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
753
752
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
@@ -764,11 +763,11 @@ interface AutocompleteChangeEvent {
|
|
764
763
|
}
|
765
764
|
interface AutocompleteBlurEvent {
|
766
765
|
input: string;
|
767
|
-
event:
|
766
|
+
event: React$1.FocusEvent<HTMLInputElement>;
|
768
767
|
}
|
769
768
|
interface AutocompleteFocusEvent {
|
770
769
|
input: string;
|
771
|
-
event:
|
770
|
+
event: React$1.FocusEvent<HTMLInputElement>;
|
772
771
|
}
|
773
772
|
|
774
773
|
interface AutocompleteInputHandle<T> {
|
@@ -790,13 +789,13 @@ interface LocationI<T> {
|
|
790
789
|
name: string;
|
791
790
|
placeholder?: string;
|
792
791
|
ariaLabel?: string;
|
793
|
-
withIconBefore?:
|
794
|
-
withIconAfter?:
|
792
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
793
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
795
794
|
debounceTime?: number;
|
796
795
|
options: T[];
|
797
796
|
optionDefault?: T;
|
798
|
-
optionToDisplay: (option: T) =>
|
799
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
797
|
+
optionToDisplay: (option: T) => React$1.ReactNode;
|
798
|
+
optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
800
799
|
optionToInputValue: (option: T) => string;
|
801
800
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
802
801
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -823,13 +822,13 @@ interface NameI<T> {
|
|
823
822
|
name: string;
|
824
823
|
placeholder?: string;
|
825
824
|
ariaLabel?: string;
|
826
|
-
withIconBefore?:
|
827
|
-
withIconAfter?:
|
825
|
+
withIconBefore?: React$1.ReactElement<IIcon>;
|
826
|
+
withIconAfter?: React$1.ReactElement<IIcon>;
|
828
827
|
debounceTime?: number;
|
829
828
|
options: T[];
|
830
829
|
optionDefault?: T;
|
831
|
-
optionToDisplay: (option: T) =>
|
832
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
830
|
+
optionToDisplay: (option: T) => React$1.ReactNode;
|
831
|
+
optionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
833
832
|
optionToInputValue: (option: T) => string;
|
834
833
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
835
834
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -873,21 +872,21 @@ interface RouteI<T, D> {
|
|
873
872
|
debounceTime?: number;
|
874
873
|
originPlaceholder?: string;
|
875
874
|
originAriaLabel?: string;
|
876
|
-
originWithIconBefore?:
|
877
|
-
originWithIconAfter?:
|
875
|
+
originWithIconBefore?: React$1.ReactElement<IIcon>;
|
876
|
+
originWithIconAfter?: React$1.ReactElement<IIcon>;
|
878
877
|
destinationPlaceholder?: string;
|
879
878
|
destinationAriaLabel?: string;
|
880
|
-
destinationWithIconBefore?:
|
881
|
-
destinationWithIconAfter?:
|
879
|
+
destinationWithIconBefore?: React$1.ReactElement<IIcon>;
|
880
|
+
destinationWithIconAfter?: React$1.ReactElement<IIcon>;
|
882
881
|
originOptions: T[];
|
883
882
|
originOptionDefault?: T;
|
884
|
-
originOptionToDisplay: (option: T) =>
|
885
|
-
originOptionToDisplayWhenSelected?: (option: T) =>
|
883
|
+
originOptionToDisplay: (option: T) => React$1.ReactNode;
|
884
|
+
originOptionToDisplayWhenSelected?: (option: T) => React$1.ReactNode;
|
886
885
|
originOptionToInputValue: (option: T) => string;
|
887
886
|
destinationOptions: D[];
|
888
887
|
destinationOptionDefault?: D;
|
889
|
-
destinationOptionToDisplay: (option: D) =>
|
890
|
-
destinationOptionToDisplayWhenSelected?: (option: D) =>
|
888
|
+
destinationOptionToDisplay: (option: D) => React$1.ReactNode;
|
889
|
+
destinationOptionToDisplayWhenSelected?: (option: D) => React$1.ReactNode;
|
891
890
|
destinationOptionToInputValue: (option: D) => string;
|
892
891
|
onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
893
892
|
onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -924,9 +923,9 @@ declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JS
|
|
924
923
|
|
925
924
|
interface IRouteLocation {
|
926
925
|
onChange?: (value: routeLocation) => void;
|
927
|
-
location:
|
926
|
+
location: React$1.ReactElement;
|
928
927
|
locationLabel: string;
|
929
|
-
route:
|
928
|
+
route: React$1.ReactElement;
|
930
929
|
routeLabel: string;
|
931
930
|
name: string;
|
932
931
|
defaultChecked?: boolean;
|
@@ -937,13 +936,13 @@ type routeLocation = "route" | "location";
|
|
937
936
|
declare const RouteLocation: (args: IRouteLocation) => react_jsx_runtime.JSX.Element;
|
938
937
|
|
939
938
|
interface SwitchI {
|
940
|
-
children:
|
941
|
-
onChange?: (e:
|
939
|
+
children: React$1.ReactElement<SwitchItemI>[];
|
940
|
+
onChange?: (e: React$1.MouseEvent<HTMLDivElement>, value: string) => void;
|
942
941
|
init: string;
|
943
942
|
}
|
944
943
|
interface SwitchItemI {
|
945
944
|
label: string;
|
946
|
-
content:
|
945
|
+
content: React$1.ReactElement;
|
947
946
|
value: string;
|
948
947
|
}
|
949
948
|
interface SwitchItemContentI extends PropsWithChildren {
|
@@ -1029,15 +1028,15 @@ interface ICompactNavigation extends ICompactNavigationBase {
|
|
1029
1028
|
}
|
1030
1029
|
interface ICompactNavigationBase {
|
1031
1030
|
toggleLabel: string;
|
1032
|
-
children?:
|
1033
|
-
footer?:
|
1031
|
+
children?: React$1.ReactNode;
|
1032
|
+
footer?: React$1.ReactNode;
|
1034
1033
|
}
|
1035
1034
|
interface ICompactNavigationItem {
|
1036
1035
|
label: string;
|
1037
1036
|
href: string;
|
1038
|
-
onClick?:
|
1037
|
+
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
1039
1038
|
isActive?: boolean;
|
1040
|
-
icon:
|
1039
|
+
icon: React$1.ReactElement<IIcon>;
|
1041
1040
|
}
|
1042
1041
|
|
1043
1042
|
declare const CompactNavigation: {
|
@@ -1048,7 +1047,7 @@ declare const CompactNavigation: {
|
|
1048
1047
|
interface ICompactFooter extends ICompactFooterBase {
|
1049
1048
|
}
|
1050
1049
|
interface ICompactFooterBase {
|
1051
|
-
children?:
|
1050
|
+
children?: React$1.ReactNode;
|
1052
1051
|
title?: string;
|
1053
1052
|
description?: string;
|
1054
1053
|
}
|
@@ -1056,16 +1055,16 @@ interface ICompactFooterBase {
|
|
1056
1055
|
declare const CompactFooter: ({ children, title, description, }: ICompactFooter) => react_jsx_runtime.JSX.Element;
|
1057
1056
|
|
1058
1057
|
interface IDetailsBase {
|
1059
|
-
children?:
|
1058
|
+
children?: React$1.ReactNode;
|
1060
1059
|
}
|
1061
1060
|
interface IDetails extends IDetailsBase {
|
1062
1061
|
}
|
1063
1062
|
interface DetailsHeaderThemeableProps {
|
1064
1063
|
title: string;
|
1065
|
-
children?:
|
1064
|
+
children?: React$1.ReactNode;
|
1066
1065
|
}
|
1067
1066
|
interface DetailsContentThemeableProps {
|
1068
|
-
children?:
|
1067
|
+
children?: React$1.ReactNode;
|
1069
1068
|
}
|
1070
1069
|
|
1071
1070
|
declare const Details: {
|
@@ -1075,7 +1074,7 @@ declare const Details: {
|
|
1075
1074
|
};
|
1076
1075
|
|
1077
1076
|
interface IFaqBase {
|
1078
|
-
children?:
|
1077
|
+
children?: React$1.ReactNode;
|
1079
1078
|
}
|
1080
1079
|
interface IFaq extends IFaqBase {
|
1081
1080
|
}
|
@@ -1083,7 +1082,7 @@ interface FaqHeaderThemeableProps {
|
|
1083
1082
|
title: string;
|
1084
1083
|
}
|
1085
1084
|
interface FaqContentThemeableProps {
|
1086
|
-
children?:
|
1085
|
+
children?: React$1.ReactNode;
|
1087
1086
|
}
|
1088
1087
|
|
1089
1088
|
declare const Faq: {
|
@@ -1093,19 +1092,19 @@ declare const Faq: {
|
|
1093
1092
|
};
|
1094
1093
|
|
1095
1094
|
interface ISelectBox {
|
1096
|
-
children:
|
1095
|
+
children: React$1.ReactNode;
|
1097
1096
|
}
|
1098
1097
|
interface ISelectBoxMenuItem {
|
1099
|
-
figure:
|
1098
|
+
figure: React$1.ReactElement<IFigure>;
|
1100
1099
|
label: string;
|
1101
1100
|
action: () => void;
|
1102
1101
|
}
|
1103
1102
|
interface ISelectBoxSelect {
|
1104
|
-
figure:
|
1103
|
+
figure: React$1.ReactElement<IFigure>;
|
1105
1104
|
label: string;
|
1106
1105
|
}
|
1107
1106
|
interface ISelectBoxMenu {
|
1108
|
-
children:
|
1107
|
+
children: React$1.ReactNode;
|
1109
1108
|
}
|
1110
1109
|
|
1111
1110
|
declare const SelectBox: {
|
@@ -1116,7 +1115,7 @@ declare const SelectBox: {
|
|
1116
1115
|
};
|
1117
1116
|
|
1118
1117
|
interface ICategoryLink {
|
1119
|
-
figure:
|
1118
|
+
figure: React$1.ReactElement<IFigure>;
|
1120
1119
|
title: string;
|
1121
1120
|
description: string;
|
1122
1121
|
label: string;
|
@@ -1140,7 +1139,7 @@ interface IResultHeading {
|
|
1140
1139
|
declare const ResultHeading: ({ title, amount, actions }: IResultHeading) => react_jsx_runtime.JSX.Element;
|
1141
1140
|
|
1142
1141
|
interface IFeatures {
|
1143
|
-
children:
|
1142
|
+
children: React$1.ReactElement<IFeature> | React$1.ReactElement<IFeature>[];
|
1144
1143
|
}
|
1145
1144
|
|
1146
1145
|
declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
|
@@ -1187,15 +1186,15 @@ declare const DaySelect: ({ onChange, monLabel, tueLabel, wedLabel, thuLabel, fr
|
|
1187
1186
|
interface INavigation extends INavigationBase {
|
1188
1187
|
}
|
1189
1188
|
interface INavigationBase {
|
1190
|
-
children?:
|
1191
|
-
logo:
|
1189
|
+
children?: React$1.ReactNode;
|
1190
|
+
logo: React$1.ReactNode;
|
1192
1191
|
}
|
1193
1192
|
interface INavigationItem {
|
1194
1193
|
label: string;
|
1195
1194
|
href: string;
|
1196
|
-
onClick?:
|
1195
|
+
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
1197
1196
|
isActive?: boolean;
|
1198
|
-
icon:
|
1197
|
+
icon: React$1.ReactElement<IIcon>;
|
1199
1198
|
}
|
1200
1199
|
|
1201
1200
|
declare const Navigation: {
|
@@ -1209,12 +1208,12 @@ declare enum ItemType {
|
|
1209
1208
|
}
|
1210
1209
|
|
1211
1210
|
interface IProfileNavigation {
|
1212
|
-
children?:
|
1211
|
+
children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1213
1212
|
}
|
1214
1213
|
interface ProfileNavigationThemeableProps {
|
1215
|
-
children?:
|
1214
|
+
children?: React$1.ReactElement<ProfileNavigationItemThemeableProps> | React$1.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1216
1215
|
}
|
1217
|
-
type ClickHandler =
|
1216
|
+
type ClickHandler = React$1.MouseEventHandler<HTMLAnchorElement> & React$1.MouseEventHandler<HTMLButtonElement>;
|
1218
1217
|
interface ProfileNavigationItemThemeableProps {
|
1219
1218
|
label: string;
|
1220
1219
|
icon: IconType;
|
@@ -1231,7 +1230,7 @@ declare const ProfileNavigation: {
|
|
1231
1230
|
};
|
1232
1231
|
|
1233
1232
|
interface IRecords {
|
1234
|
-
children:
|
1233
|
+
children: React$1.ReactElement<IRecord> | React$1.ReactElement<IRecord>[];
|
1235
1234
|
}
|
1236
1235
|
|
1237
1236
|
declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
|
@@ -1246,11 +1245,11 @@ declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_ru
|
|
1246
1245
|
interface ITopNavigation extends ITopNavigationBase {
|
1247
1246
|
}
|
1248
1247
|
interface ITopNavigationBase {
|
1249
|
-
children?:
|
1248
|
+
children?: React$1.ReactNode;
|
1250
1249
|
}
|
1251
1250
|
interface ITopNavigationItemBase {
|
1252
1251
|
href: string;
|
1253
|
-
onClick?:
|
1252
|
+
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
1254
1253
|
label: string;
|
1255
1254
|
icon: IconType;
|
1256
1255
|
}
|
@@ -1263,20 +1262,20 @@ declare const TopNavigation: {
|
|
1263
1262
|
interface IOnboarding {
|
1264
1263
|
heading: string;
|
1265
1264
|
content: string;
|
1266
|
-
cta:
|
1267
|
-
figure:
|
1268
|
-
onClick?: (e:
|
1265
|
+
cta: React$1.ReactElement;
|
1266
|
+
figure: React$1.ReactElement<IFigure>;
|
1267
|
+
onClick?: (e: React$1.MouseEvent<HTMLButtonElement>) => void;
|
1269
1268
|
}
|
1270
1269
|
interface IOnboardingButton extends IButtonMinimal {
|
1271
1270
|
}
|
1272
1271
|
|
1273
|
-
declare const OnboardingButton:
|
1272
|
+
declare const OnboardingButton: React$1.ForwardRefExoticComponent<IOnboardingButton & React$1.RefAttributes<HTMLButtonElement>>;
|
1274
1273
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1275
1274
|
|
1276
1275
|
interface IQuickSearch {
|
1277
1276
|
heading: string;
|
1278
|
-
content:
|
1279
|
-
action:
|
1277
|
+
content: React$1.ReactNode;
|
1278
|
+
action: React$1.ReactNode;
|
1280
1279
|
}
|
1281
1280
|
|
1282
1281
|
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
@@ -1304,7 +1303,7 @@ declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_ru
|
|
1304
1303
|
|
1305
1304
|
interface ICta {
|
1306
1305
|
label: string;
|
1307
|
-
action:
|
1306
|
+
action: React$1.ReactElement<IButton>;
|
1308
1307
|
}
|
1309
1308
|
|
1310
1309
|
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
@@ -1331,11 +1330,18 @@ declare const CurrentLocation: ({ label, action, size }: ICurrentLocation) => re
|
|
1331
1330
|
interface IFooterNavigation extends IFooterNavigationBase {
|
1332
1331
|
}
|
1333
1332
|
interface IFooterNavigationBase {
|
1334
|
-
children?:
|
1333
|
+
children?: React$1.ReactNode;
|
1335
1334
|
}
|
1336
1335
|
|
1337
1336
|
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
1338
1337
|
|
1338
|
+
interface IPageHeader {
|
1339
|
+
title: string;
|
1340
|
+
figure: React.ReactElement<IFigure>;
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
declare const PageHeader: ({ title, figure }: IPageHeader) => react_jsx_runtime.JSX.Element;
|
1344
|
+
|
1339
1345
|
interface IBottomNavigation extends IBottomNavigationBase {
|
1340
1346
|
}
|
1341
1347
|
interface IBottomNavigationBase {
|
@@ -1345,40 +1351,40 @@ interface IBottomNavigationBase {
|
|
1345
1351
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1346
1352
|
|
1347
1353
|
interface IHeaderMobile {
|
1348
|
-
profileNavigation:
|
1349
|
-
compactNavigation:
|
1354
|
+
profileNavigation: React$1.ReactNode;
|
1355
|
+
compactNavigation: React$1.ReactNode;
|
1350
1356
|
}
|
1351
1357
|
interface IHeaderTop {
|
1352
|
-
brand:
|
1353
|
-
topNavigation:
|
1358
|
+
brand: React$1.ReactNode;
|
1359
|
+
topNavigation: React$1.ReactNode;
|
1354
1360
|
}
|
1355
1361
|
interface IHeaderBottom extends IHeaderMobile {
|
1356
|
-
navigation:
|
1357
|
-
brand:
|
1362
|
+
navigation: React$1.ReactNode;
|
1363
|
+
brand: React$1.ReactNode;
|
1358
1364
|
stickOnScroll: boolean;
|
1359
1365
|
}
|
1360
1366
|
interface IHeaderAlternate extends IHeaderMobile {
|
1361
|
-
navigation:
|
1362
|
-
brand:
|
1367
|
+
navigation: React$1.ReactNode;
|
1368
|
+
brand: React$1.ReactNode;
|
1363
1369
|
}
|
1364
1370
|
|
1365
1371
|
interface HeaderContextType {
|
1366
1372
|
isSticky: boolean;
|
1367
|
-
setIsSticky:
|
1373
|
+
setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
1368
1374
|
showLogo: boolean;
|
1369
|
-
setShowLogo:
|
1375
|
+
setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
1370
1376
|
}
|
1371
|
-
declare const HeaderContext:
|
1377
|
+
declare const HeaderContext: React$1.Context<HeaderContextType>;
|
1372
1378
|
|
1373
1379
|
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1374
1380
|
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1375
1381
|
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1376
1382
|
|
1377
1383
|
interface IFooter {
|
1378
|
-
top:
|
1379
|
-
left:
|
1380
|
-
right:
|
1381
|
-
bottom:
|
1384
|
+
top: React$1.ReactNode;
|
1385
|
+
left: React$1.ReactNode;
|
1386
|
+
right: React$1.ReactNode;
|
1387
|
+
bottom: React$1.ReactNode;
|
1382
1388
|
}
|
1383
1389
|
|
1384
1390
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
@@ -1395,7 +1401,7 @@ interface IPin {
|
|
1395
1401
|
name: string;
|
1396
1402
|
address: string;
|
1397
1403
|
type: PointType;
|
1398
|
-
overlay:
|
1404
|
+
overlay: React$1.ReactNode;
|
1399
1405
|
}
|
1400
1406
|
interface ILine {
|
1401
1407
|
key: string;
|
@@ -1421,20 +1427,20 @@ interface IFailureMap {
|
|
1421
1427
|
message: string;
|
1422
1428
|
}
|
1423
1429
|
interface IMapLegendLabel {
|
1424
|
-
figure:
|
1430
|
+
figure: React$1.ReactElement<IFigure>;
|
1425
1431
|
label: string;
|
1426
1432
|
}
|
1427
1433
|
interface IMapLegendItem {
|
1428
|
-
pin:
|
1434
|
+
pin: React$1.ReactElement<IPin>;
|
1429
1435
|
label: string;
|
1430
1436
|
}
|
1431
1437
|
interface ILocationBasedMap {
|
1432
1438
|
points?: IPoints;
|
1433
1439
|
showLoader: boolean;
|
1434
|
-
loader?:
|
1440
|
+
loader?: React$1.ReactNode;
|
1435
1441
|
origin?: IOrigin;
|
1436
|
-
legend?:
|
1437
|
-
legendToggle?:
|
1442
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1443
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1438
1444
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1439
1445
|
}
|
1440
1446
|
interface IDirectionBasedMapBase {
|
@@ -1442,13 +1448,13 @@ interface IDirectionBasedMapBase {
|
|
1442
1448
|
activeRoute: IRoute | null;
|
1443
1449
|
points?: IPoints;
|
1444
1450
|
showLoader: boolean;
|
1445
|
-
loader?:
|
1451
|
+
loader?: React$1.ReactNode;
|
1446
1452
|
origin?: IOrigin;
|
1447
1453
|
destination?: IDestination;
|
1448
1454
|
deviation: number;
|
1449
1455
|
activeTravelMode: google.maps.TravelMode;
|
1450
|
-
legend?:
|
1451
|
-
legendToggle?:
|
1456
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1457
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1452
1458
|
onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1453
1459
|
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1454
1460
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
@@ -1467,20 +1473,20 @@ declare const Map: {
|
|
1467
1473
|
Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1468
1474
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1469
1475
|
Loading: ({ loader }: {
|
1470
|
-
loader:
|
1476
|
+
loader: React$1.ReactNode;
|
1471
1477
|
}) => react_jsx_runtime.JSX.Element | null;
|
1472
1478
|
};
|
1473
1479
|
|
1474
1480
|
interface IWizard {
|
1475
|
-
children:
|
1481
|
+
children: React$1.ReactElement<IWizardStep> | React$1.ReactElement<IWizardStep>[];
|
1476
1482
|
}
|
1477
1483
|
interface IWizardStep extends PropsWithChildren {
|
1478
|
-
figure?:
|
1479
|
-
controls?:
|
1484
|
+
figure?: React$1.ReactElement<IFigure>;
|
1485
|
+
controls?: React$1.ReactElement<IWizardControls>;
|
1480
1486
|
}
|
1481
1487
|
interface IWizardControls {
|
1482
|
-
back?:
|
1483
|
-
next?:
|
1488
|
+
back?: React$1.ReactElement<IButton>;
|
1489
|
+
next?: React$1.ReactElement<IButton>;
|
1484
1490
|
}
|
1485
1491
|
|
1486
1492
|
declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
@@ -1505,117 +1511,94 @@ interface HeadingArrangementBaseI {
|
|
1505
1511
|
title: string;
|
1506
1512
|
}
|
1507
1513
|
|
1508
|
-
interface
|
1509
|
-
|
1510
|
-
|
1514
|
+
interface ISearchFiltersSharedActions {
|
1515
|
+
submit: React$1.ReactElement<IButton>;
|
1516
|
+
clear: React$1.ReactElement<IButton>;
|
1511
1517
|
}
|
1512
|
-
interface
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1518
|
+
interface ISearchFiltersShared extends ISearchFiltersSharedActions {
|
1519
|
+
filters: React$1.ReactElement<ISearchFiltersItem>[];
|
1520
|
+
activeFilterCount: number;
|
1521
|
+
label: React$1.ReactElement<ISearchFiltersLabel>;
|
1522
|
+
}
|
1523
|
+
interface ISearchFilters extends ISearchFiltersShared {
|
1524
|
+
overlay: React$1.ReactElement<ISearchFiltersOverlay>;
|
1525
|
+
modal: React$1.ReactElement<ISearchFiltersModal>;
|
1526
|
+
}
|
1527
|
+
interface ISearchFiltersOverlay {
|
1528
|
+
heading: React$1.ReactElement<HeadingArrangementBaseI>;
|
1529
|
+
close: React$1.ReactElement<CloseI>;
|
1530
|
+
}
|
1531
|
+
interface ISearchFiltersModal {
|
1523
1532
|
heading: string;
|
1533
|
+
}
|
1534
|
+
interface ISearchFiltersLabel {
|
1524
1535
|
label?: string;
|
1525
1536
|
description?: string;
|
1526
|
-
icon:
|
1527
|
-
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1528
|
-
activeFilters: number;
|
1529
|
-
submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
|
1530
|
-
clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
|
1531
|
-
}
|
1532
|
-
interface ISearchFiltersCompactOverlayItem {
|
1533
|
-
label: string;
|
1534
|
-
filter: React__default.ReactNode;
|
1535
|
-
}
|
1536
|
-
interface ISearchFiltersCompactActionSubmit {
|
1537
|
-
label: string;
|
1538
|
-
icon: React__default.ReactElement<IIcon>;
|
1539
|
-
onSubmit: () => void;
|
1537
|
+
icon: React$1.ReactElement<IIcon>;
|
1540
1538
|
}
|
1541
|
-
interface
|
1539
|
+
interface ISearchFiltersItem {
|
1542
1540
|
label: string;
|
1543
|
-
|
1544
|
-
onClear: () => void;
|
1541
|
+
filter: React$1.ReactNode;
|
1545
1542
|
}
|
1546
1543
|
|
1547
|
-
declare const
|
1548
|
-
|
1549
|
-
declare const SearchFiltersFull: ({ label, description, heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1544
|
+
declare const SearchFiltersLabel: ({ label, description, icon, }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
|
1550
1545
|
|
1551
|
-
declare const
|
1546
|
+
declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
|
1552
1547
|
|
1553
|
-
declare const
|
1548
|
+
declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
|
1554
1549
|
|
1555
|
-
declare const
|
1550
|
+
declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
|
1556
1551
|
|
1557
|
-
declare const SearchFilters: ({
|
1552
|
+
declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay, }: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1558
1553
|
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1554
|
+
type SearchInputTypes = "location" | "route" | "name";
|
1555
|
+
interface ISearchInputsShared {
|
1556
|
+
location: React$1.ReactElement<ISearchInputsElement>;
|
1557
|
+
route: React$1.ReactElement<ISearchInputsElement>;
|
1558
|
+
name: React$1.ReactElement<ISearchInputsElement>;
|
1559
|
+
activeInput: SearchInputTypes;
|
1560
|
+
onChanged?: (active: SearchInputTypes) => void;
|
1561
|
+
submit: React$1.ReactElement<IButton>;
|
1562
1562
|
}
|
1563
|
-
interface
|
1564
|
-
|
1565
|
-
location: React__default.ReactElement<ISearchInputsElement>;
|
1566
|
-
route: React__default.ReactElement<ISearchInputsElement>;
|
1567
|
-
name: React__default.ReactElement<ISearchInputsElement>;
|
1568
|
-
onSearch: () => void;
|
1569
|
-
onChanged: (active: "location" | "route" | "name") => void;
|
1563
|
+
interface ISearchInputs extends ISearchInputsShared {
|
1564
|
+
overlay: React$1.ReactElement<ISearchInputsOverlay>;
|
1570
1565
|
}
|
1571
|
-
interface
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
location: React__default.ReactElement<ISearchInputsElement>;
|
1576
|
-
route: React__default.ReactElement<ISearchInputsElement>;
|
1577
|
-
name: React__default.ReactElement<ISearchInputsElement>;
|
1578
|
-
close: React__default.ReactElement<CloseI>;
|
1579
|
-
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1580
|
-
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1581
|
-
onChanged: (active: "location" | "route" | "name") => void;
|
1566
|
+
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1567
|
+
heading: React$1.ReactElement<HeadingArrangementBaseI>;
|
1568
|
+
input: React$1.ReactElement<ISearchInputsOverlayInput>;
|
1569
|
+
close: React$1.ReactElement<CloseI>;
|
1582
1570
|
}
|
1583
|
-
interface
|
1584
|
-
|
1585
|
-
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1586
|
-
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
-
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1588
|
-
input: React__default.ReactElement<ISearchInputsItem>;
|
1571
|
+
interface ISearchInputsOverlayContentActions {
|
1572
|
+
clear?: React$1.ReactElement<IButton>;
|
1589
1573
|
}
|
1590
|
-
interface
|
1591
|
-
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1592
|
-
input: React__default.ReactNode;
|
1593
|
-
}
|
1594
|
-
interface ISearchInputsCompactActionSubmit {
|
1574
|
+
interface ISearchInputsOverlayInput {
|
1595
1575
|
label: string;
|
1596
|
-
|
1597
|
-
onSubmit: () => void;
|
1576
|
+
description: string;
|
1598
1577
|
}
|
1599
|
-
interface
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1578
|
+
interface ISearchInputsElement {
|
1579
|
+
selected: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1580
|
+
option: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1581
|
+
inputLabel: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1582
|
+
heading: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1583
|
+
input: React$1.ReactElement<ISearchInputsItem>;
|
1584
|
+
}
|
1585
|
+
interface ISearchInputsItem {
|
1586
|
+
label: React$1.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1587
|
+
input: React$1.ReactNode;
|
1603
1588
|
}
|
1604
1589
|
interface ISearchInputsLabel {
|
1605
1590
|
label: string;
|
1606
1591
|
description?: string;
|
1607
|
-
figure:
|
1592
|
+
figure: React$1.ReactElement<IFigure>;
|
1608
1593
|
}
|
1609
1594
|
interface ISearchInputsLabelWithIcon {
|
1610
1595
|
label: string;
|
1611
1596
|
description?: string;
|
1612
|
-
icon:
|
1597
|
+
icon: React$1.ReactElement<IIcon>;
|
1613
1598
|
prominent: boolean;
|
1614
1599
|
}
|
1615
1600
|
|
1616
|
-
declare const
|
1617
|
-
|
1618
|
-
declare const SearchInputsFull: ({ location, route, name, onSearch, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1601
|
+
declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
|
1619
1602
|
|
1620
1603
|
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1621
1604
|
|
@@ -1623,22 +1606,18 @@ declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputs
|
|
1623
1606
|
|
1624
1607
|
declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent, }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
|
1625
1608
|
|
1626
|
-
declare const
|
1627
|
-
|
1628
|
-
declare const SearchInputsMobileActionClear: ({}: ISearchInputsCompactActionClear) => null;
|
1629
|
-
|
1630
|
-
declare const SearchInputs: ({ full, compact }: ISearchInputs) => React$1.ReactElement<ISearchInputsCompact, string | React$1.JSXElementConstructor<any>> | React$1.ReactElement<ISearchInputsFull, string | React$1.JSXElementConstructor<any>>;
|
1609
|
+
declare const SearchInputs: ({ location, route, name, overlay, onChanged, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
1631
1610
|
|
1632
1611
|
interface ICard {
|
1633
|
-
swipe?:
|
1634
|
-
badge:
|
1612
|
+
swipe?: React$1.ReactNode;
|
1613
|
+
badge: React$1.ReactElement<IBadge>;
|
1635
1614
|
title: string;
|
1636
1615
|
subtitle?: string;
|
1637
|
-
info?:
|
1638
|
-
labels:
|
1639
|
-
features?:
|
1640
|
-
action:
|
1641
|
-
favoriteAction?:
|
1616
|
+
info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
|
1617
|
+
labels: React$1.ReactElement<ILabel>[];
|
1618
|
+
features?: React$1.ReactElement<IFeatures>;
|
1619
|
+
action: React$1.ReactElement<IButton>;
|
1620
|
+
favoriteAction?: React$1.ReactElement<IButton>;
|
1642
1621
|
detailsAction?: () => void;
|
1643
1622
|
detailsLabel?: string;
|
1644
1623
|
}
|
@@ -1646,36 +1625,36 @@ interface ICard {
|
|
1646
1625
|
declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
|
1647
1626
|
|
1648
1627
|
interface IMapCard {
|
1649
|
-
swipe?:
|
1650
|
-
badge:
|
1628
|
+
swipe?: React$1.ReactNode;
|
1629
|
+
badge: React$1.ReactElement<IBadge>;
|
1651
1630
|
title: string;
|
1652
|
-
info?:
|
1653
|
-
action:
|
1631
|
+
info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
|
1632
|
+
action: React$1.ReactElement<IButton>;
|
1654
1633
|
}
|
1655
1634
|
|
1656
1635
|
declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
|
1657
1636
|
|
1658
1637
|
interface IListCard {
|
1659
|
-
badge:
|
1638
|
+
badge: React$1.ReactElement<IBadge>;
|
1660
1639
|
title: string;
|
1661
1640
|
subtitle?: string;
|
1662
|
-
info?:
|
1663
|
-
labels:
|
1664
|
-
features?:
|
1665
|
-
actions:
|
1641
|
+
info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
|
1642
|
+
labels: React$1.ReactElement<ILabel>[];
|
1643
|
+
features?: React$1.ReactElement<IFeatures>;
|
1644
|
+
actions: React$1.ReactElement<IButton>[] | React$1.ReactElement<IButton>;
|
1666
1645
|
}
|
1667
1646
|
|
1668
1647
|
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, }: IListCard) => react_jsx_runtime.JSX.Element;
|
1669
1648
|
|
1670
1649
|
interface IFlyoutArrangementSplit {
|
1671
|
-
top?:
|
1672
|
-
left:
|
1673
|
-
right:
|
1650
|
+
top?: React$1.ReactElement;
|
1651
|
+
left: React$1.ReactElement;
|
1652
|
+
right: React$1.ReactElement;
|
1674
1653
|
compactAt: number;
|
1675
1654
|
}
|
1676
1655
|
interface IFlyoutArrangementFull {
|
1677
|
-
top?:
|
1678
|
-
content:
|
1656
|
+
top?: React$1.ReactElement;
|
1657
|
+
content: React$1.ReactElement;
|
1679
1658
|
}
|
1680
1659
|
|
1681
1660
|
declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1687,25 +1666,25 @@ declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_
|
|
1687
1666
|
|
1688
1667
|
interface IHomeSectionCards {
|
1689
1668
|
title: string;
|
1690
|
-
cards:
|
1669
|
+
cards: React$1.ReactElement<IInfoCard>[];
|
1691
1670
|
}
|
1692
1671
|
|
1693
1672
|
declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
|
1694
1673
|
|
1695
1674
|
interface IHomeSectionFaq {
|
1696
1675
|
title: string;
|
1697
|
-
content:
|
1698
|
-
faqs:
|
1676
|
+
content: React$1.ReactElement;
|
1677
|
+
faqs: React$1.ReactElement<IFaq>[];
|
1699
1678
|
}
|
1700
1679
|
|
1701
1680
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1702
1681
|
|
1703
1682
|
interface IHomeSectionGettingStarted {
|
1704
1683
|
title: string;
|
1705
|
-
locationLink:
|
1706
|
-
routeLink:
|
1707
|
-
nameLink:
|
1708
|
-
onBoarding:
|
1684
|
+
locationLink: React$1.ReactElement;
|
1685
|
+
routeLink: React$1.ReactElement;
|
1686
|
+
nameLink: React$1.ReactElement;
|
1687
|
+
onBoarding: React$1.ReactElement;
|
1709
1688
|
imagePath: string;
|
1710
1689
|
}
|
1711
1690
|
|
@@ -1713,15 +1692,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
|
|
1713
1692
|
|
1714
1693
|
interface IDetailsSectionHeader {
|
1715
1694
|
title: string;
|
1716
|
-
badge:
|
1717
|
-
labels:
|
1718
|
-
actions:
|
1695
|
+
badge: React$1.ReactNode;
|
1696
|
+
labels: React$1.ReactNode;
|
1697
|
+
actions: React$1.ReactNode;
|
1719
1698
|
}
|
1720
1699
|
|
1721
1700
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1722
1701
|
|
1723
1702
|
interface IDetailsSectionBack {
|
1724
|
-
link:
|
1703
|
+
link: React$1.ReactElement<ILink>;
|
1725
1704
|
}
|
1726
1705
|
|
1727
1706
|
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
@@ -1733,19 +1712,19 @@ interface IDetailsSectionGallery {
|
|
1733
1712
|
declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
|
1734
1713
|
|
1735
1714
|
interface IDetailsSectionGeneral {
|
1736
|
-
info:
|
1715
|
+
info: React$1.ReactNode;
|
1737
1716
|
contactData: IContactData[];
|
1738
1717
|
}
|
1739
1718
|
interface IContactData {
|
1740
1719
|
title: string;
|
1741
|
-
data:
|
1720
|
+
data: React$1.ReactElement<ILabeledIcon>[];
|
1742
1721
|
}
|
1743
1722
|
|
1744
1723
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1745
1724
|
|
1746
1725
|
interface IDetailsSectionFacilities {
|
1747
1726
|
title: string;
|
1748
|
-
facilities:
|
1727
|
+
facilities: React$1.ReactElement<ITerm>[];
|
1749
1728
|
}
|
1750
1729
|
|
1751
1730
|
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
@@ -1753,25 +1732,25 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
|
|
1753
1732
|
interface IDetailsSectionPrice {
|
1754
1733
|
title: string;
|
1755
1734
|
prices: IPriceData[];
|
1756
|
-
info:
|
1735
|
+
info: React$1.ReactElement<IPlainText>;
|
1757
1736
|
}
|
1758
1737
|
interface IPriceData {
|
1759
1738
|
title: string;
|
1760
|
-
data:
|
1739
|
+
data: React$1.ReactElement<ITable>;
|
1761
1740
|
}
|
1762
1741
|
|
1763
1742
|
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1764
1743
|
|
1765
1744
|
interface IDetailsSectionVacation {
|
1766
1745
|
title: string;
|
1767
|
-
vacations:
|
1746
|
+
vacations: React$1.ReactElement<ITable>;
|
1768
1747
|
}
|
1769
1748
|
|
1770
1749
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1771
1750
|
|
1772
1751
|
interface IDetailsSectionHours {
|
1773
1752
|
title: string;
|
1774
|
-
hours:
|
1753
|
+
hours: React$1.ReactElement<ITable>;
|
1775
1754
|
info?: string;
|
1776
1755
|
}
|
1777
1756
|
|
@@ -1799,20 +1778,20 @@ declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_ru
|
|
1799
1778
|
interface IFavoritesSectionHeader {
|
1800
1779
|
title: string;
|
1801
1780
|
description: string;
|
1802
|
-
figure:
|
1781
|
+
figure: React$1.ReactElement<IFigure>;
|
1803
1782
|
}
|
1804
1783
|
|
1805
1784
|
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1806
1785
|
|
1807
1786
|
interface IFavoritesSectionEmpty {
|
1808
1787
|
description: string;
|
1809
|
-
action:
|
1788
|
+
action: React$1.ReactElement<IButton>;
|
1810
1789
|
}
|
1811
1790
|
|
1812
1791
|
declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
|
1813
1792
|
|
1814
1793
|
interface IFavoritesSectionList {
|
1815
|
-
cards:
|
1794
|
+
cards: React$1.ReactElement<ICard>[];
|
1816
1795
|
}
|
1817
1796
|
|
1818
1797
|
declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
|
@@ -1820,29 +1799,29 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
|
|
1820
1799
|
interface IFavoritesSectionConfirm {
|
1821
1800
|
title: string;
|
1822
1801
|
description: string;
|
1823
|
-
location:
|
1824
|
-
actions:
|
1802
|
+
location: React$1.ReactElement<IColoredBox>;
|
1803
|
+
actions: React$1.ReactElement<IButton>[];
|
1825
1804
|
}
|
1826
1805
|
|
1827
1806
|
declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
|
1828
1807
|
|
1829
1808
|
interface IOnboardingArrangementIntroduction {
|
1830
|
-
top:
|
1831
|
-
left:
|
1832
|
-
right?:
|
1833
|
-
action?:
|
1834
|
-
image?:
|
1809
|
+
top: React$1.ReactElement;
|
1810
|
+
left: React$1.ReactElement;
|
1811
|
+
right?: React$1.ReactElement;
|
1812
|
+
action?: React$1.ReactElement;
|
1813
|
+
image?: React$1.ReactElement;
|
1835
1814
|
}
|
1836
1815
|
interface IOnboardingArrangementStep {
|
1837
|
-
top:
|
1838
|
-
left:
|
1839
|
-
right?:
|
1840
|
-
image?:
|
1816
|
+
top: React$1.ReactElement;
|
1817
|
+
left: React$1.ReactElement;
|
1818
|
+
right?: React$1.ReactElement;
|
1819
|
+
image?: React$1.ReactElement;
|
1841
1820
|
}
|
1842
1821
|
interface IOnboardingArrangementInformation {
|
1843
|
-
top:
|
1844
|
-
left:
|
1845
|
-
image?:
|
1822
|
+
top: React$1.ReactElement;
|
1823
|
+
left: React$1.ReactElement;
|
1824
|
+
image?: React$1.ReactElement;
|
1846
1825
|
}
|
1847
1826
|
|
1848
1827
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
@@ -1850,41 +1829,41 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
|
|
1850
1829
|
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
1851
1830
|
|
1852
1831
|
interface ISearchSectionFilters {
|
1853
|
-
primary:
|
1854
|
-
secondary:
|
1855
|
-
secondary_active:
|
1832
|
+
primary: React$1.ReactElement;
|
1833
|
+
secondary: React$1.ReactElement | false;
|
1834
|
+
secondary_active: React$1.ReactElement<IFilterTag>[];
|
1856
1835
|
}
|
1857
1836
|
|
1858
1837
|
declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
|
1859
1838
|
|
1860
1839
|
interface IHomeSectionLeftSplit {
|
1861
1840
|
title: string;
|
1862
|
-
content:
|
1841
|
+
content: React$1.ReactElement;
|
1863
1842
|
imagePath: string;
|
1864
1843
|
}
|
1865
1844
|
|
1866
1845
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
1867
1846
|
|
1868
1847
|
interface ISharedSectionHeader {
|
1869
|
-
top?:
|
1870
|
-
bottom:
|
1871
|
-
filters?:
|
1848
|
+
top?: React$1.ReactElement;
|
1849
|
+
bottom: React$1.ReactElement;
|
1850
|
+
filters?: React$1.ReactElement;
|
1872
1851
|
}
|
1873
1852
|
|
1874
1853
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
1875
1854
|
|
1876
1855
|
interface ISharedSectionFooter {
|
1877
|
-
content:
|
1856
|
+
content: React$1.ReactElement;
|
1878
1857
|
}
|
1879
1858
|
|
1880
1859
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
1881
1860
|
|
1882
1861
|
interface ISearchSectionResults {
|
1883
|
-
header?:
|
1884
|
-
content:
|
1862
|
+
header?: React$1.ReactElement;
|
1863
|
+
content: React$1.ReactElement;
|
1885
1864
|
}
|
1886
1865
|
|
1887
|
-
declare const SearchSectionResults:
|
1866
|
+
declare const SearchSectionResults: React$1.ForwardRefExoticComponent<ISearchSectionResults & React$1.RefAttributes<HTMLDivElement>>;
|
1888
1867
|
|
1889
1868
|
interface ISearchSectionEmpty {
|
1890
1869
|
title: string;
|
@@ -1897,11 +1876,11 @@ interface IScrollableContentProps {
|
|
1897
1876
|
scrollToTop?: () => void;
|
1898
1877
|
}
|
1899
1878
|
interface ISearchSectionResultsWithMap {
|
1900
|
-
content:
|
1901
|
-
map?:
|
1879
|
+
content: React$1.ReactElement<IScrollableContentProps>;
|
1880
|
+
map?: React$1.ReactElement;
|
1902
1881
|
}
|
1903
1882
|
|
1904
|
-
declare const SearchSectionResultsWithMap:
|
1883
|
+
declare const SearchSectionResultsWithMap: React$1.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React$1.RefAttributes<HTMLDivElement>>;
|
1905
1884
|
|
1906
1885
|
declare enum AccordeonContext {
|
1907
1886
|
OPEN = "OPEN",
|
@@ -1909,7 +1888,7 @@ declare enum AccordeonContext {
|
|
1909
1888
|
}
|
1910
1889
|
|
1911
1890
|
interface IAccordeonBase {
|
1912
|
-
children?:
|
1891
|
+
children?: React$1.ReactNode;
|
1913
1892
|
}
|
1914
1893
|
interface IAccordeon extends IAccordeonBase {
|
1915
1894
|
id?: string;
|
@@ -1932,7 +1911,7 @@ interface IBackdrop {
|
|
1932
1911
|
onClick?: () => void;
|
1933
1912
|
}
|
1934
1913
|
|
1935
|
-
declare const Backdrop: ({ onClick }: IBackdrop) =>
|
1914
|
+
declare const Backdrop: ({ onClick }: IBackdrop) => React$1.ReactPortal;
|
1936
1915
|
|
1937
1916
|
interface IBlur extends PropsWithChildren {
|
1938
1917
|
}
|
@@ -1940,10 +1919,10 @@ interface IBlur extends PropsWithChildren {
|
|
1940
1919
|
declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
|
1941
1920
|
|
1942
1921
|
interface ICollapsable {
|
1943
|
-
content:
|
1944
|
-
additional:
|
1945
|
-
withContentExpand:
|
1946
|
-
withContentCollapse?:
|
1922
|
+
content: React$1.ReactNode;
|
1923
|
+
additional: React$1.ReactNode;
|
1924
|
+
withContentExpand: React$1.ReactNode;
|
1925
|
+
withContentCollapse?: React$1.ReactNode;
|
1947
1926
|
}
|
1948
1927
|
|
1949
1928
|
declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
|
@@ -1956,11 +1935,11 @@ declare enum DrawerSize {
|
|
1956
1935
|
}
|
1957
1936
|
|
1958
1937
|
interface IDrawer {
|
1959
|
-
children?:
|
1938
|
+
children?: React$1.ReactNode;
|
1960
1939
|
size?: DrawerSize;
|
1961
1940
|
}
|
1962
1941
|
|
1963
|
-
declare const Drawer: ({ children, size }: IDrawer) =>
|
1942
|
+
declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
|
1964
1943
|
|
1965
1944
|
interface GridProps {
|
1966
1945
|
children: React.ReactNode;
|
@@ -1998,20 +1977,20 @@ declare enum ModalSize {
|
|
1998
1977
|
}
|
1999
1978
|
|
2000
1979
|
interface IModal {
|
2001
|
-
children?:
|
1980
|
+
children?: React$1.ReactNode;
|
2002
1981
|
title?: string;
|
2003
1982
|
size: ModalSize;
|
2004
1983
|
}
|
2005
1984
|
|
2006
|
-
declare const Modal: ({ children, size, title }: IModal) =>
|
1985
|
+
declare const Modal: ({ children, size, title }: IModal) => React$1.ReactPortal;
|
2007
1986
|
|
2008
1987
|
interface IOverlay {
|
2009
|
-
children?:
|
2010
|
-
header?:
|
2011
|
-
close:
|
1988
|
+
children?: React$1.ReactNode;
|
1989
|
+
header?: React$1.ReactNode;
|
1990
|
+
close: React$1.ReactNode;
|
2012
1991
|
}
|
2013
1992
|
|
2014
|
-
declare const Overlay: ({ children, header, close }: IOverlay) =>
|
1993
|
+
declare const Overlay: ({ children, header, close }: IOverlay) => React$1.ReactPortal;
|
2015
1994
|
|
2016
1995
|
declare enum WaveType {
|
2017
1996
|
ONE = "ONE",
|
@@ -2031,13 +2010,13 @@ interface IWave {
|
|
2031
2010
|
|
2032
2011
|
interface ISurface extends PropsWithChildren {
|
2033
2012
|
background: string;
|
2034
|
-
withWave?:
|
2013
|
+
withWave?: React$1.ReactElement<IWave>;
|
2035
2014
|
}
|
2036
2015
|
|
2037
2016
|
declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
|
2038
2017
|
|
2039
2018
|
interface ISwipe {
|
2040
|
-
children?:
|
2019
|
+
children?: React$1.ReactNode;
|
2041
2020
|
}
|
2042
2021
|
interface ISwipeable {
|
2043
2022
|
url: string;
|
@@ -2047,8 +2026,8 @@ interface ISwipeable {
|
|
2047
2026
|
declare global {
|
2048
2027
|
namespace JSX {
|
2049
2028
|
interface IntrinsicElements {
|
2050
|
-
"swiper-container":
|
2051
|
-
"swiper-slide":
|
2029
|
+
"swiper-container": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2030
|
+
"swiper-slide": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2052
2031
|
}
|
2053
2032
|
}
|
2054
2033
|
}
|
@@ -2058,50 +2037,50 @@ declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.E
|
|
2058
2037
|
declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
|
2059
2038
|
|
2060
2039
|
interface IBasicPage {
|
2061
|
-
header:
|
2062
|
-
content:
|
2063
|
-
footer:
|
2040
|
+
header: React$1.ReactElement;
|
2041
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2042
|
+
footer: React$1.ReactElement;
|
2064
2043
|
}
|
2065
2044
|
|
2066
2045
|
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
2067
2046
|
|
2068
2047
|
interface IDetailsPage {
|
2069
|
-
header:
|
2070
|
-
content:
|
2071
|
-
footer:
|
2048
|
+
header: React$1.ReactElement;
|
2049
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2050
|
+
footer: React$1.ReactElement;
|
2072
2051
|
}
|
2073
2052
|
|
2074
2053
|
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
2075
2054
|
|
2076
2055
|
interface ISearchPage {
|
2077
|
-
header:
|
2078
|
-
content:
|
2079
|
-
footer:
|
2056
|
+
header: React$1.ReactElement;
|
2057
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2058
|
+
footer: React$1.ReactElement;
|
2080
2059
|
}
|
2081
2060
|
|
2082
2061
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
2083
2062
|
|
2084
2063
|
interface IEmptySearchPage {
|
2085
|
-
header:
|
2086
|
-
content:
|
2087
|
-
footer:
|
2064
|
+
header: React$1.ReactElement;
|
2065
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2066
|
+
footer: React$1.ReactElement;
|
2088
2067
|
}
|
2089
2068
|
|
2090
2069
|
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
2091
2070
|
|
2092
2071
|
interface ISearchWithMapPage {
|
2093
|
-
header:
|
2094
|
-
content:
|
2095
|
-
footer:
|
2072
|
+
header: React$1.ReactElement;
|
2073
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2074
|
+
footer: React$1.ReactElement;
|
2096
2075
|
}
|
2097
2076
|
|
2098
2077
|
declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
|
2099
2078
|
|
2100
2079
|
interface BackdropContextType {
|
2101
2080
|
isBackdropVisible: boolean;
|
2102
|
-
setIsBackdropVisible:
|
2081
|
+
setIsBackdropVisible: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2103
2082
|
}
|
2104
|
-
declare const BackdropContext:
|
2083
|
+
declare const BackdropContext: React$1.Context<BackdropContextType>;
|
2105
2084
|
interface IBackdropProvider extends PropsWithChildren {
|
2106
2085
|
onClick?: () => void;
|
2107
2086
|
}
|
@@ -2109,31 +2088,31 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
|
|
2109
2088
|
|
2110
2089
|
interface BlurContextType {
|
2111
2090
|
isBlurred: boolean;
|
2112
|
-
setIsBlurred:
|
2091
|
+
setIsBlurred: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2113
2092
|
}
|
2114
|
-
declare const BlurContext:
|
2093
|
+
declare const BlurContext: React$1.Context<BlurContextType>;
|
2115
2094
|
interface IBlurProvider extends PropsWithChildren {
|
2116
2095
|
}
|
2117
|
-
declare const BlurProvider:
|
2096
|
+
declare const BlurProvider: React$1.FC<PropsWithChildren<{}>>;
|
2118
2097
|
|
2119
2098
|
interface DrawerContextType {
|
2120
2099
|
isOpen: boolean;
|
2121
|
-
setIsOpen:
|
2100
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2122
2101
|
}
|
2123
|
-
declare const DrawerContext:
|
2102
|
+
declare const DrawerContext: React$1.Context<DrawerContextType>;
|
2124
2103
|
interface IDrawerProvider extends PropsWithChildren {
|
2125
|
-
drawer?:
|
2104
|
+
drawer?: React$1.ReactNode;
|
2126
2105
|
size?: DrawerSize;
|
2127
2106
|
}
|
2128
2107
|
declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
2129
2108
|
|
2130
2109
|
interface ModalContextType {
|
2131
2110
|
isOpen: boolean;
|
2132
|
-
setIsOpen:
|
2111
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2133
2112
|
}
|
2134
|
-
declare const ModalContext:
|
2113
|
+
declare const ModalContext: React$1.Context<ModalContextType>;
|
2135
2114
|
interface IModalProvider extends PropsWithChildren {
|
2136
|
-
modal?:
|
2115
|
+
modal?: React$1.ReactNode;
|
2137
2116
|
size?: ModalSize;
|
2138
2117
|
title?: string;
|
2139
2118
|
}
|
@@ -2141,23 +2120,23 @@ declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider)
|
|
2141
2120
|
|
2142
2121
|
interface OverlayContextType {
|
2143
2122
|
isOpen: boolean;
|
2144
|
-
setIsOpen:
|
2123
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2145
2124
|
headerHeight: number;
|
2146
|
-
setHeaderHeight:
|
2125
|
+
setHeaderHeight: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2147
2126
|
}
|
2148
|
-
declare const OverlayContext:
|
2127
|
+
declare const OverlayContext: React$1.Context<OverlayContextType>;
|
2149
2128
|
interface IOverlayProvider extends PropsWithChildren {
|
2150
|
-
overlay?:
|
2151
|
-
header?:
|
2152
|
-
close?:
|
2129
|
+
overlay?: React$1.ReactNode;
|
2130
|
+
header?: React$1.ReactNode;
|
2131
|
+
close?: React$1.ReactNode;
|
2153
2132
|
}
|
2154
2133
|
declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2155
2134
|
|
2156
2135
|
interface ProcessingContextType {
|
2157
2136
|
isDone: boolean;
|
2158
|
-
setIsDone:
|
2137
|
+
setIsDone: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2159
2138
|
}
|
2160
|
-
declare const ProcessingContext:
|
2139
|
+
declare const ProcessingContext: React$1.Context<ProcessingContextType>;
|
2161
2140
|
declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2162
2141
|
|
2163
2142
|
declare const useIsProcessing: () => boolean;
|
@@ -2174,19 +2153,19 @@ interface GooglePlacesI {
|
|
2174
2153
|
autocomplete: google.maps.places.AutocompleteService;
|
2175
2154
|
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
2176
2155
|
}
|
2177
|
-
declare const GooglePlacesContext:
|
2156
|
+
declare const GooglePlacesContext: React$1.Context<AsyncResult<GooglePlacesI>>;
|
2178
2157
|
declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2179
2158
|
|
2180
|
-
declare const GoogleGeocoderContext:
|
2159
|
+
declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geocoder>>;
|
2181
2160
|
declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2182
2161
|
|
2183
|
-
declare const GoogleDirectionsServiceContext:
|
2162
|
+
declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
|
2184
2163
|
declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2185
2164
|
|
2186
|
-
declare const GoogleDirectionsRendererContext:
|
2165
|
+
declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
2187
2166
|
declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2188
2167
|
|
2189
|
-
declare const GoogleGeometryContext:
|
2168
|
+
declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
|
2190
2169
|
declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2191
2170
|
|
2192
2171
|
declare const useIsGoogleProcessing: () => boolean;
|
@@ -2205,9 +2184,9 @@ declare const useGoogleMapId: () => string;
|
|
2205
2184
|
|
2206
2185
|
declare const useGoogleApiKey: () => string;
|
2207
2186
|
|
2208
|
-
declare const ThemeModeContext:
|
2187
|
+
declare const ThemeModeContext: React$1.Context<{
|
2209
2188
|
themeMode: ThemeMode;
|
2210
|
-
setThemeMode:
|
2189
|
+
setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
|
2211
2190
|
}>;
|
2212
2191
|
interface PropsForThemeModeProvider extends PropsWithChildren {
|
2213
2192
|
fromBrowser: boolean;
|
@@ -2216,18 +2195,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
|
2216
2195
|
|
2217
2196
|
interface SearchContextType {
|
2218
2197
|
active: number;
|
2219
|
-
setActive:
|
2198
|
+
setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2220
2199
|
}
|
2221
|
-
declare const SearchContext:
|
2200
|
+
declare const SearchContext: React$1.Context<SearchContextType>;
|
2222
2201
|
interface ISearchProvider extends PropsWithChildren {
|
2223
2202
|
}
|
2224
2203
|
declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
|
2225
2204
|
|
2226
2205
|
interface WizardContextType {
|
2227
2206
|
active: number;
|
2228
|
-
setActive:
|
2207
|
+
setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2229
2208
|
}
|
2230
|
-
declare const WizardContext:
|
2209
|
+
declare const WizardContext: React$1.Context<WizardContextType>;
|
2231
2210
|
interface IWizardProvider extends PropsWithChildren {
|
2232
2211
|
onClick?: () => void;
|
2233
2212
|
}
|
@@ -2235,20 +2214,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
|
|
2235
2214
|
|
2236
2215
|
interface WizardStepContextType {
|
2237
2216
|
complete: boolean;
|
2238
|
-
setComplete:
|
2217
|
+
setComplete: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2239
2218
|
}
|
2240
|
-
declare const WizardStepContext:
|
2219
|
+
declare const WizardStepContext: React$1.Context<WizardStepContextType>;
|
2241
2220
|
interface IWizardStepProvider extends PropsWithChildren {
|
2242
2221
|
}
|
2243
2222
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
2244
2223
|
|
2245
2224
|
interface InlineSelectOptionI {
|
2246
2225
|
label: string;
|
2247
|
-
withIcon?:
|
2226
|
+
withIcon?: React$1.ReactElement<IIcon>;
|
2248
2227
|
}
|
2249
2228
|
interface InlineSelectOptionIconI {
|
2250
2229
|
label: string;
|
2251
|
-
withIcon:
|
2230
|
+
withIcon: React$1.ReactElement<IIcon>;
|
2252
2231
|
}
|
2253
2232
|
|
2254
2233
|
declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
|
@@ -2266,4 +2245,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2266
2245
|
|
2267
2246
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2268
2247
|
|
2269
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type
|
2248
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type 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 IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, 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 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, 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, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, 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 };
|