@tactics/lokaal-loket 0.0.295 → 0.0.297
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +1074 -954
- package/build/index.d.cts +368 -336
- package/build/index.d.ts +368 -336
- package/build/index.js +773 -655
- package/package.json +19 -17
package/build/index.d.cts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import React$1
|
2
|
+
import * as React$1 from 'react';
|
3
|
+
import React__default, { Ref, PropsWithChildren, ReactElement, ReactNode, FC } from 'react';
|
3
4
|
import { TypographyFontKey, TypographyFontsKey, TypographyFontWeightKey, SpacingKey, Color, ColorVariant } from '@tactics/tacky/contract';
|
4
5
|
export { Color, ColorVariant, Radius, Spacing, ThemeConfigI, ThemeI, ThemeVariantsI, TypographyFont, TypographyFonts } from '@tactics/tacky/contract';
|
5
6
|
import { Feature as Feature$1, Point, LineString } from 'geojson';
|
@@ -45,9 +46,9 @@ interface IToggle {
|
|
45
46
|
declare const Toggle: ({ label, name, value, ariaLabel, checked, defaultChecked, onChange }: IToggle) => react_jsx_runtime.JSX.Element;
|
46
47
|
|
47
48
|
interface OpeninghoursI {
|
48
|
-
hours:
|
49
|
-
days:
|
50
|
-
toggle?:
|
49
|
+
hours: React__default.ReactElement<IOpeningHoursSelect>;
|
50
|
+
days: React__default.ReactElement<IDaySelect>;
|
51
|
+
toggle?: React__default.ReactElement<IToggle>;
|
51
52
|
}
|
52
53
|
|
53
54
|
declare const Openinghours: ({ hours, days, toggle }: OpeninghoursI) => react_jsx_runtime.JSX.Element;
|
@@ -117,7 +118,7 @@ declare enum IconType {
|
|
117
118
|
}
|
118
119
|
|
119
120
|
interface IScaledIcon {
|
120
|
-
icon:
|
121
|
+
icon: React__default.ReactElement<IIcon>;
|
121
122
|
size: IconSize;
|
122
123
|
}
|
123
124
|
interface IIcon {
|
@@ -127,7 +128,7 @@ interface IIcon {
|
|
127
128
|
}
|
128
129
|
|
129
130
|
interface ILabeledIcon {
|
130
|
-
withIconBefore:
|
131
|
+
withIconBefore: React__default.ReactElement<IIcon>;
|
131
132
|
label: string;
|
132
133
|
}
|
133
134
|
|
@@ -250,7 +251,7 @@ interface IFigure {
|
|
250
251
|
screenReaderText: string;
|
251
252
|
}
|
252
253
|
interface IScaledFigure {
|
253
|
-
figure:
|
254
|
+
figure: React__default.ReactElement<IFigure>;
|
254
255
|
size: FigureSize;
|
255
256
|
}
|
256
257
|
|
@@ -264,7 +265,7 @@ declare enum FramePadding {
|
|
264
265
|
}
|
265
266
|
|
266
267
|
interface IFrame {
|
267
|
-
around:
|
268
|
+
around: React__default.ReactElement<IIcon | IFigure>;
|
268
269
|
split?: string | false;
|
269
270
|
background?: string;
|
270
271
|
padding?: FramePadding;
|
@@ -273,7 +274,7 @@ interface IFrame {
|
|
273
274
|
|
274
275
|
interface IBadge {
|
275
276
|
type: BadgeType;
|
276
|
-
figure:
|
277
|
+
figure: React__default.ReactElement<IFigure>;
|
277
278
|
size?: BadgeSize;
|
278
279
|
}
|
279
280
|
|
@@ -308,7 +309,7 @@ interface ILogoBase {
|
|
308
309
|
ariaLabel: string;
|
309
310
|
alt: string;
|
310
311
|
size: LogoSize;
|
311
|
-
children?:
|
312
|
+
children?: React__default.ReactNode | React__default.ReactNode[];
|
312
313
|
}
|
313
314
|
interface ILogoLoad extends ILogoBase {
|
314
315
|
srcset?: ILogoSrc;
|
@@ -318,11 +319,12 @@ interface ILogo extends ILogoLoad {
|
|
318
319
|
|
319
320
|
interface IBrand {
|
320
321
|
ariaLabel: string;
|
321
|
-
logo:
|
322
|
+
logo: React__default.ReactElement<ILogo>;
|
322
323
|
name: string;
|
324
|
+
onClick?: () => void;
|
323
325
|
}
|
324
326
|
|
325
|
-
declare const Brand: ({ logo, name, ariaLabel }: IBrand) => react_jsx_runtime.JSX.Element;
|
327
|
+
declare const Brand: ({ logo, name, ariaLabel, onClick }: IBrand) => react_jsx_runtime.JSX.Element;
|
326
328
|
|
327
329
|
declare enum LinkContext {
|
328
330
|
STANDARD = "STANDARD",
|
@@ -338,19 +340,19 @@ interface ILink {
|
|
338
340
|
id: string;
|
339
341
|
title: string;
|
340
342
|
href: string;
|
341
|
-
onClick?:
|
343
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
342
344
|
ariaLabel: string;
|
343
345
|
children?: string;
|
344
346
|
context?: LinkContext;
|
345
|
-
withIconBefore?:
|
346
|
-
withIconAfter?:
|
347
|
-
target?:
|
347
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
348
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
349
|
+
target?: React__default.HTMLAttributeAnchorTarget;
|
348
350
|
}
|
349
351
|
|
350
352
|
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
351
353
|
|
352
354
|
interface IBreadcrumb {
|
353
|
-
crumbs:
|
355
|
+
crumbs: React__default.ReactElement<ILink>[];
|
354
356
|
currentPage: string;
|
355
357
|
}
|
356
358
|
|
@@ -372,7 +374,7 @@ declare enum ButtonType {
|
|
372
374
|
LINK = "LINK"
|
373
375
|
}
|
374
376
|
|
375
|
-
type ClickHandler$1 =
|
377
|
+
type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement> & React__default.KeyboardEventHandler<HTMLAnchorElement> & React__default.KeyboardEventHandler<HTMLButtonElement>;
|
376
378
|
interface IButtonMinimal {
|
377
379
|
id?: string;
|
378
380
|
title: string;
|
@@ -386,14 +388,14 @@ interface IButton {
|
|
386
388
|
ariaLabel: string;
|
387
389
|
onClick?: ClickHandler$1;
|
388
390
|
children?: string;
|
389
|
-
withIconBefore?:
|
390
|
-
withIconAfter?:
|
391
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
392
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
391
393
|
type?: ButtonType;
|
392
394
|
context?: ButtonContext;
|
393
395
|
href?: string;
|
394
396
|
}
|
395
397
|
|
396
|
-
declare const Button:
|
398
|
+
declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
|
397
399
|
|
398
400
|
declare enum CheckboxContext {
|
399
401
|
STANDARD = "STANDARD",
|
@@ -402,7 +404,7 @@ declare enum CheckboxContext {
|
|
402
404
|
}
|
403
405
|
|
404
406
|
interface ICheckboxBase {
|
405
|
-
onChange?: (e:
|
407
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
406
408
|
value: string;
|
407
409
|
ariaLabel?: string;
|
408
410
|
label: string;
|
@@ -413,8 +415,15 @@ interface ICheckboxBase {
|
|
413
415
|
interface ICheckbox extends ICheckboxBase {
|
414
416
|
context?: CheckboxContext;
|
415
417
|
}
|
418
|
+
interface ICheckboxGroup {
|
419
|
+
direction?: "row" | "column";
|
420
|
+
children: React__default.ReactNode;
|
421
|
+
}
|
416
422
|
|
417
|
-
declare const Checkbox:
|
423
|
+
declare const Checkbox: {
|
424
|
+
({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: ICheckbox): react_jsx_runtime.JSX.Element;
|
425
|
+
Group: ({ direction, children }: ICheckboxGroup) => react_jsx_runtime.JSX.Element;
|
426
|
+
};
|
418
427
|
|
419
428
|
declare enum ChoiceContext {
|
420
429
|
STANDARD = "STANDARD",
|
@@ -423,14 +432,14 @@ declare enum ChoiceContext {
|
|
423
432
|
}
|
424
433
|
|
425
434
|
interface IChoiceBase {
|
426
|
-
onChange?: (e:
|
435
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
427
436
|
value: string;
|
428
437
|
ariaLabel?: string;
|
429
438
|
label: string;
|
430
439
|
name: string;
|
431
440
|
checked?: boolean;
|
432
441
|
defaultChecked?: boolean;
|
433
|
-
icon:
|
442
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
434
443
|
}
|
435
444
|
interface IChoice extends IChoiceBase {
|
436
445
|
context?: ChoiceContext;
|
@@ -439,7 +448,7 @@ interface IChoice extends IChoiceBase {
|
|
439
448
|
declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon }: IChoice) => react_jsx_runtime.JSX.Element;
|
440
449
|
|
441
450
|
interface IFeature {
|
442
|
-
withIconBefore?:
|
451
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
443
452
|
label: string;
|
444
453
|
}
|
445
454
|
|
@@ -488,8 +497,8 @@ declare enum InformationBackground {
|
|
488
497
|
}
|
489
498
|
|
490
499
|
interface IInformation {
|
491
|
-
text:
|
492
|
-
frame?:
|
500
|
+
text: React__default.ReactElement<IPlainText>;
|
501
|
+
frame?: React__default.ReactElement<IFrame>;
|
493
502
|
variant?: InformationVariant;
|
494
503
|
background?: InformationBackground;
|
495
504
|
}
|
@@ -510,15 +519,15 @@ declare enum HTMLInputType {
|
|
510
519
|
|
511
520
|
interface InputChangeEvent {
|
512
521
|
value: string;
|
513
|
-
event:
|
522
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
514
523
|
}
|
515
524
|
interface InputBlurEvent {
|
516
525
|
value: string;
|
517
|
-
event:
|
526
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
518
527
|
}
|
519
528
|
interface InputFocusEvent {
|
520
529
|
value: string;
|
521
|
-
event:
|
530
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
522
531
|
}
|
523
532
|
interface IInputBase {
|
524
533
|
htmlType?: HTMLInputType;
|
@@ -530,8 +539,8 @@ interface IInputBase {
|
|
530
539
|
placeholder?: string;
|
531
540
|
ariaLabel?: string;
|
532
541
|
name: string;
|
533
|
-
withIconBefore?:
|
534
|
-
withIconAfter?:
|
542
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
543
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
535
544
|
}
|
536
545
|
interface IInput extends IInputBase {
|
537
546
|
context?: InputContext;
|
@@ -558,12 +567,12 @@ declare enum ListType {
|
|
558
567
|
|
559
568
|
interface IListBase {
|
560
569
|
type?: ListType;
|
561
|
-
children?:
|
570
|
+
children?: React__default.ReactNode;
|
562
571
|
}
|
563
572
|
interface IList extends IListBase {
|
564
573
|
}
|
565
574
|
interface IListItemBase {
|
566
|
-
children?:
|
575
|
+
children?: React__default.ReactNode;
|
567
576
|
}
|
568
577
|
interface ListItemThemeableProps extends IListItemBase {
|
569
578
|
}
|
@@ -588,14 +597,14 @@ declare enum PickContext {
|
|
588
597
|
}
|
589
598
|
|
590
599
|
interface IPickBase {
|
591
|
-
onChange?: (e:
|
600
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
592
601
|
value: string;
|
593
602
|
ariaLabel?: string;
|
594
603
|
label: string;
|
595
604
|
name: string;
|
596
605
|
checked?: boolean;
|
597
606
|
defaultChecked?: boolean;
|
598
|
-
icon:
|
607
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
599
608
|
}
|
600
609
|
interface IPick extends IPickBase {
|
601
610
|
context?: PickContext;
|
@@ -605,7 +614,7 @@ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked
|
|
605
614
|
|
606
615
|
interface IPill {
|
607
616
|
label: string;
|
608
|
-
withIconBefore?:
|
617
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
609
618
|
}
|
610
619
|
|
611
620
|
declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
|
@@ -619,7 +628,7 @@ declare enum RadioContext {
|
|
619
628
|
}
|
620
629
|
|
621
630
|
interface IRadioBase {
|
622
|
-
onChange?: (e:
|
631
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
623
632
|
value: string;
|
624
633
|
ariaLabel?: string;
|
625
634
|
label: string;
|
@@ -630,13 +639,20 @@ interface IRadioBase {
|
|
630
639
|
interface IRadio extends IRadioBase {
|
631
640
|
context?: RadioContext;
|
632
641
|
}
|
642
|
+
interface IRadioGroup {
|
643
|
+
direction?: "row" | "column";
|
644
|
+
children: React__default.ReactNode;
|
645
|
+
}
|
633
646
|
|
634
|
-
declare const Radio:
|
647
|
+
declare const Radio: {
|
648
|
+
({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked }: IRadio): react_jsx_runtime.JSX.Element;
|
649
|
+
Group: ({ direction, children }: IRadioGroup) => react_jsx_runtime.JSX.Element;
|
650
|
+
};
|
635
651
|
|
636
652
|
interface IRecord {
|
637
|
-
withIconBefore?:
|
653
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
638
654
|
label: string;
|
639
|
-
value: string |
|
655
|
+
value: string | React__default.ReactNode;
|
640
656
|
}
|
641
657
|
|
642
658
|
declare const Record$1: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
@@ -661,7 +677,7 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
|
|
661
677
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
662
678
|
|
663
679
|
interface ITerm {
|
664
|
-
figure:
|
680
|
+
figure: React__default.ReactElement<IFigure>;
|
665
681
|
label: string;
|
666
682
|
description?: string;
|
667
683
|
}
|
@@ -698,14 +714,14 @@ declare enum BigChoiceContext {
|
|
698
714
|
}
|
699
715
|
|
700
716
|
interface IBigChoiceBase {
|
701
|
-
onChange?: (e:
|
717
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
702
718
|
value: string;
|
703
719
|
ariaLabel?: string;
|
704
720
|
label: string;
|
705
721
|
name: string;
|
706
722
|
checked?: boolean;
|
707
723
|
defaultChecked?: boolean;
|
708
|
-
icon:
|
724
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
709
725
|
}
|
710
726
|
interface IBigChoice extends IBigChoiceBase {
|
711
727
|
context?: BigChoiceContext;
|
@@ -720,14 +736,14 @@ declare enum BigPickContext {
|
|
720
736
|
}
|
721
737
|
|
722
738
|
interface IBigPickBase {
|
723
|
-
onChange?: (e:
|
739
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
724
740
|
value: string;
|
725
741
|
ariaLabel?: string;
|
726
742
|
label: string;
|
727
743
|
name: string;
|
728
744
|
checked?: boolean;
|
729
745
|
defaultChecked?: boolean;
|
730
|
-
icon:
|
746
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
731
747
|
}
|
732
748
|
interface IBigPick extends IBigPickBase {
|
733
749
|
context?: BigPickContext;
|
@@ -748,14 +764,14 @@ interface SelectFocusEvent<T> extends SelectEvent<T> {
|
|
748
764
|
interface InlineSelectI<T> {
|
749
765
|
options: T[];
|
750
766
|
defaultIndex: number;
|
751
|
-
optionToDisplay: (option: T) =>
|
752
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
767
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
768
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
753
769
|
onChange?: (e: SelectChangeEvent<T>) => void;
|
754
770
|
}
|
755
771
|
|
756
772
|
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
757
773
|
|
758
|
-
type SetState<T> =
|
774
|
+
type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
|
759
775
|
interface AutoCompleteContextType<T> {
|
760
776
|
input: string;
|
761
777
|
setInput: SetState<string>;
|
@@ -773,13 +789,13 @@ interface AutocompleteI<T> {
|
|
773
789
|
readyForInput: boolean;
|
774
790
|
placeholder?: string;
|
775
791
|
ariaLabel?: string;
|
776
|
-
withIconBefore?:
|
777
|
-
withIconAfter?:
|
792
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
793
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
778
794
|
withIconLabelAfter?: string;
|
779
795
|
options: T[];
|
780
796
|
optionDefault?: T;
|
781
|
-
optionToDisplay: (option: T) =>
|
782
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
797
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
798
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
783
799
|
optionToInputValue: (option: T) => string;
|
784
800
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
785
801
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -793,8 +809,8 @@ interface AutocompleteInputI<T> {
|
|
793
809
|
debounceTime: number;
|
794
810
|
placeholder?: string;
|
795
811
|
ariaLabel?: string;
|
796
|
-
withIconBefore?:
|
797
|
-
withIconAfter?:
|
812
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
813
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
798
814
|
withIconLabelAfter?: string;
|
799
815
|
theme: IInputTheme;
|
800
816
|
options: T[];
|
@@ -808,13 +824,13 @@ interface AutocompleteInputI<T> {
|
|
808
824
|
interface AutocompleteOptionI<T> {
|
809
825
|
label: string;
|
810
826
|
withDetails?: string;
|
811
|
-
withFigure?:
|
827
|
+
withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
|
812
828
|
}
|
813
829
|
interface AutocompleteOptionsI<T> {
|
814
830
|
options: T[];
|
815
831
|
optionDefault?: T;
|
816
|
-
optionToDisplay: (option: T) =>
|
817
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
832
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
833
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
818
834
|
optionToInputValue: (option: T) => string;
|
819
835
|
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
820
836
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
@@ -831,11 +847,11 @@ interface AutocompleteChangeEvent {
|
|
831
847
|
}
|
832
848
|
interface AutocompleteBlurEvent {
|
833
849
|
input: string;
|
834
|
-
event:
|
850
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
835
851
|
}
|
836
852
|
interface AutocompleteFocusEvent {
|
837
853
|
input: string;
|
838
|
-
event:
|
854
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
839
855
|
}
|
840
856
|
|
841
857
|
interface AutocompleteInputHandle<T> {
|
@@ -857,14 +873,14 @@ interface LocationI<T> {
|
|
857
873
|
name: string;
|
858
874
|
placeholder?: string;
|
859
875
|
ariaLabel?: string;
|
860
|
-
withIconBefore?:
|
861
|
-
withIconAfter?:
|
876
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
877
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
862
878
|
withIconLabelAfter?: string;
|
863
879
|
debounceTime?: number;
|
864
880
|
options: T[];
|
865
881
|
optionDefault?: T;
|
866
|
-
optionToDisplay: (option: T) =>
|
867
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
882
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
883
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
868
884
|
optionToInputValue: (option: T) => string;
|
869
885
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
870
886
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -893,13 +909,13 @@ interface NameI<T> {
|
|
893
909
|
readyForInput: boolean;
|
894
910
|
placeholder?: string;
|
895
911
|
ariaLabel?: string;
|
896
|
-
withIconBefore?:
|
897
|
-
withIconAfter?:
|
912
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
913
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
898
914
|
debounceTime?: number;
|
899
915
|
options: T[];
|
900
916
|
optionDefault?: T;
|
901
|
-
optionToDisplay: (option: T) =>
|
902
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
917
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
918
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
903
919
|
optionToInputValue: (option: T) => string;
|
904
920
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
905
921
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -944,23 +960,23 @@ interface RouteI<T, D> {
|
|
944
960
|
debounceTime?: number;
|
945
961
|
originPlaceholder?: string;
|
946
962
|
originAriaLabel?: string;
|
947
|
-
originWithIconBefore?:
|
948
|
-
originWithIconAfter?:
|
963
|
+
originWithIconBefore?: React__default.ReactElement<IIcon>;
|
964
|
+
originWithIconAfter?: React__default.ReactElement<IIcon>;
|
949
965
|
originWithIconLabelAfter?: string;
|
950
966
|
destinationPlaceholder?: string;
|
951
967
|
destinationAriaLabel?: string;
|
952
|
-
destinationWithIconBefore?:
|
953
|
-
destinationWithIconAfter?:
|
968
|
+
destinationWithIconBefore?: React__default.ReactElement<IIcon>;
|
969
|
+
destinationWithIconAfter?: React__default.ReactElement<IIcon>;
|
954
970
|
destinationWithIconLabelAfter?: string;
|
955
971
|
originOptions: T[];
|
956
972
|
originOptionDefault?: T;
|
957
|
-
originOptionToDisplay: (option: T) =>
|
958
|
-
originOptionToDisplayWhenSelected?: (option: T) =>
|
973
|
+
originOptionToDisplay: (option: T) => React__default.ReactNode;
|
974
|
+
originOptionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
959
975
|
originOptionToInputValue: (option: T) => string;
|
960
976
|
destinationOptions: D[];
|
961
977
|
destinationOptionDefault?: D;
|
962
|
-
destinationOptionToDisplay: (option: D) =>
|
963
|
-
destinationOptionToDisplayWhenSelected?: (option: D) =>
|
978
|
+
destinationOptionToDisplay: (option: D) => React__default.ReactNode;
|
979
|
+
destinationOptionToDisplayWhenSelected?: (option: D) => React__default.ReactNode;
|
964
980
|
destinationOptionToInputValue: (option: D) => string;
|
965
981
|
onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
966
982
|
onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -998,9 +1014,9 @@ declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JS
|
|
998
1014
|
|
999
1015
|
interface IRouteLocation {
|
1000
1016
|
onChange?: (value: routeLocation) => void;
|
1001
|
-
location:
|
1017
|
+
location: React__default.ReactElement;
|
1002
1018
|
locationLabel: string;
|
1003
|
-
route:
|
1019
|
+
route: React__default.ReactElement;
|
1004
1020
|
routeLabel: string;
|
1005
1021
|
name: string;
|
1006
1022
|
defaultChecked?: boolean;
|
@@ -1011,13 +1027,13 @@ type routeLocation = "route" | "location";
|
|
1011
1027
|
declare const RouteLocation: (args: IRouteLocation) => react_jsx_runtime.JSX.Element;
|
1012
1028
|
|
1013
1029
|
interface SwitchI {
|
1014
|
-
children:
|
1015
|
-
onChange?: (e:
|
1030
|
+
children: React__default.ReactElement<SwitchItemI>[];
|
1031
|
+
onChange?: (e: React__default.MouseEvent<HTMLDivElement>, value: string) => void;
|
1016
1032
|
init: string;
|
1017
1033
|
}
|
1018
1034
|
interface SwitchItemI {
|
1019
1035
|
label: string;
|
1020
|
-
content:
|
1036
|
+
content: React__default.ReactElement;
|
1021
1037
|
value: string;
|
1022
1038
|
}
|
1023
1039
|
interface SwitchItemContentI extends PropsWithChildren {
|
@@ -1103,12 +1119,17 @@ declare const Table: {
|
|
1103
1119
|
interface DayOfBirthI {
|
1104
1120
|
name: string;
|
1105
1121
|
format?: string;
|
1122
|
+
initialValue?: {
|
1123
|
+
year: number;
|
1124
|
+
month: number;
|
1125
|
+
day: number;
|
1126
|
+
};
|
1106
1127
|
onChange?: (year: number, month: number, day: number) => void;
|
1107
1128
|
placeholder?: string;
|
1108
1129
|
context?: InputContext;
|
1109
1130
|
}
|
1110
1131
|
|
1111
|
-
declare const DayOfBirth: ({ onChange, placeholder, name, format, context }: DayOfBirthI) => react_jsx_runtime.JSX.Element;
|
1132
|
+
declare const DayOfBirth: ({ onChange, placeholder, name, format, context, initialValue }: DayOfBirthI) => react_jsx_runtime.JSX.Element;
|
1112
1133
|
|
1113
1134
|
declare enum CompactNavigationContext {
|
1114
1135
|
OPEN = "OPEN",
|
@@ -1120,15 +1141,15 @@ interface ICompactNavigation extends ICompactNavigationBase {
|
|
1120
1141
|
}
|
1121
1142
|
interface ICompactNavigationBase {
|
1122
1143
|
toggleLabel: string;
|
1123
|
-
children?:
|
1124
|
-
footer?:
|
1144
|
+
children?: React__default.ReactNode;
|
1145
|
+
footer?: React__default.ReactNode;
|
1125
1146
|
}
|
1126
1147
|
interface ICompactNavigationItem {
|
1127
1148
|
label: string;
|
1128
1149
|
href: string;
|
1129
|
-
onClick?:
|
1150
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1130
1151
|
isActive?: boolean;
|
1131
|
-
icon:
|
1152
|
+
icon: React__default.ReactElement<IIcon>;
|
1132
1153
|
}
|
1133
1154
|
|
1134
1155
|
declare const CompactNavigation: {
|
@@ -1139,7 +1160,7 @@ declare const CompactNavigation: {
|
|
1139
1160
|
interface ICompactFooter extends ICompactFooterBase {
|
1140
1161
|
}
|
1141
1162
|
interface ICompactFooterBase {
|
1142
|
-
children?:
|
1163
|
+
children?: React__default.ReactNode;
|
1143
1164
|
title?: string;
|
1144
1165
|
description?: string;
|
1145
1166
|
}
|
@@ -1147,16 +1168,16 @@ interface ICompactFooterBase {
|
|
1147
1168
|
declare const CompactFooter: ({ children, title, description }: ICompactFooter) => react_jsx_runtime.JSX.Element;
|
1148
1169
|
|
1149
1170
|
interface IDetailsBase {
|
1150
|
-
children?:
|
1171
|
+
children?: React__default.ReactNode;
|
1151
1172
|
}
|
1152
1173
|
interface IDetails extends IDetailsBase {
|
1153
1174
|
}
|
1154
1175
|
interface DetailsHeaderThemeableProps {
|
1155
1176
|
title: string;
|
1156
|
-
children?:
|
1177
|
+
children?: React__default.ReactNode;
|
1157
1178
|
}
|
1158
1179
|
interface DetailsContentThemeableProps {
|
1159
|
-
children?:
|
1180
|
+
children?: React__default.ReactNode;
|
1160
1181
|
}
|
1161
1182
|
|
1162
1183
|
declare const Details: {
|
@@ -1166,7 +1187,7 @@ declare const Details: {
|
|
1166
1187
|
};
|
1167
1188
|
|
1168
1189
|
interface IFaqBase {
|
1169
|
-
children?:
|
1190
|
+
children?: React__default.ReactNode;
|
1170
1191
|
}
|
1171
1192
|
interface IFaq extends IFaqBase {
|
1172
1193
|
}
|
@@ -1174,7 +1195,7 @@ interface FaqHeaderThemeableProps {
|
|
1174
1195
|
title: string;
|
1175
1196
|
}
|
1176
1197
|
interface FaqContentThemeableProps {
|
1177
|
-
children?:
|
1198
|
+
children?: React__default.ReactNode;
|
1178
1199
|
}
|
1179
1200
|
|
1180
1201
|
declare const Faq: {
|
@@ -1184,19 +1205,19 @@ declare const Faq: {
|
|
1184
1205
|
};
|
1185
1206
|
|
1186
1207
|
interface ISelectBox {
|
1187
|
-
children:
|
1208
|
+
children: React__default.ReactNode;
|
1188
1209
|
}
|
1189
1210
|
interface ISelectBoxMenuItem {
|
1190
|
-
figure:
|
1211
|
+
figure: React__default.ReactElement<IFigure>;
|
1191
1212
|
label: string;
|
1192
1213
|
action: () => void;
|
1193
1214
|
}
|
1194
1215
|
interface ISelectBoxSelect {
|
1195
|
-
figure:
|
1216
|
+
figure: React__default.ReactElement<IFigure>;
|
1196
1217
|
label: string;
|
1197
1218
|
}
|
1198
1219
|
interface ISelectBoxMenu {
|
1199
|
-
children:
|
1220
|
+
children: React__default.ReactNode;
|
1200
1221
|
}
|
1201
1222
|
|
1202
1223
|
declare const SelectBox: {
|
@@ -1207,7 +1228,7 @@ declare const SelectBox: {
|
|
1207
1228
|
};
|
1208
1229
|
|
1209
1230
|
interface ICategoryLink {
|
1210
|
-
figure:
|
1231
|
+
figure: React__default.ReactElement<IFigure>;
|
1211
1232
|
title: string;
|
1212
1233
|
description: string;
|
1213
1234
|
label: string;
|
@@ -1217,7 +1238,7 @@ interface ICategoryLink {
|
|
1217
1238
|
declare const CategoryLink: ({ figure, title, description, label, action }: ICategoryLink) => react_jsx_runtime.JSX.Element;
|
1218
1239
|
|
1219
1240
|
interface IQuote {
|
1220
|
-
quote:
|
1241
|
+
quote: React__default.ReactElement<ISafeHtml>;
|
1221
1242
|
}
|
1222
1243
|
|
1223
1244
|
declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
|
@@ -1231,7 +1252,7 @@ interface IResultHeading {
|
|
1231
1252
|
declare const ResultHeading: ({ title, amount, actions }: IResultHeading) => react_jsx_runtime.JSX.Element;
|
1232
1253
|
|
1233
1254
|
interface IFeatures {
|
1234
|
-
children:
|
1255
|
+
children: React__default.ReactElement<IFeature> | React__default.ReactElement<IFeature>[];
|
1235
1256
|
}
|
1236
1257
|
|
1237
1258
|
declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
|
@@ -1253,15 +1274,15 @@ declare const PlaceholderPhoto: ({ figure, type, height }: IPlaceholderPhoto) =>
|
|
1253
1274
|
interface INavigation extends INavigationBase {
|
1254
1275
|
}
|
1255
1276
|
interface INavigationBase {
|
1256
|
-
children?:
|
1257
|
-
logo:
|
1277
|
+
children?: React__default.ReactNode;
|
1278
|
+
logo: React__default.ReactNode;
|
1258
1279
|
}
|
1259
1280
|
interface INavigationItem {
|
1260
1281
|
label: string;
|
1261
1282
|
href: string;
|
1262
|
-
onClick?:
|
1283
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1263
1284
|
isActive?: boolean;
|
1264
|
-
icon:
|
1285
|
+
icon: React__default.ReactElement<IIcon>;
|
1265
1286
|
}
|
1266
1287
|
|
1267
1288
|
declare const Navigation: {
|
@@ -1275,12 +1296,12 @@ declare enum ItemType {
|
|
1275
1296
|
}
|
1276
1297
|
|
1277
1298
|
interface IProfileNavigation {
|
1278
|
-
children?:
|
1299
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1279
1300
|
}
|
1280
1301
|
interface ProfileNavigationThemeableProps {
|
1281
|
-
children?:
|
1302
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1282
1303
|
}
|
1283
|
-
type ClickHandler =
|
1304
|
+
type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
|
1284
1305
|
interface ProfileNavigationItemThemeableProps {
|
1285
1306
|
label: string;
|
1286
1307
|
icon: IconType;
|
@@ -1297,7 +1318,7 @@ declare const ProfileNavigation: {
|
|
1297
1318
|
};
|
1298
1319
|
|
1299
1320
|
interface IRecords {
|
1300
|
-
children:
|
1321
|
+
children: React__default.ReactElement<IRecord> | React__default.ReactElement<IRecord>[];
|
1301
1322
|
}
|
1302
1323
|
|
1303
1324
|
declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
|
@@ -1312,11 +1333,11 @@ declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_ru
|
|
1312
1333
|
interface ITopNavigation extends ITopNavigationBase {
|
1313
1334
|
}
|
1314
1335
|
interface ITopNavigationBase {
|
1315
|
-
children?:
|
1336
|
+
children?: React__default.ReactNode;
|
1316
1337
|
}
|
1317
1338
|
interface ITopNavigationItemBase {
|
1318
1339
|
href: string;
|
1319
|
-
onClick?:
|
1340
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1320
1341
|
label: string;
|
1321
1342
|
icon: IconType;
|
1322
1343
|
}
|
@@ -1329,20 +1350,20 @@ declare const TopNavigation: {
|
|
1329
1350
|
interface IOnboarding {
|
1330
1351
|
heading: string;
|
1331
1352
|
content: string;
|
1332
|
-
cta:
|
1333
|
-
figure:
|
1334
|
-
onClick?: (e:
|
1353
|
+
cta: React__default.ReactElement;
|
1354
|
+
figure: React__default.ReactElement<IFigure>;
|
1355
|
+
onClick?: (e: React__default.MouseEvent<HTMLButtonElement>) => void;
|
1335
1356
|
}
|
1336
1357
|
interface IOnboardingButton extends IButtonMinimal {
|
1337
1358
|
}
|
1338
1359
|
|
1339
|
-
declare const OnboardingButton:
|
1360
|
+
declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
|
1340
1361
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1341
1362
|
|
1342
1363
|
interface IQuickSearch {
|
1343
1364
|
heading: string;
|
1344
|
-
content:
|
1345
|
-
action:
|
1365
|
+
content: React__default.ReactNode;
|
1366
|
+
action: React__default.ReactNode;
|
1346
1367
|
}
|
1347
1368
|
|
1348
1369
|
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
@@ -1370,7 +1391,7 @@ declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_ru
|
|
1370
1391
|
|
1371
1392
|
interface ICta {
|
1372
1393
|
label: string;
|
1373
|
-
action:
|
1394
|
+
action: React__default.ReactElement<IButton>;
|
1374
1395
|
}
|
1375
1396
|
|
1376
1397
|
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
@@ -1397,7 +1418,7 @@ declare const CurrentLocation: ({ label, action, size }: ICurrentLocation) => re
|
|
1397
1418
|
interface IFooterNavigation extends IFooterNavigationBase {
|
1398
1419
|
}
|
1399
1420
|
interface IFooterNavigationBase {
|
1400
|
-
children?:
|
1421
|
+
children?: React__default.ReactNode;
|
1401
1422
|
}
|
1402
1423
|
|
1403
1424
|
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
@@ -1421,14 +1442,15 @@ interface IFormElement {
|
|
1421
1442
|
label: string;
|
1422
1443
|
input: React.ReactNode;
|
1423
1444
|
description?: string;
|
1445
|
+
required?: boolean;
|
1424
1446
|
}
|
1425
1447
|
|
1426
|
-
declare const FormElement: ({ label, input, description }: IFormElement) => react_jsx_runtime.JSX.Element;
|
1448
|
+
declare const FormElement: ({ label, input, description, required }: IFormElement) => react_jsx_runtime.JSX.Element;
|
1427
1449
|
|
1428
1450
|
interface IFormMessage {
|
1429
1451
|
messages: string[];
|
1430
1452
|
type: string;
|
1431
|
-
icon:
|
1453
|
+
icon: React__default.ReactElement<IIcon>;
|
1432
1454
|
}
|
1433
1455
|
|
1434
1456
|
declare enum FormMessageType {
|
@@ -1468,40 +1490,40 @@ declare const ScheduleSelect: {
|
|
1468
1490
|
};
|
1469
1491
|
|
1470
1492
|
interface IHeaderMobile {
|
1471
|
-
profileNavigation:
|
1472
|
-
compactNavigation:
|
1493
|
+
profileNavigation: React__default.ReactNode;
|
1494
|
+
compactNavigation: React__default.ReactNode;
|
1473
1495
|
}
|
1474
1496
|
interface IHeaderTop {
|
1475
|
-
brand:
|
1476
|
-
topNavigation:
|
1497
|
+
brand: React__default.ReactNode;
|
1498
|
+
topNavigation: React__default.ReactNode;
|
1477
1499
|
}
|
1478
1500
|
interface IHeaderBottom extends IHeaderMobile {
|
1479
|
-
navigation:
|
1480
|
-
brand:
|
1501
|
+
navigation: React__default.ReactNode;
|
1502
|
+
brand: React__default.ReactNode;
|
1481
1503
|
stickOnScroll: boolean;
|
1482
1504
|
}
|
1483
1505
|
interface IHeaderAlternate extends IHeaderMobile {
|
1484
|
-
navigation:
|
1485
|
-
brand:
|
1506
|
+
navigation: React__default.ReactNode;
|
1507
|
+
brand: React__default.ReactNode;
|
1486
1508
|
}
|
1487
1509
|
|
1488
1510
|
interface HeaderContextType {
|
1489
1511
|
isSticky: boolean;
|
1490
|
-
setIsSticky:
|
1512
|
+
setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1491
1513
|
showLogo: boolean;
|
1492
|
-
setShowLogo:
|
1514
|
+
setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1493
1515
|
}
|
1494
|
-
declare const HeaderContext:
|
1516
|
+
declare const HeaderContext: React__default.Context<HeaderContextType>;
|
1495
1517
|
|
1496
1518
|
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1497
1519
|
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1498
1520
|
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1499
1521
|
|
1500
1522
|
interface IFooter {
|
1501
|
-
top:
|
1502
|
-
left:
|
1503
|
-
right:
|
1504
|
-
bottom:
|
1523
|
+
top: React__default.ReactNode;
|
1524
|
+
left: React__default.ReactNode;
|
1525
|
+
right: React__default.ReactNode;
|
1526
|
+
bottom: React__default.ReactNode;
|
1505
1527
|
}
|
1506
1528
|
|
1507
1529
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
@@ -1519,7 +1541,7 @@ interface IPin {
|
|
1519
1541
|
address: string;
|
1520
1542
|
showsExactLocation: boolean;
|
1521
1543
|
type: PointType;
|
1522
|
-
overlay:
|
1544
|
+
overlay: React__default.ReactNode;
|
1523
1545
|
}
|
1524
1546
|
interface ILine {
|
1525
1547
|
key: string;
|
@@ -1545,11 +1567,11 @@ interface IFailureMap {
|
|
1545
1567
|
message: string;
|
1546
1568
|
}
|
1547
1569
|
interface IMapLegendLabel {
|
1548
|
-
figure:
|
1570
|
+
figure: React__default.ReactElement<IFigure>;
|
1549
1571
|
label: string;
|
1550
1572
|
}
|
1551
1573
|
interface IMapLegendItem {
|
1552
|
-
pin:
|
1574
|
+
pin: React__default.ReactElement<IPin>;
|
1553
1575
|
label: string;
|
1554
1576
|
}
|
1555
1577
|
interface ILocationBasedMap {
|
@@ -1557,11 +1579,11 @@ interface ILocationBasedMap {
|
|
1557
1579
|
viewOnly?: boolean;
|
1558
1580
|
points?: IPoints;
|
1559
1581
|
showLoader: boolean;
|
1560
|
-
loader?:
|
1582
|
+
loader?: React__default.ReactNode;
|
1561
1583
|
origin: IOrigin;
|
1562
1584
|
radius: number;
|
1563
|
-
legend?:
|
1564
|
-
legendToggle?:
|
1585
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1586
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1565
1587
|
onAreaChange?: (origin: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1566
1588
|
}
|
1567
1589
|
interface IDirectionBasedMapBase {
|
@@ -1570,13 +1592,13 @@ interface IDirectionBasedMapBase {
|
|
1570
1592
|
activeRoute: string;
|
1571
1593
|
points?: IPoints;
|
1572
1594
|
showLoader: boolean;
|
1573
|
-
loader?:
|
1595
|
+
loader?: React__default.ReactNode;
|
1574
1596
|
origin?: IOrigin;
|
1575
1597
|
destination?: IDestination;
|
1576
1598
|
deviation: number;
|
1577
1599
|
activeTravelMode: google.maps.TravelMode;
|
1578
|
-
legend?:
|
1579
|
-
legendToggle?:
|
1600
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1601
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1580
1602
|
onRouteChange?: (activeRoute: string, route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1581
1603
|
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1582
1604
|
onAreaChange?: (origin: google.maps.LatLng, destination: google.maps.LatLng, center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
@@ -1602,27 +1624,27 @@ declare const MapLegendItem: ({ pin, label }: IMapLegendItem) => react_jsx_runti
|
|
1602
1624
|
declare const Map: {
|
1603
1625
|
(props: IMap): react_jsx_runtime.JSX.Element;
|
1604
1626
|
Location: (props: ILocationBasedMap & {
|
1605
|
-
ref?:
|
1627
|
+
ref?: React__default.Ref<LocationMapHandle>;
|
1606
1628
|
}) => JSX.Element;
|
1607
1629
|
Direction: (props: IDirectionBasedMapBase & {
|
1608
|
-
ref?:
|
1630
|
+
ref?: React__default.Ref<DirectionMapHandle>;
|
1609
1631
|
}) => JSX.Element;
|
1610
1632
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1611
1633
|
Loading: ({ loader }: {
|
1612
|
-
loader:
|
1634
|
+
loader: React__default.ReactNode;
|
1613
1635
|
}) => react_jsx_runtime.JSX.Element | null;
|
1614
1636
|
};
|
1615
1637
|
|
1616
1638
|
interface IWizard {
|
1617
|
-
children:
|
1639
|
+
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1618
1640
|
}
|
1619
1641
|
interface IWizardStep extends PropsWithChildren {
|
1620
|
-
figure?:
|
1621
|
-
controls?:
|
1642
|
+
figure?: React__default.ReactElement<IFigure>;
|
1643
|
+
controls?: React__default.ReactElement<IWizardControls>;
|
1622
1644
|
}
|
1623
1645
|
interface IWizardControls {
|
1624
|
-
back?:
|
1625
|
-
next?:
|
1646
|
+
back?: React__default.ReactElement<IButton>;
|
1647
|
+
next?: React__default.ReactElement<IButton>;
|
1626
1648
|
}
|
1627
1649
|
|
1628
1650
|
declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
@@ -1648,21 +1670,21 @@ interface HeadingArrangementBaseI {
|
|
1648
1670
|
}
|
1649
1671
|
|
1650
1672
|
interface ISearchFiltersSharedActions {
|
1651
|
-
submit:
|
1652
|
-
clear:
|
1673
|
+
submit: React__default.ReactElement<IButton>;
|
1674
|
+
clear: React__default.ReactElement<IButton>;
|
1653
1675
|
}
|
1654
1676
|
interface ISearchFiltersShared extends ISearchFiltersSharedActions {
|
1655
|
-
filters:
|
1677
|
+
filters: React__default.ReactElement<ISearchFiltersItem>[];
|
1656
1678
|
activeFilterCount: number;
|
1657
|
-
label:
|
1679
|
+
label: React__default.ReactElement<ISearchFiltersLabel>;
|
1658
1680
|
}
|
1659
1681
|
interface ISearchFilters extends ISearchFiltersShared {
|
1660
|
-
overlay:
|
1661
|
-
modal:
|
1682
|
+
overlay: React__default.ReactElement<ISearchFiltersOverlay>;
|
1683
|
+
modal: React__default.ReactElement<ISearchFiltersModal>;
|
1662
1684
|
}
|
1663
1685
|
interface ISearchFiltersOverlay {
|
1664
|
-
heading:
|
1665
|
-
close:
|
1686
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1687
|
+
close: React__default.ReactElement<CloseI>;
|
1666
1688
|
}
|
1667
1689
|
interface ISearchFiltersModal {
|
1668
1690
|
heading: string;
|
@@ -1670,11 +1692,11 @@ interface ISearchFiltersModal {
|
|
1670
1692
|
interface ISearchFiltersLabel {
|
1671
1693
|
label?: string;
|
1672
1694
|
description?: string;
|
1673
|
-
icon:
|
1695
|
+
icon: React__default.ReactElement<IIcon>;
|
1674
1696
|
}
|
1675
1697
|
interface ISearchFiltersItem {
|
1676
1698
|
label: string;
|
1677
|
-
filter:
|
1699
|
+
filter: React__default.ReactNode;
|
1678
1700
|
}
|
1679
1701
|
|
1680
1702
|
declare const SearchFiltersLabel: ({ label, description, icon }: ISearchFiltersLabel) => react_jsx_runtime.JSX.Element;
|
@@ -1689,49 +1711,49 @@ declare const SearchFilters: ({ filters, activeFilterCount, label, submit, clear
|
|
1689
1711
|
|
1690
1712
|
type SearchInputTypes = "location" | "route" | "name";
|
1691
1713
|
interface ISearchInputsShared {
|
1692
|
-
location:
|
1693
|
-
route:
|
1694
|
-
name:
|
1714
|
+
location: React__default.ReactElement<ISearchInputsElement>;
|
1715
|
+
route: React__default.ReactElement<ISearchInputsElement>;
|
1716
|
+
name: React__default.ReactElement<ISearchInputsElement>;
|
1695
1717
|
activeInput: SearchInputTypes;
|
1696
1718
|
onChanged?: (active: SearchInputTypes) => void;
|
1697
1719
|
onInputOpen?: (active: SearchInputTypes) => void;
|
1698
|
-
submit:
|
1720
|
+
submit: React__default.ReactElement<IButton>;
|
1699
1721
|
}
|
1700
1722
|
interface ISearchInputs extends ISearchInputsShared {
|
1701
|
-
overlay:
|
1723
|
+
overlay: React__default.ReactElement<ISearchInputsOverlay>;
|
1702
1724
|
}
|
1703
1725
|
interface ISearchInputsOverlay extends ISearchInputsOverlayContentActions {
|
1704
|
-
heading:
|
1705
|
-
input:
|
1706
|
-
close:
|
1726
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1727
|
+
input: React__default.ReactElement<ISearchInputsOverlayInput>;
|
1728
|
+
close: React__default.ReactElement<CloseI>;
|
1707
1729
|
}
|
1708
1730
|
interface ISearchInputsOverlayContentActions {
|
1709
|
-
clear?:
|
1731
|
+
clear?: React__default.ReactElement<IButton>;
|
1710
1732
|
}
|
1711
1733
|
interface ISearchInputsOverlayInput {
|
1712
1734
|
label: string;
|
1713
1735
|
description: string;
|
1714
1736
|
}
|
1715
1737
|
interface ISearchInputsElement {
|
1716
|
-
selected:
|
1717
|
-
option:
|
1718
|
-
inputLabel:
|
1719
|
-
heading:
|
1720
|
-
input:
|
1738
|
+
selected: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1739
|
+
option: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1740
|
+
inputLabel: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1741
|
+
heading: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1742
|
+
input: React__default.ReactElement<ISearchInputsItem>;
|
1721
1743
|
}
|
1722
1744
|
interface ISearchInputsItem {
|
1723
|
-
label:
|
1724
|
-
input:
|
1745
|
+
label: React__default.ReactElement<ISearchInputsLabel | ISearchInputsLabelWithIcon>;
|
1746
|
+
input: React__default.ReactNode;
|
1725
1747
|
}
|
1726
1748
|
interface ISearchInputsLabel {
|
1727
1749
|
label: string;
|
1728
1750
|
description?: string;
|
1729
|
-
figure:
|
1751
|
+
figure: React__default.ReactElement<IFigure>;
|
1730
1752
|
}
|
1731
1753
|
interface ISearchInputsLabelWithIcon {
|
1732
1754
|
label: string;
|
1733
1755
|
description?: string;
|
1734
|
-
icon:
|
1756
|
+
icon: React__default.ReactElement<IIcon>;
|
1735
1757
|
prominent: boolean;
|
1736
1758
|
}
|
1737
1759
|
|
@@ -1748,15 +1770,15 @@ declare const SearchInputsLabelWithIcon: ({ label, description, icon, prominent
|
|
1748
1770
|
declare const SearchInputs: ({ location, route, name, overlay, onChanged, onInputOpen, activeInput, submit, }: ISearchInputs) => react_jsx_runtime.JSX.Element;
|
1749
1771
|
|
1750
1772
|
interface ICard {
|
1751
|
-
swipe?:
|
1752
|
-
badge:
|
1773
|
+
swipe?: React__default.ReactNode;
|
1774
|
+
badge: React__default.ReactElement<IBadge>;
|
1753
1775
|
title: string;
|
1754
1776
|
subtitle?: string;
|
1755
|
-
info?:
|
1756
|
-
labels:
|
1757
|
-
features?:
|
1758
|
-
action:
|
1759
|
-
favoriteAction?:
|
1777
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1778
|
+
labels: React__default.ReactElement<ILabel>[];
|
1779
|
+
features?: React__default.ReactElement<IFeatures>;
|
1780
|
+
action: React__default.ReactElement<IButton>;
|
1781
|
+
favoriteAction?: React__default.ReactElement<IButton>;
|
1760
1782
|
detailsAction?: () => void;
|
1761
1783
|
detailsLabel?: string;
|
1762
1784
|
}
|
@@ -1764,36 +1786,36 @@ interface ICard {
|
|
1764
1786
|
declare const Card: ({ badge, swipe, title, subtitle, info, labels, features, action, detailsAction, detailsLabel, favoriteAction, }: ICard) => react_jsx_runtime.JSX.Element;
|
1765
1787
|
|
1766
1788
|
interface IMapCard {
|
1767
|
-
swipe?:
|
1768
|
-
badge:
|
1789
|
+
swipe?: React__default.ReactNode;
|
1790
|
+
badge: React__default.ReactElement<IBadge>;
|
1769
1791
|
title: string;
|
1770
|
-
info?:
|
1771
|
-
action:
|
1792
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1793
|
+
action: React__default.ReactElement<IButton>;
|
1772
1794
|
}
|
1773
1795
|
|
1774
1796
|
declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
|
1775
1797
|
|
1776
1798
|
interface IListCard {
|
1777
|
-
badge:
|
1799
|
+
badge: React__default.ReactElement<IBadge>;
|
1778
1800
|
title: string;
|
1779
1801
|
subtitle?: string;
|
1780
|
-
info?:
|
1781
|
-
labels:
|
1782
|
-
features?:
|
1783
|
-
actions:
|
1802
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1803
|
+
labels: React__default.ReactElement<ILabel>[];
|
1804
|
+
features?: React__default.ReactElement<IFeatures>;
|
1805
|
+
actions: React__default.ReactElement<IButton>[] | React__default.ReactElement<IButton>;
|
1784
1806
|
}
|
1785
1807
|
|
1786
1808
|
declare const ListCard: ({ badge, title, subtitle, info, labels, features, actions }: IListCard) => react_jsx_runtime.JSX.Element;
|
1787
1809
|
|
1788
1810
|
interface IFlyoutArrangementSplit {
|
1789
|
-
top?:
|
1790
|
-
left:
|
1791
|
-
right:
|
1811
|
+
top?: React__default.ReactElement;
|
1812
|
+
left: React__default.ReactElement;
|
1813
|
+
right: React__default.ReactElement;
|
1792
1814
|
compactAt: number;
|
1793
1815
|
}
|
1794
1816
|
interface IFlyoutArrangementFull {
|
1795
|
-
top?:
|
1796
|
-
content:
|
1817
|
+
top?: React__default.ReactElement;
|
1818
|
+
content: React__default.ReactElement;
|
1797
1819
|
}
|
1798
1820
|
|
1799
1821
|
declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
|
@@ -1805,25 +1827,25 @@ declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_
|
|
1805
1827
|
|
1806
1828
|
interface IHomeSectionCards {
|
1807
1829
|
title: string;
|
1808
|
-
cards:
|
1830
|
+
cards: React__default.ReactElement<IInfoCard>[];
|
1809
1831
|
}
|
1810
1832
|
|
1811
1833
|
declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
|
1812
1834
|
|
1813
1835
|
interface IHomeSectionFaq {
|
1814
1836
|
title: string;
|
1815
|
-
content:
|
1816
|
-
faqs:
|
1837
|
+
content: React__default.ReactElement;
|
1838
|
+
faqs: React__default.ReactElement<IFaq>[];
|
1817
1839
|
}
|
1818
1840
|
|
1819
1841
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1820
1842
|
|
1821
1843
|
interface IHomeSectionGettingStarted {
|
1822
1844
|
title: string;
|
1823
|
-
locationLink:
|
1824
|
-
routeLink:
|
1825
|
-
nameLink:
|
1826
|
-
onBoarding:
|
1845
|
+
locationLink: React__default.ReactElement;
|
1846
|
+
routeLink: React__default.ReactElement;
|
1847
|
+
nameLink: React__default.ReactElement;
|
1848
|
+
onBoarding: React__default.ReactElement;
|
1827
1849
|
imagePath: string;
|
1828
1850
|
}
|
1829
1851
|
|
@@ -1832,15 +1854,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
|
|
1832
1854
|
interface IDetailsSectionHeader {
|
1833
1855
|
title: string;
|
1834
1856
|
subtitle?: string;
|
1835
|
-
badge:
|
1836
|
-
labels:
|
1837
|
-
actions:
|
1857
|
+
badge: React__default.ReactNode;
|
1858
|
+
labels: React__default.ReactNode;
|
1859
|
+
actions: React__default.ReactNode;
|
1838
1860
|
}
|
1839
1861
|
|
1840
1862
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1841
1863
|
|
1842
1864
|
interface IDetailsSectionBack {
|
1843
|
-
link:
|
1865
|
+
link: React__default.ReactElement<ILink>;
|
1844
1866
|
}
|
1845
1867
|
|
1846
1868
|
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
@@ -1852,19 +1874,19 @@ interface IDetailsSectionGallery {
|
|
1852
1874
|
declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
|
1853
1875
|
|
1854
1876
|
interface IDetailsSectionGeneral {
|
1855
|
-
info:
|
1877
|
+
info: React__default.ReactNode;
|
1856
1878
|
contactData: IContactData[];
|
1857
1879
|
}
|
1858
1880
|
interface IContactData {
|
1859
1881
|
title: string;
|
1860
|
-
data:
|
1882
|
+
data: React__default.ReactElement<ILabeledIcon>[];
|
1861
1883
|
}
|
1862
1884
|
|
1863
1885
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1864
1886
|
|
1865
1887
|
interface IDetailsSectionFacilities {
|
1866
1888
|
title: string;
|
1867
|
-
facilities:
|
1889
|
+
facilities: React__default.ReactElement<ITerm>[];
|
1868
1890
|
}
|
1869
1891
|
|
1870
1892
|
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
@@ -1872,39 +1894,39 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
|
|
1872
1894
|
interface IDetailsSectionPrice {
|
1873
1895
|
title: string;
|
1874
1896
|
prices: IPriceData[];
|
1875
|
-
info:
|
1897
|
+
info: React__default.ReactElement<IPlainText>;
|
1876
1898
|
}
|
1877
1899
|
interface IPriceData {
|
1878
1900
|
title: string;
|
1879
|
-
data:
|
1901
|
+
data: React__default.ReactElement<ITable>;
|
1880
1902
|
}
|
1881
1903
|
|
1882
1904
|
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1883
1905
|
|
1884
1906
|
interface IDetailsSectionVacation {
|
1885
1907
|
title: string;
|
1886
|
-
vacations:
|
1908
|
+
vacations: React__default.ReactElement<ITable>;
|
1887
1909
|
}
|
1888
1910
|
|
1889
1911
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1890
1912
|
|
1891
1913
|
interface IDetailsSectionHours {
|
1892
1914
|
title: string;
|
1893
|
-
hours:
|
1915
|
+
hours: React__default.ReactElement<ITable>;
|
1894
1916
|
info?: string;
|
1895
1917
|
}
|
1896
1918
|
|
1897
1919
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
1898
1920
|
|
1899
1921
|
interface IDetailsSectionQuote {
|
1900
|
-
quote:
|
1922
|
+
quote: React__default.ReactElement<ISafeHtml>;
|
1901
1923
|
}
|
1902
1924
|
|
1903
1925
|
declare const DetailsSectionQuote: (props: IDetailsSectionQuote) => react_jsx_runtime.JSX.Element;
|
1904
1926
|
|
1905
1927
|
interface IDetailsSectionBasic {
|
1906
1928
|
title: string;
|
1907
|
-
body:
|
1929
|
+
body: React__default.ReactElement<ISafeHtml>;
|
1908
1930
|
}
|
1909
1931
|
|
1910
1932
|
declare const DetailsSectionBasic: (props: IDetailsSectionBasic) => react_jsx_runtime.JSX.Element;
|
@@ -1918,20 +1940,20 @@ declare const DetailsSectionTitle: (props: IDetailsSectionTitle) => react_jsx_ru
|
|
1918
1940
|
interface IFavoritesSectionHeader {
|
1919
1941
|
title: string;
|
1920
1942
|
description: string;
|
1921
|
-
figure:
|
1943
|
+
figure: React__default.ReactElement<IFigure>;
|
1922
1944
|
}
|
1923
1945
|
|
1924
1946
|
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1925
1947
|
|
1926
1948
|
interface IFavoritesSectionEmpty {
|
1927
1949
|
description: string;
|
1928
|
-
action:
|
1950
|
+
action: React__default.ReactElement<IButton>;
|
1929
1951
|
}
|
1930
1952
|
|
1931
1953
|
declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
|
1932
1954
|
|
1933
1955
|
interface IFavoritesSectionList {
|
1934
|
-
cards:
|
1956
|
+
cards: React__default.ReactElement<ICard>[];
|
1935
1957
|
}
|
1936
1958
|
|
1937
1959
|
declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
|
@@ -1939,28 +1961,28 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
|
|
1939
1961
|
interface IFavoritesSectionConfirm {
|
1940
1962
|
title: string;
|
1941
1963
|
description: string;
|
1942
|
-
location:
|
1943
|
-
actions:
|
1964
|
+
location: React__default.ReactElement<IColoredBox>;
|
1965
|
+
actions: React__default.ReactElement<IButton>[];
|
1944
1966
|
}
|
1945
1967
|
|
1946
1968
|
declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
|
1947
1969
|
|
1948
1970
|
interface IRequestsSectionHeader {
|
1949
1971
|
title: string;
|
1950
|
-
figure:
|
1972
|
+
figure: React__default.ReactElement<IFigure>;
|
1951
1973
|
}
|
1952
1974
|
|
1953
1975
|
declare const RequestsSectionHeader: (props: IRequestsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1954
1976
|
|
1955
1977
|
interface IRequestsSectionFooter {
|
1956
|
-
action:
|
1978
|
+
action: React__default.ReactElement<IButton>;
|
1957
1979
|
}
|
1958
1980
|
|
1959
1981
|
declare const RequestsSectionFooter: (props: IRequestsSectionFooter) => react_jsx_runtime.JSX.Element;
|
1960
1982
|
|
1961
1983
|
interface IRequestsSectionList {
|
1962
|
-
cards:
|
1963
|
-
action?:
|
1984
|
+
cards: React__default.ReactElement<IListCard>[];
|
1985
|
+
action?: React__default.ReactElement<IButton>;
|
1964
1986
|
}
|
1965
1987
|
|
1966
1988
|
declare const RequestsSectionList: (props: IRequestsSectionList) => react_jsx_runtime.JSX.Element;
|
@@ -1968,50 +1990,50 @@ declare const RequestsSectionList: (props: IRequestsSectionList) => react_jsx_ru
|
|
1968
1990
|
interface IAccountSectionHeader {
|
1969
1991
|
title: string;
|
1970
1992
|
subtitle?: string;
|
1971
|
-
figure:
|
1993
|
+
figure: React__default.ReactElement<IFigure>;
|
1972
1994
|
}
|
1973
1995
|
|
1974
1996
|
declare const AccountSectionHeader: (props: IAccountSectionHeader) => react_jsx_runtime.JSX.Element;
|
1975
1997
|
|
1976
1998
|
interface IAccountSectionRegister {
|
1977
1999
|
description: string;
|
1978
|
-
action:
|
2000
|
+
action: React__default.ReactNode;
|
1979
2001
|
withContainer: boolean;
|
1980
2002
|
}
|
1981
2003
|
|
1982
2004
|
declare const AccountSectionRegister: (props: IAccountSectionRegister) => react_jsx_runtime.JSX.Element;
|
1983
2005
|
|
1984
2006
|
interface IAccountSectionProfile {
|
1985
|
-
form:
|
1986
|
-
action:
|
2007
|
+
form: React__default.ReactNode;
|
2008
|
+
action: React__default.ReactNode;
|
1987
2009
|
}
|
1988
2010
|
|
1989
2011
|
declare const AccountSectionProfile: (props: IAccountSectionProfile) => react_jsx_runtime.JSX.Element;
|
1990
2012
|
|
1991
2013
|
interface IRequestArrangementHeader {
|
1992
|
-
figure:
|
1993
|
-
progress:
|
2014
|
+
figure: React__default.ReactElement<IFigure>;
|
2015
|
+
progress: React__default.ReactElement<IProgressSteps>;
|
1994
2016
|
}
|
1995
2017
|
|
1996
2018
|
declare const RequestArrangementHeader: (props: IRequestArrangementHeader) => react_jsx_runtime.JSX.Element;
|
1997
2019
|
|
1998
2020
|
interface IOnboardingArrangementIntroduction {
|
1999
|
-
top:
|
2000
|
-
left:
|
2001
|
-
right?:
|
2002
|
-
action?:
|
2003
|
-
image?:
|
2021
|
+
top: React__default.ReactElement;
|
2022
|
+
left: React__default.ReactElement;
|
2023
|
+
right?: React__default.ReactElement;
|
2024
|
+
action?: React__default.ReactElement;
|
2025
|
+
image?: React__default.ReactElement;
|
2004
2026
|
}
|
2005
2027
|
interface IOnboardingArrangementStep {
|
2006
|
-
top:
|
2007
|
-
left:
|
2008
|
-
right?:
|
2009
|
-
image?:
|
2028
|
+
top: React__default.ReactElement;
|
2029
|
+
left: React__default.ReactElement;
|
2030
|
+
right?: React__default.ReactElement;
|
2031
|
+
image?: React__default.ReactElement;
|
2010
2032
|
}
|
2011
2033
|
interface IOnboardingArrangementInformation {
|
2012
|
-
top:
|
2013
|
-
left:
|
2014
|
-
image?:
|
2034
|
+
top: React__default.ReactElement;
|
2035
|
+
left: React__default.ReactElement;
|
2036
|
+
image?: React__default.ReactElement;
|
2015
2037
|
}
|
2016
2038
|
|
2017
2039
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
@@ -2019,42 +2041,42 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
|
|
2019
2041
|
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
2020
2042
|
|
2021
2043
|
interface ISearchSectionFilters {
|
2022
|
-
primary:
|
2023
|
-
secondary:
|
2024
|
-
secondary_active:
|
2044
|
+
primary: React__default.ReactElement;
|
2045
|
+
secondary: React__default.ReactElement | false;
|
2046
|
+
secondary_active: React__default.ReactElement<IFilterTag>[];
|
2025
2047
|
}
|
2026
2048
|
|
2027
2049
|
declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
|
2028
2050
|
|
2029
2051
|
interface IHomeSectionLeftSplit {
|
2030
2052
|
title: string;
|
2031
|
-
content:
|
2053
|
+
content: React__default.ReactElement;
|
2032
2054
|
imagePath: string;
|
2033
2055
|
}
|
2034
2056
|
|
2035
2057
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
2036
2058
|
|
2037
2059
|
interface ISharedSectionHeader {
|
2038
|
-
top?:
|
2039
|
-
bottom:
|
2040
|
-
filters?:
|
2060
|
+
top?: React__default.ReactElement;
|
2061
|
+
bottom: React__default.ReactElement;
|
2062
|
+
filters?: React__default.ReactElement;
|
2041
2063
|
}
|
2042
2064
|
|
2043
2065
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2044
2066
|
declare const SharedSectionHeaderAlternate: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
2045
2067
|
|
2046
2068
|
interface ISharedSectionFooter {
|
2047
|
-
content:
|
2069
|
+
content: React__default.ReactElement;
|
2048
2070
|
}
|
2049
2071
|
|
2050
2072
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
2051
2073
|
|
2052
2074
|
interface ISearchSectionResults {
|
2053
|
-
header?:
|
2054
|
-
content:
|
2075
|
+
header?: React__default.ReactElement;
|
2076
|
+
content: React__default.ReactElement;
|
2055
2077
|
}
|
2056
2078
|
|
2057
|
-
declare const SearchSectionResults:
|
2079
|
+
declare const SearchSectionResults: React__default.ForwardRefExoticComponent<ISearchSectionResults & React__default.RefAttributes<HTMLDivElement>>;
|
2058
2080
|
|
2059
2081
|
interface ISearchSectionEmpty extends PropsWithChildren {
|
2060
2082
|
title: string;
|
@@ -2067,11 +2089,11 @@ interface IScrollableContentProps {
|
|
2067
2089
|
scrollToTop?: () => void;
|
2068
2090
|
}
|
2069
2091
|
interface ISearchSectionResultsWithMap {
|
2070
|
-
content:
|
2071
|
-
map?:
|
2092
|
+
content: React__default.ReactElement<IScrollableContentProps>;
|
2093
|
+
map?: React__default.ReactElement;
|
2072
2094
|
}
|
2073
2095
|
|
2074
|
-
declare const SearchSectionResultsWithMap:
|
2096
|
+
declare const SearchSectionResultsWithMap: React__default.ForwardRefExoticComponent<ISearchSectionResultsWithMap & React__default.RefAttributes<HTMLDivElement>>;
|
2075
2097
|
|
2076
2098
|
declare enum AccordeonContext {
|
2077
2099
|
OPEN = "OPEN",
|
@@ -2079,7 +2101,7 @@ declare enum AccordeonContext {
|
|
2079
2101
|
}
|
2080
2102
|
|
2081
2103
|
interface IAccordeonBase {
|
2082
|
-
children?:
|
2104
|
+
children?: React__default.ReactNode;
|
2083
2105
|
}
|
2084
2106
|
interface IAccordeon extends IAccordeonBase {
|
2085
2107
|
id?: string;
|
@@ -2102,7 +2124,7 @@ interface IBackdrop {
|
|
2102
2124
|
onClick?: () => void;
|
2103
2125
|
}
|
2104
2126
|
|
2105
|
-
declare const Backdrop: ({ onClick }: IBackdrop) =>
|
2127
|
+
declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
|
2106
2128
|
|
2107
2129
|
interface IBlur extends PropsWithChildren {
|
2108
2130
|
}
|
@@ -2110,10 +2132,10 @@ interface IBlur extends PropsWithChildren {
|
|
2110
2132
|
declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
|
2111
2133
|
|
2112
2134
|
interface ICollapsable {
|
2113
|
-
content:
|
2114
|
-
additional:
|
2115
|
-
withContentExpand:
|
2116
|
-
withContentCollapse?:
|
2135
|
+
content: React__default.ReactNode;
|
2136
|
+
additional: React__default.ReactNode;
|
2137
|
+
withContentExpand: React__default.ReactNode;
|
2138
|
+
withContentCollapse?: React__default.ReactNode;
|
2117
2139
|
}
|
2118
2140
|
|
2119
2141
|
declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse }: ICollapsable) => react_jsx_runtime.JSX.Element;
|
@@ -2126,11 +2148,14 @@ declare enum DrawerSize {
|
|
2126
2148
|
}
|
2127
2149
|
|
2128
2150
|
interface IDrawer {
|
2129
|
-
children?:
|
2151
|
+
children?: React__default.ReactNode;
|
2130
2152
|
size?: DrawerSize;
|
2131
2153
|
}
|
2132
2154
|
|
2133
|
-
declare const Drawer:
|
2155
|
+
declare const Drawer: {
|
2156
|
+
({ children, size }: IDrawer): React$1.ReactPortal;
|
2157
|
+
Header: () => react_jsx_runtime.JSX.Element;
|
2158
|
+
};
|
2134
2159
|
|
2135
2160
|
interface GridProps {
|
2136
2161
|
children: React.ReactNode;
|
@@ -2168,20 +2193,20 @@ declare enum ModalSize {
|
|
2168
2193
|
}
|
2169
2194
|
|
2170
2195
|
interface IModal {
|
2171
|
-
children?:
|
2196
|
+
children?: React__default.ReactNode;
|
2172
2197
|
title?: string;
|
2173
2198
|
size: ModalSize;
|
2174
2199
|
}
|
2175
2200
|
|
2176
|
-
declare const Modal: ({ children, size, title }: IModal) =>
|
2201
|
+
declare const Modal: ({ children, size, title }: IModal) => React__default.ReactPortal;
|
2177
2202
|
|
2178
2203
|
interface IOverlay {
|
2179
|
-
children?:
|
2180
|
-
header?:
|
2181
|
-
close:
|
2204
|
+
children?: React__default.ReactNode;
|
2205
|
+
header?: React__default.ReactNode;
|
2206
|
+
close: React__default.ReactNode;
|
2182
2207
|
}
|
2183
2208
|
|
2184
|
-
declare const Overlay: ({ children, header, close }: IOverlay) =>
|
2209
|
+
declare const Overlay: ({ children, header, close }: IOverlay) => React__default.ReactPortal;
|
2185
2210
|
|
2186
2211
|
declare enum WaveType {
|
2187
2212
|
ONE = "ONE",
|
@@ -2201,13 +2226,13 @@ interface IWave {
|
|
2201
2226
|
|
2202
2227
|
interface ISurface extends PropsWithChildren {
|
2203
2228
|
background: string;
|
2204
|
-
withWave?:
|
2229
|
+
withWave?: React__default.ReactElement<IWave>;
|
2205
2230
|
}
|
2206
2231
|
|
2207
2232
|
declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
|
2208
2233
|
|
2209
2234
|
interface ISwipe {
|
2210
|
-
children?:
|
2235
|
+
children?: React__default.ReactNode;
|
2211
2236
|
}
|
2212
2237
|
interface ISwipeable {
|
2213
2238
|
url: string;
|
@@ -2217,8 +2242,8 @@ interface ISwipeable {
|
|
2217
2242
|
declare global {
|
2218
2243
|
namespace JSX {
|
2219
2244
|
interface IntrinsicElements {
|
2220
|
-
"swiper-container":
|
2221
|
-
"swiper-slide":
|
2245
|
+
"swiper-container": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2246
|
+
"swiper-slide": React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>;
|
2222
2247
|
}
|
2223
2248
|
}
|
2224
2249
|
}
|
@@ -2228,66 +2253,73 @@ declare function Swipeable({ url, height }: ISwipeable): react_jsx_runtime.JSX.E
|
|
2228
2253
|
declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
|
2229
2254
|
|
2230
2255
|
interface IBasicPage {
|
2231
|
-
header:
|
2232
|
-
content:
|
2233
|
-
footer:
|
2256
|
+
header: React__default.ReactElement;
|
2257
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2258
|
+
footer: React__default.ReactElement;
|
2234
2259
|
}
|
2235
2260
|
|
2236
2261
|
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
2237
2262
|
|
2238
2263
|
interface IAccountPage {
|
2239
|
-
header:
|
2240
|
-
content:
|
2241
|
-
footer:
|
2264
|
+
header: React__default.ReactElement;
|
2265
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2266
|
+
footer: React__default.ReactElement;
|
2242
2267
|
}
|
2243
2268
|
|
2244
2269
|
declare const AccountPage: (props: IAccountPage) => react_jsx_runtime.JSX.Element;
|
2245
2270
|
|
2246
2271
|
interface IDetailsPage {
|
2247
|
-
header:
|
2248
|
-
content:
|
2249
|
-
footer:
|
2272
|
+
header: React__default.ReactElement;
|
2273
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2274
|
+
footer: React__default.ReactElement;
|
2250
2275
|
}
|
2251
2276
|
|
2252
2277
|
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
2253
2278
|
|
2254
2279
|
interface ISearchPage {
|
2255
|
-
header:
|
2256
|
-
content:
|
2257
|
-
footer:
|
2280
|
+
header: React__default.ReactElement;
|
2281
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2282
|
+
footer: React__default.ReactElement;
|
2258
2283
|
}
|
2259
2284
|
|
2260
2285
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
2261
2286
|
|
2262
2287
|
interface IEmptySearchPage {
|
2263
|
-
header:
|
2264
|
-
content:
|
2265
|
-
footer:
|
2288
|
+
header: React__default.ReactElement;
|
2289
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2290
|
+
footer: React__default.ReactElement;
|
2266
2291
|
}
|
2267
2292
|
|
2268
2293
|
declare const EmptySearchPage: (props: IEmptySearchPage) => react_jsx_runtime.JSX.Element;
|
2269
2294
|
|
2270
2295
|
interface ISearchWithMapPage {
|
2271
|
-
header:
|
2272
|
-
content:
|
2273
|
-
footer:
|
2296
|
+
header: React__default.ReactElement;
|
2297
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2298
|
+
footer: React__default.ReactElement;
|
2274
2299
|
}
|
2275
2300
|
|
2276
2301
|
declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
|
2277
2302
|
|
2278
2303
|
interface IShoppingCartPage {
|
2279
|
-
header:
|
2280
|
-
content:
|
2281
|
-
footer:
|
2304
|
+
header: React__default.ReactElement;
|
2305
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2306
|
+
footer: React__default.ReactElement;
|
2282
2307
|
}
|
2283
2308
|
|
2284
2309
|
declare const ShoppingCartPage: (props: IShoppingCartPage) => react_jsx_runtime.JSX.Element;
|
2285
2310
|
|
2311
|
+
interface IHeaderlessPage {
|
2312
|
+
header: React__default.ReactElement;
|
2313
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
2314
|
+
}
|
2315
|
+
|
2316
|
+
declare const HeaderlessPage: (props: IHeaderlessPage) => react_jsx_runtime.JSX.Element;
|
2317
|
+
|
2286
2318
|
interface BackdropContextType {
|
2287
2319
|
isBackdropVisible: boolean;
|
2288
|
-
setIsBackdropVisible:
|
2320
|
+
setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2289
2321
|
}
|
2290
|
-
declare const BackdropContext:
|
2322
|
+
declare const BackdropContext: React__default.Context<BackdropContextType>;
|
2291
2323
|
interface IBackdropProvider extends PropsWithChildren {
|
2292
2324
|
onClick?: () => void;
|
2293
2325
|
}
|
@@ -2295,31 +2327,31 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
|
|
2295
2327
|
|
2296
2328
|
interface BlurContextType {
|
2297
2329
|
isBlurred: boolean;
|
2298
|
-
setIsBlurred:
|
2330
|
+
setIsBlurred: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2299
2331
|
}
|
2300
|
-
declare const BlurContext:
|
2332
|
+
declare const BlurContext: React__default.Context<BlurContextType>;
|
2301
2333
|
interface IBlurProvider extends PropsWithChildren {
|
2302
2334
|
}
|
2303
|
-
declare const BlurProvider:
|
2335
|
+
declare const BlurProvider: React__default.FC<PropsWithChildren<{}>>;
|
2304
2336
|
|
2305
2337
|
interface DrawerContextType {
|
2306
2338
|
isOpen: boolean;
|
2307
|
-
setIsOpen:
|
2339
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2308
2340
|
}
|
2309
|
-
declare const DrawerContext:
|
2341
|
+
declare const DrawerContext: React__default.Context<DrawerContextType>;
|
2310
2342
|
interface IDrawerProvider extends PropsWithChildren {
|
2311
|
-
drawer?:
|
2343
|
+
drawer?: React__default.ReactNode;
|
2312
2344
|
size?: DrawerSize;
|
2313
2345
|
}
|
2314
2346
|
declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
2315
2347
|
|
2316
2348
|
interface ModalContextType {
|
2317
2349
|
isOpen: boolean;
|
2318
|
-
setIsOpen:
|
2350
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2319
2351
|
}
|
2320
|
-
declare const ModalContext:
|
2352
|
+
declare const ModalContext: React__default.Context<ModalContextType>;
|
2321
2353
|
interface IModalProvider extends PropsWithChildren {
|
2322
|
-
modal?:
|
2354
|
+
modal?: React__default.ReactNode;
|
2323
2355
|
size?: ModalSize;
|
2324
2356
|
title?: string;
|
2325
2357
|
}
|
@@ -2327,23 +2359,23 @@ declare const ModalProvider: ({ children, modal, size, title }: IModalProvider)
|
|
2327
2359
|
|
2328
2360
|
interface OverlayContextType {
|
2329
2361
|
isOpen: boolean;
|
2330
|
-
setIsOpen:
|
2362
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2331
2363
|
headerHeight: number;
|
2332
|
-
setHeaderHeight:
|
2364
|
+
setHeaderHeight: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2333
2365
|
}
|
2334
|
-
declare const OverlayContext:
|
2366
|
+
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
2335
2367
|
interface IOverlayProvider extends PropsWithChildren {
|
2336
|
-
overlay?:
|
2337
|
-
header?:
|
2338
|
-
close?:
|
2368
|
+
overlay?: React__default.ReactNode;
|
2369
|
+
header?: React__default.ReactNode;
|
2370
|
+
close?: React__default.ReactNode;
|
2339
2371
|
}
|
2340
2372
|
declare const OverlayProvider: ({ children, header, close, overlay }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
2341
2373
|
|
2342
2374
|
interface ProcessingContextType {
|
2343
2375
|
isDone: boolean;
|
2344
|
-
setIsDone:
|
2376
|
+
setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2345
2377
|
}
|
2346
|
-
declare const ProcessingContext:
|
2378
|
+
declare const ProcessingContext: React__default.Context<ProcessingContextType>;
|
2347
2379
|
declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2348
2380
|
|
2349
2381
|
declare const useIsProcessing: () => boolean;
|
@@ -2360,19 +2392,19 @@ interface GooglePlacesI {
|
|
2360
2392
|
autocomplete: google.maps.places.AutocompleteService;
|
2361
2393
|
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
2362
2394
|
}
|
2363
|
-
declare const GooglePlacesContext:
|
2395
|
+
declare const GooglePlacesContext: React__default.Context<AsyncResult<GooglePlacesI>>;
|
2364
2396
|
declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2365
2397
|
|
2366
|
-
declare const GoogleGeocoderContext:
|
2398
|
+
declare const GoogleGeocoderContext: React__default.Context<AsyncResult<google.maps.Geocoder>>;
|
2367
2399
|
declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2368
2400
|
|
2369
|
-
declare const GoogleDirectionsServiceContext:
|
2401
|
+
declare const GoogleDirectionsServiceContext: React__default.Context<AsyncResult<google.maps.DirectionsService>>;
|
2370
2402
|
declare const GoogleDirectionsServiceProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2371
2403
|
|
2372
|
-
declare const GoogleDirectionsRendererContext:
|
2404
|
+
declare const GoogleDirectionsRendererContext: React__default.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
2373
2405
|
declare const GoogleDirectionsRendererProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2374
2406
|
|
2375
|
-
declare const GoogleGeometryContext:
|
2407
|
+
declare const GoogleGeometryContext: React__default.Context<AsyncResult<google.maps.GeometryLibrary>>;
|
2376
2408
|
declare const GoogleGeometryProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
2377
2409
|
|
2378
2410
|
declare const useIsGoogleProcessing: () => boolean;
|
@@ -2391,9 +2423,9 @@ declare const useGoogleMapId: () => string;
|
|
2391
2423
|
|
2392
2424
|
declare const useGoogleApiKey: () => string;
|
2393
2425
|
|
2394
|
-
declare const ThemeModeContext:
|
2426
|
+
declare const ThemeModeContext: React__default.Context<{
|
2395
2427
|
themeMode: ThemeMode;
|
2396
|
-
setThemeMode:
|
2428
|
+
setThemeMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
|
2397
2429
|
}>;
|
2398
2430
|
interface PropsForThemeModeProvider extends PropsWithChildren {
|
2399
2431
|
fromBrowser: boolean;
|
@@ -2402,18 +2434,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
|
2402
2434
|
|
2403
2435
|
interface SearchContextType {
|
2404
2436
|
active: number;
|
2405
|
-
setActive:
|
2437
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2406
2438
|
}
|
2407
|
-
declare const SearchContext:
|
2439
|
+
declare const SearchContext: React__default.Context<SearchContextType>;
|
2408
2440
|
interface ISearchProvider extends PropsWithChildren {
|
2409
2441
|
}
|
2410
2442
|
declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
|
2411
2443
|
|
2412
2444
|
interface WizardContextType {
|
2413
2445
|
active: number;
|
2414
|
-
setActive:
|
2446
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
2415
2447
|
}
|
2416
|
-
declare const WizardContext:
|
2448
|
+
declare const WizardContext: React__default.Context<WizardContextType>;
|
2417
2449
|
interface IWizardProvider extends PropsWithChildren {
|
2418
2450
|
onClick?: () => void;
|
2419
2451
|
}
|
@@ -2421,20 +2453,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
|
|
2421
2453
|
|
2422
2454
|
interface WizardStepContextType {
|
2423
2455
|
complete: boolean;
|
2424
|
-
setComplete:
|
2456
|
+
setComplete: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
2425
2457
|
}
|
2426
|
-
declare const WizardStepContext:
|
2458
|
+
declare const WizardStepContext: React__default.Context<WizardStepContextType>;
|
2427
2459
|
interface IWizardStepProvider extends PropsWithChildren {
|
2428
2460
|
}
|
2429
2461
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
2430
2462
|
|
2431
2463
|
interface InlineSelectOptionI {
|
2432
2464
|
label: string;
|
2433
|
-
withIcon?:
|
2465
|
+
withIcon?: React__default.ReactElement<IIcon>;
|
2434
2466
|
}
|
2435
2467
|
interface InlineSelectOptionIconI {
|
2436
2468
|
label: string;
|
2437
|
-
withIcon:
|
2469
|
+
withIcon: React__default.ReactElement<IIcon>;
|
2438
2470
|
}
|
2439
2471
|
|
2440
2472
|
declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
|
@@ -2452,4 +2484,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
2452
2484
|
|
2453
2485
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
2454
2486
|
|
2455
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IShoppingCartPage, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
2487
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, AccountPage, AccountSectionHeader, AccountSectionProfile, AccountSectionRegister, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, CurrentLocation, CurrentLocationSize, DayOfBirth, type DayOfBirthI, DaySelect, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionTitle, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, EmptySearchPage, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, FormElement, FormMessage, FormMessageType, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GoogleGeometryContext, GoogleGeometryProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HTMLInputType, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, HeaderlessPage, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IAccountPage, type IAccountSectionHeader, type IAccountSectionProfile, type IAccountSectionRegister, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type ICurrentLocation, type IDaySelect, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionTitle, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IEmptySearchPage, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IFormElement, type IFormMessage, type IGallery, type IHeaderBottom, type IHeaderTop, type IHeaderlessPage, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type IListCard, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INoResults, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOpeningHoursSelect, type IOrigin, type IOverlay, type IOverlayProvider, type IPageHeader, type IPick, type IPill, type IPillCheckbox, type IPin, type IPinBase, type IPlaceholderPhoto, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IProgressSteps, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRequestArrangementHeader, type IRequestsSectionFooter, type IRequestsSectionHeader, type IRequestsSectionList, type IResultHeading, type IRoute, type IRouteLocation, type IRouteStep, type IRoutes, type ISafeHtml, type IScheduleSelect, type IScheduleSelectHeader, type IScheduleSelectRow, type IScrollableContentProps, type ISearchFilters, type ISearchFiltersItem, type ISearchFiltersModal, type ISearchFiltersOverlay, type ISearchInputs, type ISearchInputsElement, type ISearchInputsLabel, type ISearchInputsLabelWithIcon, type ISearchInputsOverlayInput, type ISearchPage, type ISearchProvider, type ISearchSectionEmpty, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IShoppingCartPage, type IStatus, type IStatusList, type IStep, type ISurface, type ISwipe, type ISwipeable, type ITable, type ITableBody, type ITableCell, type ITableHead, type ITableRow, type ITerm, type ITerminal, type IToggle, type ITopNavigation, type ITopNavigationItemBase, type IWave, type IWizard, type IWizardControls, type IWizardProvider, type IWizardStep, type IWizardStepProvider, type IYesNo, Icon, IconContext, IconSize, IconType, InfoCard, Information, InformationBackground, InformationVariant, InlineSelect, type InlineSelectI, InlineSelectIconAsOption, InlineSelectIconAsOptionSelected, InlineSelectLabelAsOption, InlineSelectLabelAsOptionSelected, type InlineSelectOptionI, Input, InputContext, Instruction, ItemType, Label, LabelSize, LabeledIcon, Link, LinkContext, List, ListCard, ListType, Location, LocationExample, type LocationHandle, type LocationI, type LocationMapHandle, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Name, type NameHandle, type NameI, Navigation, NoResults, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, OpeningHoursSelect, type OpeningHoursSelectHours, Openinghours, type OpeninghoursI, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeader, PageHeading, Pick, PickContext, Pill, PillCheckbox, PillCheckboxType, Pin, PinType, PlaceholderPhoto, PlaceholderPhotoType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, ProgressSteps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record$1 as Record, Records, RequestArrangementHeader, RequestsSectionFooter, RequestsSectionHeader, RequestsSectionList, ResultHeading, Route, type RouteHandle, type RouteI, RouteLocation, RouteLocationExample, SafeHtml, ScaledFigure, ScaledIcon, ScheduleSelect, SearchContext, SearchFilters, SearchFiltersItem, SearchFiltersLabel, SearchFiltersModal, SearchFiltersOverlay, SearchInputs, SearchInputsElement, SearchInputsLabel, SearchInputsLabelWithIcon, SearchInputsOverlay, SearchInputsOverlayInput, SearchPage, SearchProvider, SearchSectionEmpty, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, SharedSectionHeaderAlternate, ShoppingCartPage, Status, StatusCompact, StatusContext, StatusList, Surface, Swipe, Swipeable, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, TableCellType, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleGeometry, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|