@loafmarkets/ui 0.1.369 → 0.1.371

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
@@ -83,6 +83,8 @@ interface OrderbookProps extends React$1.HTMLAttributes<HTMLDivElement> {
83
83
  amountPrecision?: number;
84
84
  defaultTab?: "orderbook" | "trades";
85
85
  onTabChange?: (tab: "orderbook" | "trades") => void;
86
+ /** When false, the "Trades" tab is hidden and only the orderbook shows (e.g. on mobile). Default true. */
87
+ showTradesTab?: boolean;
86
88
  rightHeader?: React$1.ReactNode;
87
89
  variant?: "auto" | "default" | "compact";
88
90
  /**
@@ -692,6 +694,23 @@ declare const PropertySubheader: React$1.ForwardRefExoticComponent<React$1.HTMLA
692
694
  actions?: PropertySubheaderAction[];
693
695
  } & React$1.RefAttributes<HTMLDivElement>>;
694
696
 
697
+ interface OnboardingGuideProps {
698
+ /** Whether the guide is visible. */
699
+ open: boolean;
700
+ /** True once the 100k has landed on-chain (portfolio value > 0). */
701
+ fundsReady: boolean;
702
+ /** Label for the funded amount once ready (default "$100,000"). */
703
+ cashLabel?: string;
704
+ /** Primary CTA — take the user to the markets to pick a property. */
705
+ onBrowseProperties: () => void;
706
+ /** Optional tertiary action — open the access-code entry. */
707
+ onEnterCode?: () => void;
708
+ /** Dismiss / skip (✕, "Skip for now", or after Browse). */
709
+ onClose: () => void;
710
+ logoSrc?: string;
711
+ }
712
+ declare function OnboardingGuide({ open, fundsReady, cashLabel, onBrowseProperties, onEnterCode, onClose, logoSrc, }: OnboardingGuideProps): react_jsx_runtime.JSX.Element | null;
713
+
695
714
  type PropertyAddressOption = {
696
715
  id: string;
697
716
  label: string;
@@ -882,6 +901,8 @@ interface OfferingOrder {
882
901
  readonly rejectionReason?: string | null;
883
902
  readonly imageUrl?: string;
884
903
  readonly createdAt: number;
904
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
905
+ readonly ticker?: string;
885
906
  }
886
907
  interface OrderHistoryItem {
887
908
  readonly id: number;
@@ -900,6 +921,8 @@ interface OrderHistoryItem {
900
921
  readonly cancelledAt: number | null;
901
922
  readonly createdAt: number;
902
923
  readonly isOfferingOrder?: boolean;
924
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
925
+ readonly ticker?: string;
903
926
  }
904
927
  interface TradeHistoryItem {
905
928
  readonly tradeId: number;
@@ -912,6 +935,8 @@ interface TradeHistoryItem {
912
935
  readonly executedAt: number;
913
936
  readonly fee: number;
914
937
  readonly status?: string;
938
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
939
+ readonly ticker?: string;
915
940
  }
916
941
  interface TransferHistoryItem {
917
942
  readonly type: 'DEPOSIT' | 'WITHDRAWAL';
@@ -935,6 +960,10 @@ interface PortfolioPosition {
935
960
  readonly propertyPnlPercent: number;
936
961
  readonly isIpoAllocation: boolean;
937
962
  readonly imageUrl: string;
963
+ /** A matched trade for this property is still settling — show a spinner + "Settling…" and withhold figures. */
964
+ readonly settling?: boolean;
965
+ /** Short market ticker (e.g. "MUS") — shown next to unit counts instead of the full token name. */
966
+ readonly ticker?: string;
938
967
  }
939
968
  type ActivityTabId = 'positions' | 'subscriptions' | 'open-orders' | 'orders' | 'trades' | 'transfers';
940
969
  type PortfolioActivityPanelProps = {
@@ -942,6 +971,8 @@ type PortfolioActivityPanelProps = {
942
971
  showPositionsTab?: boolean;
943
972
  showSubscriptionsTab?: boolean;
944
973
  onPositionClick?: (tokenName: string, isIpo: boolean) => void;
974
+ /** Click handler for the asset name in the Open Orders / Order History / Trade History rows — opens that asset. */
975
+ onAssetClick?: (tokenName: string) => void;
945
976
  onClosePosition?: (tokenName: string, type: 'market' | 'limit', quantity: number, marketPrice: number) => void;
946
977
  offeringOrders?: readonly OfferingOrder[];
947
978
  openOrders?: readonly OrderHistoryItem[];
@@ -950,10 +981,6 @@ type PortfolioActivityPanelProps = {
950
981
  transfers?: readonly TransferHistoryItem[];
951
982
  onCancelOrder?: (orderId: number) => Promise<void>;
952
983
  onCancelAllOrders?: () => Promise<void>;
953
- onAmendOrder?: (orderId: number, fields: {
954
- quantity?: number;
955
- price?: number;
956
- }) => Promise<void>;
957
984
  cancellingOrderId?: number | null;
958
985
  compactPositions?: boolean;
959
986
  defaultTab?: ActivityTabId;
@@ -963,7 +990,7 @@ type PortfolioActivityPanelProps = {
963
990
  className?: string;
964
991
  style?: React.CSSProperties;
965
992
  };
966
- declare function PortfolioActivityPanel({ positions, showPositionsTab, showSubscriptionsTab, onPositionClick, onClosePosition, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, onCancelAllOrders, onAmendOrder, cancellingOrderId, compactPositions, defaultTab, onTabChange, pageSize, blockExplorerBaseUrl: _blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
993
+ declare function PortfolioActivityPanel({ positions, showPositionsTab, showSubscriptionsTab, onPositionClick, onAssetClick, onClosePosition, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, onCancelAllOrders, cancellingOrderId, compactPositions, defaultTab, onTabChange, pageSize, blockExplorerBaseUrl: _blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
967
994
 
968
995
  type SelectorItem = {
969
996
  readonly tokenName: string;
@@ -994,8 +1021,10 @@ type AssetSelectorBarProps = {
994
1021
  trailing?: ReactNode;
995
1022
  imageUrl?: string;
996
1023
  badgeLabel?: string;
1024
+ /** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
1025
+ tickerPrimary?: boolean;
997
1026
  };
998
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1027
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
999
1028
 
1000
1029
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
1001
1030
  type ToastData = {
@@ -1254,4 +1283,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
1254
1283
  }>, maxPoints?: number): number[];
1255
1284
  declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
1256
1285
 
1257
- 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, ContactPopup, type ContactPopupProps, 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, SiteFooter, Skeleton, type SkeletonProps, SlideDigit, SparklineChart, type SparklineChartProps, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, extractSparkline, hasPendingActivity, useAdaptivePolling, useToast };
1286
+ 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, ContactPopup, type ContactPopupProps, 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, OnboardingGuide, type OnboardingGuideProps, 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, SiteFooter, Skeleton, type SkeletonProps, SlideDigit, SparklineChart, type SparklineChartProps, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, extractSparkline, hasPendingActivity, useAdaptivePolling, useToast };
package/dist/index.d.ts CHANGED
@@ -83,6 +83,8 @@ interface OrderbookProps extends React$1.HTMLAttributes<HTMLDivElement> {
83
83
  amountPrecision?: number;
84
84
  defaultTab?: "orderbook" | "trades";
85
85
  onTabChange?: (tab: "orderbook" | "trades") => void;
86
+ /** When false, the "Trades" tab is hidden and only the orderbook shows (e.g. on mobile). Default true. */
87
+ showTradesTab?: boolean;
86
88
  rightHeader?: React$1.ReactNode;
87
89
  variant?: "auto" | "default" | "compact";
88
90
  /**
@@ -692,6 +694,23 @@ declare const PropertySubheader: React$1.ForwardRefExoticComponent<React$1.HTMLA
692
694
  actions?: PropertySubheaderAction[];
693
695
  } & React$1.RefAttributes<HTMLDivElement>>;
694
696
 
697
+ interface OnboardingGuideProps {
698
+ /** Whether the guide is visible. */
699
+ open: boolean;
700
+ /** True once the 100k has landed on-chain (portfolio value > 0). */
701
+ fundsReady: boolean;
702
+ /** Label for the funded amount once ready (default "$100,000"). */
703
+ cashLabel?: string;
704
+ /** Primary CTA — take the user to the markets to pick a property. */
705
+ onBrowseProperties: () => void;
706
+ /** Optional tertiary action — open the access-code entry. */
707
+ onEnterCode?: () => void;
708
+ /** Dismiss / skip (✕, "Skip for now", or after Browse). */
709
+ onClose: () => void;
710
+ logoSrc?: string;
711
+ }
712
+ declare function OnboardingGuide({ open, fundsReady, cashLabel, onBrowseProperties, onEnterCode, onClose, logoSrc, }: OnboardingGuideProps): react_jsx_runtime.JSX.Element | null;
713
+
695
714
  type PropertyAddressOption = {
696
715
  id: string;
697
716
  label: string;
@@ -882,6 +901,8 @@ interface OfferingOrder {
882
901
  readonly rejectionReason?: string | null;
883
902
  readonly imageUrl?: string;
884
903
  readonly createdAt: number;
904
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
905
+ readonly ticker?: string;
885
906
  }
886
907
  interface OrderHistoryItem {
887
908
  readonly id: number;
@@ -900,6 +921,8 @@ interface OrderHistoryItem {
900
921
  readonly cancelledAt: number | null;
901
922
  readonly createdAt: number;
902
923
  readonly isOfferingOrder?: boolean;
924
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
925
+ readonly ticker?: string;
903
926
  }
904
927
  interface TradeHistoryItem {
905
928
  readonly tradeId: number;
@@ -912,6 +935,8 @@ interface TradeHistoryItem {
912
935
  readonly executedAt: number;
913
936
  readonly fee: number;
914
937
  readonly status?: string;
938
+ /** Short market ticker (e.g. "MUS") — shown next to quantities. */
939
+ readonly ticker?: string;
915
940
  }
916
941
  interface TransferHistoryItem {
917
942
  readonly type: 'DEPOSIT' | 'WITHDRAWAL';
@@ -935,6 +960,10 @@ interface PortfolioPosition {
935
960
  readonly propertyPnlPercent: number;
936
961
  readonly isIpoAllocation: boolean;
937
962
  readonly imageUrl: string;
963
+ /** A matched trade for this property is still settling — show a spinner + "Settling…" and withhold figures. */
964
+ readonly settling?: boolean;
965
+ /** Short market ticker (e.g. "MUS") — shown next to unit counts instead of the full token name. */
966
+ readonly ticker?: string;
938
967
  }
939
968
  type ActivityTabId = 'positions' | 'subscriptions' | 'open-orders' | 'orders' | 'trades' | 'transfers';
940
969
  type PortfolioActivityPanelProps = {
@@ -942,6 +971,8 @@ type PortfolioActivityPanelProps = {
942
971
  showPositionsTab?: boolean;
943
972
  showSubscriptionsTab?: boolean;
944
973
  onPositionClick?: (tokenName: string, isIpo: boolean) => void;
974
+ /** Click handler for the asset name in the Open Orders / Order History / Trade History rows — opens that asset. */
975
+ onAssetClick?: (tokenName: string) => void;
945
976
  onClosePosition?: (tokenName: string, type: 'market' | 'limit', quantity: number, marketPrice: number) => void;
946
977
  offeringOrders?: readonly OfferingOrder[];
947
978
  openOrders?: readonly OrderHistoryItem[];
@@ -950,10 +981,6 @@ type PortfolioActivityPanelProps = {
950
981
  transfers?: readonly TransferHistoryItem[];
951
982
  onCancelOrder?: (orderId: number) => Promise<void>;
952
983
  onCancelAllOrders?: () => Promise<void>;
953
- onAmendOrder?: (orderId: number, fields: {
954
- quantity?: number;
955
- price?: number;
956
- }) => Promise<void>;
957
984
  cancellingOrderId?: number | null;
958
985
  compactPositions?: boolean;
959
986
  defaultTab?: ActivityTabId;
@@ -963,7 +990,7 @@ type PortfolioActivityPanelProps = {
963
990
  className?: string;
964
991
  style?: React.CSSProperties;
965
992
  };
966
- declare function PortfolioActivityPanel({ positions, showPositionsTab, showSubscriptionsTab, onPositionClick, onClosePosition, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, onCancelAllOrders, onAmendOrder, cancellingOrderId, compactPositions, defaultTab, onTabChange, pageSize, blockExplorerBaseUrl: _blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
993
+ declare function PortfolioActivityPanel({ positions, showPositionsTab, showSubscriptionsTab, onPositionClick, onAssetClick, onClosePosition, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, onCancelAllOrders, cancellingOrderId, compactPositions, defaultTab, onTabChange, pageSize, blockExplorerBaseUrl: _blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
967
994
 
968
995
  type SelectorItem = {
969
996
  readonly tokenName: string;
@@ -994,8 +1021,10 @@ type AssetSelectorBarProps = {
994
1021
  trailing?: ReactNode;
995
1022
  imageUrl?: string;
996
1023
  badgeLabel?: string;
1024
+ /** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
1025
+ tickerPrimary?: boolean;
997
1026
  };
998
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1027
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
999
1028
 
1000
1029
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
1001
1030
  type ToastData = {
@@ -1254,4 +1283,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
1254
1283
  }>, maxPoints?: number): number[];
1255
1284
  declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
1256
1285
 
1257
- 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, ContactPopup, type ContactPopupProps, 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, SiteFooter, Skeleton, type SkeletonProps, SlideDigit, SparklineChart, type SparklineChartProps, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, extractSparkline, hasPendingActivity, useAdaptivePolling, useToast };
1286
+ 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, ContactPopup, type ContactPopupProps, 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, OnboardingGuide, type OnboardingGuideProps, 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, SiteFooter, Skeleton, type SkeletonProps, SlideDigit, SparklineChart, type SparklineChartProps, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, extractSparkline, hasPendingActivity, useAdaptivePolling, useToast };