@landtrustinc/design-system 1.0.12 → 1.1.0-beta.0

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 CHANGED
@@ -1,13 +1,13 @@
1
1
  import * as _emotion_utils from '@emotion/utils';
2
+ import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
3
  import * as React$1 from 'react';
3
- import React__default, { HTMLAttributes, FC, PropsWithChildren, ReactNode, SVGProps } from 'react';
4
+ import React__default, { HTMLAttributes, FC, PropsWithChildren, SVGProps, ReactNode } from 'react';
4
5
  import * as _emotion_styled from '@emotion/styled';
5
6
  import * as csstype from 'csstype';
6
7
  import * as styled_system from 'styled-system';
7
8
  import { BorderProps, SpaceProps, ColorProps, FlexboxProps, GridProps as GridProps$1, LayoutProps, PositionProps, TypographyProps, WidthProps } from 'styled-system';
8
9
  import * as _emotion_react from '@emotion/react';
9
10
  import { Interpolation, Theme } from '@emotion/react';
10
- import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
11
11
 
12
12
  declare const globalStyles: _emotion_utils.SerializedStyles;
13
13
  declare const GlobalStyle: _emotion_utils.SerializedStyles;
@@ -524,6 +524,19 @@ declare namespace styles {
524
524
  export { styles_ThemeTokens as ThemeTokens, styles_borderRadius as borderRadius, styles_boxShadow as boxShadow, styles_colors as colors, styles_fontSizes as fontSizes, styles_fontWeights as fontWeights, styles_fonts as fonts, styles_headingSizes as headingSizes, styles_lineHeights as lineHeights, styles_media as media, styles_opacity as opacity, styles_screens as screens, styles_sizes as sizes, styles_space as space, styles_textShadow as textShadow, styles_transition as transition, styles_zIndex as zIndex };
525
525
  }
526
526
 
527
+ type Props$c = {
528
+ title?: string;
529
+ showDisclaimer?: boolean;
530
+ showHelpfulQuestion?: boolean;
531
+ className?: string;
532
+ children?: React__default.ReactNode;
533
+ onHelpfulYes?: () => void;
534
+ onHelpfulNo?: () => void;
535
+ variant?: 'default' | 'error';
536
+ onErrorRetry?: () => void;
537
+ };
538
+ declare const AIResponse: ({ title, showDisclaimer, showHelpfulQuestion, className, children, onHelpfulYes, onHelpfulNo, variant, onErrorRetry, }: Props$c) => _emotion_react_jsx_runtime.JSX.Element;
539
+
527
540
  type AvailabilityChipVariant = 'primary' | 'error' | 'action' | 'warning';
528
541
  type AvailabilityChipProps$1 = HTMLAttributes<HTMLSpanElement> & {
529
542
  /** The visual variant of the chip */
@@ -554,199 +567,12 @@ declare const Box: _emotion_styled.StyledComponent<{
554
567
  className?: string | undefined;
555
568
  }, React$1.DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
556
569
 
557
- type Props$a = BoxProps & {
570
+ type Props$b = BoxProps & {
558
571
  isFullWidth?: boolean;
559
572
  };
560
- declare const Container: ({ children, className, isFullWidth, ...props }: Props$a) => _emotion_react_jsx_runtime.JSX.Element;
561
-
562
- type ButtonVariants = 'primary' | 'secondary' | 'tertiary' | 'plus' | 'simple' | 'text' | 'text-underline' | 'topo';
563
- type ButtonAndAnchorProps = React__default.HTMLProps<HTMLButtonElement> & React__default.HTMLProps<HTMLAnchorElement>;
564
- type Props$9 = Omit<ButtonAndAnchorProps, 'size' | 'as' | 'onClick'> & {
565
- as?: React__default.ElementType;
566
- variant?: ButtonVariants;
567
- fullWidth?: boolean;
568
- isLoading?: boolean;
569
- disabled?: boolean;
570
- children?: React__default.ReactNode;
571
- type?: 'submit' | 'button';
572
- size?: 'xs' | 'base' | 'sm';
573
- className?: string;
574
- labelStyleOverrides?: Interpolation<Theme>;
575
- onClick?: React__default.MouseEventHandler<HTMLElement>;
576
- };
577
- declare const Button: ({ as: Component, variant, fullWidth, size, disabled, children, type, isLoading, className, labelStyleOverrides, ...props }: Props$9) => _emotion_react_jsx_runtime.JSX.Element;
578
-
579
- type Props$8 = {
580
- backgroundImage: string;
581
- title: string;
582
- buttonLabel: string;
583
- onClick?: () => void;
584
- className?: string;
585
- };
586
- declare const FieldNoteCard: ({ backgroundImage, title, buttonLabel, onClick, className, ...rest }: Props$8) => _emotion_react_jsx_runtime.JSX.Element;
587
-
588
- type InputSize = 'sm' | 'md' | 'lg';
589
- type InputVariant = 'default' | 'error' | 'success';
590
- interface BaseInputProps {
591
- /** Size variant of the input */
592
- size?: InputSize;
593
- /** Visual variant of the input */
594
- variant?: InputVariant;
595
- /** Whether the input is disabled */
596
- disabled?: boolean;
597
- /** Whether the input is required */
598
- required?: boolean;
599
- /** Whether the input is read-only */
600
- readOnly?: boolean;
601
- /** Help text displayed below the input */
602
- helpText?: string;
603
- /** Error message displayed below the input */
604
- error?: string;
605
- /** Success message displayed below the input */
606
- success?: string;
607
- /** Label text for the input */
608
- label?: string;
609
- /** Whether to hide the label visually (for accessibility) */
610
- hideLabel?: boolean;
611
- /** Icon to display at the start of the input */
612
- startIcon?: ReactNode;
613
- /** Icon to display at the end of the input */
614
- endIcon?: ReactNode;
615
- /** Additional className */
616
- className?: string;
617
- /** Placeholder text */
618
- placeholder?: string;
619
- }
620
- interface InputProps extends BaseInputProps, Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
621
- /** Input type */
622
- type?: 'text' | 'email' | 'password' | 'number' | 'tel' | 'url' | 'search';
623
- }
624
- interface SelectOption {
625
- value: string | number;
626
- label: string;
627
- disabled?: boolean;
628
- }
629
- interface SelectProps extends BaseInputProps, Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'size'> {
630
- /** Select options */
631
- options: SelectOption[];
632
- /** Placeholder option text */
633
- placeholderOption?: string;
634
- }
635
- interface FormFieldProps {
636
- /** Field label */
637
- label?: string;
638
- /** Whether to hide the label visually */
639
- hideLabel?: boolean;
640
- /** Whether the field is required */
641
- required?: boolean;
642
- /** Error message */
643
- error?: string;
644
- /** Success message */
645
- success?: string;
646
- /** Help text */
647
- helpText?: string;
648
- /** Field ID for accessibility */
649
- htmlFor?: string;
650
- /** Children components */
651
- children: ReactNode;
652
- /** Additional className */
653
- className?: string;
654
- }
655
-
656
- declare const FormField: React__default.FC<FormFieldProps>;
573
+ declare const Container: ({ children, className, isFullWidth, ...props }: Props$b) => _emotion_react_jsx_runtime.JSX.Element;
657
574
 
658
- declare const Input: React__default.ForwardRefExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
659
-
660
- declare const Select: React__default.ForwardRefExoticComponent<SelectProps & React__default.RefAttributes<HTMLSelectElement>>;
661
-
662
- type ResponsiveValue<T> = T | {
663
- sm?: T;
664
- md?: T;
665
- lg?: T;
666
- xl?: T;
667
- _?: T;
668
- };
669
- interface GridProps extends Omit<BoxProps, 'display'> {
670
- /** Number of columns at different breakpoints */
671
- columns?: ResponsiveValue<number>;
672
- /** Gap between grid items using space tokens */
673
- gap?: ResponsiveValue<keyof typeof space>;
674
- /** Row gap between grid items using space tokens */
675
- rowGap?: ResponsiveValue<keyof typeof space>;
676
- /** Column gap between grid items using space tokens */
677
- columnGap?: ResponsiveValue<keyof typeof space>;
678
- /** Size of auto-generated rows */
679
- autoRows?: string;
680
- /** Size of auto-generated columns */
681
- autoColumns?: string;
682
- /** Grid template areas for named layouts */
683
- templateAreas?: ResponsiveValue<string>;
684
- /** Align items in the grid */
685
- alignItems?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch'>;
686
- /** Justify items in the grid */
687
- justifyItems?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch'>;
688
- /** Justify content in the grid */
689
- justifyContent?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch' | 'space-between' | 'space-around' | 'space-evenly'>;
690
- children: ReactNode;
691
- }
692
- interface ColumnProps extends BoxProps {
693
- /** Column span at different breakpoints */
694
- span?: ResponsiveValue<number | 'auto'>;
695
- /** Column start position */
696
- start?: ResponsiveValue<number>;
697
- /** Column end position */
698
- end?: ResponsiveValue<number>;
699
- /** Row position */
700
- row?: ResponsiveValue<number>;
701
- /** Row span */
702
- rowSpan?: ResponsiveValue<number>;
703
- /** Grid area name */
704
- area?: string;
705
- children: ReactNode;
706
- }
707
- interface GridContainerProps extends HTMLAttributes<HTMLDivElement> {
708
- /** Maximum width constraint */
709
- maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | 'content' | 'wide' | 'full' | string;
710
- children: ReactNode;
711
- className?: string;
712
- }
713
- type GridBreakpoint = 'sm' | 'md' | 'lg' | 'xl';
714
-
715
- declare const Column: ({ span, start, end, row, rowSpan, area, children, ...props }: ColumnProps) => _emotion_react_jsx_runtime.JSX.Element;
716
-
717
- declare const Grid: ({ columns, gap, rowGap, columnGap, autoRows, autoColumns, templateAreas, alignItems, justifyItems, justifyContent, children, ...props }: GridProps) => _emotion_react_jsx_runtime.JSX.Element;
718
-
719
- declare const GridContainer: ({ maxWidth, children, className, ...props }: GridContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
720
-
721
- /**
722
- * Layout tokens for different container sizes
723
- */
724
- declare const LayoutTokens: {
725
- containers: {
726
- sm: string;
727
- md: string;
728
- lg: string;
729
- xl: string;
730
- content: string;
731
- wide: string;
732
- full: string;
733
- };
734
- gutters: {
735
- sm: string;
736
- md: string;
737
- lg: string;
738
- xl: string;
739
- };
740
- };
741
-
742
- type Props$7 = {
743
- backgroundImage: string;
744
- title: string;
745
- buttonLabel: string;
746
- onClick?: () => void;
747
- className?: string;
748
- };
749
- declare const HuntCard: ({ backgroundImage, title, buttonLabel, onClick, className, ...rest }: Props$7) => _emotion_react_jsx_runtime.JSX.Element;
575
+ declare const SvgAiMagic: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
750
576
 
751
577
  declare const SvgAmenitity: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
752
578
 
@@ -838,6 +664,8 @@ declare const SvgClockSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_
838
664
 
839
665
  declare const SvgClock: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
840
666
 
667
+ declare const SvgConversationalSearchAi: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
668
+
841
669
  declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
842
670
 
843
671
  declare const SvgCoyote: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
@@ -1000,6 +828,8 @@ declare const SvgNoteSticky: (props: SVGProps<SVGSVGElement>) => _emotion_react_
1000
828
 
1001
829
  declare const SvgPaddleboard: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
1002
830
 
831
+ declare const SvgPaperPlane: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
832
+
1003
833
  declare const SvgPaperclip: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
1004
834
 
1005
835
  declare const SvgPedestalSolid: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
@@ -1127,37 +957,259 @@ declare const SvgXmark: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_r
1127
957
  declare const SvgYoutubeSquare: (props: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
1128
958
 
1129
959
  declare namespace Icons {
1130
- export { SvgAmenitity as Amenitity, SvgAngleDownSharp as AngleDownSharp, SvgAngleLeft as AngleLeft, SvgAngleRight as AngleRight, SvgAngleUp as AngleUp, SvgAntelope as Antelope, SvgArchery as Archery, SvgArrowCircleLeft as ArrowCircleLeft, SvgArrowCircleRight as ArrowCircleRight, SvgArrowDownWideShort as ArrowDownWideShort, SvgArrowRotateLeft as ArrowRotateLeft, SvgArrowUpFromSquare as ArrowUpFromSquare, SvgArrowUpRightFromSquare as ArrowUpRightFromSquare, SvgArrowsLeftRight as ArrowsLeftRight, SvgArtLure as ArtLure, SvgBadgeDark as BadgeDark, SvgBan as Ban, SvgBars as Bars, SvgBathSolid as BathSolid, SvgBear as Bear, SvgBedSolid as BedSolid, SvgBell as Bell, SvgBellSlash as BellSlash, SvgBellSolid as BellSolid, SvgBinoculars as Binoculars, SvgBoltSolid as BoltSolid, SvgBowArrowSharp as BowArrowSharp, SvgBowArrowSharpSolid as BowArrowSharpSolid, SvgBowFishing as BowFishing, SvgBoxArchive as BoxArchive, SvgCabin as Cabin, SvgCabinSolid as CabinSolid, SvgCalendar as Calendar, SvgCameraRetro as CameraRetro, SvgCampfire as Campfire, SvgCanoe as Canoe, SvgCaravanSimple as CaravanSimple, SvgCaravanSimpleSolid as CaravanSimpleSolid, SvgCheck as Check, SvgCircleCheck as CircleCheck, SvgCircleInfo as CircleInfo, SvgCircleXmark as CircleXmark, SvgClimbing as Climbing, SvgClock as Clock, SvgClockSolid as ClockSolid, SvgCopy as Copy, SvgCoyote as Coyote, SvgCurveLine as CurveLine, SvgDogLeashed as DogLeashed, SvgDownCarrot as DownCarrot, SvgDuck as Duck, SvgElk as Elk, SvgEllipsis as Ellipsis, SvgEnvelope as Envelope, SvgEye as Eye, SvgEyeSlash as EyeSlash, SvgFacebook as Facebook, SvgFacebookCircle as FacebookCircle, SvgFacebookSquare as FacebookSquare, SvgFarm as Farm, SvgFarmSolid as FarmSolid, SvgFilter as Filter, SvgFishingRod as FishingRod, SvgFishingRodSolid as FishingRodSolid, SvgFlagSplash as FlagSplash, SvgFlyFishing as FlyFishing, SvgFood as Food, SvgFossil as Fossil, SvgGameCam as GameCam, SvgGameFeeder as GameFeeder, SvgGridSolid as GridSolid, SvgGrillHotSolid as GrillHotSolid, SvgGroundBlind as GroundBlind, SvgHandsUsd as HandsUsd, SvgHeart as Heart, SvgHeartSolid as HeartSolid, SvgHorseSaddle as HorseSaddle, SvgHouse as House, SvgHouseCircleCheck as HouseCircleCheck, SvgHouseSolid as HouseSolid, SvgIconCalendar as IconCalendar, SvgIconCalendarFilled as IconCalendarFilled, SvgIconComment as IconComment, SvgIconCommentFilled as IconCommentFilled, SvgIconDashboardGuage as IconDashboardGuage, SvgIconDeleteTrash as IconDeleteTrash, SvgIconFieldNotesUpdates as IconFieldNotesUpdates, SvgIconHamburgerMenuFilledSmall as IconHamburgerMenuFilledSmall, SvgIconHamburgerMenuSmall as IconHamburgerMenuSmall, SvgIconHeart as IconHeart, SvgIconHeartFilled as IconHeartFilled, SvgIconHeartSmall as IconHeartSmall, SvgIconHelp as IconHelp, SvgIconInfoI as IconInfoI, SvgIconInquire as IconInquire, SvgIconLodge as IconLodge, SvgIconLodgeFilled as IconLodgeFilled, SvgIconLogout as IconLogout, SvgIconMapPinLocation2 as IconMapPinLocation2, SvgIconMapPinLocationRegular as IconMapPinLocationRegular, SvgIconProfileGuests as IconProfileGuests, SvgIconSearch as IconSearch, SvgIconShare as IconShare, SvgIconVideo as IconVideo, SvgImage as Image, SvgInstagramSquare as InstagramSquare, SvgKayak as Kayak, SvgLandtrustBadge as LandtrustBadge, SvgLeafMaple as LeafMaple, SvgLevel as Level, SvgLightbulb as Lightbulb, SvgLink as Link, SvgLinkedinSquare as LinkedinSquare, SvgList as List, SvgLiveBait as LiveBait, SvgLocationCircle as LocationCircle, SvgLocationDotSolid as LocationDotSolid, SvgMagnifyingGlass as MagnifyingGlass, SvgMap as Map, SvgMapSolid as MapSolid, SvgMoundSolid as MoundSolid, SvgMuleDeer as MuleDeer, SvgMushroom as Mushroom, SvgNoteSticky as NoteSticky, SvgNoteStickySolid as NoteStickySolid, SvgPaddleboard as Paddleboard, SvgPaperclip as Paperclip, SvgPedestalSolid as PedestalSolid, SvgPenToSquare as PenToSquare, SvgPencil as Pencil, SvgPersonBiking as PersonBiking, SvgPersonHiking as PersonHiking, SvgPersonSkiing as PersonSkiing, SvgPersonSledding as PersonSledding, SvgPersonSnowmobiling as PersonSnowmobiling, SvgPersonSwimming as PersonSwimming, SvgPheasant as Pheasant, SvgPhone as Phone, SvgPhoneSolid as PhoneSolid, SvgPig as Pig, SvgPinLogoSolid as PinLogoSolid, SvgPlugSolid as PlugSolid, SvgPlus as Plus, SvgQuotes as Quotes, SvgQuotesLight as QuotesLight, SvgRifle as Rifle, SvgRoadSolid as RoadSolid, SvgRulerTriangleSolid as RulerTriangleSolid, SvgSailboat as Sailboat, SvgSewage as Sewage, SvgShelter as Shelter, SvgShieldCheck as ShieldCheck, SvgShieldCheckSolid as ShieldCheckSolid, SvgShieldSplash as ShieldSplash, SvgSignsPostSharpSolid as SignsPostSharpSolid, SvgSmallCurvedLine as SmallCurvedLine, SvgSpinner as Spinner, SvgSquare as Square, SvgSquareInfoSolid as SquareInfoSolid, SvgSquareParking as SquareParking, SvgSquareParkingSolid as SquareParkingSolid, SvgStar as Star, SvgStarRegular as StarRegular, SvgStarSolid as StarSolid, SvgStarSplash as StarSplash, SvgTablePicnic as TablePicnic, SvgTackle as Tackle, SvgTelescope as Telescope, SvgTent as Tent, SvgTentSolid as TentSolid, SvgThumbsUp as ThumbsUp, SvgThumbsUpSolid as ThumbsUpSolid, SvgTrash as Trash, SvgTrashSolid as TrashSolid, SvgTreeDecorated as TreeDecorated, SvgTreeStand as TreeStand, SvgTrees as Trees, SvgTurkey as Turkey, SvgUpland as Upland, SvgUsFlag as UsFlag, SvgUser as User, SvgUserSolid as UserSolid, SvgUsers as Users, SvgWater as Water, SvgWaterTap as WaterTap, SvgWaterfowl as Waterfowl, SvgWhitetail as Whitetail, SvgXmark as Xmark, SvgYoutubeSquare as YoutubeSquare };
960
+ export { SvgAiMagic as AiMagic, SvgAmenitity as Amenitity, SvgAngleDownSharp as AngleDownSharp, SvgAngleLeft as AngleLeft, SvgAngleRight as AngleRight, SvgAngleUp as AngleUp, SvgAntelope as Antelope, SvgArchery as Archery, SvgArrowCircleLeft as ArrowCircleLeft, SvgArrowCircleRight as ArrowCircleRight, SvgArrowDownWideShort as ArrowDownWideShort, SvgArrowRotateLeft as ArrowRotateLeft, SvgArrowUpFromSquare as ArrowUpFromSquare, SvgArrowUpRightFromSquare as ArrowUpRightFromSquare, SvgArrowsLeftRight as ArrowsLeftRight, SvgArtLure as ArtLure, SvgBadgeDark as BadgeDark, SvgBan as Ban, SvgBars as Bars, SvgBathSolid as BathSolid, SvgBear as Bear, SvgBedSolid as BedSolid, SvgBell as Bell, SvgBellSlash as BellSlash, SvgBellSolid as BellSolid, SvgBinoculars as Binoculars, SvgBoltSolid as BoltSolid, SvgBowArrowSharp as BowArrowSharp, SvgBowArrowSharpSolid as BowArrowSharpSolid, SvgBowFishing as BowFishing, SvgBoxArchive as BoxArchive, SvgCabin as Cabin, SvgCabinSolid as CabinSolid, SvgCalendar as Calendar, SvgCameraRetro as CameraRetro, SvgCampfire as Campfire, SvgCanoe as Canoe, SvgCaravanSimple as CaravanSimple, SvgCaravanSimpleSolid as CaravanSimpleSolid, SvgCheck as Check, SvgCircleCheck as CircleCheck, SvgCircleInfo as CircleInfo, SvgCircleXmark as CircleXmark, SvgClimbing as Climbing, SvgClock as Clock, SvgClockSolid as ClockSolid, SvgConversationalSearchAi as ConversationalSearchAi, SvgCopy as Copy, SvgCoyote as Coyote, SvgCurveLine as CurveLine, SvgDogLeashed as DogLeashed, SvgDownCarrot as DownCarrot, SvgDuck as Duck, SvgElk as Elk, SvgEllipsis as Ellipsis, SvgEnvelope as Envelope, SvgEye as Eye, SvgEyeSlash as EyeSlash, SvgFacebook as Facebook, SvgFacebookCircle as FacebookCircle, SvgFacebookSquare as FacebookSquare, SvgFarm as Farm, SvgFarmSolid as FarmSolid, SvgFilter as Filter, SvgFishingRod as FishingRod, SvgFishingRodSolid as FishingRodSolid, SvgFlagSplash as FlagSplash, SvgFlyFishing as FlyFishing, SvgFood as Food, SvgFossil as Fossil, SvgGameCam as GameCam, SvgGameFeeder as GameFeeder, SvgGridSolid as GridSolid, SvgGrillHotSolid as GrillHotSolid, SvgGroundBlind as GroundBlind, SvgHandsUsd as HandsUsd, SvgHeart as Heart, SvgHeartSolid as HeartSolid, SvgHorseSaddle as HorseSaddle, SvgHouse as House, SvgHouseCircleCheck as HouseCircleCheck, SvgHouseSolid as HouseSolid, SvgIconCalendar as IconCalendar, SvgIconCalendarFilled as IconCalendarFilled, SvgIconComment as IconComment, SvgIconCommentFilled as IconCommentFilled, SvgIconDashboardGuage as IconDashboardGuage, SvgIconDeleteTrash as IconDeleteTrash, SvgIconFieldNotesUpdates as IconFieldNotesUpdates, SvgIconHamburgerMenuFilledSmall as IconHamburgerMenuFilledSmall, SvgIconHamburgerMenuSmall as IconHamburgerMenuSmall, SvgIconHeart as IconHeart, SvgIconHeartFilled as IconHeartFilled, SvgIconHeartSmall as IconHeartSmall, SvgIconHelp as IconHelp, SvgIconInfoI as IconInfoI, SvgIconInquire as IconInquire, SvgIconLodge as IconLodge, SvgIconLodgeFilled as IconLodgeFilled, SvgIconLogout as IconLogout, SvgIconMapPinLocation2 as IconMapPinLocation2, SvgIconMapPinLocationRegular as IconMapPinLocationRegular, SvgIconProfileGuests as IconProfileGuests, SvgIconSearch as IconSearch, SvgIconShare as IconShare, SvgIconVideo as IconVideo, SvgImage as Image, SvgInstagramSquare as InstagramSquare, SvgKayak as Kayak, SvgLandtrustBadge as LandtrustBadge, SvgLeafMaple as LeafMaple, SvgLevel as Level, SvgLightbulb as Lightbulb, SvgLink as Link, SvgLinkedinSquare as LinkedinSquare, SvgList as List, SvgLiveBait as LiveBait, SvgLocationCircle as LocationCircle, SvgLocationDotSolid as LocationDotSolid, SvgMagnifyingGlass as MagnifyingGlass, SvgMap as Map, SvgMapSolid as MapSolid, SvgMoundSolid as MoundSolid, SvgMuleDeer as MuleDeer, SvgMushroom as Mushroom, SvgNoteSticky as NoteSticky, SvgNoteStickySolid as NoteStickySolid, SvgPaddleboard as Paddleboard, SvgPaperPlane as PaperPlane, SvgPaperclip as Paperclip, SvgPedestalSolid as PedestalSolid, SvgPenToSquare as PenToSquare, SvgPencil as Pencil, SvgPersonBiking as PersonBiking, SvgPersonHiking as PersonHiking, SvgPersonSkiing as PersonSkiing, SvgPersonSledding as PersonSledding, SvgPersonSnowmobiling as PersonSnowmobiling, SvgPersonSwimming as PersonSwimming, SvgPheasant as Pheasant, SvgPhone as Phone, SvgPhoneSolid as PhoneSolid, SvgPig as Pig, SvgPinLogoSolid as PinLogoSolid, SvgPlugSolid as PlugSolid, SvgPlus as Plus, SvgQuotes as Quotes, SvgQuotesLight as QuotesLight, SvgRifle as Rifle, SvgRoadSolid as RoadSolid, SvgRulerTriangleSolid as RulerTriangleSolid, SvgSailboat as Sailboat, SvgSewage as Sewage, SvgShelter as Shelter, SvgShieldCheck as ShieldCheck, SvgShieldCheckSolid as ShieldCheckSolid, SvgShieldSplash as ShieldSplash, SvgSignsPostSharpSolid as SignsPostSharpSolid, SvgSmallCurvedLine as SmallCurvedLine, SvgSpinner as Spinner, SvgSquare as Square, SvgSquareInfoSolid as SquareInfoSolid, SvgSquareParking as SquareParking, SvgSquareParkingSolid as SquareParkingSolid, SvgStar as Star, SvgStarRegular as StarRegular, SvgStarSolid as StarSolid, SvgStarSplash as StarSplash, SvgTablePicnic as TablePicnic, SvgTackle as Tackle, SvgTelescope as Telescope, SvgTent as Tent, SvgTentSolid as TentSolid, SvgThumbsUp as ThumbsUp, SvgThumbsUpSolid as ThumbsUpSolid, SvgTrash as Trash, SvgTrashSolid as TrashSolid, SvgTreeDecorated as TreeDecorated, SvgTreeStand as TreeStand, SvgTrees as Trees, SvgTurkey as Turkey, SvgUpland as Upland, SvgUsFlag as UsFlag, SvgUser as User, SvgUserSolid as UserSolid, SvgUsers as Users, SvgWater as Water, SvgWaterTap as WaterTap, SvgWaterfowl as Waterfowl, SvgWhitetail as Whitetail, SvgXmark as Xmark, SvgYoutubeSquare as YoutubeSquare };
1131
961
  }
1132
962
 
1133
- type IconVariantTypes = keyof typeof Icons;
1134
- type Props$6 = {
1135
- variant: IconVariantTypes;
963
+ type IconVariantTypes$1 = keyof typeof Icons;
964
+ type Props$a = {
965
+ variant: IconVariantTypes$1;
1136
966
  size?: keyof typeof space;
1137
967
  className?: string;
1138
968
  setAutoHeight?: boolean;
1139
969
  onClick?: () => void;
970
+ fill?: string;
1140
971
  };
1141
- declare const Icon: ({ variant, size, className, setAutoHeight, ...rest }: Props$6) => _emotion_react_jsx_runtime.JSX.Element;
972
+ declare const Icon: ({ variant, size, className, setAutoHeight, fill, ...rest }: Props$a) => _emotion_react_jsx_runtime.JSX.Element;
1142
973
 
1143
- type Props$5 = {
1144
- variant: IconVariantTypes;
974
+ type ButtonVariants = 'primary' | 'secondary' | 'tertiary' | 'plus' | 'simple' | 'text' | 'text-underline' | 'topo';
975
+
976
+ type ButtonAndAnchorProps = React__default.HTMLProps<HTMLButtonElement> & React__default.HTMLProps<HTMLAnchorElement>;
977
+ type Props$9 = Omit<ButtonAndAnchorProps, 'size' | 'as' | 'onClick'> & {
978
+ as?: React__default.ElementType;
979
+ variant?: ButtonVariants;
980
+ fullWidth?: boolean;
981
+ isLoading?: boolean;
982
+ disabled?: boolean;
983
+ children?: React__default.ReactNode;
984
+ type?: 'submit' | 'button';
985
+ size?: 'xs' | 'base' | 'sm' | 'lg';
986
+ className?: string;
987
+ labelStyleOverrides?: Interpolation<Theme>;
988
+ onClick?: React__default.MouseEventHandler<HTMLElement>;
989
+ icon?: React__default.ReactElement<React__default.ComponentProps<typeof Icon>>;
990
+ };
991
+ declare const Button: React__default.ForwardRefExoticComponent<Omit<Props$9, "ref"> & React__default.RefAttributes<HTMLElement>>;
992
+
993
+ type DividerProps = {
994
+ className?: string;
995
+ };
996
+ declare const Divider: React__default.FC<DividerProps>;
997
+
998
+ type Props$8 = {
999
+ backgroundImage: string;
1000
+ title: string;
1001
+ buttonLabel: string;
1002
+ onClick?: () => void;
1003
+ className?: string;
1004
+ };
1005
+ declare const FieldNoteCard: ({ backgroundImage, title, buttonLabel, onClick, className, ...rest }: Props$8) => _emotion_react_jsx_runtime.JSX.Element;
1006
+
1007
+ type InputSize = 'sm' | 'md' | 'lg';
1008
+ type InputVariant = 'default' | 'error' | 'success';
1009
+ interface BaseInputProps {
1010
+ /** Size variant of the input */
1011
+ size?: InputSize;
1012
+ /** Visual variant of the input */
1013
+ variant?: InputVariant;
1014
+ /** Whether the input is disabled */
1015
+ disabled?: boolean;
1016
+ /** Whether the input is required */
1017
+ required?: boolean;
1018
+ /** Whether the input is read-only */
1019
+ readOnly?: boolean;
1020
+ /** Help text displayed below the input */
1021
+ helpText?: string;
1022
+ /** Error message displayed below the input */
1023
+ error?: string;
1024
+ /** Success message displayed below the input */
1025
+ success?: string;
1026
+ /** Label text for the input */
1027
+ label?: string;
1028
+ /** Whether to hide the label visually (for accessibility) */
1029
+ hideLabel?: boolean;
1030
+ /** Icon to display at the start of the input */
1031
+ startIcon?: ReactNode;
1032
+ /** Icon to display at the end of the input */
1033
+ endIcon?: ReactNode;
1034
+ /** Additional className */
1035
+ className?: string;
1036
+ /** Placeholder text */
1037
+ placeholder?: string;
1038
+ }
1039
+ interface InputProps extends BaseInputProps, Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
1040
+ /** Input type */
1041
+ type?: 'text' | 'email' | 'password' | 'number' | 'tel' | 'url' | 'search';
1042
+ }
1043
+ interface SelectOption {
1044
+ value: string | number;
1045
+ label: string;
1046
+ disabled?: boolean;
1047
+ }
1048
+ interface SelectProps extends BaseInputProps, Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'size'> {
1049
+ /** Select options */
1050
+ options: SelectOption[];
1051
+ /** Placeholder option text */
1052
+ placeholderOption?: string;
1053
+ }
1054
+ interface TextareaProps extends BaseInputProps, Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'size'> {
1055
+ /** Number of visible text lines */
1056
+ rows?: number;
1057
+ /** Whether the textarea can be resized */
1058
+ resize?: 'none' | 'both' | 'horizontal' | 'vertical';
1059
+ }
1060
+ interface FormFieldProps {
1061
+ /** Field label */
1062
+ label?: string;
1063
+ /** Whether to hide the label visually */
1064
+ hideLabel?: boolean;
1065
+ /** Whether the field is required */
1066
+ required?: boolean;
1067
+ /** Error message */
1068
+ error?: string;
1069
+ /** Success message */
1070
+ success?: string;
1071
+ /** Help text */
1072
+ helpText?: string;
1073
+ /** Field ID for accessibility */
1074
+ htmlFor?: string;
1075
+ /** Children components */
1076
+ children: ReactNode;
1077
+ /** Additional className */
1078
+ className?: string;
1079
+ }
1080
+
1081
+ declare const FormField: React__default.FC<FormFieldProps>;
1082
+
1083
+ declare const Input: React__default.ForwardRefExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
1084
+
1085
+ declare const Select: React__default.ForwardRefExoticComponent<SelectProps & React__default.RefAttributes<HTMLSelectElement>>;
1086
+
1087
+ type ExtraProps = {
1088
+ autoExpand?: boolean;
1089
+ maxHeight?: number | string;
1090
+ showSubmit?: boolean;
1091
+ onSubmit?: () => void;
1092
+ submitAriaLabel?: string;
1093
+ submitDisabled?: boolean;
1094
+ };
1095
+ declare const TextArea: React__default.ForwardRefExoticComponent<TextareaProps & ExtraProps & React__default.RefAttributes<HTMLTextAreaElement>>;
1096
+
1097
+ type ResponsiveValue<T> = T | {
1098
+ sm?: T;
1099
+ md?: T;
1100
+ lg?: T;
1101
+ xl?: T;
1102
+ _?: T;
1103
+ };
1104
+ interface GridProps extends Omit<BoxProps, 'display'> {
1105
+ /** Number of columns at different breakpoints */
1106
+ columns?: ResponsiveValue<number>;
1107
+ /** Gap between grid items using space tokens */
1108
+ gap?: ResponsiveValue<keyof typeof space>;
1109
+ /** Row gap between grid items using space tokens */
1110
+ rowGap?: ResponsiveValue<keyof typeof space>;
1111
+ /** Column gap between grid items using space tokens */
1112
+ columnGap?: ResponsiveValue<keyof typeof space>;
1113
+ /** Size of auto-generated rows */
1114
+ autoRows?: string;
1115
+ /** Size of auto-generated columns */
1116
+ autoColumns?: string;
1117
+ /** Grid template areas for named layouts */
1118
+ templateAreas?: ResponsiveValue<string>;
1119
+ /** Align items in the grid */
1120
+ alignItems?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch'>;
1121
+ /** Justify items in the grid */
1122
+ justifyItems?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch'>;
1123
+ /** Justify content in the grid */
1124
+ justifyContent?: ResponsiveValue<'start' | 'end' | 'center' | 'stretch' | 'space-between' | 'space-around' | 'space-evenly'>;
1125
+ children: ReactNode;
1126
+ }
1127
+ interface ColumnProps extends BoxProps {
1128
+ /** Column span at different breakpoints */
1129
+ span?: ResponsiveValue<number | 'auto'>;
1130
+ /** Column start position */
1131
+ start?: ResponsiveValue<number>;
1132
+ /** Column end position */
1133
+ end?: ResponsiveValue<number>;
1134
+ /** Row position */
1135
+ row?: ResponsiveValue<number>;
1136
+ /** Row span */
1137
+ rowSpan?: ResponsiveValue<number>;
1138
+ /** Grid area name */
1139
+ area?: string;
1140
+ children: ReactNode;
1141
+ }
1142
+ interface GridContainerProps extends HTMLAttributes<HTMLDivElement> {
1143
+ /** Maximum width constraint */
1144
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | 'content' | 'wide' | 'full' | string;
1145
+ children: ReactNode;
1146
+ className?: string;
1147
+ }
1148
+ type GridBreakpoint = 'sm' | 'md' | 'lg' | 'xl';
1149
+
1150
+ declare const Column: ({ span, start, end, row, rowSpan, area, children, ...props }: ColumnProps) => _emotion_react_jsx_runtime.JSX.Element;
1151
+
1152
+ declare const Grid: ({ columns, gap, rowGap, columnGap, autoRows, autoColumns, templateAreas, alignItems, justifyItems, justifyContent, children, ...props }: GridProps) => _emotion_react_jsx_runtime.JSX.Element;
1153
+
1154
+ declare const GridContainer: ({ maxWidth, children, className, ...props }: GridContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
1155
+
1156
+ /**
1157
+ * Layout tokens for different container sizes
1158
+ */
1159
+ declare const LayoutTokens: {
1160
+ containers: {
1161
+ sm: string;
1162
+ md: string;
1163
+ lg: string;
1164
+ xl: string;
1165
+ content: string;
1166
+ wide: string;
1167
+ full: string;
1168
+ };
1169
+ gutters: {
1170
+ sm: string;
1171
+ md: string;
1172
+ lg: string;
1173
+ xl: string;
1174
+ };
1175
+ };
1176
+
1177
+ type Props$7 = {
1178
+ backgroundImage: string;
1179
+ title: string;
1180
+ buttonLabel: string;
1181
+ onClick?: () => void;
1182
+ className?: string;
1183
+ };
1184
+ declare const HuntCard: ({ backgroundImage, title, buttonLabel, onClick, className, ...rest }: Props$7) => _emotion_react_jsx_runtime.JSX.Element;
1185
+
1186
+ type Props$6 = {
1187
+ variant: IconVariantTypes$1;
1145
1188
  label: string;
1146
1189
  iconSize?: keyof typeof space;
1147
1190
  className?: string;
1148
1191
  };
1149
- declare const IconLabel: ({ variant, label, iconSize, className, ...rest }: Props$5) => _emotion_react_jsx_runtime.JSX.Element;
1192
+ declare const IconLabel: ({ variant, label, iconSize, className, ...rest }: Props$6) => _emotion_react_jsx_runtime.JSX.Element;
1150
1193
 
1151
1194
  type LogoVariant = 'standard' | 'plus';
1152
1195
  type LogoTheme = 'light' | 'dark';
1153
- type Props$4 = {
1196
+ type Props$5 = {
1154
1197
  variant: LogoVariant;
1155
1198
  theme?: LogoTheme;
1156
1199
  size?: keyof typeof space;
1157
1200
  className?: string;
1158
1201
  onClick?: () => void;
1159
1202
  };
1160
- declare const Logo: ({ variant, theme, size, className, ...rest }: Props$4) => _emotion_react_jsx_runtime.JSX.Element;
1203
+ declare const Logo: ({ variant, theme, size, className, ...rest }: Props$5) => _emotion_react_jsx_runtime.JSX.Element;
1204
+
1205
+ type Variant = 'sent' | 'received';
1206
+ type Props$4 = {
1207
+ variant?: Variant;
1208
+ timestamp?: string;
1209
+ className?: string;
1210
+ children?: React__default.ReactNode;
1211
+ };
1212
+ declare const MessageBubble: ({ variant, timestamp, className, children, }: Props$4) => _emotion_react_jsx_runtime.JSX.Element;
1161
1213
 
1162
1214
  type NavLink = {
1163
1215
  label: string;
@@ -1240,9 +1292,42 @@ type Props = HTMLAttributes<HTMLElement> & {
1240
1292
  };
1241
1293
  declare const Text: FC<PropsWithChildren<Props>>;
1242
1294
 
1295
+ type IconVariantTypes = Parameters<typeof Icon>[0]['variant'];
1296
+ type WidgetProps = {
1297
+ ariaLabel: string;
1298
+ icon?: IconVariantTypes;
1299
+ expandedIcon?: IconVariantTypes;
1300
+ defaultExpanded?: boolean;
1301
+ expanded?: boolean;
1302
+ onExpandedChange?: (expanded: boolean) => void;
1303
+ size?: number;
1304
+ panelWidth?: number | string;
1305
+ className?: string;
1306
+ children?: React__default.ReactNode;
1307
+ header?: string;
1308
+ };
1309
+ declare const WidgetTrigger: React__default.FC<{
1310
+ className?: string;
1311
+ }>;
1312
+ declare const WidgetPanel: React__default.FC<{
1313
+ className?: string;
1314
+ style?: React__default.CSSProperties;
1315
+ children?: React__default.ReactNode;
1316
+ }>;
1317
+ declare const Widget: React__default.FC<WidgetProps> & {
1318
+ Trigger: React__default.FC<{
1319
+ className?: string | undefined;
1320
+ }>;
1321
+ Panel: React__default.FC<{
1322
+ className?: string | undefined;
1323
+ style?: React__default.CSSProperties | undefined;
1324
+ children?: React__default.ReactNode;
1325
+ }>;
1326
+ };
1327
+
1243
1328
  type TagChipProps = HTMLAttributes<HTMLSpanElement> & {
1244
1329
  /** Optional custom className */
1245
1330
  className?: string;
1246
1331
  };
1247
1332
 
1248
- export { AvailabilityChip, type AvailabilityChipProps$1 as AvailabilityChipProps, type AvailabilityChipVariant, type BaseInputProps, Box, type BoxProps, Button, Column, type ColumnProps, Container, FieldNoteCard, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, HuntCard, Icon, IconLabel, type IconVariantTypes, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, Logo, type LogoTheme, type LogoVariant, Navigation, PackageCard, type ResponsiveValue, Select, type SelectOption, type SelectProps, TagChip, type TagChipProps, Text, ThemeTokens, globalStyles, styles };
1333
+ export { AIResponse, AvailabilityChip, type AvailabilityChipProps$1 as AvailabilityChipProps, type AvailabilityChipVariant, type BaseInputProps, Box, type BoxProps, Button, type ButtonVariants, Column, type ColumnProps, Container, Divider, FieldNoteCard, FormField, type FormFieldProps, GlobalStyle, Grid, type GridBreakpoint, GridContainer, type GridContainerProps, type GridProps, Heading, HuntCard, Icon, IconLabel, type IconVariantTypes$1 as IconVariantTypes, Input, type InputProps, type InputSize, type InputVariant, LayoutTokens, Logo, type LogoTheme, type LogoVariant, MessageBubble, Navigation, PackageCard, type ResponsiveValue, Select, type SelectOption, type SelectProps, TagChip, type TagChipProps, Text, TextArea, type TextareaProps, ThemeTokens, Widget, WidgetPanel, WidgetTrigger, globalStyles, styles };