@tactics/lokaal-loket 0.0.246 → 0.0.247
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +871 -841
- package/build/index.d.cts +337 -365
- package/build/index.d.ts +337 -365
- package/build/index.js +593 -559
- package/package.json +1 -1
package/build/index.d.cts
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,7 +1330,7 @@ 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;
|
@@ -1352,40 +1351,40 @@ interface IBottomNavigationBase {
|
|
1352
1351
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1353
1352
|
|
1354
1353
|
interface IHeaderMobile {
|
1355
|
-
profileNavigation:
|
1356
|
-
compactNavigation:
|
1354
|
+
profileNavigation: React$1.ReactNode;
|
1355
|
+
compactNavigation: React$1.ReactNode;
|
1357
1356
|
}
|
1358
1357
|
interface IHeaderTop {
|
1359
|
-
brand:
|
1360
|
-
topNavigation:
|
1358
|
+
brand: React$1.ReactNode;
|
1359
|
+
topNavigation: React$1.ReactNode;
|
1361
1360
|
}
|
1362
1361
|
interface IHeaderBottom extends IHeaderMobile {
|
1363
|
-
navigation:
|
1364
|
-
brand:
|
1362
|
+
navigation: React$1.ReactNode;
|
1363
|
+
brand: React$1.ReactNode;
|
1365
1364
|
stickOnScroll: boolean;
|
1366
1365
|
}
|
1367
1366
|
interface IHeaderAlternate extends IHeaderMobile {
|
1368
|
-
navigation:
|
1369
|
-
brand:
|
1367
|
+
navigation: React$1.ReactNode;
|
1368
|
+
brand: React$1.ReactNode;
|
1370
1369
|
}
|
1371
1370
|
|
1372
1371
|
interface HeaderContextType {
|
1373
1372
|
isSticky: boolean;
|
1374
|
-
setIsSticky:
|
1373
|
+
setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
1375
1374
|
showLogo: boolean;
|
1376
|
-
setShowLogo:
|
1375
|
+
setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
1377
1376
|
}
|
1378
|
-
declare const HeaderContext:
|
1377
|
+
declare const HeaderContext: React$1.Context<HeaderContextType>;
|
1379
1378
|
|
1380
1379
|
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1381
1380
|
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1382
1381
|
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1383
1382
|
|
1384
1383
|
interface IFooter {
|
1385
|
-
top:
|
1386
|
-
left:
|
1387
|
-
right:
|
1388
|
-
bottom:
|
1384
|
+
top: React$1.ReactNode;
|
1385
|
+
left: React$1.ReactNode;
|
1386
|
+
right: React$1.ReactNode;
|
1387
|
+
bottom: React$1.ReactNode;
|
1389
1388
|
}
|
1390
1389
|
|
1391
1390
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
@@ -1402,7 +1401,7 @@ interface IPin {
|
|
1402
1401
|
name: string;
|
1403
1402
|
address: string;
|
1404
1403
|
type: PointType;
|
1405
|
-
overlay:
|
1404
|
+
overlay: React$1.ReactNode;
|
1406
1405
|
}
|
1407
1406
|
interface ILine {
|
1408
1407
|
key: string;
|
@@ -1428,20 +1427,20 @@ interface IFailureMap {
|
|
1428
1427
|
message: string;
|
1429
1428
|
}
|
1430
1429
|
interface IMapLegendLabel {
|
1431
|
-
figure:
|
1430
|
+
figure: React$1.ReactElement<IFigure>;
|
1432
1431
|
label: string;
|
1433
1432
|
}
|
1434
1433
|
interface IMapLegendItem {
|
1435
|
-
pin:
|
1434
|
+
pin: React$1.ReactElement<IPin>;
|
1436
1435
|
label: string;
|
1437
1436
|
}
|
1438
1437
|
interface ILocationBasedMap {
|
1439
1438
|
points?: IPoints;
|
1440
1439
|
showLoader: boolean;
|
1441
|
-
loader?:
|
1440
|
+
loader?: React$1.ReactNode;
|
1442
1441
|
origin?: IOrigin;
|
1443
|
-
legend?:
|
1444
|
-
legendToggle?:
|
1442
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1443
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1445
1444
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1446
1445
|
}
|
1447
1446
|
interface IDirectionBasedMapBase {
|
@@ -1449,13 +1448,13 @@ interface IDirectionBasedMapBase {
|
|
1449
1448
|
activeRoute: IRoute | null;
|
1450
1449
|
points?: IPoints;
|
1451
1450
|
showLoader: boolean;
|
1452
|
-
loader?:
|
1451
|
+
loader?: React$1.ReactNode;
|
1453
1452
|
origin?: IOrigin;
|
1454
1453
|
destination?: IDestination;
|
1455
1454
|
deviation: number;
|
1456
1455
|
activeTravelMode: google.maps.TravelMode;
|
1457
|
-
legend?:
|
1458
|
-
legendToggle?:
|
1456
|
+
legend?: React$1.ReactElement<IMapLegendItem>[];
|
1457
|
+
legendToggle?: React$1.ReactElement<IMapLegendLabel>;
|
1459
1458
|
onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1460
1459
|
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1461
1460
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
@@ -1474,20 +1473,20 @@ declare const Map: {
|
|
1474
1473
|
Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1475
1474
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1476
1475
|
Loading: ({ loader }: {
|
1477
|
-
loader:
|
1476
|
+
loader: React$1.ReactNode;
|
1478
1477
|
}) => react_jsx_runtime.JSX.Element | null;
|
1479
1478
|
};
|
1480
1479
|
|
1481
1480
|
interface IWizard {
|
1482
|
-
children:
|
1481
|
+
children: React$1.ReactElement<IWizardStep> | React$1.ReactElement<IWizardStep>[];
|
1483
1482
|
}
|
1484
1483
|
interface IWizardStep extends PropsWithChildren {
|
1485
|
-
figure?:
|
1486
|
-
controls?:
|
1484
|
+
figure?: React$1.ReactElement<IFigure>;
|
1485
|
+
controls?: React$1.ReactElement<IWizardControls>;
|
1487
1486
|
}
|
1488
1487
|
interface IWizardControls {
|
1489
|
-
back?:
|
1490
|
-
next?:
|
1488
|
+
back?: React$1.ReactElement<IButton>;
|
1489
|
+
next?: React$1.ReactElement<IButton>;
|
1491
1490
|
}
|
1492
1491
|
|
1493
1492
|
declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
@@ -1512,117 +1511,94 @@ interface HeadingArrangementBaseI {
|
|
1512
1511
|
title: string;
|
1513
1512
|
}
|
1514
1513
|
|
1515
|
-
interface
|
1516
|
-
|
1517
|
-
|
1514
|
+
interface ISearchFiltersSharedActions {
|
1515
|
+
submit: React$1.ReactElement<IButton>;
|
1516
|
+
clear: React$1.ReactElement<IButton>;
|
1518
1517
|
}
|
1519
|
-
interface
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
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 {
|
1530
1532
|
heading: string;
|
1533
|
+
}
|
1534
|
+
interface ISearchFiltersLabel {
|
1531
1535
|
label?: string;
|
1532
1536
|
description?: string;
|
1533
|
-
icon:
|
1534
|
-
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1535
|
-
activeFilters: number;
|
1536
|
-
submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
|
1537
|
-
clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
|
1537
|
+
icon: React$1.ReactElement<IIcon>;
|
1538
1538
|
}
|
1539
|
-
interface
|
1539
|
+
interface ISearchFiltersItem {
|
1540
1540
|
label: string;
|
1541
|
-
filter:
|
1542
|
-
}
|
1543
|
-
interface ISearchFiltersCompactActionSubmit {
|
1544
|
-
label: string;
|
1545
|
-
icon: React__default.ReactElement<IIcon>;
|
1546
|
-
onSubmit: () => void;
|
1547
|
-
}
|
1548
|
-
interface ISearchFiltersCompactActionClear {
|
1549
|
-
label: string;
|
1550
|
-
icon: React__default.ReactElement<IIcon>;
|
1551
|
-
onClear: () => void;
|
1541
|
+
filter: React$1.ReactNode;
|
1552
1542
|
}
|
1553
1543
|
|
1554
|
-
declare const
|
1544
|
+
declare const SearchFiltersLabel: ({ label, description, icon, }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
|
1555
1545
|
|
1556
|
-
declare const
|
1546
|
+
declare const SearchFiltersItem: (props: ISearchFiltersItem) => null;
|
1557
1547
|
|
1558
|
-
declare const
|
1548
|
+
declare const SearchFiltersOverlay: (props: ISearchFiltersOverlay) => null;
|
1559
1549
|
|
1560
|
-
declare const
|
1550
|
+
declare const SearchFiltersModal: (props: ISearchFiltersModal) => null;
|
1561
1551
|
|
1562
|
-
declare const
|
1552
|
+
declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear, modal, overlay, }: ISearchFilters) => react_jsx_runtime.JSX.Element;
|
1563
1553
|
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1568
|
-
|
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>;
|
1569
1562
|
}
|
1570
|
-
interface
|
1571
|
-
|
1572
|
-
location: React__default.ReactElement<ISearchInputsElement>;
|
1573
|
-
route: React__default.ReactElement<ISearchInputsElement>;
|
1574
|
-
name: React__default.ReactElement<ISearchInputsElement>;
|
1575
|
-
onSearch: () => void;
|
1576
|
-
onChanged: (active: "location" | "route" | "name") => void;
|
1563
|
+
interface ISearchInputs extends ISearchInputsShared {
|
1564
|
+
overlay: React$1.ReactElement<ISearchInputsOverlay>;
|
1577
1565
|
}
|
1578
|
-
interface
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
location: React__default.ReactElement<ISearchInputsElement>;
|
1583
|
-
route: React__default.ReactElement<ISearchInputsElement>;
|
1584
|
-
name: React__default.ReactElement<ISearchInputsElement>;
|
1585
|
-
close: React__default.ReactElement<CloseI>;
|
1586
|
-
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1587
|
-
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1588
|
-
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>;
|
1589
1570
|
}
|
1590
|
-
interface
|
1591
|
-
|
1592
|
-
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1593
|
-
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1594
|
-
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1595
|
-
input: React__default.ReactElement<ISearchInputsItem>;
|
1571
|
+
interface ISearchInputsOverlayContentActions {
|
1572
|
+
clear?: React$1.ReactElement<IButton>;
|
1596
1573
|
}
|
1597
|
-
interface
|
1598
|
-
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1599
|
-
input: React__default.ReactNode;
|
1600
|
-
}
|
1601
|
-
interface ISearchInputsCompactActionSubmit {
|
1574
|
+
interface ISearchInputsOverlayInput {
|
1602
1575
|
label: string;
|
1603
|
-
|
1604
|
-
onSubmit: () => void;
|
1576
|
+
description: string;
|
1605
1577
|
}
|
1606
|
-
interface
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
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;
|
1610
1588
|
}
|
1611
1589
|
interface ISearchInputsLabel {
|
1612
1590
|
label: string;
|
1613
1591
|
description?: string;
|
1614
|
-
figure:
|
1592
|
+
figure: React$1.ReactElement<IFigure>;
|
1615
1593
|
}
|
1616
1594
|
interface ISearchInputsLabelWithIcon {
|
1617
1595
|
label: string;
|
1618
1596
|
description?: string;
|
1619
|
-
icon:
|
1597
|
+
icon: React$1.ReactElement<IIcon>;
|
1620
1598
|
prominent: boolean;
|
1621
1599
|
}
|
1622
1600
|
|
1623
|
-
declare const
|
1624
|
-
|
1625
|
-
declare const SearchInputsFull: ({ location, route, name, onSearch, searchOn, }: ISearchInputsFull) => react_jsx_runtime.JSX.Element;
|
1601
|
+
declare const SearchInputsOverlay: (props: ISearchInputsOverlay) => null;
|
1626
1602
|
|
1627
1603
|
declare const SearchInputsElement: ({}: ISearchInputsElement) => null;
|
1628
1604
|
|
@@ -1630,22 +1606,18 @@ declare const SearchInputsLabel: ({ label, description, figure, }: ISearchInputs
|
|
1630
1606
|
|
1631
1607
|
declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent, }: ISearchInputsLabelWithIcon) => react_jsx_runtime.JSX.Element;
|
1632
1608
|
|
1633
|
-
declare const
|
1634
|
-
|
1635
|
-
declare const SearchInputsMobileActionClear: ({}: ISearchInputsCompactActionClear) => null;
|
1636
|
-
|
1637
|
-
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;
|
1638
1610
|
|
1639
1611
|
interface ICard {
|
1640
|
-
swipe?:
|
1641
|
-
badge:
|
1612
|
+
swipe?: React$1.ReactNode;
|
1613
|
+
badge: React$1.ReactElement<IBadge>;
|
1642
1614
|
title: string;
|
1643
1615
|
subtitle?: string;
|
1644
|
-
info?:
|
1645
|
-
labels:
|
1646
|
-
features?:
|
1647
|
-
action:
|
1648
|
-
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>;
|
1649
1621
|
detailsAction?: () => void;
|
1650
1622
|
detailsLabel?: string;
|
1651
1623
|
}
|
@@ -1653,36 +1625,36 @@ interface ICard {
|
|
1653
1625
|
declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
|
1654
1626
|
|
1655
1627
|
interface IMapCard {
|
1656
|
-
swipe?:
|
1657
|
-
badge:
|
1628
|
+
swipe?: React$1.ReactNode;
|
1629
|
+
badge: React$1.ReactElement<IBadge>;
|
1658
1630
|
title: string;
|
1659
|
-
info?:
|
1660
|
-
action:
|
1631
|
+
info?: React$1.ReactElement<ILabeledIcon>[] | React$1.ReactElement<ILabeledIcon>;
|
1632
|
+
action: React$1.ReactElement<IButton>;
|
1661
1633
|
}
|
1662
1634
|
|
1663
1635
|
declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
|
1664
1636
|
|
1665
1637
|
interface IListCard {
|
1666
|
-
badge:
|
1638
|
+
badge: React$1.ReactElement<IBadge>;
|
1667
1639
|
title: string;
|
1668
1640
|
subtitle?: string;
|
1669
|
-
info?:
|
1670
|
-
labels:
|
1671
|
-
features?:
|
1672
|
-
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>;
|
1673
1645
|
}
|
1674
1646
|
|
1675
1647
|
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions, }: IListCard) => react_jsx_runtime.JSX.Element;
|
1676
1648
|
|
1677
1649
|
interface IFlyoutArrangementSplit {
|
1678
|
-
top?:
|
1679
|
-
left:
|
1680
|
-
right:
|
1650
|
+
top?: React$1.ReactElement;
|
1651
|
+
left: React$1.ReactElement;
|
1652
|
+
right: React$1.ReactElement;
|
1681
1653
|
compactAt: number;
|
1682
1654
|
}
|
1683
1655
|
interface IFlyoutArrangementFull {
|
1684
|
-
top?:
|
1685
|
-
content:
|
1656
|
+
top?: React$1.ReactElement;
|
1657
|
+
content: React$1.ReactElement;
|
1686
1658
|
}
|
1687
1659
|
|
1688
1660
|
declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1694,25 +1666,25 @@ declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_
|
|
1694
1666
|
|
1695
1667
|
interface IHomeSectionCards {
|
1696
1668
|
title: string;
|
1697
|
-
cards:
|
1669
|
+
cards: React$1.ReactElement<IInfoCard>[];
|
1698
1670
|
}
|
1699
1671
|
|
1700
1672
|
declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
|
1701
1673
|
|
1702
1674
|
interface IHomeSectionFaq {
|
1703
1675
|
title: string;
|
1704
|
-
content:
|
1705
|
-
faqs:
|
1676
|
+
content: React$1.ReactElement;
|
1677
|
+
faqs: React$1.ReactElement<IFaq>[];
|
1706
1678
|
}
|
1707
1679
|
|
1708
1680
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1709
1681
|
|
1710
1682
|
interface IHomeSectionGettingStarted {
|
1711
1683
|
title: string;
|
1712
|
-
locationLink:
|
1713
|
-
routeLink:
|
1714
|
-
nameLink:
|
1715
|
-
onBoarding:
|
1684
|
+
locationLink: React$1.ReactElement;
|
1685
|
+
routeLink: React$1.ReactElement;
|
1686
|
+
nameLink: React$1.ReactElement;
|
1687
|
+
onBoarding: React$1.ReactElement;
|
1716
1688
|
imagePath: string;
|
1717
1689
|
}
|
1718
1690
|
|
@@ -1720,15 +1692,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
|
|
1720
1692
|
|
1721
1693
|
interface IDetailsSectionHeader {
|
1722
1694
|
title: string;
|
1723
|
-
badge:
|
1724
|
-
labels:
|
1725
|
-
actions:
|
1695
|
+
badge: React$1.ReactNode;
|
1696
|
+
labels: React$1.ReactNode;
|
1697
|
+
actions: React$1.ReactNode;
|
1726
1698
|
}
|
1727
1699
|
|
1728
1700
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1729
1701
|
|
1730
1702
|
interface IDetailsSectionBack {
|
1731
|
-
link:
|
1703
|
+
link: React$1.ReactElement<ILink>;
|
1732
1704
|
}
|
1733
1705
|
|
1734
1706
|
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
@@ -1740,19 +1712,19 @@ interface IDetailsSectionGallery {
|
|
1740
1712
|
declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
|
1741
1713
|
|
1742
1714
|
interface IDetailsSectionGeneral {
|
1743
|
-
info:
|
1715
|
+
info: React$1.ReactNode;
|
1744
1716
|
contactData: IContactData[];
|
1745
1717
|
}
|
1746
1718
|
interface IContactData {
|
1747
1719
|
title: string;
|
1748
|
-
data:
|
1720
|
+
data: React$1.ReactElement<ILabeledIcon>[];
|
1749
1721
|
}
|
1750
1722
|
|
1751
1723
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1752
1724
|
|
1753
1725
|
interface IDetailsSectionFacilities {
|
1754
1726
|
title: string;
|
1755
|
-
facilities:
|
1727
|
+
facilities: React$1.ReactElement<ITerm>[];
|
1756
1728
|
}
|
1757
1729
|
|
1758
1730
|
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
@@ -1760,25 +1732,25 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
|
|
1760
1732
|
interface IDetailsSectionPrice {
|
1761
1733
|
title: string;
|
1762
1734
|
prices: IPriceData[];
|
1763
|
-
info:
|
1735
|
+
info: React$1.ReactElement<IPlainText>;
|
1764
1736
|
}
|
1765
1737
|
interface IPriceData {
|
1766
1738
|
title: string;
|
1767
|
-
data:
|
1739
|
+
data: React$1.ReactElement<ITable>;
|
1768
1740
|
}
|
1769
1741
|
|
1770
1742
|
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1771
1743
|
|
1772
1744
|
interface IDetailsSectionVacation {
|
1773
1745
|
title: string;
|
1774
|
-
vacations:
|
1746
|
+
vacations: React$1.ReactElement<ITable>;
|
1775
1747
|
}
|
1776
1748
|
|
1777
1749
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1778
1750
|
|
1779
1751
|
interface IDetailsSectionHours {
|
1780
1752
|
title: string;
|
1781
|
-
hours:
|
1753
|
+
hours: React$1.ReactElement<ITable>;
|
1782
1754
|
info?: string;
|
1783
1755
|
}
|
1784
1756
|
|
@@ -1806,20 +1778,20 @@ declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_ru
|
|
1806
1778
|
interface IFavoritesSectionHeader {
|
1807
1779
|
title: string;
|
1808
1780
|
description: string;
|
1809
|
-
figure:
|
1781
|
+
figure: React$1.ReactElement<IFigure>;
|
1810
1782
|
}
|
1811
1783
|
|
1812
1784
|
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1813
1785
|
|
1814
1786
|
interface IFavoritesSectionEmpty {
|
1815
1787
|
description: string;
|
1816
|
-
action:
|
1788
|
+
action: React$1.ReactElement<IButton>;
|
1817
1789
|
}
|
1818
1790
|
|
1819
1791
|
declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
|
1820
1792
|
|
1821
1793
|
interface IFavoritesSectionList {
|
1822
|
-
cards:
|
1794
|
+
cards: React$1.ReactElement<ICard>[];
|
1823
1795
|
}
|
1824
1796
|
|
1825
1797
|
declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
|
@@ -1827,29 +1799,29 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
|
|
1827
1799
|
interface IFavoritesSectionConfirm {
|
1828
1800
|
title: string;
|
1829
1801
|
description: string;
|
1830
|
-
location:
|
1831
|
-
actions:
|
1802
|
+
location: React$1.ReactElement<IColoredBox>;
|
1803
|
+
actions: React$1.ReactElement<IButton>[];
|
1832
1804
|
}
|
1833
1805
|
|
1834
1806
|
declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
|
1835
1807
|
|
1836
1808
|
interface IOnboardingArrangementIntroduction {
|
1837
|
-
top:
|
1838
|
-
left:
|
1839
|
-
right?:
|
1840
|
-
action?:
|
1841
|
-
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;
|
1842
1814
|
}
|
1843
1815
|
interface IOnboardingArrangementStep {
|
1844
|
-
top:
|
1845
|
-
left:
|
1846
|
-
right?:
|
1847
|
-
image?:
|
1816
|
+
top: React$1.ReactElement;
|
1817
|
+
left: React$1.ReactElement;
|
1818
|
+
right?: React$1.ReactElement;
|
1819
|
+
image?: React$1.ReactElement;
|
1848
1820
|
}
|
1849
1821
|
interface IOnboardingArrangementInformation {
|
1850
|
-
top:
|
1851
|
-
left:
|
1852
|
-
image?:
|
1822
|
+
top: React$1.ReactElement;
|
1823
|
+
left: React$1.ReactElement;
|
1824
|
+
image?: React$1.ReactElement;
|
1853
1825
|
}
|
1854
1826
|
|
1855
1827
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
@@ -1857,41 +1829,41 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
|
|
1857
1829
|
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
1858
1830
|
|
1859
1831
|
interface ISearchSectionFilters {
|
1860
|
-
primary:
|
1861
|
-
secondary:
|
1862
|
-
secondary_active:
|
1832
|
+
primary: React$1.ReactElement;
|
1833
|
+
secondary: React$1.ReactElement | false;
|
1834
|
+
secondary_active: React$1.ReactElement<IFilterTag>[];
|
1863
1835
|
}
|
1864
1836
|
|
1865
1837
|
declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
|
1866
1838
|
|
1867
1839
|
interface IHomeSectionLeftSplit {
|
1868
1840
|
title: string;
|
1869
|
-
content:
|
1841
|
+
content: React$1.ReactElement;
|
1870
1842
|
imagePath: string;
|
1871
1843
|
}
|
1872
1844
|
|
1873
1845
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
1874
1846
|
|
1875
1847
|
interface ISharedSectionHeader {
|
1876
|
-
top?:
|
1877
|
-
bottom:
|
1878
|
-
filters?:
|
1848
|
+
top?: React$1.ReactElement;
|
1849
|
+
bottom: React$1.ReactElement;
|
1850
|
+
filters?: React$1.ReactElement;
|
1879
1851
|
}
|
1880
1852
|
|
1881
1853
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
1882
1854
|
|
1883
1855
|
interface ISharedSectionFooter {
|
1884
|
-
content:
|
1856
|
+
content: React$1.ReactElement;
|
1885
1857
|
}
|
1886
1858
|
|
1887
1859
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
1888
1860
|
|
1889
1861
|
interface ISearchSectionResults {
|
1890
|
-
header?:
|
1891
|
-
content:
|
1862
|
+
header?: React$1.ReactElement;
|
1863
|
+
content: React$1.ReactElement;
|
1892
1864
|
}
|
1893
1865
|
|
1894
|
-
declare const SearchSectionResults:
|
1866
|
+
declare const SearchSectionResults: React$1.ForwardRefExoticComponent<ISearchSectionResults & React$1.RefAttributes<HTMLDivElement>>;
|
1895
1867
|
|
1896
1868
|
interface ISearchSectionEmpty {
|
1897
1869
|
title: string;
|
@@ -1904,11 +1876,11 @@ interface IScrollableContentProps {
|
|
1904
1876
|
scrollToTop?: () => void;
|
1905
1877
|
}
|
1906
1878
|
interface ISearchSectionResultsWithMap {
|
1907
|
-
content:
|
1908
|
-
map?:
|
1879
|
+
content: React$1.ReactElement<IScrollableContentProps>;
|
1880
|
+
map?: React$1.ReactElement;
|
1909
1881
|
}
|
1910
1882
|
|
1911
|
-
declare const SearchSectionResultsWithMap:
|
1883
|
+
declare const SearchSectionResultsWithMap: React$1.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React$1.RefAttributes<HTMLDivElement>>;
|
1912
1884
|
|
1913
1885
|
declare enum AccordeonContext {
|
1914
1886
|
OPEN = "OPEN",
|
@@ -1916,7 +1888,7 @@ declare enum AccordeonContext {
|
|
1916
1888
|
}
|
1917
1889
|
|
1918
1890
|
interface IAccordeonBase {
|
1919
|
-
children?:
|
1891
|
+
children?: React$1.ReactNode;
|
1920
1892
|
}
|
1921
1893
|
interface IAccordeon extends IAccordeonBase {
|
1922
1894
|
id?: string;
|
@@ -1939,7 +1911,7 @@ interface IBackdrop {
|
|
1939
1911
|
onClick?: () => void;
|
1940
1912
|
}
|
1941
1913
|
|
1942
|
-
declare const Backdrop: ({ onClick }: IBackdrop) =>
|
1914
|
+
declare const Backdrop: ({ onClick }: IBackdrop) => React$1.ReactPortal;
|
1943
1915
|
|
1944
1916
|
interface IBlur extends PropsWithChildren {
|
1945
1917
|
}
|
@@ -1947,10 +1919,10 @@ interface IBlur extends PropsWithChildren {
|
|
1947
1919
|
declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
|
1948
1920
|
|
1949
1921
|
interface ICollapsable {
|
1950
|
-
content:
|
1951
|
-
additional:
|
1952
|
-
withContentExpand:
|
1953
|
-
withContentCollapse?:
|
1922
|
+
content: React$1.ReactNode;
|
1923
|
+
additional: React$1.ReactNode;
|
1924
|
+
withContentExpand: React$1.ReactNode;
|
1925
|
+
withContentCollapse?: React$1.ReactNode;
|
1954
1926
|
}
|
1955
1927
|
|
1956
1928
|
declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
|
@@ -1963,11 +1935,11 @@ declare enum DrawerSize {
|
|
1963
1935
|
}
|
1964
1936
|
|
1965
1937
|
interface IDrawer {
|
1966
|
-
children?:
|
1938
|
+
children?: React$1.ReactNode;
|
1967
1939
|
size?: DrawerSize;
|
1968
1940
|
}
|
1969
1941
|
|
1970
|
-
declare const Drawer: ({ children, size }: IDrawer) =>
|
1942
|
+
declare const Drawer: ({ children, size }: IDrawer) => React$1.ReactPortal;
|
1971
1943
|
|
1972
1944
|
interface GridProps {
|
1973
1945
|
children: React.ReactNode;
|
@@ -2005,20 +1977,20 @@ declare enum ModalSize {
|
|
2005
1977
|
}
|
2006
1978
|
|
2007
1979
|
interface IModal {
|
2008
|
-
children?:
|
1980
|
+
children?: React$1.ReactNode;
|
2009
1981
|
title?: string;
|
2010
1982
|
size: ModalSize;
|
2011
1983
|
}
|
2012
1984
|
|
2013
|
-
declare const Modal: ({ children, size, title }: IModal) =>
|
1985
|
+
declare const Modal: ({ children, size, title }: IModal) => React$1.ReactPortal;
|
2014
1986
|
|
2015
1987
|
interface IOverlay {
|
2016
|
-
children?:
|
2017
|
-
header?:
|
2018
|
-
close:
|
1988
|
+
children?: React$1.ReactNode;
|
1989
|
+
header?: React$1.ReactNode;
|
1990
|
+
close: React$1.ReactNode;
|
2019
1991
|
}
|
2020
1992
|
|
2021
|
-
declare const Overlay: ({ children, header, close }: IOverlay) =>
|
1993
|
+
declare const Overlay: ({ children, header, close }: IOverlay) => React$1.ReactPortal;
|
2022
1994
|
|
2023
1995
|
declare enum WaveType {
|
2024
1996
|
ONE = "ONE",
|
@@ -2038,13 +2010,13 @@ interface IWave {
|
|
2038
2010
|
|
2039
2011
|
interface ISurface extends PropsWithChildren {
|
2040
2012
|
background: string;
|
2041
|
-
withWave?:
|
2013
|
+
withWave?: React$1.ReactElement<IWave>;
|
2042
2014
|
}
|
2043
2015
|
|
2044
2016
|
declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
|
2045
2017
|
|
2046
2018
|
interface ISwipe {
|
2047
|
-
children?:
|
2019
|
+
children?: React$1.ReactNode;
|
2048
2020
|
}
|
2049
2021
|
interface ISwipeable {
|
2050
2022
|
url: string;
|
@@ -2054,8 +2026,8 @@ interface ISwipeable {
|
|
2054
2026
|
declare global {
|
2055
2027
|
namespace JSX {
|
2056
2028
|
interface IntrinsicElements {
|
2057
|
-
"swiper-container":
|
2058
|
-
"swiper-slide":
|
2029
|
+
"swiper-container": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2030
|
+
"swiper-slide": React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2059
2031
|
}
|
2060
2032
|
}
|
2061
2033
|
}
|
@@ -2065,50 +2037,50 @@ declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.E
|
|
2065
2037
|
declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
|
2066
2038
|
|
2067
2039
|
interface IBasicPage {
|
2068
|
-
header:
|
2069
|
-
content:
|
2070
|
-
footer:
|
2040
|
+
header: React$1.ReactElement;
|
2041
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2042
|
+
footer: React$1.ReactElement;
|
2071
2043
|
}
|
2072
2044
|
|
2073
2045
|
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
2074
2046
|
|
2075
2047
|
interface IDetailsPage {
|
2076
|
-
header:
|
2077
|
-
content:
|
2078
|
-
footer:
|
2048
|
+
header: React$1.ReactElement;
|
2049
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2050
|
+
footer: React$1.ReactElement;
|
2079
2051
|
}
|
2080
2052
|
|
2081
2053
|
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
2082
2054
|
|
2083
2055
|
interface ISearchPage {
|
2084
|
-
header:
|
2085
|
-
content:
|
2086
|
-
footer:
|
2056
|
+
header: React$1.ReactElement;
|
2057
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2058
|
+
footer: React$1.ReactElement;
|
2087
2059
|
}
|
2088
2060
|
|
2089
2061
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
2090
2062
|
|
2091
2063
|
interface IEmptySearchPage {
|
2092
|
-
header:
|
2093
|
-
content:
|
2094
|
-
footer:
|
2064
|
+
header: React$1.ReactElement;
|
2065
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2066
|
+
footer: React$1.ReactElement;
|
2095
2067
|
}
|
2096
2068
|
|
2097
2069
|
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
2098
2070
|
|
2099
2071
|
interface ISearchWithMapPage {
|
2100
|
-
header:
|
2101
|
-
content:
|
2102
|
-
footer:
|
2072
|
+
header: React$1.ReactElement;
|
2073
|
+
content: React$1.ReactElement | React$1.ReactElement[];
|
2074
|
+
footer: React$1.ReactElement;
|
2103
2075
|
}
|
2104
2076
|
|
2105
2077
|
declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
|
2106
2078
|
|
2107
2079
|
interface BackdropContextType {
|
2108
2080
|
isBackdropVisible: boolean;
|
2109
|
-
setIsBackdropVisible:
|
2081
|
+
setIsBackdropVisible: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2110
2082
|
}
|
2111
|
-
declare const BackdropContext:
|
2083
|
+
declare const BackdropContext: React$1.Context<BackdropContextType>;
|
2112
2084
|
interface IBackdropProvider extends PropsWithChildren {
|
2113
2085
|
onClick?: () => void;
|
2114
2086
|
}
|
@@ -2116,31 +2088,31 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
|
|
2116
2088
|
|
2117
2089
|
interface BlurContextType {
|
2118
2090
|
isBlurred: boolean;
|
2119
|
-
setIsBlurred:
|
2091
|
+
setIsBlurred: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2120
2092
|
}
|
2121
|
-
declare const BlurContext:
|
2093
|
+
declare const BlurContext: React$1.Context<BlurContextType>;
|
2122
2094
|
interface IBlurProvider extends PropsWithChildren {
|
2123
2095
|
}
|
2124
|
-
declare const BlurProvider:
|
2096
|
+
declare const BlurProvider: React$1.FC<PropsWithChildren<{}>>;
|
2125
2097
|
|
2126
2098
|
interface DrawerContextType {
|
2127
2099
|
isOpen: boolean;
|
2128
|
-
setIsOpen:
|
2100
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2129
2101
|
}
|
2130
|
-
declare const DrawerContext:
|
2102
|
+
declare const DrawerContext: React$1.Context<DrawerContextType>;
|
2131
2103
|
interface IDrawerProvider extends PropsWithChildren {
|
2132
|
-
drawer?:
|
2104
|
+
drawer?: React$1.ReactNode;
|
2133
2105
|
size?: DrawerSize;
|
2134
2106
|
}
|
2135
2107
|
declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
2136
2108
|
|
2137
2109
|
interface ModalContextType {
|
2138
2110
|
isOpen: boolean;
|
2139
|
-
setIsOpen:
|
2111
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2140
2112
|
}
|
2141
|
-
declare const ModalContext:
|
2113
|
+
declare const ModalContext: React$1.Context<ModalContextType>;
|
2142
2114
|
interface IModalProvider extends PropsWithChildren {
|
2143
|
-
modal?:
|
2115
|
+
modal?: React$1.ReactNode;
|
2144
2116
|
size?: ModalSize;
|
2145
2117
|
title?: string;
|
2146
2118
|
}
|
@@ -2148,23 +2120,23 @@ declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider)
|
|
2148
2120
|
|
2149
2121
|
interface OverlayContextType {
|
2150
2122
|
isOpen: boolean;
|
2151
|
-
setIsOpen:
|
2123
|
+
setIsOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2152
2124
|
headerHeight: number;
|
2153
|
-
setHeaderHeight:
|
2125
|
+
setHeaderHeight: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2154
2126
|
}
|
2155
|
-
declare const OverlayContext:
|
2127
|
+
declare const OverlayContext: React$1.Context<OverlayContextType>;
|
2156
2128
|
interface IOverlayProvider extends PropsWithChildren {
|
2157
|
-
overlay?:
|
2158
|
-
header?:
|
2159
|
-
close?:
|
2129
|
+
overlay?: React$1.ReactNode;
|
2130
|
+
header?: React$1.ReactNode;
|
2131
|
+
close?: React$1.ReactNode;
|
2160
2132
|
}
|
2161
2133
|
declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2162
2134
|
|
2163
2135
|
interface ProcessingContextType {
|
2164
2136
|
isDone: boolean;
|
2165
|
-
setIsDone:
|
2137
|
+
setIsDone: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2166
2138
|
}
|
2167
|
-
declare const ProcessingContext:
|
2139
|
+
declare const ProcessingContext: React$1.Context<ProcessingContextType>;
|
2168
2140
|
declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2169
2141
|
|
2170
2142
|
declare const useIsProcessing: () => boolean;
|
@@ -2181,19 +2153,19 @@ interface GooglePlacesI {
|
|
2181
2153
|
autocomplete: google.maps.places.AutocompleteService;
|
2182
2154
|
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
2183
2155
|
}
|
2184
|
-
declare const GooglePlacesContext:
|
2156
|
+
declare const GooglePlacesContext: React$1.Context<AsyncResult<GooglePlacesI>>;
|
2185
2157
|
declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2186
2158
|
|
2187
|
-
declare const GoogleGeocoderContext:
|
2159
|
+
declare const GoogleGeocoderContext: React$1.Context<AsyncResult<google.maps.Geocoder>>;
|
2188
2160
|
declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2189
2161
|
|
2190
|
-
declare const GoogleDirectionsServiceContext:
|
2162
|
+
declare const GoogleDirectionsServiceContext: React$1.Context<AsyncResult<google.maps.DirectionsService>>;
|
2191
2163
|
declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2192
2164
|
|
2193
|
-
declare const GoogleDirectionsRendererContext:
|
2165
|
+
declare const GoogleDirectionsRendererContext: React$1.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
2194
2166
|
declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2195
2167
|
|
2196
|
-
declare const GoogleGeometryContext:
|
2168
|
+
declare const GoogleGeometryContext: React$1.Context<AsyncResult<google.maps.GeometryLibrary>>;
|
2197
2169
|
declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2198
2170
|
|
2199
2171
|
declare const useIsGoogleProcessing: () => boolean;
|
@@ -2212,9 +2184,9 @@ declare const useGoogleMapId: () => string;
|
|
2212
2184
|
|
2213
2185
|
declare const useGoogleApiKey: () => string;
|
2214
2186
|
|
2215
|
-
declare const ThemeModeContext:
|
2187
|
+
declare const ThemeModeContext: React$1.Context<{
|
2216
2188
|
themeMode: ThemeMode;
|
2217
|
-
setThemeMode:
|
2189
|
+
setThemeMode: React$1.Dispatch<React$1.SetStateAction<ThemeMode>>;
|
2218
2190
|
}>;
|
2219
2191
|
interface PropsForThemeModeProvider extends PropsWithChildren {
|
2220
2192
|
fromBrowser: boolean;
|
@@ -2223,18 +2195,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
|
2223
2195
|
|
2224
2196
|
interface SearchContextType {
|
2225
2197
|
active: number;
|
2226
|
-
setActive:
|
2198
|
+
setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2227
2199
|
}
|
2228
|
-
declare const SearchContext:
|
2200
|
+
declare const SearchContext: React$1.Context<SearchContextType>;
|
2229
2201
|
interface ISearchProvider extends PropsWithChildren {
|
2230
2202
|
}
|
2231
2203
|
declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
|
2232
2204
|
|
2233
2205
|
interface WizardContextType {
|
2234
2206
|
active: number;
|
2235
|
-
setActive:
|
2207
|
+
setActive: React$1.Dispatch<React$1.SetStateAction<number>>;
|
2236
2208
|
}
|
2237
|
-
declare const WizardContext:
|
2209
|
+
declare const WizardContext: React$1.Context<WizardContextType>;
|
2238
2210
|
interface IWizardProvider extends PropsWithChildren {
|
2239
2211
|
onClick?: () => void;
|
2240
2212
|
}
|
@@ -2242,20 +2214,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
|
|
2242
2214
|
|
2243
2215
|
interface WizardStepContextType {
|
2244
2216
|
complete: boolean;
|
2245
|
-
setComplete:
|
2217
|
+
setComplete: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
2246
2218
|
}
|
2247
|
-
declare const WizardStepContext:
|
2219
|
+
declare const WizardStepContext: React$1.Context<WizardStepContextType>;
|
2248
2220
|
interface IWizardStepProvider extends PropsWithChildren {
|
2249
2221
|
}
|
2250
2222
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
2251
2223
|
|
2252
2224
|
interface InlineSelectOptionI {
|
2253
2225
|
label: string;
|
2254
|
-
withIcon?:
|
2226
|
+
withIcon?: React$1.ReactElement<IIcon>;
|
2255
2227
|
}
|
2256
2228
|
interface InlineSelectOptionIconI {
|
2257
2229
|
label: string;
|
2258
|
-
withIcon:
|
2230
|
+
withIcon: React$1.ReactElement<IIcon>;
|
2259
2231
|
}
|
2260
2232
|
|
2261
2233
|
declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
|
@@ -2273,4 +2245,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2273
2245
|
|
2274
2246
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2275
2247
|
|
2276
|
-
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
|
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 };
|