@landtrustinc/design-system 1.1.4 → 1.1.6
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 +182 -63
- package/dist/index.js +1094 -589
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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,9 +579,43 @@ 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
|
|
|
589
|
+
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
590
|
+
type AvatarType = 'image' | 'text';
|
|
591
|
+
type AvatarProps = {
|
|
592
|
+
/**
|
|
593
|
+
* Type of avatar - image or text initials
|
|
594
|
+
*/
|
|
595
|
+
type?: AvatarType;
|
|
596
|
+
/**
|
|
597
|
+
* Source URL of the avatar image (required for type="image")
|
|
598
|
+
*/
|
|
599
|
+
src?: string;
|
|
600
|
+
/**
|
|
601
|
+
* Text to generate initials from (required for type="text")
|
|
602
|
+
*/
|
|
603
|
+
text?: string;
|
|
604
|
+
/**
|
|
605
|
+
* Alt text for the avatar
|
|
606
|
+
*/
|
|
607
|
+
alt: string;
|
|
608
|
+
/**
|
|
609
|
+
* Size of the avatar
|
|
610
|
+
*/
|
|
611
|
+
size?: AvatarSize;
|
|
612
|
+
/**
|
|
613
|
+
* Additional CSS class names
|
|
614
|
+
*/
|
|
615
|
+
className?: string;
|
|
616
|
+
};
|
|
617
|
+
declare const Avatar: FC<AvatarProps>;
|
|
618
|
+
|
|
585
619
|
type BoxProps = HTMLAttributes<HTMLDivElement> & BorderProps & SpaceProps & ColorProps & FlexboxProps & GridProps$1 & LayoutProps & PositionProps & TypographyProps & WidthProps & {
|
|
586
620
|
children?: React.ReactNode;
|
|
587
621
|
gap?: unknown;
|
|
@@ -625,12 +659,12 @@ declare const SvgArrowDownWideShort: (props: SVGProps<SVGSVGElement>) => _emotio
|
|
|
625
659
|
|
|
626
660
|
declare const SvgArrowRotateLeft: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
627
661
|
|
|
662
|
+
declare const SvgArrowsLeftRight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
663
|
+
|
|
628
664
|
declare const SvgArrowUpFromSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
629
665
|
|
|
630
666
|
declare const SvgArrowUpRightFromSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
631
667
|
|
|
632
|
-
declare const SvgArrowsLeftRight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
633
|
-
|
|
634
668
|
declare const SvgArtLure: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
635
669
|
|
|
636
670
|
declare const SvgBadgeDark: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -645,28 +679,28 @@ declare const SvgBear: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_ru
|
|
|
645
679
|
|
|
646
680
|
declare const SvgBedSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
647
681
|
|
|
682
|
+
declare const SvgBell: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
683
|
+
|
|
648
684
|
declare const SvgBellSlash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
649
685
|
|
|
650
686
|
declare const SvgBellSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
651
687
|
|
|
652
|
-
declare const SvgBell: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
653
|
-
|
|
654
688
|
declare const SvgBinoculars: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
655
689
|
|
|
656
690
|
declare const SvgBoltSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
657
691
|
|
|
658
|
-
declare const SvgBowArrowSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
659
|
-
|
|
660
692
|
declare const SvgBowArrowSharp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
661
693
|
|
|
694
|
+
declare const SvgBowArrowSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
695
|
+
|
|
662
696
|
declare const SvgBowFishing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
663
697
|
|
|
664
698
|
declare const SvgBoxArchive: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
665
699
|
|
|
666
|
-
declare const SvgCabinSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
667
|
-
|
|
668
700
|
declare const SvgCabin: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
669
701
|
|
|
702
|
+
declare const SvgCabinSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
703
|
+
|
|
670
704
|
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
671
705
|
|
|
672
706
|
declare const SvgCameraRetro: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -675,10 +709,10 @@ declare const SvgCampfire: (props: SVGProps<SVGSVGElement>) => _emotion_react_js
|
|
|
675
709
|
|
|
676
710
|
declare const SvgCanoe: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
677
711
|
|
|
678
|
-
declare const SvgCaravanSimpleSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
679
|
-
|
|
680
712
|
declare const SvgCaravanSimple: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
681
713
|
|
|
714
|
+
declare const SvgCaravanSimpleSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
715
|
+
|
|
682
716
|
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
683
717
|
|
|
684
718
|
declare const SvgCircleCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -689,10 +723,10 @@ declare const SvgCircleXmark: (props: SVGProps<SVGSVGElement>) => _emotion_react
|
|
|
689
723
|
|
|
690
724
|
declare const SvgClimbing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
691
725
|
|
|
692
|
-
declare const SvgClockSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
693
|
-
|
|
694
726
|
declare const SvgClock: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
695
727
|
|
|
728
|
+
declare const SvgClockSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
729
|
+
|
|
696
730
|
declare const SvgConversationalSearchAi: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
697
731
|
|
|
698
732
|
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -713,26 +747,26 @@ declare const SvgEllipsis: (props: SVGProps<SVGSVGElement>) => _emotion_react_js
|
|
|
713
747
|
|
|
714
748
|
declare const SvgEnvelope: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
715
749
|
|
|
750
|
+
declare const SvgEye: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
751
|
+
|
|
716
752
|
declare const SvgEyeSlash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
717
753
|
|
|
718
|
-
declare const
|
|
754
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
719
755
|
|
|
720
756
|
declare const SvgFacebookCircle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
721
757
|
|
|
722
758
|
declare const SvgFacebookSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
723
759
|
|
|
724
|
-
declare const
|
|
760
|
+
declare const SvgFarm: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
725
761
|
|
|
726
762
|
declare const SvgFarmSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
727
763
|
|
|
728
|
-
declare const SvgFarm: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
729
|
-
|
|
730
764
|
declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
731
765
|
|
|
732
|
-
declare const SvgFishingRodSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
733
|
-
|
|
734
766
|
declare const SvgFishingRod: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
735
767
|
|
|
768
|
+
declare const SvgFishingRodSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
769
|
+
|
|
736
770
|
declare const SvgFlagSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
737
771
|
|
|
738
772
|
declare const SvgFlyFishing: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -753,26 +787,26 @@ declare const SvgGroundBlind: (props: SVGProps<SVGSVGElement>) => _emotion_react
|
|
|
753
787
|
|
|
754
788
|
declare const SvgHandsUsd: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
755
789
|
|
|
756
|
-
declare const SvgHeartSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
757
|
-
|
|
758
790
|
declare const SvgHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
759
791
|
|
|
792
|
+
declare const SvgHeartSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
793
|
+
|
|
760
794
|
declare const SvgHorseSaddle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
761
795
|
|
|
796
|
+
declare const SvgHouse: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
797
|
+
|
|
762
798
|
declare const SvgHouseCircleCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
763
799
|
|
|
764
800
|
declare const SvgHouseSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
765
801
|
|
|
766
|
-
declare const
|
|
802
|
+
declare const SvgIconCalendar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
767
803
|
|
|
768
804
|
declare const SvgIconCalendarFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
769
805
|
|
|
770
|
-
declare const
|
|
806
|
+
declare const SvgIconComment: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
771
807
|
|
|
772
808
|
declare const SvgIconCommentFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
773
809
|
|
|
774
|
-
declare const SvgIconComment: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
775
|
-
|
|
776
810
|
declare const SvgIconDashboardGuage: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
777
811
|
|
|
778
812
|
declare const SvgIconDeleteTrash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -783,22 +817,22 @@ declare const SvgIconHamburgerMenuFilledSmall: (props: SVGProps<SVGSVGElement>)
|
|
|
783
817
|
|
|
784
818
|
declare const SvgIconHamburgerMenuSmall: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
785
819
|
|
|
820
|
+
declare const SvgIconHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
821
|
+
|
|
786
822
|
declare const SvgIconHeartFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
787
823
|
|
|
788
824
|
declare const SvgIconHeartSmall: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
789
825
|
|
|
790
|
-
declare const SvgIconHeart: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
791
|
-
|
|
792
826
|
declare const SvgIconHelp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
793
827
|
|
|
794
828
|
declare const SvgIconInfoI: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
795
829
|
|
|
796
830
|
declare const SvgIconInquire: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
797
831
|
|
|
798
|
-
declare const SvgIconLodgeFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
799
|
-
|
|
800
832
|
declare const SvgIconLodge: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
801
833
|
|
|
834
|
+
declare const SvgIconLodgeFilled: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
835
|
+
|
|
802
836
|
declare const SvgIconLogout: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
803
837
|
|
|
804
838
|
declare const SvgIconMapPinLocation2: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -841,32 +875,32 @@ declare const SvgLocationDotSolid: (props: SVGProps<SVGSVGElement>) => _emotion_
|
|
|
841
875
|
|
|
842
876
|
declare const SvgMagnifyingGlass: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
843
877
|
|
|
844
|
-
declare const SvgMapSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
845
|
-
|
|
846
878
|
declare const SvgMap: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
847
879
|
|
|
880
|
+
declare const SvgMapSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
881
|
+
|
|
848
882
|
declare const SvgMoundSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
849
883
|
|
|
850
884
|
declare const SvgMuleDeer: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
851
885
|
|
|
852
886
|
declare const SvgMushroom: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
853
887
|
|
|
854
|
-
declare const SvgNoteStickySolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
855
|
-
|
|
856
888
|
declare const SvgNoteSticky: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
857
889
|
|
|
858
|
-
declare const
|
|
890
|
+
declare const SvgNoteStickySolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
859
891
|
|
|
860
|
-
declare const
|
|
892
|
+
declare const SvgPaddleboard: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
861
893
|
|
|
862
894
|
declare const SvgPaperclip: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
863
895
|
|
|
864
|
-
declare const
|
|
896
|
+
declare const SvgPaperPlane: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
865
897
|
|
|
866
|
-
declare const
|
|
898
|
+
declare const SvgPedestalSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
867
899
|
|
|
868
900
|
declare const SvgPencil: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
869
901
|
|
|
902
|
+
declare const SvgPenToSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
903
|
+
|
|
870
904
|
declare const SvgPersonBiking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
871
905
|
|
|
872
906
|
declare const SvgPersonHiking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -881,10 +915,10 @@ declare const SvgPersonSwimming: (props: SVGProps<SVGSVGElement>) => _emotion_re
|
|
|
881
915
|
|
|
882
916
|
declare const SvgPheasant: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
883
917
|
|
|
884
|
-
declare const SvgPhoneSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
885
|
-
|
|
886
918
|
declare const SvgPhone: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
887
919
|
|
|
920
|
+
declare const SvgPhoneSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
921
|
+
|
|
888
922
|
declare const SvgPig: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
889
923
|
|
|
890
924
|
declare const SvgPinLogoSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -893,10 +927,10 @@ declare const SvgPlugSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_j
|
|
|
893
927
|
|
|
894
928
|
declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
895
929
|
|
|
896
|
-
declare const SvgQuotesLight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
897
|
-
|
|
898
930
|
declare const SvgQuotes: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
899
931
|
|
|
932
|
+
declare const SvgQuotesLight: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
933
|
+
|
|
900
934
|
declare const SvgRifle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
901
935
|
|
|
902
936
|
declare const SvgRoadSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -909,10 +943,10 @@ declare const SvgSewage: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_
|
|
|
909
943
|
|
|
910
944
|
declare const SvgShelter: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
911
945
|
|
|
912
|
-
declare const SvgShieldCheckSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
913
|
-
|
|
914
946
|
declare const SvgShieldCheck: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
915
947
|
|
|
948
|
+
declare const SvgShieldCheckSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
949
|
+
|
|
916
950
|
declare const SvgShieldSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
917
951
|
|
|
918
952
|
declare const SvgSignsPostSharpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -921,13 +955,15 @@ declare const SvgSmallCurvedLine: (props: SVGProps<SVGSVGElement>) => _emotion_r
|
|
|
921
955
|
|
|
922
956
|
declare const SvgSpinner: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
923
957
|
|
|
924
|
-
declare const
|
|
958
|
+
declare const SvgSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
925
959
|
|
|
926
|
-
declare const
|
|
960
|
+
declare const SvgSquareInfoSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
927
961
|
|
|
928
962
|
declare const SvgSquareParking: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
929
963
|
|
|
930
|
-
declare const
|
|
964
|
+
declare const SvgSquareParkingSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
965
|
+
|
|
966
|
+
declare const SvgStar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
931
967
|
|
|
932
968
|
declare const SvgStarRegular: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
933
969
|
|
|
@@ -935,54 +971,52 @@ declare const SvgStarSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_j
|
|
|
935
971
|
|
|
936
972
|
declare const SvgStarSplash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
937
973
|
|
|
938
|
-
declare const SvgStar: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
939
|
-
|
|
940
974
|
declare const SvgTablePicnic: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
941
975
|
|
|
942
976
|
declare const SvgTackle: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
943
977
|
|
|
944
978
|
declare const SvgTelescope: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
945
979
|
|
|
946
|
-
declare const SvgTentSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
947
|
-
|
|
948
980
|
declare const SvgTent: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
949
981
|
|
|
950
|
-
declare const
|
|
982
|
+
declare const SvgTentSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
951
983
|
|
|
952
984
|
declare const SvgThumbsDown: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
953
985
|
|
|
954
|
-
declare const
|
|
986
|
+
declare const SvgThumbsDownSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
955
987
|
|
|
956
988
|
declare const SvgThumbsUp: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
957
989
|
|
|
958
|
-
declare const
|
|
990
|
+
declare const SvgThumbsUpSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
959
991
|
|
|
960
992
|
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
961
993
|
|
|
962
|
-
declare const
|
|
994
|
+
declare const SvgTrashSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
963
995
|
|
|
964
|
-
declare const
|
|
996
|
+
declare const SvgTreeDecorated: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
965
997
|
|
|
966
998
|
declare const SvgTrees: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
967
999
|
|
|
1000
|
+
declare const SvgTreeStand: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1001
|
+
|
|
968
1002
|
declare const SvgTurkey: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
969
1003
|
|
|
970
1004
|
declare const SvgUpland: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
971
1005
|
|
|
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
1006
|
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
977
1007
|
|
|
978
1008
|
declare const SvgUsers: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
979
1009
|
|
|
980
|
-
declare const
|
|
1010
|
+
declare const SvgUserSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1011
|
+
|
|
1012
|
+
declare const SvgUsFlag: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
981
1013
|
|
|
982
1014
|
declare const SvgWater: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
983
1015
|
|
|
984
1016
|
declare const SvgWaterfowl: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
985
1017
|
|
|
1018
|
+
declare const SvgWaterTap: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1019
|
+
|
|
986
1020
|
declare const SvgWhitetail: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
987
1021
|
|
|
988
1022
|
declare const SvgXmark: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -1657,6 +1691,64 @@ type PackageCardProps = {
|
|
|
1657
1691
|
};
|
|
1658
1692
|
declare const PackageCard: ({ images, title, subtitle, startingPrice, tripsLeft, isFavorited, onFavoriteClick, onClick, className, days, guests, hasLodging, ...rest }: PackageCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1659
1693
|
|
|
1694
|
+
type ReviewReplyProps = {
|
|
1695
|
+
avatarSrc: string;
|
|
1696
|
+
name: string;
|
|
1697
|
+
date: string;
|
|
1698
|
+
content: string;
|
|
1699
|
+
label?: string;
|
|
1700
|
+
rating: number;
|
|
1701
|
+
};
|
|
1702
|
+
|
|
1703
|
+
type ReviewCardProps = {
|
|
1704
|
+
avatarSrc: string;
|
|
1705
|
+
name: string;
|
|
1706
|
+
date: string;
|
|
1707
|
+
rating: number;
|
|
1708
|
+
availabilityChip?: {
|
|
1709
|
+
variant: 'primary' | 'error' | 'action' | 'warning' | 'neutral';
|
|
1710
|
+
text: string;
|
|
1711
|
+
};
|
|
1712
|
+
content: string;
|
|
1713
|
+
images?: string[];
|
|
1714
|
+
replies?: ReviewReplyProps[];
|
|
1715
|
+
className?: string;
|
|
1716
|
+
};
|
|
1717
|
+
declare const ReviewCard: FC<ReviewCardProps>;
|
|
1718
|
+
|
|
1719
|
+
type ReviewItemProps = {
|
|
1720
|
+
/**
|
|
1721
|
+
* Label for the review item (e.g., "Communication", "Property", "Lodging")
|
|
1722
|
+
*/
|
|
1723
|
+
label: string;
|
|
1724
|
+
/**
|
|
1725
|
+
* Rating value from 1 to 5
|
|
1726
|
+
*/
|
|
1727
|
+
rating: number;
|
|
1728
|
+
};
|
|
1729
|
+
|
|
1730
|
+
type ReviewsProps = {
|
|
1731
|
+
/**
|
|
1732
|
+
* Average rating value from 1 to 5
|
|
1733
|
+
*/
|
|
1734
|
+
averageRating: number;
|
|
1735
|
+
/**
|
|
1736
|
+
* Total number of reviews
|
|
1737
|
+
*/
|
|
1738
|
+
totalReviews: number;
|
|
1739
|
+
/**
|
|
1740
|
+
* Array of review items with labels and ratings
|
|
1741
|
+
*/
|
|
1742
|
+
items: ReviewItemProps[];
|
|
1743
|
+
/**
|
|
1744
|
+
* Additional CSS class names
|
|
1745
|
+
*/
|
|
1746
|
+
className?: string;
|
|
1747
|
+
};
|
|
1748
|
+
declare const Reviews: FC<ReviewsProps>;
|
|
1749
|
+
|
|
1750
|
+
declare const ReviewsShowcase: FC;
|
|
1751
|
+
|
|
1660
1752
|
type SpinnerProps = {
|
|
1661
1753
|
/**
|
|
1662
1754
|
* Size of the spinner using space tokens
|
|
@@ -1673,6 +1765,23 @@ type SpinnerProps = {
|
|
|
1673
1765
|
};
|
|
1674
1766
|
declare const Spinner: ({ size, className, fill }: SpinnerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1675
1767
|
|
|
1768
|
+
type StarSizeVariant = 'sm' | 'md';
|
|
1769
|
+
type StarRatingProps = {
|
|
1770
|
+
/**
|
|
1771
|
+
* Rating value from 1 to 5
|
|
1772
|
+
*/
|
|
1773
|
+
rating: number;
|
|
1774
|
+
/**
|
|
1775
|
+
* Additional CSS class names
|
|
1776
|
+
*/
|
|
1777
|
+
className?: string;
|
|
1778
|
+
/**
|
|
1779
|
+
* Size of the star icons
|
|
1780
|
+
*/
|
|
1781
|
+
size?: StarSizeVariant;
|
|
1782
|
+
};
|
|
1783
|
+
declare const StarRating: FC<StarRatingProps>;
|
|
1784
|
+
|
|
1676
1785
|
type TagChipVariant = 'primary' | 'success' | 'warning' | 'error';
|
|
1677
1786
|
|
|
1678
1787
|
type TagChipProps = HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -1765,6 +1874,16 @@ type TextProps = HTMLAttributes<HTMLElement> & {
|
|
|
1765
1874
|
};
|
|
1766
1875
|
declare const Text: FC<PropsWithChildren<TextProps>>;
|
|
1767
1876
|
|
|
1877
|
+
type UserCardProps = {
|
|
1878
|
+
avatarSrc: string;
|
|
1879
|
+
title: string;
|
|
1880
|
+
subtitle?: string;
|
|
1881
|
+
rating?: number;
|
|
1882
|
+
showRating?: boolean;
|
|
1883
|
+
className?: string;
|
|
1884
|
+
};
|
|
1885
|
+
declare const UserCard: FC<UserCardProps>;
|
|
1886
|
+
|
|
1768
1887
|
type IconVariantTypes = Parameters<typeof Icon>[0]['variant'];
|
|
1769
1888
|
type WidgetProps = {
|
|
1770
1889
|
/**
|
|
@@ -1835,4 +1954,4 @@ declare const Widget: React__default.FC<WidgetProps> & {
|
|
|
1835
1954
|
}>;
|
|
1836
1955
|
};
|
|
1837
1956
|
|
|
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 };
|
|
1957
|
+
export { AIResponse, type AIResponseProps, AvailabilityChip, type AvailabilityChipProps, type AvailabilityChipVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarType, 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, ReviewCard, type ReviewCardProps, Reviews, type ReviewsProps, ReviewsShowcase, Select, type SelectOption, type SelectProps, Spinner, type SpinnerProps, StarRating, type StarRatingProps, type TFontWeight, type THeadingSize, type TTextAlign, type TTextSize, type TTextWrap, TagChip, type TagChipProps, type TagChipVariant, Text, TextArea, type TextProps, type TextareaProps, ThemeTokens, UserCard, type UserCardProps, Widget, WidgetPanel, type WidgetPanelProps, type WidgetProps, WidgetTrigger, type WidgetTriggerProps, globalStyles, styles };
|