@tactics/lokaal-loket 0.0.206 → 0.0.208
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +951 -738
- package/build/index.d.cts +374 -277
- package/build/index.d.ts +374 -277
- package/build/index.js +728 -525
- package/package.json +1 -1
package/build/index.d.ts
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';
|
@@ -67,7 +68,7 @@ declare enum IconType {
|
|
67
68
|
}
|
68
69
|
|
69
70
|
interface IScaledIcon {
|
70
|
-
icon:
|
71
|
+
icon: React__default.ReactElement<IIcon>;
|
71
72
|
size: IconSize;
|
72
73
|
}
|
73
74
|
interface IIcon {
|
@@ -76,7 +77,7 @@ interface IIcon {
|
|
76
77
|
}
|
77
78
|
|
78
79
|
interface ILabeledIcon {
|
79
|
-
withIconBefore:
|
80
|
+
withIconBefore: React__default.ReactElement<IIcon>;
|
80
81
|
label: string;
|
81
82
|
}
|
82
83
|
|
@@ -178,7 +179,7 @@ interface IFigure {
|
|
178
179
|
screenReaderText: string;
|
179
180
|
}
|
180
181
|
interface IScaledFigure {
|
181
|
-
figure:
|
182
|
+
figure: React__default.ReactElement<IFigure>;
|
182
183
|
size: FigureSize;
|
183
184
|
}
|
184
185
|
|
@@ -192,7 +193,7 @@ declare enum FramePadding {
|
|
192
193
|
}
|
193
194
|
|
194
195
|
interface IFrame {
|
195
|
-
around:
|
196
|
+
around: React__default.ReactElement<IIcon | IFigure>;
|
196
197
|
split?: string | false;
|
197
198
|
background?: string;
|
198
199
|
padding?: FramePadding;
|
@@ -201,7 +202,7 @@ interface IFrame {
|
|
201
202
|
|
202
203
|
interface IBadge {
|
203
204
|
type: BadgeType;
|
204
|
-
figure:
|
205
|
+
figure: React__default.ReactElement<IFigure>;
|
205
206
|
size?: BadgeSize;
|
206
207
|
}
|
207
208
|
|
@@ -236,7 +237,7 @@ interface ILogoBase {
|
|
236
237
|
ariaLabel: string;
|
237
238
|
alt: string;
|
238
239
|
size: LogoSize;
|
239
|
-
children?:
|
240
|
+
children?: React__default.ReactNode | React__default.ReactNode[];
|
240
241
|
}
|
241
242
|
interface ILogoLoad extends ILogoBase {
|
242
243
|
srcset?: ILogoSrc;
|
@@ -246,7 +247,7 @@ interface ILogo extends ILogoLoad {
|
|
246
247
|
|
247
248
|
interface IBrand {
|
248
249
|
ariaLabel: string;
|
249
|
-
logo:
|
250
|
+
logo: React__default.ReactElement<ILogo>;
|
250
251
|
name: string;
|
251
252
|
}
|
252
253
|
|
@@ -266,18 +267,19 @@ interface ILink {
|
|
266
267
|
id: string;
|
267
268
|
title: string;
|
268
269
|
href: string;
|
269
|
-
onClick?:
|
270
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
270
271
|
ariaLabel: string;
|
271
272
|
children?: string;
|
272
273
|
context?: LinkContext;
|
273
|
-
withIconBefore?:
|
274
|
-
withIconAfter?:
|
274
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
275
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
276
|
+
target?: React__default.HTMLAttributeAnchorTarget;
|
275
277
|
}
|
276
278
|
|
277
|
-
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, }: ILink) => react_jsx_runtime.JSX.Element;
|
279
|
+
declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
|
278
280
|
|
279
281
|
interface IBreadcrumb {
|
280
|
-
crumbs:
|
282
|
+
crumbs: React__default.ReactElement<ILink>[];
|
281
283
|
currentPage: string;
|
282
284
|
}
|
283
285
|
|
@@ -299,7 +301,7 @@ declare enum ButtonType {
|
|
299
301
|
LINK = "LINK"
|
300
302
|
}
|
301
303
|
|
302
|
-
type ClickHandler$1 =
|
304
|
+
type ClickHandler$1 = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement> & React__default.KeyboardEventHandler<HTMLAnchorElement> & React__default.KeyboardEventHandler<HTMLButtonElement>;
|
303
305
|
interface IButtonMinimal {
|
304
306
|
id?: string;
|
305
307
|
title: string;
|
@@ -313,14 +315,14 @@ interface IButton {
|
|
313
315
|
ariaLabel: string;
|
314
316
|
onClick?: ClickHandler$1;
|
315
317
|
children?: string;
|
316
|
-
withIconBefore?:
|
317
|
-
withIconAfter?:
|
318
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
319
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
318
320
|
type?: ButtonType;
|
319
321
|
context?: ButtonContext;
|
320
322
|
href?: string;
|
321
323
|
}
|
322
324
|
|
323
|
-
declare const Button:
|
325
|
+
declare const Button: React__default.ForwardRefExoticComponent<IButton & React__default.RefAttributes<HTMLButtonElement>>;
|
324
326
|
|
325
327
|
declare enum CheckboxContext {
|
326
328
|
STANDARD = "STANDARD",
|
@@ -329,7 +331,7 @@ declare enum CheckboxContext {
|
|
329
331
|
}
|
330
332
|
|
331
333
|
interface ICheckboxBase {
|
332
|
-
onChange?: (e:
|
334
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
333
335
|
value: string;
|
334
336
|
ariaLabel?: string;
|
335
337
|
label: string;
|
@@ -350,14 +352,14 @@ declare enum ChoiceContext {
|
|
350
352
|
}
|
351
353
|
|
352
354
|
interface IChoiceBase {
|
353
|
-
onChange?: (e:
|
355
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
354
356
|
value: string;
|
355
357
|
ariaLabel?: string;
|
356
358
|
label: string;
|
357
359
|
name: string;
|
358
360
|
checked?: boolean;
|
359
361
|
defaultChecked?: boolean;
|
360
|
-
icon:
|
362
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
361
363
|
}
|
362
364
|
interface IChoice extends IChoiceBase {
|
363
365
|
context?: ChoiceContext;
|
@@ -366,7 +368,7 @@ interface IChoice extends IChoiceBase {
|
|
366
368
|
declare const Choice: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, icon, }: IChoice) => react_jsx_runtime.JSX.Element;
|
367
369
|
|
368
370
|
interface IFeature {
|
369
|
-
withIconBefore?:
|
371
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
370
372
|
label: string;
|
371
373
|
}
|
372
374
|
|
@@ -415,8 +417,8 @@ declare enum InformationBackground {
|
|
415
417
|
}
|
416
418
|
|
417
419
|
interface IInformation {
|
418
|
-
text:
|
419
|
-
frame?:
|
420
|
+
text: React__default.ReactElement<IPlainText>;
|
421
|
+
frame?: React__default.ReactElement<IFrame>;
|
420
422
|
variant?: InformationVariant;
|
421
423
|
background?: InformationBackground;
|
422
424
|
}
|
@@ -431,15 +433,15 @@ declare enum InputContext {
|
|
431
433
|
|
432
434
|
interface InputChangeEvent {
|
433
435
|
value: string;
|
434
|
-
event:
|
436
|
+
event: React__default.ChangeEvent<HTMLInputElement>;
|
435
437
|
}
|
436
438
|
interface InputBlurEvent {
|
437
439
|
value: string;
|
438
|
-
event:
|
440
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
439
441
|
}
|
440
442
|
interface InputFocusEvent {
|
441
443
|
value: string;
|
442
|
-
event:
|
444
|
+
event: React__default.FocusEvent<HTMLInputElement, Element>;
|
443
445
|
}
|
444
446
|
interface IInputBase {
|
445
447
|
defaultValue?: string;
|
@@ -450,8 +452,8 @@ interface IInputBase {
|
|
450
452
|
placeholder?: string;
|
451
453
|
ariaLabel?: string;
|
452
454
|
name: string;
|
453
|
-
withIconBefore?:
|
454
|
-
withIconAfter?:
|
455
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
456
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
455
457
|
}
|
456
458
|
interface IInput extends IInputBase {
|
457
459
|
context?: InputContext;
|
@@ -478,12 +480,12 @@ declare enum ListType {
|
|
478
480
|
|
479
481
|
interface IListBase {
|
480
482
|
type?: ListType;
|
481
|
-
children?:
|
483
|
+
children?: React__default.ReactNode;
|
482
484
|
}
|
483
485
|
interface IList extends IListBase {
|
484
486
|
}
|
485
487
|
interface IListItemBase {
|
486
|
-
children?:
|
488
|
+
children?: React__default.ReactNode;
|
487
489
|
}
|
488
490
|
interface ListItemThemeableProps extends IListItemBase {
|
489
491
|
}
|
@@ -508,14 +510,14 @@ declare enum PickContext {
|
|
508
510
|
}
|
509
511
|
|
510
512
|
interface IPickBase {
|
511
|
-
onChange?: (e:
|
513
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
512
514
|
value: string;
|
513
515
|
ariaLabel?: string;
|
514
516
|
label: string;
|
515
517
|
name: string;
|
516
518
|
checked?: boolean;
|
517
519
|
defaultChecked?: boolean;
|
518
|
-
icon:
|
520
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
519
521
|
}
|
520
522
|
interface IPick extends IPickBase {
|
521
523
|
context?: PickContext;
|
@@ -525,7 +527,7 @@ declare const Pick: ({ context, onChange, value, ariaLabel, label, name, checked
|
|
525
527
|
|
526
528
|
interface IPill {
|
527
529
|
label: string;
|
528
|
-
withIconBefore?:
|
530
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
529
531
|
}
|
530
532
|
|
531
533
|
declare const Pill: ({ withIconBefore, label }: IPill) => react_jsx_runtime.JSX.Element;
|
@@ -553,7 +555,7 @@ declare enum RadioContext {
|
|
553
555
|
}
|
554
556
|
|
555
557
|
interface IRadioBase {
|
556
|
-
onChange?: (e:
|
558
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
557
559
|
value: string;
|
558
560
|
ariaLabel?: string;
|
559
561
|
label: string;
|
@@ -568,9 +570,9 @@ interface IRadio extends IRadioBase {
|
|
568
570
|
declare const Radio: ({ context, onChange, value, ariaLabel, label, name, checked, defaultChecked, }: IRadio) => react_jsx_runtime.JSX.Element;
|
569
571
|
|
570
572
|
interface IRecord {
|
571
|
-
withIconBefore?:
|
573
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
572
574
|
label: string;
|
573
|
-
value: string |
|
575
|
+
value: string | React__default.ReactNode;
|
574
576
|
}
|
575
577
|
|
576
578
|
declare const Record: ({ label, value, withIconBefore }: IRecord) => react_jsx_runtime.JSX.Element;
|
@@ -595,7 +597,7 @@ declare const StatusCompact: ({ context }: IStatusCompact) => react_jsx_runtime.
|
|
595
597
|
declare const Status: ({ context, label }: IStatus) => react_jsx_runtime.JSX.Element;
|
596
598
|
|
597
599
|
interface ITerm {
|
598
|
-
figure:
|
600
|
+
figure: React__default.ReactElement<IFigure>;
|
599
601
|
label: string;
|
600
602
|
description?: string;
|
601
603
|
}
|
@@ -632,14 +634,14 @@ declare enum BigChoiceContext {
|
|
632
634
|
}
|
633
635
|
|
634
636
|
interface IBigChoiceBase {
|
635
|
-
onChange?: (e:
|
637
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
636
638
|
value: string;
|
637
639
|
ariaLabel?: string;
|
638
640
|
label: string;
|
639
641
|
name: string;
|
640
642
|
checked?: boolean;
|
641
643
|
defaultChecked?: boolean;
|
642
|
-
icon:
|
644
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
643
645
|
}
|
644
646
|
interface IBigChoice extends IBigChoiceBase {
|
645
647
|
context?: BigChoiceContext;
|
@@ -654,14 +656,14 @@ declare enum BigPickContext {
|
|
654
656
|
}
|
655
657
|
|
656
658
|
interface IBigPickBase {
|
657
|
-
onChange?: (e:
|
659
|
+
onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
658
660
|
value: string;
|
659
661
|
ariaLabel?: string;
|
660
662
|
label: string;
|
661
663
|
name: string;
|
662
664
|
checked?: boolean;
|
663
665
|
defaultChecked?: boolean;
|
664
|
-
icon:
|
666
|
+
icon: React__default.ReactElement<IIcon | IFigure>;
|
665
667
|
}
|
666
668
|
interface IBigPick extends IBigPickBase {
|
667
669
|
context?: BigPickContext;
|
@@ -682,14 +684,14 @@ interface SelectFocusEvent<T> extends SelectEvent<T> {
|
|
682
684
|
interface InlineSelectI<T> {
|
683
685
|
options: T[];
|
684
686
|
defaultIndex: number;
|
685
|
-
optionToDisplay: (option: T) =>
|
686
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
687
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
688
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
687
689
|
onChange?: (e: SelectChangeEvent<T>) => void;
|
688
690
|
}
|
689
691
|
|
690
692
|
declare const InlineSelect: <T>(args: InlineSelectI<T>) => react_jsx_runtime.JSX.Element;
|
691
693
|
|
692
|
-
type SetState<T> =
|
694
|
+
type SetState<T> = React__default.Dispatch<React__default.SetStateAction<T>>;
|
693
695
|
interface AutoCompleteContextType<T> {
|
694
696
|
input: string;
|
695
697
|
setInput: SetState<string>;
|
@@ -706,12 +708,12 @@ interface AutocompleteI<T> {
|
|
706
708
|
debounceTime: number;
|
707
709
|
placeholder?: string;
|
708
710
|
ariaLabel?: string;
|
709
|
-
withIconBefore?:
|
710
|
-
withIconAfter?:
|
711
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
712
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
711
713
|
options: T[];
|
712
714
|
optionDefault?: T;
|
713
|
-
optionToDisplay: (option: T) =>
|
714
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
715
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
716
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
715
717
|
optionToInputValue: (option: T) => string;
|
716
718
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
717
719
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -724,8 +726,8 @@ interface AutocompleteInputI<T> {
|
|
724
726
|
debounceTime: number;
|
725
727
|
placeholder?: string;
|
726
728
|
ariaLabel?: string;
|
727
|
-
withIconBefore?:
|
728
|
-
withIconAfter?:
|
729
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
730
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
729
731
|
theme: IInputTheme;
|
730
732
|
options: T[];
|
731
733
|
optionToInputValue: (option: T) => string;
|
@@ -738,13 +740,13 @@ interface AutocompleteInputI<T> {
|
|
738
740
|
interface AutocompleteOptionI<T> {
|
739
741
|
label: string;
|
740
742
|
withDetails?: string;
|
741
|
-
withFigure?:
|
743
|
+
withFigure?: React__default.ReactElement<IFigure> | React__default.ReactElement<IIcon>;
|
742
744
|
}
|
743
745
|
interface AutocompleteOptionsI<T> {
|
744
746
|
options: T[];
|
745
747
|
optionDefault?: T;
|
746
|
-
optionToDisplay: (option: T) =>
|
747
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
748
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
749
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
748
750
|
optionToInputValue: (option: T) => string;
|
749
751
|
onNavigate?: (e: AutocompleteOptionNavigatedEvent<T>) => void;
|
750
752
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
@@ -761,11 +763,11 @@ interface AutocompleteChangeEvent {
|
|
761
763
|
}
|
762
764
|
interface AutocompleteBlurEvent {
|
763
765
|
input: string;
|
764
|
-
event:
|
766
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
765
767
|
}
|
766
768
|
interface AutocompleteFocusEvent {
|
767
769
|
input: string;
|
768
|
-
event:
|
770
|
+
event: React__default.FocusEvent<HTMLInputElement>;
|
769
771
|
}
|
770
772
|
|
771
773
|
declare const AutocompleteInput: <T>(props: AutocompleteInputI<T> & {
|
@@ -781,13 +783,13 @@ interface LocationI<T> {
|
|
781
783
|
name: string;
|
782
784
|
placeholder?: string;
|
783
785
|
ariaLabel?: string;
|
784
|
-
withIconBefore?:
|
785
|
-
withIconAfter?:
|
786
|
+
withIconBefore?: React__default.ReactElement<IIcon>;
|
787
|
+
withIconAfter?: React__default.ReactElement<IIcon>;
|
786
788
|
debounceTime?: number;
|
787
789
|
options: T[];
|
788
790
|
optionDefault?: T;
|
789
|
-
optionToDisplay: (option: T) =>
|
790
|
-
optionToDisplayWhenSelected?: (option: T) =>
|
791
|
+
optionToDisplay: (option: T) => React__default.ReactNode;
|
792
|
+
optionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
791
793
|
optionToInputValue: (option: T) => string;
|
792
794
|
onSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
793
795
|
onInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -823,21 +825,21 @@ interface RouteI<T, R, D> {
|
|
823
825
|
debounceTime?: number;
|
824
826
|
originPlaceholder?: string;
|
825
827
|
originAriaLabel?: string;
|
826
|
-
originWithIconBefore?:
|
827
|
-
originWithIconAfter?:
|
828
|
+
originWithIconBefore?: React__default.ReactElement<IIcon>;
|
829
|
+
originWithIconAfter?: React__default.ReactElement<IIcon>;
|
828
830
|
destinationPlaceholder?: string;
|
829
831
|
destinationAriaLabel?: string;
|
830
|
-
destinationWithIconBefore?:
|
831
|
-
destinationWithIconAfter?:
|
832
|
+
destinationWithIconBefore?: React__default.ReactElement<IIcon>;
|
833
|
+
destinationWithIconAfter?: React__default.ReactElement<IIcon>;
|
832
834
|
originOptions: T[];
|
833
835
|
originOptionDefault?: T;
|
834
|
-
originOptionToDisplay: (option: T) =>
|
835
|
-
originOptionToDisplayWhenSelected?: (option: T) =>
|
836
|
+
originOptionToDisplay: (option: T) => React__default.ReactNode;
|
837
|
+
originOptionToDisplayWhenSelected?: (option: T) => React__default.ReactNode;
|
836
838
|
originOptionToInputValue: (option: T) => string;
|
837
839
|
destinationOptions: D[];
|
838
840
|
destinationOptionDefault?: D;
|
839
|
-
destinationOptionToDisplay: (option: D) =>
|
840
|
-
destinationOptionToDisplayWhenSelected?: (option: D) =>
|
841
|
+
destinationOptionToDisplay: (option: D) => React__default.ReactNode;
|
842
|
+
destinationOptionToDisplayWhenSelected?: (option: D) => React__default.ReactNode;
|
841
843
|
destinationOptionToInputValue: (option: D) => string;
|
842
844
|
onOriginSelected?: (e: AutocompleteSelectEvent<T>) => void;
|
843
845
|
onOriginInputChange?: (e: AutocompleteChangeEvent) => void;
|
@@ -862,9 +864,9 @@ declare const FilterTag: ({ label, action }: IFilterTag) => react_jsx_runtime.JS
|
|
862
864
|
|
863
865
|
interface IRouteLocation {
|
864
866
|
onChange?: (value: routeLocation) => void;
|
865
|
-
location:
|
867
|
+
location: React__default.ReactElement;
|
866
868
|
locationLabel: string;
|
867
|
-
route:
|
869
|
+
route: React__default.ReactElement;
|
868
870
|
routeLabel: string;
|
869
871
|
name: string;
|
870
872
|
defaultChecked?: boolean;
|
@@ -875,13 +877,13 @@ type routeLocation = "route" | "location";
|
|
875
877
|
declare const RouteLocation: (args: IRouteLocation) => react_jsx_runtime.JSX.Element;
|
876
878
|
|
877
879
|
interface SwitchI {
|
878
|
-
children:
|
879
|
-
onChange?: (e:
|
880
|
+
children: React__default.ReactElement<SwitchItemI>[];
|
881
|
+
onChange?: (e: React__default.MouseEvent<HTMLDivElement>, value: string) => void;
|
880
882
|
init: string;
|
881
883
|
}
|
882
884
|
interface SwitchItemI {
|
883
885
|
label: string;
|
884
|
-
content:
|
886
|
+
content: React__default.ReactElement;
|
885
887
|
value: string;
|
886
888
|
}
|
887
889
|
interface SwitchItemContentI extends PropsWithChildren {
|
@@ -960,15 +962,15 @@ interface ICompactNavigation extends ICompactNavigationBase {
|
|
960
962
|
}
|
961
963
|
interface ICompactNavigationBase {
|
962
964
|
toggleLabel: string;
|
963
|
-
children?:
|
964
|
-
footer?:
|
965
|
+
children?: React__default.ReactNode;
|
966
|
+
footer?: React__default.ReactNode;
|
965
967
|
}
|
966
968
|
interface ICompactNavigationItem {
|
967
969
|
label: string;
|
968
970
|
href: string;
|
969
|
-
onClick?:
|
971
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
970
972
|
isActive?: boolean;
|
971
|
-
icon:
|
973
|
+
icon: React__default.ReactElement<IIcon>;
|
972
974
|
}
|
973
975
|
|
974
976
|
declare const CompactNavigation: {
|
@@ -979,7 +981,7 @@ declare const CompactNavigation: {
|
|
979
981
|
interface ICompactFooter extends ICompactFooterBase {
|
980
982
|
}
|
981
983
|
interface ICompactFooterBase {
|
982
|
-
children?:
|
984
|
+
children?: React__default.ReactNode;
|
983
985
|
title?: string;
|
984
986
|
description?: string;
|
985
987
|
}
|
@@ -987,16 +989,16 @@ interface ICompactFooterBase {
|
|
987
989
|
declare const CompactFooter: ({ children, title, description, }: ICompactFooter) => react_jsx_runtime.JSX.Element;
|
988
990
|
|
989
991
|
interface IDetailsBase {
|
990
|
-
children?:
|
992
|
+
children?: React__default.ReactNode;
|
991
993
|
}
|
992
994
|
interface IDetails extends IDetailsBase {
|
993
995
|
}
|
994
996
|
interface DetailsHeaderThemeableProps {
|
995
997
|
title: string;
|
996
|
-
children?:
|
998
|
+
children?: React__default.ReactNode;
|
997
999
|
}
|
998
1000
|
interface DetailsContentThemeableProps {
|
999
|
-
children?:
|
1001
|
+
children?: React__default.ReactNode;
|
1000
1002
|
}
|
1001
1003
|
|
1002
1004
|
declare const Details: {
|
@@ -1006,7 +1008,7 @@ declare const Details: {
|
|
1006
1008
|
};
|
1007
1009
|
|
1008
1010
|
interface IFaqBase {
|
1009
|
-
children?:
|
1011
|
+
children?: React__default.ReactNode;
|
1010
1012
|
}
|
1011
1013
|
interface IFaq extends IFaqBase {
|
1012
1014
|
}
|
@@ -1014,7 +1016,7 @@ interface FaqHeaderThemeableProps {
|
|
1014
1016
|
title: string;
|
1015
1017
|
}
|
1016
1018
|
interface FaqContentThemeableProps {
|
1017
|
-
children?:
|
1019
|
+
children?: React__default.ReactNode;
|
1018
1020
|
}
|
1019
1021
|
|
1020
1022
|
declare const Faq: {
|
@@ -1024,19 +1026,19 @@ declare const Faq: {
|
|
1024
1026
|
};
|
1025
1027
|
|
1026
1028
|
interface ISelectBox {
|
1027
|
-
children:
|
1029
|
+
children: React__default.ReactNode;
|
1028
1030
|
}
|
1029
1031
|
interface ISelectBoxMenuItem {
|
1030
|
-
figure:
|
1032
|
+
figure: React__default.ReactElement<IFigure>;
|
1031
1033
|
label: string;
|
1032
1034
|
action: () => void;
|
1033
1035
|
}
|
1034
1036
|
interface ISelectBoxSelect {
|
1035
|
-
figure:
|
1037
|
+
figure: React__default.ReactElement<IFigure>;
|
1036
1038
|
label: string;
|
1037
1039
|
}
|
1038
1040
|
interface ISelectBoxMenu {
|
1039
|
-
children:
|
1041
|
+
children: React__default.ReactNode;
|
1040
1042
|
}
|
1041
1043
|
|
1042
1044
|
declare const SelectBox: {
|
@@ -1047,7 +1049,7 @@ declare const SelectBox: {
|
|
1047
1049
|
};
|
1048
1050
|
|
1049
1051
|
interface ICategoryLink {
|
1050
|
-
figure:
|
1052
|
+
figure: React__default.ReactElement<IFigure>;
|
1051
1053
|
title: string;
|
1052
1054
|
description: string;
|
1053
1055
|
label: string;
|
@@ -1063,7 +1065,7 @@ interface IQuote {
|
|
1063
1065
|
declare const Quote: ({ quote }: IQuote) => react_jsx_runtime.JSX.Element;
|
1064
1066
|
|
1065
1067
|
interface IFeatures {
|
1066
|
-
children:
|
1068
|
+
children: React__default.ReactElement<IFeature> | React__default.ReactElement<IFeature>[];
|
1067
1069
|
}
|
1068
1070
|
|
1069
1071
|
declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Element;
|
@@ -1071,15 +1073,15 @@ declare const Features: ({ children }: IFeatures) => react_jsx_runtime.JSX.Eleme
|
|
1071
1073
|
interface INavigation extends INavigationBase {
|
1072
1074
|
}
|
1073
1075
|
interface INavigationBase {
|
1074
|
-
children?:
|
1075
|
-
logo:
|
1076
|
+
children?: React__default.ReactNode;
|
1077
|
+
logo: React__default.ReactNode;
|
1076
1078
|
}
|
1077
1079
|
interface INavigationItem {
|
1078
1080
|
label: string;
|
1079
1081
|
href: string;
|
1080
|
-
onClick?:
|
1082
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1081
1083
|
isActive?: boolean;
|
1082
|
-
icon:
|
1084
|
+
icon: React__default.ReactElement<IIcon>;
|
1083
1085
|
}
|
1084
1086
|
|
1085
1087
|
declare const Navigation: {
|
@@ -1093,12 +1095,12 @@ declare enum ItemType {
|
|
1093
1095
|
}
|
1094
1096
|
|
1095
1097
|
interface IProfileNavigation {
|
1096
|
-
children?:
|
1098
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1097
1099
|
}
|
1098
1100
|
interface ProfileNavigationThemeableProps {
|
1099
|
-
children?:
|
1101
|
+
children?: React__default.ReactElement<ProfileNavigationItemThemeableProps> | React__default.ReactElement<ProfileNavigationItemThemeableProps>[];
|
1100
1102
|
}
|
1101
|
-
type ClickHandler =
|
1103
|
+
type ClickHandler = React__default.MouseEventHandler<HTMLAnchorElement> & React__default.MouseEventHandler<HTMLButtonElement>;
|
1102
1104
|
interface ProfileNavigationItemThemeableProps {
|
1103
1105
|
label: string;
|
1104
1106
|
icon: IconType;
|
@@ -1115,7 +1117,7 @@ declare const ProfileNavigation: {
|
|
1115
1117
|
};
|
1116
1118
|
|
1117
1119
|
interface IRecords {
|
1118
|
-
children:
|
1120
|
+
children: React__default.ReactElement<IRecord> | React__default.ReactElement<IRecord>[];
|
1119
1121
|
}
|
1120
1122
|
|
1121
1123
|
declare const Records: ({ children }: IRecords) => react_jsx_runtime.JSX.Element;
|
@@ -1130,11 +1132,11 @@ declare const StatusList: ({ children, withCount }: IStatusList) => react_jsx_ru
|
|
1130
1132
|
interface ITopNavigation extends ITopNavigationBase {
|
1131
1133
|
}
|
1132
1134
|
interface ITopNavigationBase {
|
1133
|
-
children?:
|
1135
|
+
children?: React__default.ReactNode;
|
1134
1136
|
}
|
1135
1137
|
interface ITopNavigationItemBase {
|
1136
1138
|
href: string;
|
1137
|
-
onClick?:
|
1139
|
+
onClick?: React__default.MouseEventHandler<HTMLAnchorElement>;
|
1138
1140
|
label: string;
|
1139
1141
|
icon: IconType;
|
1140
1142
|
}
|
@@ -1147,20 +1149,20 @@ declare const TopNavigation: {
|
|
1147
1149
|
interface IOnboarding {
|
1148
1150
|
heading: string;
|
1149
1151
|
content: string;
|
1150
|
-
cta:
|
1151
|
-
figure:
|
1152
|
-
onClick?: (e:
|
1152
|
+
cta: React__default.ReactElement;
|
1153
|
+
figure: React__default.ReactElement<IFigure>;
|
1154
|
+
onClick?: (e: React__default.MouseEvent<HTMLButtonElement>) => void;
|
1153
1155
|
}
|
1154
1156
|
interface IOnboardingButton extends IButtonMinimal {
|
1155
1157
|
}
|
1156
1158
|
|
1157
|
-
declare const OnboardingButton:
|
1159
|
+
declare const OnboardingButton: React__default.ForwardRefExoticComponent<IOnboardingButton & React__default.RefAttributes<HTMLButtonElement>>;
|
1158
1160
|
declare const Onboarding: ({ heading, content, cta, figure }: IOnboarding) => react_jsx_runtime.JSX.Element;
|
1159
1161
|
|
1160
1162
|
interface IQuickSearch {
|
1161
1163
|
heading: string;
|
1162
|
-
content:
|
1163
|
-
action:
|
1164
|
+
content: React__default.ReactNode;
|
1165
|
+
action: React__default.ReactNode;
|
1164
1166
|
}
|
1165
1167
|
|
1166
1168
|
declare const QuickSearch: ({ heading, content, action }: IQuickSearch) => react_jsx_runtime.JSX.Element;
|
@@ -1188,7 +1190,7 @@ declare const Instruction: ({ figureType, label }: IInstruction) => react_jsx_ru
|
|
1188
1190
|
|
1189
1191
|
interface ICta {
|
1190
1192
|
label: string;
|
1191
|
-
action:
|
1193
|
+
action: React__default.ReactElement<IButton>;
|
1192
1194
|
}
|
1193
1195
|
|
1194
1196
|
declare const Cta: ({ label, action }: ICta) => react_jsx_runtime.JSX.Element;
|
@@ -1203,7 +1205,7 @@ declare const FigureHeading: ({ figure, title }: IFigureHeading) => react_jsx_ru
|
|
1203
1205
|
interface IFooterNavigation extends IFooterNavigationBase {
|
1204
1206
|
}
|
1205
1207
|
interface IFooterNavigationBase {
|
1206
|
-
children?:
|
1208
|
+
children?: React__default.ReactNode;
|
1207
1209
|
}
|
1208
1210
|
|
1209
1211
|
declare const FooterNavigation: ({ children }: IFooterNavigation) => react_jsx_runtime.JSX.Element;
|
@@ -1217,40 +1219,40 @@ interface IBottomNavigationBase {
|
|
1217
1219
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1218
1220
|
|
1219
1221
|
interface IHeaderMobile {
|
1220
|
-
profileNavigation:
|
1221
|
-
compactNavigation:
|
1222
|
+
profileNavigation: React__default.ReactNode;
|
1223
|
+
compactNavigation: React__default.ReactNode;
|
1222
1224
|
}
|
1223
1225
|
interface IHeaderTop {
|
1224
|
-
brand:
|
1225
|
-
topNavigation:
|
1226
|
+
brand: React__default.ReactNode;
|
1227
|
+
topNavigation: React__default.ReactNode;
|
1226
1228
|
}
|
1227
1229
|
interface IHeaderBottom extends IHeaderMobile {
|
1228
|
-
navigation:
|
1229
|
-
brand:
|
1230
|
+
navigation: React__default.ReactNode;
|
1231
|
+
brand: React__default.ReactNode;
|
1230
1232
|
stickOnScroll: boolean;
|
1231
1233
|
}
|
1232
1234
|
interface IHeaderAlternate extends IHeaderMobile {
|
1233
|
-
navigation:
|
1234
|
-
brand:
|
1235
|
+
navigation: React__default.ReactNode;
|
1236
|
+
brand: React__default.ReactNode;
|
1235
1237
|
}
|
1236
1238
|
|
1237
1239
|
interface HeaderContextType {
|
1238
1240
|
isSticky: boolean;
|
1239
|
-
setIsSticky:
|
1241
|
+
setIsSticky: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1240
1242
|
showLogo: boolean;
|
1241
|
-
setShowLogo:
|
1243
|
+
setShowLogo: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1242
1244
|
}
|
1243
|
-
declare const HeaderContext:
|
1245
|
+
declare const HeaderContext: React__default.Context<HeaderContextType>;
|
1244
1246
|
|
1245
1247
|
declare const HeaderTop: (props: IHeaderTop) => react_jsx_runtime.JSX.Element;
|
1246
1248
|
declare const HeaderBottom: (props: IHeaderBottom) => react_jsx_runtime.JSX.Element;
|
1247
1249
|
declare const HeaderAlternate: (props: IHeaderAlternate) => react_jsx_runtime.JSX.Element;
|
1248
1250
|
|
1249
1251
|
interface IFooter {
|
1250
|
-
top:
|
1251
|
-
left:
|
1252
|
-
right:
|
1253
|
-
bottom:
|
1252
|
+
top: React__default.ReactNode;
|
1253
|
+
left: React__default.ReactNode;
|
1254
|
+
right: React__default.ReactNode;
|
1255
|
+
bottom: React__default.ReactNode;
|
1254
1256
|
}
|
1255
1257
|
|
1256
1258
|
declare const Footer: ({ top, left, right, bottom }: IFooter) => react_jsx_runtime.JSX.Element;
|
@@ -1267,7 +1269,7 @@ interface IPin {
|
|
1267
1269
|
name: string;
|
1268
1270
|
address: string;
|
1269
1271
|
type: PointType;
|
1270
|
-
overlay:
|
1272
|
+
overlay: React__default.ReactNode;
|
1271
1273
|
}
|
1272
1274
|
interface ILine {
|
1273
1275
|
key: string;
|
@@ -1293,20 +1295,20 @@ interface IFailureMap {
|
|
1293
1295
|
message: string;
|
1294
1296
|
}
|
1295
1297
|
interface IMapLegendLabel {
|
1296
|
-
figure:
|
1298
|
+
figure: React__default.ReactElement<IFigure>;
|
1297
1299
|
label: string;
|
1298
1300
|
}
|
1299
1301
|
interface IMapLegendItem {
|
1300
|
-
pin:
|
1302
|
+
pin: React__default.ReactElement<IPin>;
|
1301
1303
|
label: string;
|
1302
1304
|
}
|
1303
1305
|
interface ILocationBasedMap {
|
1304
1306
|
points?: IPoints;
|
1305
1307
|
showLoader: boolean;
|
1306
|
-
loader?:
|
1308
|
+
loader?: React__default.ReactNode;
|
1307
1309
|
origin: IOrigin;
|
1308
|
-
legend?:
|
1309
|
-
legendToggle?:
|
1310
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1311
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1310
1312
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, radius: number, zoomLevel: number) => void;
|
1311
1313
|
}
|
1312
1314
|
interface IDirectionBasedMapBase {
|
@@ -1314,13 +1316,13 @@ interface IDirectionBasedMapBase {
|
|
1314
1316
|
activeRoute: IRoute | null;
|
1315
1317
|
points?: IPoints;
|
1316
1318
|
showLoader: boolean;
|
1317
|
-
loader?:
|
1319
|
+
loader?: React__default.ReactNode;
|
1318
1320
|
origin?: IOrigin;
|
1319
1321
|
destination?: IDestination;
|
1320
1322
|
deviation: number;
|
1321
1323
|
activeTravelMode: google.maps.TravelMode;
|
1322
|
-
legend?:
|
1323
|
-
legendToggle?:
|
1324
|
+
legend?: React__default.ReactElement<IMapLegendItem>[];
|
1325
|
+
legendToggle?: React__default.ReactElement<IMapLegendLabel>;
|
1324
1326
|
onRouteChange?: (route: IRoute, travelMode: google.maps.TravelMode, deviation: number) => void;
|
1325
1327
|
onTravelModeChange?: (travelMode: google.maps.TravelMode, deviation: number) => void;
|
1326
1328
|
onAreaChange?: (center: google.maps.LatLng, bounds: google.maps.LatLngBounds, zoomLevel: number) => void;
|
@@ -1339,20 +1341,20 @@ declare const Map: {
|
|
1339
1341
|
Direction: ({ routes, activeRoute, origin, destination, deviation, activeTravelMode, points, showLoader, loader, onRouteChange, onAreaChange, onTravelModeChange, legend, legendToggle, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
|
1340
1342
|
Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
|
1341
1343
|
Loading: ({ loader }: {
|
1342
|
-
loader:
|
1344
|
+
loader: React__default.ReactNode;
|
1343
1345
|
}) => react_jsx_runtime.JSX.Element | null;
|
1344
1346
|
};
|
1345
1347
|
|
1346
1348
|
interface IWizard {
|
1347
|
-
children:
|
1349
|
+
children: React__default.ReactElement<IWizardStep> | React__default.ReactElement<IWizardStep>[];
|
1348
1350
|
}
|
1349
1351
|
interface IWizardStep extends PropsWithChildren {
|
1350
|
-
figure?:
|
1351
|
-
controls?:
|
1352
|
+
figure?: React__default.ReactElement<IFigure>;
|
1353
|
+
controls?: React__default.ReactElement<IWizardControls>;
|
1352
1354
|
}
|
1353
1355
|
interface IWizardControls {
|
1354
|
-
back?:
|
1355
|
-
next?:
|
1356
|
+
back?: React__default.ReactElement<IButton>;
|
1357
|
+
next?: React__default.ReactElement<IButton>;
|
1356
1358
|
}
|
1357
1359
|
|
1358
1360
|
declare const WizardStep: ({ children, figure, controls }: IWizardStep) => react_jsx_runtime.JSX.Element;
|
@@ -1363,7 +1365,7 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
|
1363
1365
|
|
1364
1366
|
interface ISearchBase {
|
1365
1367
|
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1366
|
-
onSubmit?: (e:
|
1368
|
+
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1367
1369
|
}
|
1368
1370
|
interface ISearch extends ISearchBase {
|
1369
1371
|
mobileLabel: string;
|
@@ -1377,7 +1379,7 @@ interface ISearchStep {
|
|
1377
1379
|
}
|
1378
1380
|
interface ISearchAutocomplete<T> {
|
1379
1381
|
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1380
|
-
onSubmit?: (e:
|
1382
|
+
onSubmit?: (e: React__default.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1381
1383
|
}
|
1382
1384
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1383
1385
|
withFigure: ReactElement<IFigure>;
|
@@ -1405,83 +1407,169 @@ declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => n
|
|
1405
1407
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1406
1408
|
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1407
1409
|
|
1410
|
+
declare enum HeadingType {
|
1411
|
+
PAGE = "PAGE",
|
1412
|
+
FLYOUT = "FLYOUT",
|
1413
|
+
OVERLAY = "OVERLAY"
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
interface HeadingArrangementI {
|
1417
|
+
label: string;
|
1418
|
+
title: string;
|
1419
|
+
type: HeadingType;
|
1420
|
+
}
|
1421
|
+
interface HeadingArrangementBaseI {
|
1422
|
+
label: string;
|
1423
|
+
title: string;
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
interface ISearchFilters {
|
1427
|
+
compact: React__default.ReactElement<ISearchFiltersCompact>;
|
1428
|
+
full: React__default.ReactElement<ISearchFiltersFull>;
|
1429
|
+
}
|
1430
|
+
interface ISearchFiltersCompact {
|
1431
|
+
icon: React__default.ReactElement<IIcon>;
|
1432
|
+
heading: React__default.ReactElement<HeadingArrangementBaseI>;
|
1433
|
+
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1434
|
+
activeFilters: number;
|
1435
|
+
close: React__default.ReactElement<CloseI>;
|
1436
|
+
submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
|
1437
|
+
clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
|
1438
|
+
}
|
1439
|
+
interface ISearchFiltersFull {
|
1440
|
+
heading: string;
|
1441
|
+
icon: React__default.ReactElement<IIcon>;
|
1442
|
+
filters: React__default.ReactElement<ISearchFiltersCompactOverlayItem>[];
|
1443
|
+
activeFilters: number;
|
1444
|
+
submit: React__default.ReactElement<ISearchFiltersCompactActionSubmit>;
|
1445
|
+
clear?: React__default.ReactElement<ISearchFiltersCompactActionClear>;
|
1446
|
+
}
|
1447
|
+
interface ISearchFiltersCompactOverlayItem {
|
1448
|
+
label: string;
|
1449
|
+
filter: React__default.ReactNode;
|
1450
|
+
}
|
1451
|
+
interface ISearchFiltersCompactActionSubmit {
|
1452
|
+
label: string;
|
1453
|
+
icon: React__default.ReactElement<IIcon>;
|
1454
|
+
onSubmit: () => void;
|
1455
|
+
}
|
1456
|
+
interface ISearchFiltersCompactActionClear {
|
1457
|
+
label: string;
|
1458
|
+
icon: React__default.ReactElement<IIcon>;
|
1459
|
+
onClear: () => void;
|
1460
|
+
}
|
1461
|
+
|
1462
|
+
declare const SearchFiltersMobile: ({ icon, heading, filters, activeFilters, close, clear, submit, }: ISearchFiltersCompact) => react_jsx_runtime.JSX.Element;
|
1463
|
+
|
1464
|
+
declare const SearchFiltersFull: ({ heading, icon, filters, activeFilters, submit, clear, }: ISearchFiltersFull) => react_jsx_runtime.JSX.Element;
|
1465
|
+
|
1466
|
+
declare const SearchFiltersMobileOverlayItem: ({ label, filter, }: ISearchFiltersCompactOverlayItem) => null;
|
1467
|
+
|
1468
|
+
interface ISearchInputs {
|
1469
|
+
compact: React__default.ReactElement<ISearchInputsCompact>;
|
1470
|
+
full: React__default.ReactElement<ISearchInputsFull>;
|
1471
|
+
}
|
1472
|
+
interface ISearchInputsCompact {
|
1473
|
+
location: React__default.ReactElement<ISearchInputsCompactOverlayItem>;
|
1474
|
+
route: React__default.ReactElement<ISearchInputsCompactOverlayItem>;
|
1475
|
+
name: React__default.ReactElement<ISearchInputsCompactOverlayItem>;
|
1476
|
+
close: React__default.ReactElement<CloseI>;
|
1477
|
+
submit: React__default.ReactElement<ISearchInputsCompactActionSubmit>;
|
1478
|
+
clear?: React__default.ReactElement<ISearchInputsCompactActionClear>;
|
1479
|
+
onChanged: (active: "location" | "route" | "name") => void;
|
1480
|
+
}
|
1481
|
+
interface ISearchInputsFull {
|
1482
|
+
}
|
1483
|
+
interface ISearchInputsCompactActionSubmit {
|
1484
|
+
label: string;
|
1485
|
+
icon: React__default.ReactElement<IIcon>;
|
1486
|
+
onSubmit: () => void;
|
1487
|
+
}
|
1488
|
+
interface ISearchInputsCompactActionClear {
|
1489
|
+
label: string;
|
1490
|
+
icon: React__default.ReactElement<IIcon>;
|
1491
|
+
onClear: () => void;
|
1492
|
+
}
|
1493
|
+
interface ISearchInputsCompactOverlayItem {
|
1494
|
+
label: string;
|
1495
|
+
description?: string;
|
1496
|
+
figure: React__default.ReactElement<IFigure>;
|
1497
|
+
input: React__default.ReactNode;
|
1498
|
+
}
|
1499
|
+
|
1500
|
+
declare const SearchInputsMobile: ({ location, route, name, clear, submit, close, onChanged, }: ISearchInputsCompact) => react_jsx_runtime.JSX.Element;
|
1501
|
+
|
1502
|
+
declare const SearchInputsFull: () => react_jsx_runtime.JSX.Element;
|
1503
|
+
|
1504
|
+
declare const SearchInputsMobileOverlayItem: ({}: ISearchInputsCompactOverlayItem) => null;
|
1505
|
+
|
1506
|
+
declare const SearchInputsMobileActionSubmit: ({}: ISearchInputsCompactActionSubmit) => null;
|
1507
|
+
|
1508
|
+
declare const SearchInputsMobileActionClear: ({}: ISearchInputsCompactActionClear) => null;
|
1509
|
+
|
1510
|
+
declare const SearchInputs: ({ full, compact }: ISearchInputs) => React$1.ReactElement<ISearchInputsFull, string | React$1.JSXElementConstructor<any>>;
|
1511
|
+
|
1408
1512
|
interface ICard {
|
1409
|
-
swipe?:
|
1410
|
-
badge:
|
1513
|
+
swipe?: React__default.ReactNode;
|
1514
|
+
badge: React__default.ReactElement<IBadge>;
|
1411
1515
|
title: string;
|
1412
|
-
info?:
|
1413
|
-
labels:
|
1414
|
-
features:
|
1415
|
-
action:
|
1516
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1517
|
+
labels: React__default.ReactElement<ILabel>[];
|
1518
|
+
features: React__default.ReactElement<IFeatures>;
|
1519
|
+
action: React__default.ReactElement<IButton>;
|
1416
1520
|
}
|
1417
1521
|
|
1418
1522
|
declare const Card: ({ badge, swipe, title, info, labels, features, action, }: ICard) => react_jsx_runtime.JSX.Element;
|
1419
1523
|
|
1420
1524
|
interface IMapCard {
|
1421
|
-
swipe?:
|
1422
|
-
badge:
|
1525
|
+
swipe?: React__default.ReactNode;
|
1526
|
+
badge: React__default.ReactElement<IBadge>;
|
1423
1527
|
title: string;
|
1424
|
-
info?:
|
1425
|
-
action:
|
1528
|
+
info?: React__default.ReactElement<ILabeledIcon>[] | React__default.ReactElement<ILabeledIcon>;
|
1529
|
+
action: React__default.ReactElement<IButton>;
|
1426
1530
|
}
|
1427
1531
|
|
1428
1532
|
declare const MapCard: ({ badge, swipe, title, info, action }: IMapCard) => react_jsx_runtime.JSX.Element;
|
1429
1533
|
|
1430
1534
|
interface IFlyoutArrangementSplit {
|
1431
|
-
top?:
|
1432
|
-
left:
|
1433
|
-
right:
|
1535
|
+
top?: React__default.ReactElement;
|
1536
|
+
left: React__default.ReactElement;
|
1537
|
+
right: React__default.ReactElement;
|
1434
1538
|
compactAt: number;
|
1435
1539
|
}
|
1436
1540
|
interface IFlyoutArrangementFull {
|
1437
|
-
top?:
|
1438
|
-
content:
|
1541
|
+
top?: React__default.ReactElement;
|
1542
|
+
content: React__default.ReactElement;
|
1439
1543
|
}
|
1440
1544
|
|
1441
1545
|
declare const FlyoutArrangementSplit: (props: IFlyoutArrangementSplit) => react_jsx_runtime.JSX.Element;
|
1442
1546
|
declare const FlyoutArrangementFull: (props: IFlyoutArrangementFull) => react_jsx_runtime.JSX.Element;
|
1443
1547
|
|
1444
|
-
declare enum HeadingType {
|
1445
|
-
PAGE = "PAGE",
|
1446
|
-
FLYOUT = "FLYOUT",
|
1447
|
-
OVERLAY = "OVERLAY"
|
1448
|
-
}
|
1449
|
-
|
1450
|
-
interface HeadingArrangementI {
|
1451
|
-
label: string;
|
1452
|
-
title: string;
|
1453
|
-
type: HeadingType;
|
1454
|
-
}
|
1455
|
-
interface HeadingArrangementBaseI {
|
1456
|
-
label: string;
|
1457
|
-
title: string;
|
1458
|
-
}
|
1459
|
-
|
1460
1548
|
declare const FlyoutHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1461
1549
|
declare const OverlayHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1462
1550
|
declare const PageHeading: ({ title, label }: HeadingArrangementBaseI) => react_jsx_runtime.JSX.Element;
|
1463
1551
|
|
1464
1552
|
interface IHomeSectionCards {
|
1465
1553
|
title: string;
|
1466
|
-
cards:
|
1554
|
+
cards: React__default.ReactElement<IInfoCard>[];
|
1467
1555
|
}
|
1468
1556
|
|
1469
1557
|
declare const HomeSectionCards: (props: IHomeSectionCards) => react_jsx_runtime.JSX.Element;
|
1470
1558
|
|
1471
1559
|
interface IHomeSectionFaq {
|
1472
1560
|
title: string;
|
1473
|
-
content:
|
1474
|
-
faqs:
|
1561
|
+
content: React__default.ReactElement;
|
1562
|
+
faqs: React__default.ReactElement<IFaq>[];
|
1475
1563
|
}
|
1476
1564
|
|
1477
1565
|
declare const HomeSectionFaq: (props: IHomeSectionFaq) => react_jsx_runtime.JSX.Element;
|
1478
1566
|
|
1479
1567
|
interface IHomeSectionGettingStarted {
|
1480
1568
|
title: string;
|
1481
|
-
locationLink:
|
1482
|
-
routeLink:
|
1483
|
-
nameLink:
|
1484
|
-
onBoarding:
|
1569
|
+
locationLink: React__default.ReactElement;
|
1570
|
+
routeLink: React__default.ReactElement;
|
1571
|
+
nameLink: React__default.ReactElement;
|
1572
|
+
onBoarding: React__default.ReactElement;
|
1485
1573
|
imagePath: string;
|
1486
1574
|
}
|
1487
1575
|
|
@@ -1489,15 +1577,15 @@ declare const HomeSectionGettingStarted: (props: IHomeSectionGettingStarted) =>
|
|
1489
1577
|
|
1490
1578
|
interface IDetailsSectionHeader {
|
1491
1579
|
title: string;
|
1492
|
-
badge:
|
1493
|
-
labels:
|
1494
|
-
actions:
|
1580
|
+
badge: React__default.ReactNode;
|
1581
|
+
labels: React__default.ReactNode;
|
1582
|
+
actions: React__default.ReactNode;
|
1495
1583
|
}
|
1496
1584
|
|
1497
1585
|
declare const DetailsSectionHeader: (props: IDetailsSectionHeader) => react_jsx_runtime.JSX.Element;
|
1498
1586
|
|
1499
1587
|
interface IDetailsSectionBack {
|
1500
|
-
link:
|
1588
|
+
link: React__default.ReactElement<ILink>;
|
1501
1589
|
}
|
1502
1590
|
|
1503
1591
|
declare const DetailsSectionBack: (props: IDetailsSectionBack) => react_jsx_runtime.JSX.Element;
|
@@ -1509,19 +1597,19 @@ interface IDetailsSectionGallery {
|
|
1509
1597
|
declare const DetailsSectionGallery: (props: IDetailsSectionGallery) => react_jsx_runtime.JSX.Element;
|
1510
1598
|
|
1511
1599
|
interface IDetailsSectionGeneral {
|
1512
|
-
info:
|
1600
|
+
info: React__default.ReactNode;
|
1513
1601
|
contactData: IContactData[];
|
1514
1602
|
}
|
1515
1603
|
interface IContactData {
|
1516
1604
|
title: string;
|
1517
|
-
data:
|
1605
|
+
data: React__default.ReactElement<ILabeledIcon>[];
|
1518
1606
|
}
|
1519
1607
|
|
1520
1608
|
declare const DetailsSectionGeneral: (props: IDetailsSectionGeneral) => react_jsx_runtime.JSX.Element;
|
1521
1609
|
|
1522
1610
|
interface IDetailsSectionFacilities {
|
1523
1611
|
title: string;
|
1524
|
-
facilities:
|
1612
|
+
facilities: React__default.ReactElement<ITerm>[];
|
1525
1613
|
}
|
1526
1614
|
|
1527
1615
|
declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => react_jsx_runtime.JSX.Element;
|
@@ -1529,26 +1617,26 @@ declare const DetailsSectionFacilities: (props: IDetailsSectionFacilities) => re
|
|
1529
1617
|
interface IDetailsSectionPrice {
|
1530
1618
|
title: string;
|
1531
1619
|
prices: IPriceData[];
|
1532
|
-
info:
|
1620
|
+
info: React__default.ReactElement<IPlainText>;
|
1533
1621
|
}
|
1534
1622
|
interface IPriceData {
|
1535
1623
|
title: string;
|
1536
|
-
data:
|
1624
|
+
data: React__default.ReactElement<ITable>;
|
1537
1625
|
}
|
1538
1626
|
|
1539
1627
|
declare const DetailsSectionPrice: (props: IDetailsSectionPrice) => react_jsx_runtime.JSX.Element;
|
1540
1628
|
|
1541
1629
|
interface IDetailsSectionVacation {
|
1542
1630
|
title: string;
|
1543
|
-
vacations:
|
1631
|
+
vacations: React__default.ReactElement<ITable>;
|
1544
1632
|
}
|
1545
1633
|
|
1546
1634
|
declare const DetailsSectionVacation: (props: IDetailsSectionVacation) => react_jsx_runtime.JSX.Element;
|
1547
1635
|
|
1548
1636
|
interface IDetailsSectionHours {
|
1549
1637
|
title: string;
|
1550
|
-
hours:
|
1551
|
-
info
|
1638
|
+
hours: React__default.ReactElement<ITable>;
|
1639
|
+
info?: string;
|
1552
1640
|
}
|
1553
1641
|
|
1554
1642
|
declare const DetailsSectionHours: (props: IDetailsSectionHours) => react_jsx_runtime.JSX.Element;
|
@@ -1569,20 +1657,20 @@ declare const DetailsSectionBasic: (props: IDetailsSectionBasic) => react_jsx_ru
|
|
1569
1657
|
interface IFavoritesSectionHeader {
|
1570
1658
|
title: string;
|
1571
1659
|
description: string;
|
1572
|
-
figure:
|
1660
|
+
figure: React__default.ReactElement<IFigure>;
|
1573
1661
|
}
|
1574
1662
|
|
1575
1663
|
declare const FavoritesSectionHeader: (props: IFavoritesSectionHeader) => react_jsx_runtime.JSX.Element;
|
1576
1664
|
|
1577
1665
|
interface IFavoritesSectionEmpty {
|
1578
1666
|
description: string;
|
1579
|
-
action:
|
1667
|
+
action: React__default.ReactElement<IButton>;
|
1580
1668
|
}
|
1581
1669
|
|
1582
1670
|
declare const FavoritesSectionEmpty: (props: IFavoritesSectionEmpty) => react_jsx_runtime.JSX.Element;
|
1583
1671
|
|
1584
1672
|
interface IFavoritesSectionList {
|
1585
|
-
cards:
|
1673
|
+
cards: React__default.ReactElement<ICard>[];
|
1586
1674
|
}
|
1587
1675
|
|
1588
1676
|
declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_runtime.JSX.Element;
|
@@ -1590,29 +1678,29 @@ declare const FavoritesSectionList: (props: IFavoritesSectionList) => react_jsx_
|
|
1590
1678
|
interface IFavoritesSectionConfirm {
|
1591
1679
|
title: string;
|
1592
1680
|
description: string;
|
1593
|
-
location:
|
1594
|
-
actions:
|
1681
|
+
location: React__default.ReactElement<IColoredBox>;
|
1682
|
+
actions: React__default.ReactElement<IButton>[];
|
1595
1683
|
}
|
1596
1684
|
|
1597
1685
|
declare const FavoritesSectionConfirm: (props: IFavoritesSectionConfirm) => react_jsx_runtime.JSX.Element;
|
1598
1686
|
|
1599
1687
|
interface IOnboardingArrangementIntroduction {
|
1600
|
-
top:
|
1601
|
-
left:
|
1602
|
-
right?:
|
1603
|
-
action?:
|
1604
|
-
image?:
|
1688
|
+
top: React__default.ReactElement;
|
1689
|
+
left: React__default.ReactElement;
|
1690
|
+
right?: React__default.ReactElement;
|
1691
|
+
action?: React__default.ReactElement;
|
1692
|
+
image?: React__default.ReactElement;
|
1605
1693
|
}
|
1606
1694
|
interface IOnboardingArrangementStep {
|
1607
|
-
top:
|
1608
|
-
left:
|
1609
|
-
right?:
|
1610
|
-
image?:
|
1695
|
+
top: React__default.ReactElement;
|
1696
|
+
left: React__default.ReactElement;
|
1697
|
+
right?: React__default.ReactElement;
|
1698
|
+
image?: React__default.ReactElement;
|
1611
1699
|
}
|
1612
1700
|
interface IOnboardingArrangementInformation {
|
1613
|
-
top:
|
1614
|
-
left:
|
1615
|
-
image?:
|
1701
|
+
top: React__default.ReactElement;
|
1702
|
+
left: React__default.ReactElement;
|
1703
|
+
image?: React__default.ReactElement;
|
1616
1704
|
}
|
1617
1705
|
|
1618
1706
|
declare const OnboardingArrangementIntroduction: (props: IOnboardingArrangementIntroduction) => react_jsx_runtime.JSX.Element;
|
@@ -1620,43 +1708,43 @@ declare const OnboardingArrangementStep: (props: IOnboardingArrangementStep) =>
|
|
1620
1708
|
declare const OnboardingArrangementInformation: (props: IOnboardingArrangementInformation) => react_jsx_runtime.JSX.Element;
|
1621
1709
|
|
1622
1710
|
interface ISearchSectionFilters {
|
1623
|
-
primary:
|
1624
|
-
secondary:
|
1625
|
-
secondary_active:
|
1711
|
+
primary: React__default.ReactElement;
|
1712
|
+
secondary: React__default.ReactElement | false;
|
1713
|
+
secondary_active: React__default.ReactElement<IFilterTag>[];
|
1626
1714
|
}
|
1627
1715
|
|
1628
1716
|
declare const SearchSectionFilters: (props: ISearchSectionFilters) => react_jsx_runtime.JSX.Element;
|
1629
1717
|
|
1630
1718
|
interface IHomeSectionLeftSplit {
|
1631
1719
|
title: string;
|
1632
|
-
content:
|
1720
|
+
content: React__default.ReactElement;
|
1633
1721
|
imagePath: string;
|
1634
1722
|
}
|
1635
1723
|
|
1636
1724
|
declare const HomeSectionLeftSplit: (props: IHomeSectionLeftSplit) => react_jsx_runtime.JSX.Element;
|
1637
1725
|
|
1638
1726
|
interface ISharedSectionHeader {
|
1639
|
-
top?:
|
1640
|
-
bottom:
|
1727
|
+
top?: React__default.ReactElement;
|
1728
|
+
bottom: React__default.ReactElement;
|
1641
1729
|
}
|
1642
1730
|
|
1643
1731
|
declare const SharedSectionHeader: (props: ISharedSectionHeader) => react_jsx_runtime.JSX.Element;
|
1644
1732
|
|
1645
1733
|
interface ISharedSectionFooter {
|
1646
|
-
content:
|
1734
|
+
content: React__default.ReactElement;
|
1647
1735
|
}
|
1648
1736
|
|
1649
1737
|
declare const SharedSectionFooter: (props: ISharedSectionFooter) => react_jsx_runtime.JSX.Element;
|
1650
1738
|
|
1651
1739
|
interface ISearchSectionResults {
|
1652
|
-
content:
|
1740
|
+
content: React__default.ReactElement;
|
1653
1741
|
}
|
1654
1742
|
|
1655
1743
|
declare const SearchSectionResults: (props: ISearchSectionResults) => react_jsx_runtime.JSX.Element;
|
1656
1744
|
|
1657
1745
|
interface ISearchSectionResultsWithMap {
|
1658
|
-
content:
|
1659
|
-
map?:
|
1746
|
+
content: React__default.ReactElement;
|
1747
|
+
map?: React__default.ReactElement;
|
1660
1748
|
}
|
1661
1749
|
|
1662
1750
|
declare const SearchSectionResultsWithMap: (props: ISearchSectionResultsWithMap) => react_jsx_runtime.JSX.Element;
|
@@ -1667,7 +1755,7 @@ declare enum AccordeonContext {
|
|
1667
1755
|
}
|
1668
1756
|
|
1669
1757
|
interface IAccordeonBase {
|
1670
|
-
children?:
|
1758
|
+
children?: React__default.ReactNode;
|
1671
1759
|
}
|
1672
1760
|
interface IAccordeon extends IAccordeonBase {
|
1673
1761
|
id?: string;
|
@@ -1690,7 +1778,7 @@ interface IBackdrop {
|
|
1690
1778
|
onClick?: () => void;
|
1691
1779
|
}
|
1692
1780
|
|
1693
|
-
declare const Backdrop: ({ onClick }: IBackdrop) =>
|
1781
|
+
declare const Backdrop: ({ onClick }: IBackdrop) => React__default.ReactPortal;
|
1694
1782
|
|
1695
1783
|
interface IBlur extends PropsWithChildren {
|
1696
1784
|
}
|
@@ -1698,10 +1786,10 @@ interface IBlur extends PropsWithChildren {
|
|
1698
1786
|
declare const Blur: ({ children }: IBlur) => react_jsx_runtime.JSX.Element;
|
1699
1787
|
|
1700
1788
|
interface ICollapsable {
|
1701
|
-
content:
|
1702
|
-
additional:
|
1703
|
-
withContentExpand:
|
1704
|
-
withContentCollapse?:
|
1789
|
+
content: React__default.ReactNode;
|
1790
|
+
additional: React__default.ReactNode;
|
1791
|
+
withContentExpand: React__default.ReactNode;
|
1792
|
+
withContentCollapse?: React__default.ReactNode;
|
1705
1793
|
}
|
1706
1794
|
|
1707
1795
|
declare const Collapsable: ({ content, additional, withContentExpand, withContentCollapse, }: ICollapsable) => react_jsx_runtime.JSX.Element;
|
@@ -1714,11 +1802,11 @@ declare enum DrawerSize {
|
|
1714
1802
|
}
|
1715
1803
|
|
1716
1804
|
interface IDrawer {
|
1717
|
-
children?:
|
1805
|
+
children?: React__default.ReactNode;
|
1718
1806
|
size?: DrawerSize;
|
1719
1807
|
}
|
1720
1808
|
|
1721
|
-
declare const Drawer: ({ children, size }: IDrawer) =>
|
1809
|
+
declare const Drawer: ({ children, size }: IDrawer) => React__default.ReactPortal;
|
1722
1810
|
|
1723
1811
|
interface GridProps {
|
1724
1812
|
children: React.ReactNode;
|
@@ -1750,19 +1838,26 @@ declare const Grid: {
|
|
1750
1838
|
Item: ({ initial, sm, md, lg, xl, xxl, children }: GridItemProps) => react_jsx_runtime.JSX.Element;
|
1751
1839
|
};
|
1752
1840
|
|
1841
|
+
declare enum ModalSize {
|
1842
|
+
NORMAL = "NORMAL",
|
1843
|
+
LARGE = "LARGE"
|
1844
|
+
}
|
1845
|
+
|
1753
1846
|
interface IModal {
|
1754
|
-
children?:
|
1847
|
+
children?: React__default.ReactNode;
|
1848
|
+
title?: string;
|
1849
|
+
size: ModalSize;
|
1755
1850
|
}
|
1756
1851
|
|
1757
|
-
declare const Modal: ({ children }: IModal) =>
|
1852
|
+
declare const Modal: ({ children, size, title }: IModal) => React__default.ReactPortal;
|
1758
1853
|
|
1759
1854
|
interface IOverlay {
|
1760
|
-
children?:
|
1761
|
-
header?:
|
1762
|
-
close:
|
1855
|
+
children?: React__default.ReactNode;
|
1856
|
+
header?: React__default.ReactNode;
|
1857
|
+
close: React__default.ReactNode;
|
1763
1858
|
}
|
1764
1859
|
|
1765
|
-
declare const Overlay: ({ children, header, close }: IOverlay) =>
|
1860
|
+
declare const Overlay: ({ children, header, close }: IOverlay) => React__default.ReactPortal;
|
1766
1861
|
|
1767
1862
|
declare enum WaveType {
|
1768
1863
|
ONE = "ONE",
|
@@ -1782,7 +1877,7 @@ interface IWave {
|
|
1782
1877
|
|
1783
1878
|
interface ISurface extends PropsWithChildren {
|
1784
1879
|
background: string;
|
1785
|
-
withWave?:
|
1880
|
+
withWave?: React__default.ReactElement<IWave>;
|
1786
1881
|
}
|
1787
1882
|
|
1788
1883
|
declare const Surface: ({ children, background, withWave }: ISurface) => react_jsx_runtime.JSX.Element;
|
@@ -1790,42 +1885,42 @@ declare const Surface: ({ children, background, withWave }: ISurface) => react_j
|
|
1790
1885
|
declare const Wave: ({ type, position, tint, color }: IWave) => react_jsx_runtime.JSX.Element;
|
1791
1886
|
|
1792
1887
|
interface IBasicPage {
|
1793
|
-
header:
|
1794
|
-
content:
|
1795
|
-
footer:
|
1888
|
+
header: React__default.ReactElement;
|
1889
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
1890
|
+
footer: React__default.ReactElement;
|
1796
1891
|
}
|
1797
1892
|
|
1798
1893
|
declare const BasicPage: (props: IBasicPage) => react_jsx_runtime.JSX.Element;
|
1799
1894
|
|
1800
1895
|
interface IDetailsPage {
|
1801
|
-
header:
|
1802
|
-
content:
|
1803
|
-
footer:
|
1896
|
+
header: React__default.ReactElement;
|
1897
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
1898
|
+
footer: React__default.ReactElement;
|
1804
1899
|
}
|
1805
1900
|
|
1806
1901
|
declare const DetailsPage: (props: IDetailsPage) => react_jsx_runtime.JSX.Element;
|
1807
1902
|
|
1808
1903
|
interface ISearchPage {
|
1809
|
-
header:
|
1810
|
-
content:
|
1811
|
-
footer:
|
1904
|
+
header: React__default.ReactElement;
|
1905
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
1906
|
+
footer: React__default.ReactElement;
|
1812
1907
|
}
|
1813
1908
|
|
1814
1909
|
declare const SearchPage: (props: ISearchPage) => react_jsx_runtime.JSX.Element;
|
1815
1910
|
|
1816
1911
|
interface ISearchWithMapPage {
|
1817
|
-
header:
|
1818
|
-
content:
|
1819
|
-
footer:
|
1912
|
+
header: React__default.ReactElement;
|
1913
|
+
content: React__default.ReactElement | React__default.ReactElement[];
|
1914
|
+
footer: React__default.ReactElement;
|
1820
1915
|
}
|
1821
1916
|
|
1822
1917
|
declare const SearchWithMapPage: (props: ISearchWithMapPage) => react_jsx_runtime.JSX.Element;
|
1823
1918
|
|
1824
1919
|
interface BackdropContextType {
|
1825
1920
|
isBackdropVisible: boolean;
|
1826
|
-
setIsBackdropVisible:
|
1921
|
+
setIsBackdropVisible: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1827
1922
|
}
|
1828
|
-
declare const BackdropContext:
|
1923
|
+
declare const BackdropContext: React__default.Context<BackdropContextType>;
|
1829
1924
|
interface IBackdropProvider extends PropsWithChildren {
|
1830
1925
|
onClick?: () => void;
|
1831
1926
|
}
|
@@ -1833,53 +1928,55 @@ declare const BackdropProvider: ({ children, onClick }: IBackdropProvider) => re
|
|
1833
1928
|
|
1834
1929
|
interface BlurContextType {
|
1835
1930
|
isBlurred: boolean;
|
1836
|
-
setIsBlurred:
|
1931
|
+
setIsBlurred: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1837
1932
|
}
|
1838
|
-
declare const BlurContext:
|
1933
|
+
declare const BlurContext: React__default.Context<BlurContextType>;
|
1839
1934
|
interface IBlurProvider extends PropsWithChildren {
|
1840
1935
|
}
|
1841
|
-
declare const BlurProvider:
|
1936
|
+
declare const BlurProvider: React__default.FC<PropsWithChildren<{}>>;
|
1842
1937
|
|
1843
1938
|
interface DrawerContextType {
|
1844
1939
|
isOpen: boolean;
|
1845
|
-
setIsOpen:
|
1940
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1846
1941
|
}
|
1847
|
-
declare const DrawerContext:
|
1942
|
+
declare const DrawerContext: React__default.Context<DrawerContextType>;
|
1848
1943
|
interface IDrawerProvider extends PropsWithChildren {
|
1849
|
-
drawer?:
|
1944
|
+
drawer?: React__default.ReactNode;
|
1850
1945
|
size?: DrawerSize;
|
1851
1946
|
}
|
1852
1947
|
declare const DrawerProvider: ({ children, drawer, size }: IDrawerProvider) => react_jsx_runtime.JSX.Element;
|
1853
1948
|
|
1854
1949
|
interface ModalContextType {
|
1855
1950
|
isOpen: boolean;
|
1856
|
-
setIsOpen:
|
1951
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1857
1952
|
}
|
1858
|
-
declare const ModalContext:
|
1953
|
+
declare const ModalContext: React__default.Context<ModalContextType>;
|
1859
1954
|
interface IModalProvider extends PropsWithChildren {
|
1860
|
-
modal?:
|
1955
|
+
modal?: React__default.ReactNode;
|
1956
|
+
size?: ModalSize;
|
1957
|
+
title?: string;
|
1861
1958
|
}
|
1862
|
-
declare const ModalProvider: ({ children, modal }: IModalProvider) => react_jsx_runtime.JSX.Element;
|
1959
|
+
declare const ModalProvider: ({ children, modal, size, title, }: IModalProvider) => react_jsx_runtime.JSX.Element;
|
1863
1960
|
|
1864
1961
|
interface OverlayContextType {
|
1865
1962
|
isOpen: boolean;
|
1866
|
-
setIsOpen:
|
1963
|
+
setIsOpen: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1867
1964
|
headerHeight: number;
|
1868
|
-
setHeaderHeight:
|
1965
|
+
setHeaderHeight: React__default.Dispatch<React__default.SetStateAction<number>>;
|
1869
1966
|
}
|
1870
|
-
declare const OverlayContext:
|
1967
|
+
declare const OverlayContext: React__default.Context<OverlayContextType>;
|
1871
1968
|
interface IOverlayProvider extends PropsWithChildren {
|
1872
|
-
overlay?:
|
1873
|
-
header?:
|
1874
|
-
close?:
|
1969
|
+
overlay?: React__default.ReactNode;
|
1970
|
+
header?: React__default.ReactNode;
|
1971
|
+
close?: React__default.ReactNode;
|
1875
1972
|
}
|
1876
1973
|
declare const OverlayProvider: ({ children, header, close, overlay, }: IOverlayProvider) => react_jsx_runtime.JSX.Element;
|
1877
1974
|
|
1878
1975
|
interface ProcessingContextType {
|
1879
1976
|
isDone: boolean;
|
1880
|
-
setIsDone:
|
1977
|
+
setIsDone: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1881
1978
|
}
|
1882
|
-
declare const ProcessingContext:
|
1979
|
+
declare const ProcessingContext: React__default.Context<ProcessingContextType>;
|
1883
1980
|
declare const ProcessingProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1884
1981
|
|
1885
1982
|
declare const useIsProcessing: () => boolean;
|
@@ -1896,16 +1993,16 @@ interface GooglePlacesI {
|
|
1896
1993
|
autocomplete: google.maps.places.AutocompleteService;
|
1897
1994
|
autocompleteSessionToken: google.maps.places.AutocompleteSessionToken;
|
1898
1995
|
}
|
1899
|
-
declare const GooglePlacesContext:
|
1996
|
+
declare const GooglePlacesContext: React__default.Context<AsyncResult<GooglePlacesI>>;
|
1900
1997
|
declare const GooglePlacesProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1901
1998
|
|
1902
|
-
declare const GoogleGeocoderContext:
|
1999
|
+
declare const GoogleGeocoderContext: React__default.Context<AsyncResult<google.maps.Geocoder>>;
|
1903
2000
|
declare const GoogleGeocoderProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1904
2001
|
|
1905
|
-
declare const GoogleDirectionsServiceContext:
|
2002
|
+
declare const GoogleDirectionsServiceContext: React__default.Context<AsyncResult<google.maps.DirectionsService>>;
|
1906
2003
|
declare const GoogleDirectionsServiceProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1907
2004
|
|
1908
|
-
declare const GoogleDirectionsRendererContext:
|
2005
|
+
declare const GoogleDirectionsRendererContext: React__default.Context<AsyncResult<google.maps.DirectionsRenderer>>;
|
1909
2006
|
declare const GoogleDirectionsRendererProvider: ({ children, }: PropsWithChildren) => react_jsx_runtime.JSX.Element;
|
1910
2007
|
|
1911
2008
|
declare const useIsGoogleProcessing: () => boolean;
|
@@ -1922,9 +2019,9 @@ declare const useGoogleMapId: () => string;
|
|
1922
2019
|
|
1923
2020
|
declare const useGoogleApiKey: () => string;
|
1924
2021
|
|
1925
|
-
declare const ThemeModeContext:
|
2022
|
+
declare const ThemeModeContext: React__default.Context<{
|
1926
2023
|
themeMode: ThemeMode;
|
1927
|
-
setThemeMode:
|
2024
|
+
setThemeMode: React__default.Dispatch<React__default.SetStateAction<ThemeMode>>;
|
1928
2025
|
}>;
|
1929
2026
|
interface PropsForThemeModeProvider extends PropsWithChildren {
|
1930
2027
|
fromBrowser: boolean;
|
@@ -1933,18 +2030,18 @@ declare const ThemeModeProvider: FC<PropsForThemeModeProvider>;
|
|
1933
2030
|
|
1934
2031
|
interface SearchContextType {
|
1935
2032
|
active: number;
|
1936
|
-
setActive:
|
2033
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
1937
2034
|
}
|
1938
|
-
declare const SearchContext:
|
2035
|
+
declare const SearchContext: React__default.Context<SearchContextType>;
|
1939
2036
|
interface ISearchProvider extends PropsWithChildren {
|
1940
2037
|
}
|
1941
2038
|
declare const SearchProvider: ({ children }: ISearchProvider) => react_jsx_runtime.JSX.Element;
|
1942
2039
|
|
1943
2040
|
interface WizardContextType {
|
1944
2041
|
active: number;
|
1945
|
-
setActive:
|
2042
|
+
setActive: React__default.Dispatch<React__default.SetStateAction<number>>;
|
1946
2043
|
}
|
1947
|
-
declare const WizardContext:
|
2044
|
+
declare const WizardContext: React__default.Context<WizardContextType>;
|
1948
2045
|
interface IWizardProvider extends PropsWithChildren {
|
1949
2046
|
onClick?: () => void;
|
1950
2047
|
}
|
@@ -1952,20 +2049,20 @@ declare const WizardProvider: ({ children }: IWizardProvider) => react_jsx_runti
|
|
1952
2049
|
|
1953
2050
|
interface WizardStepContextType {
|
1954
2051
|
complete: boolean;
|
1955
|
-
setComplete:
|
2052
|
+
setComplete: React__default.Dispatch<React__default.SetStateAction<boolean>>;
|
1956
2053
|
}
|
1957
|
-
declare const WizardStepContext:
|
2054
|
+
declare const WizardStepContext: React__default.Context<WizardStepContextType>;
|
1958
2055
|
interface IWizardStepProvider extends PropsWithChildren {
|
1959
2056
|
}
|
1960
2057
|
declare const WizardStepProvider: ({ children }: IWizardStepProvider) => react_jsx_runtime.JSX.Element;
|
1961
2058
|
|
1962
2059
|
interface InlineSelectOptionI {
|
1963
2060
|
label: string;
|
1964
|
-
withIcon?:
|
2061
|
+
withIcon?: React__default.ReactElement<IIcon>;
|
1965
2062
|
}
|
1966
2063
|
interface InlineSelectOptionIconI {
|
1967
2064
|
label: string;
|
1968
|
-
withIcon:
|
2065
|
+
withIcon: React__default.ReactElement<IIcon>;
|
1969
2066
|
}
|
1970
2067
|
|
1971
2068
|
declare const InlineSelectLabelAsOption: <T>(args: InlineSelectOptionI) => react_jsx_runtime.JSX.Element;
|
@@ -1983,4 +2080,4 @@ declare const RouteLocationExample: ({ CompactAt, onChange, }: {
|
|
1983
2080
|
|
1984
2081
|
declare const LocationExample: () => react_jsx_runtime.JSX.Element;
|
1985
2082
|
|
1986
|
-
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchPage, SearchProvider, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchStep, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, Switch, type SwitchI, type SwitchItemContentI, type SwitchItemI, Table, Term, Terminal, TextAlignment, TextDecoration, ThemeModeContext, ThemeModeProvider, Toggle, TopNavigation, Wave, WavePosition, WaveType, Wizard, WizardContext, WizardControls, WizardProvider, WizardStep, WizardStepContext, WizardStepProvider, YesNo, YesNoContext, useGoogleApiKey, useGoogleDirections, useGoogleDirectionsRenderer, useGoogleGeocoder, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|
2083
|
+
export { Accordeon, AccordeonContext, AccordeonGroupProvider, type AutoCompleteContextType, type AutocompleteBlurEvent, type AutocompleteChangeEvent, type AutocompleteFocusEvent, type AutocompleteI, AutocompleteInput, type AutocompleteInputI, AutocompleteOption, type AutocompleteOptionNavigatedEvent, AutocompleteOptionSelected, AutocompleteOptions, type AutocompleteOptionsI, type AutocompleteSelectEvent, Backdrop, BackdropContext, BackdropProvider, Badge, BadgeSize, BadgeType, BasicPage, BigChoice, BigPick, Blur, BlurContext, BlurProvider, BottomNavigation, Brand, Breadcrumb, Button, ButtonContext, ButtonType, Card, CardChildminderExample, CardDaycareExample, CategoryLink, Checkbox, CheckboxContext, Choice, ChoiceContext, Close, type CloseI, Collapsable, Collapse, ColoredBox, CompactFooter, CompactNavigation, CompactNavigationContext, Cta, Details, DetailsPage, DetailsSectionBack, DetailsSectionBasic, DetailsSectionFacilities, DetailsSectionGallery, DetailsSectionGeneral, DetailsSectionHeader, DetailsSectionHours, DetailsSectionPrice, DetailsSectionQuote, DetailsSectionVacation, Drawer, DrawerContext, DrawerProvider, DrawerSize, Expand, Faq, FavoritesSectionConfirm, FavoritesSectionEmpty, FavoritesSectionHeader, FavoritesSectionList, Feature, Features, Figure, FigureHeading, FigureSize, FigureType, FilterTag, Flip, FlyoutArrangementFull, FlyoutArrangementSplit, FlyoutHeading, Footer, FooterNavigation, Gallery, GoogleDirectionsRendererContext, GoogleDirectionsRendererProvider, GoogleDirectionsServiceContext, GoogleDirectionsServiceProvider, GoogleGeocoderContext, GoogleGeocoderProvider, GooglePlacesContext, GooglePlacesProvider, GoogleProcessingProvider, type GoogleProcessingProviderProps, Grid, type GridItemProps, type GridProps, HeaderAlternate, HeaderBottom, HeaderContext, HeaderTop, type HeadingArrangementI, HomeSectionCards, HomeSectionFaq, HomeSectionGettingStarted, HomeSectionLeftSplit, type IAccordeon, type IBackdrop, type IBackdropProvider, type IBadge, type IBasicPage, type IBigChoice, type IBigPick, type IBlur, type IBlurProvider, type IBottomNavigation, type IBrand, type IBreadcrumb, type IButton, type ICard, type ICategoryLink, type ICheckbox, type IChoice, type ICollapsable, type ICollapse, type IColoredBox, type ICompactFooter, type ICompactNavigation, type IContactData, type ICta, type IDestination, type IDetails, type IDetailsPage, type IDetailsSectionBack, type IDetailsSectionBasic, type IDetailsSectionFacilities, type IDetailsSectionGallery, type IDetailsSectionGeneral, type IDetailsSectionHeader, type IDetailsSectionHours, type IDetailsSectionPrice, type IDetailsSectionQuote, type IDetailsSectionVacation, type IDirectionBasedMapBase, type IDrawer, type IDrawerProvider, type IExpand, type IFaq, type IFavoritesSectionConfirm, type IFavoritesSectionEmpty, type IFavoritesSectionHeader, type IFavoritesSectionList, type IFeature, type IFeatures, type IFigure, type IFigureHeading, type IFilterTag, type IFlip, type IFlyoutArrangementFull, type IFlyoutArrangementSplit, type IFooter, type IFooterNavigation, type IGallery, type IHeaderBottom, type IHeaderTop, type IHomeSectionCards, type IHomeSectionFaq, type IHomeSectionGettingStarted, type IHomeSectionLeftSplit, type IIcon, type IInfoCard, type IInformation, type IInput, type IInstruction, type ILabel, type ILabeledIcon, type ILink, type IList, type ILocationBasedMap, type ILogo, type IMap, type IMapCard, type IMapLegendItem, type IMapLegendLabel, type IMaskedImage, type IModal, type IModalProvider, type INavigation, type INavigationItem, type INotification, type IOnboarding, type IOnboardingArrangementInformation, type IOnboardingArrangementIntroduction, type IOnboardingArrangementStep, type IOrigin, type IOverlay, type IOverlayProvider, type IPick, type IPill, type IPin, type IPinBase, type IPlainText, type IPoint, type IPoints, type IProfileNavigation, type IQuickSearch, type IQuote, type IRadio, type IRecord, type IRecords, type IRoute, type IRouteLocation, type IRoutes, type ISearch, type ISearchAutocomplete, type ISearchFilters, type ISearchFiltersCompact, type ISearchFiltersCompactOverlayItem, type ISearchInputs, type ISearchInputsCompact, type ISearchInputsCompactActionClear, type ISearchInputsCompactActionSubmit, type ISearchInputsCompactOverlayItem, type ISearchPage, type ISearchProvider, type ISearchSectionFilters, type ISearchSectionResults, type ISearchSectionResultsWithMap, type ISearchStep, type ISearchStepAutocomplete, type ISearchWithMapPage, type ISelectBox, type ISelectBoxMenu, type ISelectBoxMenuItem, type ISelectBoxSelect, type ISharedSectionFooter, type ISharedSectionHeader, type IStatus, type IStatusList, type ISurface, 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, ListType, Location, LocationExample, type LocationI, Logo, LogoSize, Map, MapCard, MapLegendItem, MapLegendLabel, MaskType, MaskedImage, Modal, ModalContext, ModalProvider, Navigation, Notification, Onboarding, OnboardingArrangementInformation, OnboardingArrangementIntroduction, OnboardingArrangementStep, OnboardingButton, Overlay, OverlayContext, OverlayHeading, OverlayProvider, PageHeading, Pick, PickContext, Pill, Pin, PinType, PlainText, Position, ProcessingContext, type ProcessingContextType, ProcessingProvider, ProfileNavigation, type ProfileNavigationItemThemeableProps, type ProfileNavigationThemeableProps, type PropsForThemeModeProvider, QuickSearch, Quote, Radio, RadioContext, Record, Records, Route, type RouteI, RouteLocation, RouteLocationExample, ScaledFigure, ScaledIcon, Search, SearchAutocomplete, SearchAutocompleteStep, SearchContext, SearchFiltersFull, SearchFiltersMobile, SearchFiltersMobileOverlayItem, SearchInputs, SearchInputsFull, SearchInputsMobile, SearchInputsMobileActionClear, SearchInputsMobileActionSubmit, SearchInputsMobileOverlayItem, SearchPage, SearchProvider, SearchSectionFilters, SearchSectionResults, SearchSectionResultsWithMap, SearchStep, SearchWithMapPage, type SelectBlurEvent, SelectBox, type SelectChangeEvent, type SelectFocusEvent, SharedSectionFooter, SharedSectionHeader, Status, StatusCompact, StatusContext, StatusList, Surface, 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, useGoogleMapId, useGooglePlaces, useIsGoogleProcessing, useIsProcessing, useProcessing };
|