@loafmarkets/ui 0.1.343 → 0.1.345

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.mts CHANGED
@@ -4,6 +4,8 @@ import React__default, { ReactNode } from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as LightweightCharts from 'lightweight-charts';
7
+ import { OverviewResponse } from '@loafmarkets/shared-types';
8
+ export { OverviewResponse } from '@loafmarkets/shared-types';
7
9
 
8
10
  declare const buttonVariants: (props?: ({
9
11
  variant?: "primary" | "onboarding" | "onboardingOutline" | "accent" | "accentOutline" | "media" | "outline" | "ghost" | "danger" | null | undefined;
@@ -464,6 +466,12 @@ type PropertyHeroHeaderProps = React$1.HTMLAttributes<HTMLDivElement> & {
464
466
  };
465
467
  /** When true, render skeletons in place of price and amenity values. */
466
468
  isLoading?: boolean;
469
+ /** Optional label rendered above the info card inside the hero. */
470
+ heroLabel?: React$1.ReactNode;
471
+ /** Optional panel rendered to the right of the info card inside the hero. */
472
+ heroSidePanel?: React$1.ReactNode;
473
+ /** Add a gold glow to the info card. */
474
+ glowInfoCard?: boolean;
467
475
  };
468
476
  declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
469
477
  imageUrl: string;
@@ -495,6 +503,12 @@ declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTML
495
503
  };
496
504
  /** When true, render skeletons in place of price and amenity values. */
497
505
  isLoading?: boolean;
506
+ /** Optional label rendered above the info card inside the hero. */
507
+ heroLabel?: React$1.ReactNode;
508
+ /** Optional panel rendered to the right of the info card inside the hero. */
509
+ heroSidePanel?: React$1.ReactNode;
510
+ /** Add a gold glow to the info card. */
511
+ glowInfoCard?: boolean;
498
512
  } & React$1.RefAttributes<HTMLDivElement>>;
499
513
 
500
514
  type EmailCodeParams = {
@@ -581,6 +595,7 @@ type HeaderUser = {
581
595
  type HeaderPortfolioData = {
582
596
  holdings: number;
583
597
  cash: number;
598
+ frozen?: number;
584
599
  portfolioValue: number;
585
600
  pnl: number;
586
601
  pnlPercent: number;
@@ -627,6 +642,7 @@ type HeaderProps = {
627
642
  onSettingsClick?: () => void;
628
643
  showTradeTab?: boolean;
629
644
  portfolioSummary?: HeaderPortfolioData | null;
645
+ transparentOnTop?: boolean;
630
646
  };
631
647
  declare const Header: React__default.FC<HeaderProps>;
632
648
 
@@ -698,26 +714,6 @@ type GalleryCategory = {
698
714
  startIndex: number;
699
715
  };
700
716
 
701
- interface OverviewResponse {
702
- readonly description: string;
703
- readonly tokensIssued: number;
704
- readonly offeringValuation: number;
705
- readonly weeklyRent: number;
706
- readonly indicativeListing?: string;
707
- readonly minimumParticipation?: number;
708
- readonly landSizeSqm: number;
709
- readonly buildingSizeSqm: number;
710
- readonly swimmingPool: boolean;
711
- readonly tennisCourt: boolean;
712
- readonly garden: boolean;
713
- readonly gym: boolean;
714
- readonly propertyType?: string;
715
- readonly yearBuilt: number;
716
- readonly ownership: string;
717
- readonly zoning: string;
718
- readonly levels: number;
719
- readonly daStatus: string;
720
- }
721
717
  interface OverviewImage {
722
718
  readonly imageUrl: string;
723
719
  readonly title: string;
@@ -739,6 +735,7 @@ type PropertyOverviewProps = {
739
735
  location: string;
740
736
  midPrice: number;
741
737
  onTradeClick?: () => void;
738
+ onDocumentsClick?: () => void;
742
739
  onPhotosClick?: (startIndex: number) => void;
743
740
  description?: string;
744
741
  tradeButtonLabel?: string;
@@ -776,7 +773,7 @@ type PropertyOverviewProps = {
776
773
  close: number;
777
774
  }[] | null;
778
775
  };
779
- declare function PropertyOverview({ propertyName: _propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: _propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, percentageTokenized, volume24h, openOrdersValue, holderCount, priceHistory: priceHistoryProp, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
776
+ declare function PropertyOverview({ propertyName: _propertyName, location, midPrice, onTradeClick, onDocumentsClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: _propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, volume24h, openOrdersValue, holderCount, priceHistory: priceHistoryProp, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
780
777
 
781
778
  type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
782
779
  type PropertyOffer = {
@@ -805,8 +802,10 @@ interface DocumentsResponse {
805
802
  }
806
803
  type PropertyDocumentsProps = {
807
804
  documentsData?: DocumentsResponse | null;
805
+ highlightDocument?: string | null;
806
+ onClearHighlight?: () => void;
808
807
  };
809
- declare function PropertyDocuments({ documentsData }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
808
+ declare function PropertyDocuments({ documentsData, highlightDocument, onClearHighlight }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
810
809
 
811
810
  type InspectionSlot = {
812
811
  slotId: string;
@@ -930,9 +929,11 @@ type SelectorItem = {
930
929
  readonly tokenName: string;
931
930
  readonly ticker: string;
932
931
  readonly streetAddress: string;
932
+ readonly name?: string;
933
933
  readonly suburb: string;
934
934
  readonly status: string;
935
935
  readonly imageUrl?: string;
936
+ readonly badge?: string;
936
937
  };
937
938
  type AssetSelectorMetric = {
938
939
  label: string;
@@ -952,8 +953,9 @@ type AssetSelectorBarProps = {
952
953
  onSelect?: (tokenName: string) => void;
953
954
  trailing?: ReactNode;
954
955
  imageUrl?: string;
956
+ badgeLabel?: string;
955
957
  };
956
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
958
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
957
959
 
958
960
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
959
961
  type ToastData = {
@@ -1064,6 +1066,7 @@ type OfferingProgressCardProps = {
1064
1066
  totalSold: number;
1065
1067
  supplyToSell: number;
1066
1068
  opensAt?: number | null;
1069
+ tradingStartsAt?: number | null;
1067
1070
  subscriberCount?: number;
1068
1071
  raisedAmount?: number;
1069
1072
  targetAmount?: number;
@@ -1073,7 +1076,7 @@ type OfferingProgressCardProps = {
1073
1076
  style?: React__default.CSSProperties;
1074
1077
  className?: string;
1075
1078
  };
1076
- declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
1079
+ declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, tradingStartsAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
1077
1080
 
1078
1081
  type OwnerBookingProps = {
1079
1082
  propertyName?: string | null;
@@ -1204,4 +1207,4 @@ declare function SlideDigit({ value }: {
1204
1207
  value: string;
1205
1208
  }): react_jsx_runtime.JSX.Element;
1206
1209
 
1207
- export { type ActivityTabId, AssetSelectorBar, type AssetSelectorBarProps, type AssetSelectorMetric, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type FinancialItem, type FundWalletParams, type FundWalletResult, Header, type HeaderPortfolioData, type HeaderProps, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type OfferStatus, OfferingProgressCard, type OfferingProgressCardProps, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, type OverviewImage, type OverviewResponse, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, PortfolioActivityPanel, type PortfolioActivityPanelProps, type PortfolioPosition, PortfolioSummary, type PortfolioSummaryProps, PriceChart, type PriceChartCandle, type PriceChartProps, type PriceChartRange, type PropertyAddressOption, PropertyBuy, PropertyCompareBar, type PropertyCompareBarProps, PropertyDocuments, type PropertyGalleryHotspot, type PropertyGalleryImage, PropertyHeroHeader, type PropertyHeroHeaderProps, PropertyHistory, type PropertyInfoItem, PropertyInspectionTimes, PropertyMediaRow, type PropertyMediaRowProps, type PropertyNewsItem, type PropertyNewsType, PropertyNewsUpdates, type PropertyNewsUpdatesProps, type PropertyOffer, PropertyOffers, type PropertyOffersProps, PropertyOverview, type PropertyOverviewProps, PropertyPhotoGallery, type PropertyPriceSummary, PropertySubheader, type PropertySubheaderAction, type PropertySubheaderProps, type PropertySubheaderTab, PropertyTour, type PropertyTourProps, PropertyValuation, type PropertyValuationProps, type PropertyValueSummary, type PurchaseFeedItem, type SelectorItem, Skeleton, type SkeletonProps, SlideDigit, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type ValuationHistoryPoint, type ValuationRecentSale, type ValuationSummary, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
1210
+ export { type ActivityTabId, AssetSelectorBar, type AssetSelectorBarProps, type AssetSelectorMetric, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type FinancialItem, type FundWalletParams, type FundWalletResult, Header, type HeaderPortfolioData, type HeaderProps, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type OfferStatus, OfferingProgressCard, type OfferingProgressCardProps, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, type OverviewImage, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, PortfolioActivityPanel, type PortfolioActivityPanelProps, type PortfolioPosition, PortfolioSummary, type PortfolioSummaryProps, PriceChart, type PriceChartCandle, type PriceChartProps, type PriceChartRange, type PropertyAddressOption, PropertyBuy, PropertyCompareBar, type PropertyCompareBarProps, PropertyDocuments, type PropertyGalleryHotspot, type PropertyGalleryImage, PropertyHeroHeader, type PropertyHeroHeaderProps, PropertyHistory, type PropertyInfoItem, PropertyInspectionTimes, PropertyMediaRow, type PropertyMediaRowProps, type PropertyNewsItem, type PropertyNewsType, PropertyNewsUpdates, type PropertyNewsUpdatesProps, type PropertyOffer, PropertyOffers, type PropertyOffersProps, PropertyOverview, type PropertyOverviewProps, PropertyPhotoGallery, type PropertyPriceSummary, PropertySubheader, type PropertySubheaderAction, type PropertySubheaderProps, type PropertySubheaderTab, PropertyTour, type PropertyTourProps, PropertyValuation, type PropertyValuationProps, type PropertyValueSummary, type PurchaseFeedItem, type SelectorItem, Skeleton, type SkeletonProps, SlideDigit, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type ValuationHistoryPoint, type ValuationRecentSale, type ValuationSummary, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
package/dist/index.d.ts CHANGED
@@ -4,6 +4,8 @@ import React__default, { ReactNode } from 'react';
4
4
  import { VariantProps } from 'class-variance-authority';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as LightweightCharts from 'lightweight-charts';
7
+ import { OverviewResponse } from '@loafmarkets/shared-types';
8
+ export { OverviewResponse } from '@loafmarkets/shared-types';
7
9
 
8
10
  declare const buttonVariants: (props?: ({
9
11
  variant?: "primary" | "onboarding" | "onboardingOutline" | "accent" | "accentOutline" | "media" | "outline" | "ghost" | "danger" | null | undefined;
@@ -464,6 +466,12 @@ type PropertyHeroHeaderProps = React$1.HTMLAttributes<HTMLDivElement> & {
464
466
  };
465
467
  /** When true, render skeletons in place of price and amenity values. */
466
468
  isLoading?: boolean;
469
+ /** Optional label rendered above the info card inside the hero. */
470
+ heroLabel?: React$1.ReactNode;
471
+ /** Optional panel rendered to the right of the info card inside the hero. */
472
+ heroSidePanel?: React$1.ReactNode;
473
+ /** Add a gold glow to the info card. */
474
+ glowInfoCard?: boolean;
467
475
  };
468
476
  declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
469
477
  imageUrl: string;
@@ -495,6 +503,12 @@ declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTML
495
503
  };
496
504
  /** When true, render skeletons in place of price and amenity values. */
497
505
  isLoading?: boolean;
506
+ /** Optional label rendered above the info card inside the hero. */
507
+ heroLabel?: React$1.ReactNode;
508
+ /** Optional panel rendered to the right of the info card inside the hero. */
509
+ heroSidePanel?: React$1.ReactNode;
510
+ /** Add a gold glow to the info card. */
511
+ glowInfoCard?: boolean;
498
512
  } & React$1.RefAttributes<HTMLDivElement>>;
499
513
 
500
514
  type EmailCodeParams = {
@@ -581,6 +595,7 @@ type HeaderUser = {
581
595
  type HeaderPortfolioData = {
582
596
  holdings: number;
583
597
  cash: number;
598
+ frozen?: number;
584
599
  portfolioValue: number;
585
600
  pnl: number;
586
601
  pnlPercent: number;
@@ -627,6 +642,7 @@ type HeaderProps = {
627
642
  onSettingsClick?: () => void;
628
643
  showTradeTab?: boolean;
629
644
  portfolioSummary?: HeaderPortfolioData | null;
645
+ transparentOnTop?: boolean;
630
646
  };
631
647
  declare const Header: React__default.FC<HeaderProps>;
632
648
 
@@ -698,26 +714,6 @@ type GalleryCategory = {
698
714
  startIndex: number;
699
715
  };
700
716
 
701
- interface OverviewResponse {
702
- readonly description: string;
703
- readonly tokensIssued: number;
704
- readonly offeringValuation: number;
705
- readonly weeklyRent: number;
706
- readonly indicativeListing?: string;
707
- readonly minimumParticipation?: number;
708
- readonly landSizeSqm: number;
709
- readonly buildingSizeSqm: number;
710
- readonly swimmingPool: boolean;
711
- readonly tennisCourt: boolean;
712
- readonly garden: boolean;
713
- readonly gym: boolean;
714
- readonly propertyType?: string;
715
- readonly yearBuilt: number;
716
- readonly ownership: string;
717
- readonly zoning: string;
718
- readonly levels: number;
719
- readonly daStatus: string;
720
- }
721
717
  interface OverviewImage {
722
718
  readonly imageUrl: string;
723
719
  readonly title: string;
@@ -739,6 +735,7 @@ type PropertyOverviewProps = {
739
735
  location: string;
740
736
  midPrice: number;
741
737
  onTradeClick?: () => void;
738
+ onDocumentsClick?: () => void;
742
739
  onPhotosClick?: (startIndex: number) => void;
743
740
  description?: string;
744
741
  tradeButtonLabel?: string;
@@ -776,7 +773,7 @@ type PropertyOverviewProps = {
776
773
  close: number;
777
774
  }[] | null;
778
775
  };
779
- declare function PropertyOverview({ propertyName: _propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: _propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, percentageTokenized, volume24h, openOrdersValue, holderCount, priceHistory: priceHistoryProp, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
776
+ declare function PropertyOverview({ propertyName: _propertyName, location, midPrice, onTradeClick, onDocumentsClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: _propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, volume24h, openOrdersValue, holderCount, priceHistory: priceHistoryProp, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
780
777
 
781
778
  type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
782
779
  type PropertyOffer = {
@@ -805,8 +802,10 @@ interface DocumentsResponse {
805
802
  }
806
803
  type PropertyDocumentsProps = {
807
804
  documentsData?: DocumentsResponse | null;
805
+ highlightDocument?: string | null;
806
+ onClearHighlight?: () => void;
808
807
  };
809
- declare function PropertyDocuments({ documentsData }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
808
+ declare function PropertyDocuments({ documentsData, highlightDocument, onClearHighlight }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
810
809
 
811
810
  type InspectionSlot = {
812
811
  slotId: string;
@@ -930,9 +929,11 @@ type SelectorItem = {
930
929
  readonly tokenName: string;
931
930
  readonly ticker: string;
932
931
  readonly streetAddress: string;
932
+ readonly name?: string;
933
933
  readonly suburb: string;
934
934
  readonly status: string;
935
935
  readonly imageUrl?: string;
936
+ readonly badge?: string;
936
937
  };
937
938
  type AssetSelectorMetric = {
938
939
  label: string;
@@ -952,8 +953,9 @@ type AssetSelectorBarProps = {
952
953
  onSelect?: (tokenName: string) => void;
953
954
  trailing?: ReactNode;
954
955
  imageUrl?: string;
956
+ badgeLabel?: string;
955
957
  };
956
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
958
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
957
959
 
958
960
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
959
961
  type ToastData = {
@@ -1064,6 +1066,7 @@ type OfferingProgressCardProps = {
1064
1066
  totalSold: number;
1065
1067
  supplyToSell: number;
1066
1068
  opensAt?: number | null;
1069
+ tradingStartsAt?: number | null;
1067
1070
  subscriberCount?: number;
1068
1071
  raisedAmount?: number;
1069
1072
  targetAmount?: number;
@@ -1073,7 +1076,7 @@ type OfferingProgressCardProps = {
1073
1076
  style?: React__default.CSSProperties;
1074
1077
  className?: string;
1075
1078
  };
1076
- declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
1079
+ declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, tradingStartsAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
1077
1080
 
1078
1081
  type OwnerBookingProps = {
1079
1082
  propertyName?: string | null;
@@ -1204,4 +1207,4 @@ declare function SlideDigit({ value }: {
1204
1207
  value: string;
1205
1208
  }): react_jsx_runtime.JSX.Element;
1206
1209
 
1207
- export { type ActivityTabId, AssetSelectorBar, type AssetSelectorBarProps, type AssetSelectorMetric, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type FinancialItem, type FundWalletParams, type FundWalletResult, Header, type HeaderPortfolioData, type HeaderProps, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type OfferStatus, OfferingProgressCard, type OfferingProgressCardProps, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, type OverviewImage, type OverviewResponse, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, PortfolioActivityPanel, type PortfolioActivityPanelProps, type PortfolioPosition, PortfolioSummary, type PortfolioSummaryProps, PriceChart, type PriceChartCandle, type PriceChartProps, type PriceChartRange, type PropertyAddressOption, PropertyBuy, PropertyCompareBar, type PropertyCompareBarProps, PropertyDocuments, type PropertyGalleryHotspot, type PropertyGalleryImage, PropertyHeroHeader, type PropertyHeroHeaderProps, PropertyHistory, type PropertyInfoItem, PropertyInspectionTimes, PropertyMediaRow, type PropertyMediaRowProps, type PropertyNewsItem, type PropertyNewsType, PropertyNewsUpdates, type PropertyNewsUpdatesProps, type PropertyOffer, PropertyOffers, type PropertyOffersProps, PropertyOverview, type PropertyOverviewProps, PropertyPhotoGallery, type PropertyPriceSummary, PropertySubheader, type PropertySubheaderAction, type PropertySubheaderProps, type PropertySubheaderTab, PropertyTour, type PropertyTourProps, PropertyValuation, type PropertyValuationProps, type PropertyValueSummary, type PurchaseFeedItem, type SelectorItem, Skeleton, type SkeletonProps, SlideDigit, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type ValuationHistoryPoint, type ValuationRecentSale, type ValuationSummary, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
1210
+ export { type ActivityTabId, AssetSelectorBar, type AssetSelectorBarProps, type AssetSelectorMetric, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, type FinancialItem, type FundWalletParams, type FundWalletResult, Header, type HeaderPortfolioData, type HeaderProps, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type OfferStatus, OfferingProgressCard, type OfferingProgressCardProps, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, type OverviewImage, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, PortfolioActivityPanel, type PortfolioActivityPanelProps, type PortfolioPosition, PortfolioSummary, type PortfolioSummaryProps, PriceChart, type PriceChartCandle, type PriceChartProps, type PriceChartRange, type PropertyAddressOption, PropertyBuy, PropertyCompareBar, type PropertyCompareBarProps, PropertyDocuments, type PropertyGalleryHotspot, type PropertyGalleryImage, PropertyHeroHeader, type PropertyHeroHeaderProps, PropertyHistory, type PropertyInfoItem, PropertyInspectionTimes, PropertyMediaRow, type PropertyMediaRowProps, type PropertyNewsItem, type PropertyNewsType, PropertyNewsUpdates, type PropertyNewsUpdatesProps, type PropertyOffer, PropertyOffers, type PropertyOffersProps, PropertyOverview, type PropertyOverviewProps, PropertyPhotoGallery, type PropertyPriceSummary, PropertySubheader, type PropertySubheaderAction, type PropertySubheaderProps, type PropertySubheaderTab, PropertyTour, type PropertyTourProps, PropertyValuation, type PropertyValuationProps, type PropertyValueSummary, type PurchaseFeedItem, type SelectorItem, Skeleton, type SkeletonProps, SlideDigit, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type ValuationHistoryPoint, type ValuationRecentSale, type ValuationSummary, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };