@landtrustinc/design-system 1.1.4-beta.3 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +100 -63
- package/dist/index.js +441 -273
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _emotion_utils from '@emotion/utils';
|
|
2
2
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
|
-
import React__default, {
|
|
4
|
+
import React__default, { FC, PropsWithChildren, HTMLAttributes, SVGProps, ReactNode } from 'react';
|
|
5
5
|
import * as _emotion_styled from '@emotion/styled';
|
|
6
6
|
import * as csstype from 'csstype';
|
|
7
7
|
import * as styled_system from 'styled-system';
|
|
@@ -568,9 +568,9 @@ type AIResponseProps = {
|
|
|
568
568
|
};
|
|
569
569
|
declare const AIResponse: ({ title, showDisclaimer, showHelpfulQuestion, className, children, onHelpfulYes, onHelpfulNo, variant, onErrorRetry, helpfulDebounceMs, }: AIResponseProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
570
570
|
|
|
571
|
-
type AvailabilityChipVariant = 'primary' | 'error' | 'action' | 'warning';
|
|
571
|
+
type AvailabilityChipVariant = 'primary' | 'error' | 'action' | 'warning' | 'neutral';
|
|
572
572
|
|
|
573
|
-
type AvailabilityChipProps =
|
|
573
|
+
type AvailabilityChipProps = {
|
|
574
574
|
/**
|
|
575
575
|
* Visual variant of the chip
|
|
576
576
|
*/
|
|
@@ -579,6 +579,10 @@ type AvailabilityChipProps = HTMLAttributes<HTMLSpanElement> & {
|
|
|
579
579
|
* Additional CSS class names
|
|
580
580
|
*/
|
|
581
581
|
className?: string;
|
|
582
|
+
/**
|
|
583
|
+
* Content to display in the chip
|
|
584
|
+
*/
|
|
585
|
+
children?: React.ReactNode;
|
|
582
586
|
};
|
|
583
587
|
declare const AvailabilityChip: FC<PropsWithChildren<AvailabilityChipProps>>;
|
|
584
588
|
|
|
@@ -625,12 +629,12 @@ declare const SvgArrowDownWideShort: (props: SVGProps<SVGSVGElement>) => _emotio
|
|
|
625
629
|
|
|
626
630
|
declare const SvgArrowRotateLeft: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
627
631
|
|
|
632
|
+
declare const SvgArrowsLeftRight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
633
|
+
|
|
628
634
|
declare const SvgArrowUpFromSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
629
635
|
|
|
630
636
|
declare const SvgArrowUpRightFromSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
631
637
|
|
|
632
|
-
declare const SvgArrowsLeftRight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
633
|
-
|
|
634
638
|
declare const SvgArtLure: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
635
639
|
|
|
636
640
|
declare const SvgBadgeDark: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -645,28 +649,28 @@ declare const SvgBear: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_ru
|
|
|
645
649
|
|
|
646
650
|
declare const SvgBedSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
647
651
|
|
|
652
|
+
declare const SvgBell: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
653
|
+
|
|
648
654
|
declare const SvgBellSlash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
649
655
|
|
|
650
656
|
declare const SvgBellSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
651
657
|
|
|
652
|
-
declare const SvgBell: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
653
|
-
|
|
654
658
|
declare const SvgBinoculars: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
655
659
|
|
|
656
660
|
declare const SvgBoltSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
657
661
|
|
|
658
|
-
declare const SvgBowArrowSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
659
|
-
|
|
660
662
|
declare const SvgBowArrowSharp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
661
663
|
|
|
664
|
+
declare const SvgBowArrowSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
665
|
+
|
|
662
666
|
declare const SvgBowFishing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
663
667
|
|
|
664
668
|
declare const SvgBoxArchive: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
665
669
|
|
|
666
|
-
declare const SvgCabinSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
667
|
-
|
|
668
670
|
declare const SvgCabin: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
669
671
|
|
|
672
|
+
declare const SvgCabinSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
673
|
+
|
|
670
674
|
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
671
675
|
|
|
672
676
|
declare const SvgCameraRetro: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -675,10 +679,10 @@ declare const SvgCampfire: (props: SVGProps<SVGSVGElement>) => _emotion_react_js
|
|
|
675
679
|
|
|
676
680
|
declare const SvgCanoe: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
677
681
|
|
|
678
|
-
declare const SvgCaravanSimpleSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
679
|
-
|
|
680
682
|
declare const SvgCaravanSimple: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
681
683
|
|
|
684
|
+
declare const SvgCaravanSimpleSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
685
|
+
|
|
682
686
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
683
687
|
|
|
684
688
|
declare const SvgCircleCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -689,10 +693,10 @@ declare const SvgCircleXmark: (props: SVGProps<SVGSVGElement>) => _emotion_react
|
|
|
689
693
|
|
|
690
694
|
declare const SvgClimbing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
691
695
|
|
|
692
|
-
declare const SvgClockSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
693
|
-
|
|
694
696
|
declare const SvgClock: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
695
697
|
|
|
698
|
+
declare const SvgClockSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
699
|
+
|
|
696
700
|
declare const SvgConversationalSearchAi: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
697
701
|
|
|
698
702
|
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -713,26 +717,26 @@ declare const SvgEllipsis: (props: SVGProps<SVGSVGElement>) => _emotion_react_js
|
|
|
713
717
|
|
|
714
718
|
declare const SvgEnvelope: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
715
719
|
|
|
720
|
+
declare const SvgEye: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
721
|
+
|
|
716
722
|
declare const SvgEyeSlash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
717
723
|
|
|
718
|
-
declare const
|
|
724
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
719
725
|
|
|
720
726
|
declare const SvgFacebookCircle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
721
727
|
|
|
722
728
|
declare const SvgFacebookSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
723
729
|
|
|
724
|
-
declare const
|
|
730
|
+
declare const SvgFarm: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
725
731
|
|
|
726
732
|
declare const SvgFarmSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
727
733
|
|
|
728
|
-
declare const SvgFarm: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
729
|
-
|
|
730
734
|
declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
731
735
|
|
|
732
|
-
declare const SvgFishingRodSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
733
|
-
|
|
734
736
|
declare const SvgFishingRod: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
735
737
|
|
|
738
|
+
declare const SvgFishingRodSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
739
|
+
|
|
736
740
|
declare const SvgFlagSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
737
741
|
|
|
738
742
|
declare const SvgFlyFishing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -753,26 +757,26 @@ declare const SvgGroundBlind: (props: SVGProps<SVGSVGElement>) => _emotion_react
|
|
|
753
757
|
|
|
754
758
|
declare const SvgHandsUsd: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
755
759
|
|
|
756
|
-
declare const SvgHeartSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
757
|
-
|
|
758
760
|
declare const SvgHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
759
761
|
|
|
762
|
+
declare const SvgHeartSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
763
|
+
|
|
760
764
|
declare const SvgHorseSaddle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
761
765
|
|
|
766
|
+
declare const SvgHouse: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
767
|
+
|
|
762
768
|
declare const SvgHouseCircleCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
763
769
|
|
|
764
770
|
declare const SvgHouseSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
765
771
|
|
|
766
|
-
declare const
|
|
772
|
+
declare const SvgIconCalendar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
767
773
|
|
|
768
774
|
declare const SvgIconCalendarFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
769
775
|
|
|
770
|
-
declare const
|
|
776
|
+
declare const SvgIconComment: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
771
777
|
|
|
772
778
|
declare const SvgIconCommentFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
773
779
|
|
|
774
|
-
declare const SvgIconComment: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
775
|
-
|
|
776
780
|
declare const SvgIconDashboardGuage: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
777
781
|
|
|
778
782
|
declare const SvgIconDeleteTrash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -783,22 +787,22 @@ declare const SvgIconHamburgerMenuFilledSmall: (props: SVGProps<SVGSVGElement>)
|
|
|
783
787
|
|
|
784
788
|
declare const SvgIconHamburgerMenuSmall: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
785
789
|
|
|
790
|
+
declare const SvgIconHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
791
|
+
|
|
786
792
|
declare const SvgIconHeartFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
787
793
|
|
|
788
794
|
declare const SvgIconHeartSmall: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
789
795
|
|
|
790
|
-
declare const SvgIconHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
791
|
-
|
|
792
796
|
declare const SvgIconHelp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
793
797
|
|
|
794
798
|
declare const SvgIconInfoI: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
795
799
|
|
|
796
800
|
declare const SvgIconInquire: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
797
801
|
|
|
798
|
-
declare const SvgIconLodgeFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
799
|
-
|
|
800
802
|
declare const SvgIconLodge: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
801
803
|
|
|
804
|
+
declare const SvgIconLodgeFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
805
|
+
|
|
802
806
|
declare const SvgIconLogout: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
803
807
|
|
|
804
808
|
declare const SvgIconMapPinLocation2: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -841,32 +845,32 @@ declare const SvgLocationDotSolid: (props: SVGProps<SVGSVGElement>) => _emotion_
|
|
|
841
845
|
|
|
842
846
|
declare const SvgMagnifyingGlass: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
843
847
|
|
|
844
|
-
declare const SvgMapSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
845
|
-
|
|
846
848
|
declare const SvgMap: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
847
849
|
|
|
850
|
+
declare const SvgMapSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
851
|
+
|
|
848
852
|
declare const SvgMoundSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
849
853
|
|
|
850
854
|
declare const SvgMuleDeer: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
851
855
|
|
|
852
856
|
declare const SvgMushroom: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
853
857
|
|
|
854
|
-
declare const SvgNoteStickySolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
855
|
-
|
|
856
858
|
declare const SvgNoteSticky: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
857
859
|
|
|
858
|
-
declare const
|
|
860
|
+
declare const SvgNoteStickySolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
859
861
|
|
|
860
|
-
declare const
|
|
862
|
+
declare const SvgPaddleboard: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
861
863
|
|
|
862
864
|
declare const SvgPaperclip: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
863
865
|
|
|
864
|
-
declare const
|
|
866
|
+
declare const SvgPaperPlane: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
865
867
|
|
|
866
|
-
declare const
|
|
868
|
+
declare const SvgPedestalSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
867
869
|
|
|
868
870
|
declare const SvgPencil: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
869
871
|
|
|
872
|
+
declare const SvgPenToSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
873
|
+
|
|
870
874
|
declare const SvgPersonBiking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
871
875
|
|
|
872
876
|
declare const SvgPersonHiking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -881,10 +885,10 @@ declare const SvgPersonSwimming: (props: SVGProps<SVGSVGElement>) => _emotion_re
|
|
|
881
885
|
|
|
882
886
|
declare const SvgPheasant: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
883
887
|
|
|
884
|
-
declare const SvgPhoneSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
885
|
-
|
|
886
888
|
declare const SvgPhone: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
887
889
|
|
|
890
|
+
declare const SvgPhoneSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
891
|
+
|
|
888
892
|
declare const SvgPig: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
889
893
|
|
|
890
894
|
declare const SvgPinLogoSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -893,10 +897,10 @@ declare const SvgPlugSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_j
|
|
|
893
897
|
|
|
894
898
|
declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
895
899
|
|
|
896
|
-
declare const SvgQuotesLight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
897
|
-
|
|
898
900
|
declare const SvgQuotes: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
899
901
|
|
|
902
|
+
declare const SvgQuotesLight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
903
|
+
|
|
900
904
|
declare const SvgRifle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
901
905
|
|
|
902
906
|
declare const SvgRoadSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -909,10 +913,10 @@ declare const SvgSewage: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_
|
|
|
909
913
|
|
|
910
914
|
declare const SvgShelter: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
911
915
|
|
|
912
|
-
declare const SvgShieldCheckSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
913
|
-
|
|
914
916
|
declare const SvgShieldCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
915
917
|
|
|
918
|
+
declare const SvgShieldCheckSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
919
|
+
|
|
916
920
|
declare const SvgShieldSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
917
921
|
|
|
918
922
|
declare const SvgSignsPostSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -921,13 +925,15 @@ declare const SvgSmallCurvedLine: (props: SVGProps<SVGSVGElement>) => _emotion_r
|
|
|
921
925
|
|
|
922
926
|
declare const SvgSpinner: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
923
927
|
|
|
924
|
-
declare const
|
|
928
|
+
declare const SvgSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
925
929
|
|
|
926
|
-
declare const
|
|
930
|
+
declare const SvgSquareInfoSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
927
931
|
|
|
928
932
|
declare const SvgSquareParking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
929
933
|
|
|
930
|
-
declare const
|
|
934
|
+
declare const SvgSquareParkingSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
935
|
+
|
|
936
|
+
declare const SvgStar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
931
937
|
|
|
932
938
|
declare const SvgStarRegular: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
933
939
|
|
|
@@ -935,54 +941,52 @@ declare const SvgStarSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_j
|
|
|
935
941
|
|
|
936
942
|
declare const SvgStarSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
937
943
|
|
|
938
|
-
declare const SvgStar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
939
|
-
|
|
940
944
|
declare const SvgTablePicnic: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
941
945
|
|
|
942
946
|
declare const SvgTackle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
943
947
|
|
|
944
948
|
declare const SvgTelescope: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
945
949
|
|
|
946
|
-
declare const SvgTentSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
947
|
-
|
|
948
950
|
declare const SvgTent: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
949
951
|
|
|
950
|
-
declare const
|
|
952
|
+
declare const SvgTentSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
951
953
|
|
|
952
954
|
declare const SvgThumbsDown: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
953
955
|
|
|
954
|
-
declare const
|
|
956
|
+
declare const SvgThumbsDownSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
955
957
|
|
|
956
958
|
declare const SvgThumbsUp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
957
959
|
|
|
958
|
-
declare const
|
|
960
|
+
declare const SvgThumbsUpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
959
961
|
|
|
960
962
|
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
961
963
|
|
|
962
|
-
declare const
|
|
964
|
+
declare const SvgTrashSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
963
965
|
|
|
964
|
-
declare const
|
|
966
|
+
declare const SvgTreeDecorated: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
965
967
|
|
|
966
968
|
declare const SvgTrees: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
967
969
|
|
|
970
|
+
declare const SvgTreeStand: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
971
|
+
|
|
968
972
|
declare const SvgTurkey: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
969
973
|
|
|
970
974
|
declare const SvgUpland: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
971
975
|
|
|
972
|
-
declare const SvgUsFlag: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
973
|
-
|
|
974
|
-
declare const SvgUserSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
975
|
-
|
|
976
976
|
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
977
977
|
|
|
978
978
|
declare const SvgUsers: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
979
979
|
|
|
980
|
-
declare const
|
|
980
|
+
declare const SvgUserSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
981
|
+
|
|
982
|
+
declare const SvgUsFlag: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
981
983
|
|
|
982
984
|
declare const SvgWater: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
983
985
|
|
|
984
986
|
declare const SvgWaterfowl: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
985
987
|
|
|
988
|
+
declare const SvgWaterTap: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
989
|
+
|
|
986
990
|
declare const SvgWhitetail: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
987
991
|
|
|
988
992
|
declare const SvgXmark: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -1657,6 +1661,39 @@ type PackageCardProps = {
|
|
|
1657
1661
|
};
|
|
1658
1662
|
declare const PackageCard: ({ images, title, subtitle, startingPrice, tripsLeft, isFavorited, onFavoriteClick, onClick, className, days, guests, hasLodging, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1659
1663
|
|
|
1664
|
+
type ReviewItemProps = {
|
|
1665
|
+
/**
|
|
1666
|
+
* Label for the review item (e.g., "Communication", "Property", "Lodging")
|
|
1667
|
+
*/
|
|
1668
|
+
label: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Rating value from 1 to 5
|
|
1671
|
+
*/
|
|
1672
|
+
rating: number;
|
|
1673
|
+
};
|
|
1674
|
+
|
|
1675
|
+
type ReviewsProps = {
|
|
1676
|
+
/**
|
|
1677
|
+
* Average rating value from 1 to 5
|
|
1678
|
+
*/
|
|
1679
|
+
averageRating: number;
|
|
1680
|
+
/**
|
|
1681
|
+
* Total number of reviews
|
|
1682
|
+
*/
|
|
1683
|
+
totalReviews: number;
|
|
1684
|
+
/**
|
|
1685
|
+
* Array of review items with labels and ratings
|
|
1686
|
+
*/
|
|
1687
|
+
items: ReviewItemProps[];
|
|
1688
|
+
/**
|
|
1689
|
+
* Additional CSS class names
|
|
1690
|
+
*/
|
|
1691
|
+
className?: string;
|
|
1692
|
+
};
|
|
1693
|
+
declare const Reviews: FC<ReviewsProps>;
|
|
1694
|
+
|
|
1695
|
+
declare const ReviewsShowcase: FC;
|
|
1696
|
+
|
|
1660
1697
|
type SpinnerProps = {
|
|
1661
1698
|
/**
|
|
1662
1699
|
* Size of the spinner using space tokens
|
|
@@ -1835,4 +1872,4 @@ declare const Widget: React__default.FC<WidgetProps> & {
|
|
|
1835
1872
|
}>;
|
|
1836
1873
|
};
|
|
1837
1874
|
|
|
1838
|
-
export { AIResponse, type AIResponseProps, AvailabilityChip, type AvailabilityChipProps, type AvailabilityChipVariant, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, Container, Divider, type DividerProps, FieldNoteCard, type FieldNoteCardProps, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, type HeadingProps, HuntCard, type HuntCardProps, Icon, IconLabel, type IconLabelProps, type IconProps, type IconVariantTypes$1 as IconVariantTypes, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardProps, type ResponsiveValue, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|
|
1875
|
+
export { AIResponse, type AIResponseProps, AvailabilityChip, type AvailabilityChipProps, type AvailabilityChipVariant, type BaseInputProps, Box, type BoxProps, Button, type ButtonProps, type ButtonVariants, ChatWidget, type ChatWidgetMessage, type ChatWidgetProps, Column, type ColumnProps, Container, Divider, type DividerProps, FieldNoteCard, type FieldNoteCardProps, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, type HeadingProps, HuntCard, type HuntCardProps, Icon, IconLabel, type IconLabelProps, type IconProps, type IconVariantTypes$1 as IconVariantTypes, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, ListingChat, type ListingChatProps, Logo, type LogoProps, type LogoTheme, type LogoVariant, MessageBubble, type MessageBubbleProps, type NavLink, Navigation, type NavigationProps, PackageCard, type PackageCardProps, type ResponsiveValue, Reviews, type ReviewsProps, ReviewsShowcase, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|