@loafmarkets/ui 0.1.89 → 0.1.91
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 +29 -4
- package/dist/index.d.ts +29 -4
- package/dist/index.js +1149 -695
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1151 -697
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -105,6 +105,8 @@ interface OrderbookProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
105
105
|
onLoafLiquidityClick?: () => void;
|
|
106
106
|
/** Given a trade's txHash, returns the full explorer URL to link to. Defaults to Sepolia Etherscan. */
|
|
107
107
|
tradeExplorerUrl?: (txHash: string) => string;
|
|
108
|
+
/** Override the number of visible price levels per side (default 5). */
|
|
109
|
+
maxLevels?: number;
|
|
108
110
|
}
|
|
109
111
|
declare const Orderbook: React$1.ForwardRefExoticComponent<OrderbookProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
110
112
|
|
|
@@ -424,13 +426,19 @@ type PropertyHeroHeaderProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
424
426
|
imageUrl: string;
|
|
425
427
|
imageAlt?: string;
|
|
426
428
|
name: string;
|
|
429
|
+
address?: string;
|
|
427
430
|
location: string;
|
|
428
431
|
price?: number;
|
|
429
432
|
currencySymbol?: string;
|
|
430
433
|
changePercent?: number;
|
|
434
|
+
priceChange?: number;
|
|
435
|
+
/** @deprecated No longer rendered. */
|
|
431
436
|
beds?: number;
|
|
437
|
+
/** @deprecated No longer rendered. */
|
|
432
438
|
baths?: number;
|
|
439
|
+
/** @deprecated No longer rendered. */
|
|
433
440
|
cars?: number;
|
|
441
|
+
/** @deprecated No longer rendered. */
|
|
434
442
|
propertyTypeLabel?: string;
|
|
435
443
|
onTrade?: () => void;
|
|
436
444
|
onMakeOffer?: () => void;
|
|
@@ -449,13 +457,19 @@ declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTML
|
|
|
449
457
|
imageUrl: string;
|
|
450
458
|
imageAlt?: string;
|
|
451
459
|
name: string;
|
|
460
|
+
address?: string;
|
|
452
461
|
location: string;
|
|
453
462
|
price?: number;
|
|
454
463
|
currencySymbol?: string;
|
|
455
464
|
changePercent?: number;
|
|
465
|
+
priceChange?: number;
|
|
466
|
+
/** @deprecated No longer rendered. */
|
|
456
467
|
beds?: number;
|
|
468
|
+
/** @deprecated No longer rendered. */
|
|
457
469
|
baths?: number;
|
|
470
|
+
/** @deprecated No longer rendered. */
|
|
458
471
|
cars?: number;
|
|
472
|
+
/** @deprecated No longer rendered. */
|
|
459
473
|
propertyTypeLabel?: string;
|
|
460
474
|
onTrade?: () => void;
|
|
461
475
|
onMakeOffer?: () => void;
|
|
@@ -550,6 +564,13 @@ type HeaderUser = {
|
|
|
550
564
|
email?: string | null;
|
|
551
565
|
walletAddress?: string | null;
|
|
552
566
|
};
|
|
567
|
+
type HeaderPortfolioData = {
|
|
568
|
+
holdings: number;
|
|
569
|
+
cash: number;
|
|
570
|
+
portfolioValue: number;
|
|
571
|
+
pnl: number;
|
|
572
|
+
pnlPercent: number;
|
|
573
|
+
};
|
|
553
574
|
type HeaderActiveTab = "home" | "trade" | "offerings" | "propertyMap" | "about" | "portfolio" | "learn" | "api";
|
|
554
575
|
type HeaderLoginPopupComponentProps = {
|
|
555
576
|
onClose: () => void;
|
|
@@ -590,6 +611,7 @@ type HeaderProps = {
|
|
|
590
611
|
onOrdersNavigate?: () => void;
|
|
591
612
|
onWalletNavigate?: () => void;
|
|
592
613
|
showTradeTab?: boolean;
|
|
614
|
+
portfolioSummary?: HeaderPortfolioData | null;
|
|
593
615
|
};
|
|
594
616
|
declare const Header: React__default.FC<HeaderProps>;
|
|
595
617
|
|
|
@@ -824,7 +846,6 @@ interface TradeHistoryItem {
|
|
|
824
846
|
readonly price: number;
|
|
825
847
|
readonly executedAt: number;
|
|
826
848
|
readonly fee: number;
|
|
827
|
-
readonly status?: string;
|
|
828
849
|
}
|
|
829
850
|
interface TransferHistoryItem {
|
|
830
851
|
readonly type: 'DEPOSIT' | 'WITHDRAWAL';
|
|
@@ -881,6 +902,7 @@ type AssetSelectorMetric = {
|
|
|
881
902
|
value: ReactNode;
|
|
882
903
|
accent?: boolean;
|
|
883
904
|
change?: number;
|
|
905
|
+
secondary?: boolean;
|
|
884
906
|
};
|
|
885
907
|
type AssetSelectorBarProps = {
|
|
886
908
|
propertyName: string;
|
|
@@ -890,8 +912,9 @@ type AssetSelectorBarProps = {
|
|
|
890
912
|
currentTokenName?: string;
|
|
891
913
|
selectorItems?: readonly SelectorItem[];
|
|
892
914
|
onSelect?: (tokenName: string) => void;
|
|
915
|
+
trailing?: ReactNode;
|
|
893
916
|
};
|
|
894
|
-
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
895
918
|
|
|
896
919
|
type IpoStatus = 'PENDING' | 'LIVE' | 'CLOSED' | 'CANCELLED';
|
|
897
920
|
type SaleData = {
|
|
@@ -979,10 +1002,12 @@ type OfferingProgressCardProps = {
|
|
|
979
1002
|
raisedAmount?: number;
|
|
980
1003
|
targetAmount?: number;
|
|
981
1004
|
isPrivateClient?: boolean;
|
|
1005
|
+
/** "default" = full card with header/countdown, "compact" = bar-only, "home" = countdown left + spinner right */
|
|
1006
|
+
variant?: 'default' | 'compact' | 'home';
|
|
982
1007
|
style?: React__default.CSSProperties;
|
|
983
1008
|
className?: string;
|
|
984
1009
|
};
|
|
985
|
-
declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
|
|
1010
|
+
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;
|
|
986
1011
|
|
|
987
1012
|
type OwnerBookingProps = {
|
|
988
1013
|
propertyName?: string | null;
|
|
@@ -1132,4 +1157,4 @@ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1132
1157
|
*/
|
|
1133
1158
|
declare const Skeleton: React$1.ForwardRefExoticComponent<SkeletonProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1134
1159
|
|
|
1135
|
-
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 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, 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, 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 };
|
|
1160
|
+
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, 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, 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
|
@@ -105,6 +105,8 @@ interface OrderbookProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
105
105
|
onLoafLiquidityClick?: () => void;
|
|
106
106
|
/** Given a trade's txHash, returns the full explorer URL to link to. Defaults to Sepolia Etherscan. */
|
|
107
107
|
tradeExplorerUrl?: (txHash: string) => string;
|
|
108
|
+
/** Override the number of visible price levels per side (default 5). */
|
|
109
|
+
maxLevels?: number;
|
|
108
110
|
}
|
|
109
111
|
declare const Orderbook: React$1.ForwardRefExoticComponent<OrderbookProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
110
112
|
|
|
@@ -424,13 +426,19 @@ type PropertyHeroHeaderProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
424
426
|
imageUrl: string;
|
|
425
427
|
imageAlt?: string;
|
|
426
428
|
name: string;
|
|
429
|
+
address?: string;
|
|
427
430
|
location: string;
|
|
428
431
|
price?: number;
|
|
429
432
|
currencySymbol?: string;
|
|
430
433
|
changePercent?: number;
|
|
434
|
+
priceChange?: number;
|
|
435
|
+
/** @deprecated No longer rendered. */
|
|
431
436
|
beds?: number;
|
|
437
|
+
/** @deprecated No longer rendered. */
|
|
432
438
|
baths?: number;
|
|
439
|
+
/** @deprecated No longer rendered. */
|
|
433
440
|
cars?: number;
|
|
441
|
+
/** @deprecated No longer rendered. */
|
|
434
442
|
propertyTypeLabel?: string;
|
|
435
443
|
onTrade?: () => void;
|
|
436
444
|
onMakeOffer?: () => void;
|
|
@@ -449,13 +457,19 @@ declare const PropertyHeroHeader: React$1.ForwardRefExoticComponent<React$1.HTML
|
|
|
449
457
|
imageUrl: string;
|
|
450
458
|
imageAlt?: string;
|
|
451
459
|
name: string;
|
|
460
|
+
address?: string;
|
|
452
461
|
location: string;
|
|
453
462
|
price?: number;
|
|
454
463
|
currencySymbol?: string;
|
|
455
464
|
changePercent?: number;
|
|
465
|
+
priceChange?: number;
|
|
466
|
+
/** @deprecated No longer rendered. */
|
|
456
467
|
beds?: number;
|
|
468
|
+
/** @deprecated No longer rendered. */
|
|
457
469
|
baths?: number;
|
|
470
|
+
/** @deprecated No longer rendered. */
|
|
458
471
|
cars?: number;
|
|
472
|
+
/** @deprecated No longer rendered. */
|
|
459
473
|
propertyTypeLabel?: string;
|
|
460
474
|
onTrade?: () => void;
|
|
461
475
|
onMakeOffer?: () => void;
|
|
@@ -550,6 +564,13 @@ type HeaderUser = {
|
|
|
550
564
|
email?: string | null;
|
|
551
565
|
walletAddress?: string | null;
|
|
552
566
|
};
|
|
567
|
+
type HeaderPortfolioData = {
|
|
568
|
+
holdings: number;
|
|
569
|
+
cash: number;
|
|
570
|
+
portfolioValue: number;
|
|
571
|
+
pnl: number;
|
|
572
|
+
pnlPercent: number;
|
|
573
|
+
};
|
|
553
574
|
type HeaderActiveTab = "home" | "trade" | "offerings" | "propertyMap" | "about" | "portfolio" | "learn" | "api";
|
|
554
575
|
type HeaderLoginPopupComponentProps = {
|
|
555
576
|
onClose: () => void;
|
|
@@ -590,6 +611,7 @@ type HeaderProps = {
|
|
|
590
611
|
onOrdersNavigate?: () => void;
|
|
591
612
|
onWalletNavigate?: () => void;
|
|
592
613
|
showTradeTab?: boolean;
|
|
614
|
+
portfolioSummary?: HeaderPortfolioData | null;
|
|
593
615
|
};
|
|
594
616
|
declare const Header: React__default.FC<HeaderProps>;
|
|
595
617
|
|
|
@@ -824,7 +846,6 @@ interface TradeHistoryItem {
|
|
|
824
846
|
readonly price: number;
|
|
825
847
|
readonly executedAt: number;
|
|
826
848
|
readonly fee: number;
|
|
827
|
-
readonly status?: string;
|
|
828
849
|
}
|
|
829
850
|
interface TransferHistoryItem {
|
|
830
851
|
readonly type: 'DEPOSIT' | 'WITHDRAWAL';
|
|
@@ -881,6 +902,7 @@ type AssetSelectorMetric = {
|
|
|
881
902
|
value: ReactNode;
|
|
882
903
|
accent?: boolean;
|
|
883
904
|
change?: number;
|
|
905
|
+
secondary?: boolean;
|
|
884
906
|
};
|
|
885
907
|
type AssetSelectorBarProps = {
|
|
886
908
|
propertyName: string;
|
|
@@ -890,8 +912,9 @@ type AssetSelectorBarProps = {
|
|
|
890
912
|
currentTokenName?: string;
|
|
891
913
|
selectorItems?: readonly SelectorItem[];
|
|
892
914
|
onSelect?: (tokenName: string) => void;
|
|
915
|
+
trailing?: ReactNode;
|
|
893
916
|
};
|
|
894
|
-
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
917
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
895
918
|
|
|
896
919
|
type IpoStatus = 'PENDING' | 'LIVE' | 'CLOSED' | 'CANCELLED';
|
|
897
920
|
type SaleData = {
|
|
@@ -979,10 +1002,12 @@ type OfferingProgressCardProps = {
|
|
|
979
1002
|
raisedAmount?: number;
|
|
980
1003
|
targetAmount?: number;
|
|
981
1004
|
isPrivateClient?: boolean;
|
|
1005
|
+
/** "default" = full card with header/countdown, "compact" = bar-only, "home" = countdown left + spinner right */
|
|
1006
|
+
variant?: 'default' | 'compact' | 'home';
|
|
982
1007
|
style?: React__default.CSSProperties;
|
|
983
1008
|
className?: string;
|
|
984
1009
|
};
|
|
985
|
-
declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
|
|
1010
|
+
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;
|
|
986
1011
|
|
|
987
1012
|
type OwnerBookingProps = {
|
|
988
1013
|
propertyName?: string | null;
|
|
@@ -1132,4 +1157,4 @@ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1132
1157
|
*/
|
|
1133
1158
|
declare const Skeleton: React$1.ForwardRefExoticComponent<SkeletonProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1134
1159
|
|
|
1135
|
-
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 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, 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, 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 };
|
|
1160
|
+
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, 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, 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 };
|