@tactics/lokaal-loket 0.0.205 → 0.0.207

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