@loafmarkets/ui 0.1.13 → 0.1.16
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 +90 -4
- package/dist/index.d.ts +90 -4
- package/dist/index.js +546 -152
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +546 -154
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -339,6 +339,7 @@ type YourOrdersProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
339
339
|
onTabChange?: (tabId: string) => void;
|
|
340
340
|
renderOrderActions?: (order: YourOrder) => React.ReactNode;
|
|
341
341
|
renderTabContent?: (args: RenderTabContentArgs) => React.ReactNode | null;
|
|
342
|
+
pageSize?: number;
|
|
342
343
|
};
|
|
343
344
|
declare const YourOrders: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
344
345
|
title?: string;
|
|
@@ -348,6 +349,7 @@ declare const YourOrders: React.ForwardRefExoticComponent<React.HTMLAttributes<H
|
|
|
348
349
|
onTabChange?: (tabId: string) => void;
|
|
349
350
|
renderOrderActions?: (order: YourOrder) => React.ReactNode;
|
|
350
351
|
renderTabContent?: (args: RenderTabContentArgs) => React.ReactNode | null;
|
|
352
|
+
pageSize?: number;
|
|
351
353
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
352
354
|
|
|
353
355
|
type PriceChartRange = "30s" | "1m" | "5m" | "15m" | "1h" | "4h" | "24h" | "1W" | "1M";
|
|
@@ -395,6 +397,10 @@ type PropertyHeroHeaderProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
395
397
|
propertyTypeLabel?: string;
|
|
396
398
|
onTrade?: () => void;
|
|
397
399
|
onMakeOffer?: () => void;
|
|
400
|
+
tradeButtonLabel?: string;
|
|
401
|
+
makeOfferButtonLabel?: string;
|
|
402
|
+
makeOfferDisabled?: boolean;
|
|
403
|
+
hideMakeOfferButton?: boolean;
|
|
398
404
|
};
|
|
399
405
|
declare const PropertyHeroHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
400
406
|
imageUrl: string;
|
|
@@ -410,6 +416,10 @@ declare const PropertyHeroHeader: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
410
416
|
propertyTypeLabel?: string;
|
|
411
417
|
onTrade?: () => void;
|
|
412
418
|
onMakeOffer?: () => void;
|
|
419
|
+
tradeButtonLabel?: string;
|
|
420
|
+
makeOfferButtonLabel?: string;
|
|
421
|
+
makeOfferDisabled?: boolean;
|
|
422
|
+
hideMakeOfferButton?: boolean;
|
|
413
423
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
414
424
|
|
|
415
425
|
type EmailCodeParams = {
|
|
@@ -578,13 +588,39 @@ declare const PropertyCompareBar: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
578
588
|
price?: PropertyPriceSummary;
|
|
579
589
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
580
590
|
|
|
591
|
+
interface OverviewResponse {
|
|
592
|
+
readonly description: string;
|
|
593
|
+
readonly tokensIssued: number;
|
|
594
|
+
readonly offeringValuation: number;
|
|
595
|
+
readonly weeklyRent: number;
|
|
596
|
+
readonly indicativeListing: string;
|
|
597
|
+
readonly minimumParticipation?: number;
|
|
598
|
+
readonly landSizeSqm: number;
|
|
599
|
+
readonly buildingSizeSqm: number;
|
|
600
|
+
readonly swimmingPool: boolean;
|
|
601
|
+
readonly tennisCourt: boolean;
|
|
602
|
+
readonly garden: boolean;
|
|
603
|
+
readonly gym: boolean;
|
|
604
|
+
readonly propertyType?: string;
|
|
605
|
+
readonly yearBuilt: number;
|
|
606
|
+
readonly ownership: string;
|
|
607
|
+
readonly zoning: string;
|
|
608
|
+
readonly levels: number;
|
|
609
|
+
readonly daStatus: string;
|
|
610
|
+
}
|
|
581
611
|
type PropertyOverviewProps = {
|
|
582
612
|
propertyName: string;
|
|
583
613
|
location: string;
|
|
584
614
|
midPrice: number;
|
|
585
615
|
onTradeClick?: () => void;
|
|
616
|
+
overviewData?: OverviewResponse | null;
|
|
617
|
+
minimumParticipation?: number | null;
|
|
618
|
+
bedrooms?: number | null;
|
|
619
|
+
bathrooms?: number | null;
|
|
620
|
+
carSpaces?: number | null;
|
|
621
|
+
propertyTypeLabel?: string | null;
|
|
586
622
|
};
|
|
587
|
-
declare function PropertyOverview({ propertyName: _propertyName, location: _location, midPrice: _midPrice, onTradeClick: _onTradeClick }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
623
|
+
declare function PropertyOverview({ propertyName: _propertyName, location: _location, midPrice: _midPrice, onTradeClick: _onTradeClick, overviewData, minimumParticipation, bedrooms, bathrooms, carSpaces, propertyTypeLabel, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
588
624
|
|
|
589
625
|
type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
|
|
590
626
|
type PropertyOffer = {
|
|
@@ -603,7 +639,17 @@ declare function PropertyOffers({ offers }: PropertyOffersProps): react_jsx_runt
|
|
|
603
639
|
|
|
604
640
|
declare function PropertyHistory(): react_jsx_runtime.JSX.Element;
|
|
605
641
|
|
|
606
|
-
|
|
642
|
+
interface DocumentItem {
|
|
643
|
+
readonly title: string;
|
|
644
|
+
readonly documentUrl: string;
|
|
645
|
+
}
|
|
646
|
+
interface DocumentsResponse {
|
|
647
|
+
readonly documents: readonly DocumentItem[];
|
|
648
|
+
}
|
|
649
|
+
type PropertyDocumentsProps = {
|
|
650
|
+
documentsData?: DocumentsResponse | null;
|
|
651
|
+
};
|
|
652
|
+
declare function PropertyDocuments({ documentsData }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
|
|
607
653
|
|
|
608
654
|
type InspectionSlot = {
|
|
609
655
|
slotId: string;
|
|
@@ -656,6 +702,16 @@ type SaleData = {
|
|
|
656
702
|
feePercent: number;
|
|
657
703
|
offeringValuation: number;
|
|
658
704
|
};
|
|
705
|
+
type PropertySubscription = {
|
|
706
|
+
propertyName: string;
|
|
707
|
+
tokenSymbol: string;
|
|
708
|
+
tokens: number;
|
|
709
|
+
value: number;
|
|
710
|
+
avgPrice: number;
|
|
711
|
+
percentOfProperty: string;
|
|
712
|
+
timestamp: string;
|
|
713
|
+
status?: string;
|
|
714
|
+
};
|
|
659
715
|
|
|
660
716
|
type PropertyBuyProps = {
|
|
661
717
|
propertyName?: string;
|
|
@@ -663,8 +719,15 @@ type PropertyBuyProps = {
|
|
|
663
719
|
isAuthenticated: boolean;
|
|
664
720
|
onSignIn: () => void;
|
|
665
721
|
saleData?: SaleData | null;
|
|
722
|
+
walletUsdcBalance?: number | null;
|
|
723
|
+
walletPropertyTokenBalance?: number | null;
|
|
724
|
+
onPurchase?: (tokenAmount: number) => Promise<void>;
|
|
725
|
+
purchaseStatus?: 'idle' | 'checking-allowance' | 'approving' | 'purchasing' | 'success' | 'error';
|
|
726
|
+
purchaseError?: string | null;
|
|
727
|
+
onDeposit?: () => void;
|
|
728
|
+
initialUserSubscriptions?: PropertySubscription[];
|
|
666
729
|
};
|
|
667
|
-
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, isAuthenticated, onSignIn, saleData, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
730
|
+
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, initialUserSubscriptions, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
668
731
|
|
|
669
732
|
type OwnerBookingProps = {
|
|
670
733
|
propertyName?: string | null;
|
|
@@ -753,4 +816,27 @@ type PropertyPhotoGalleryProps = {
|
|
|
753
816
|
};
|
|
754
817
|
declare function PropertyPhotoGallery({ isOpen, onClose, startIndex, title, subtitle, images, }: PropertyPhotoGalleryProps): react_jsx_runtime.JSX.Element | null;
|
|
755
818
|
|
|
756
|
-
|
|
819
|
+
type ToastVariant = 'success' | 'error' | 'info' | 'pending';
|
|
820
|
+
type ToastData = {
|
|
821
|
+
id: string;
|
|
822
|
+
variant: ToastVariant;
|
|
823
|
+
title: string;
|
|
824
|
+
/** Human-readable amount e.g. "20,000 USDC" */
|
|
825
|
+
amount?: string;
|
|
826
|
+
/** On-chain tx hash — shown truncated with a block explorer link */
|
|
827
|
+
txHash?: string;
|
|
828
|
+
/** Explorer base URL, defaults to Base Sepolia */
|
|
829
|
+
explorerUrl?: string;
|
|
830
|
+
/** Auto-dismiss after ms. 0 = never. Default 6000 */
|
|
831
|
+
duration?: number;
|
|
832
|
+
};
|
|
833
|
+
type ToastContextValue = {
|
|
834
|
+
toast: (data: Omit<ToastData, 'id'>) => string;
|
|
835
|
+
dismiss: (id: string) => void;
|
|
836
|
+
};
|
|
837
|
+
declare function ToastProvider({ children }: {
|
|
838
|
+
children: React__default.ReactNode;
|
|
839
|
+
}): react_jsx_runtime.JSX.Element;
|
|
840
|
+
declare function useToast(): ToastContextValue;
|
|
841
|
+
|
|
842
|
+
export { 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 FundWalletParams, 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, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, 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, 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 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, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -339,6 +339,7 @@ type YourOrdersProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
339
339
|
onTabChange?: (tabId: string) => void;
|
|
340
340
|
renderOrderActions?: (order: YourOrder) => React.ReactNode;
|
|
341
341
|
renderTabContent?: (args: RenderTabContentArgs) => React.ReactNode | null;
|
|
342
|
+
pageSize?: number;
|
|
342
343
|
};
|
|
343
344
|
declare const YourOrders: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
344
345
|
title?: string;
|
|
@@ -348,6 +349,7 @@ declare const YourOrders: React.ForwardRefExoticComponent<React.HTMLAttributes<H
|
|
|
348
349
|
onTabChange?: (tabId: string) => void;
|
|
349
350
|
renderOrderActions?: (order: YourOrder) => React.ReactNode;
|
|
350
351
|
renderTabContent?: (args: RenderTabContentArgs) => React.ReactNode | null;
|
|
352
|
+
pageSize?: number;
|
|
351
353
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
352
354
|
|
|
353
355
|
type PriceChartRange = "30s" | "1m" | "5m" | "15m" | "1h" | "4h" | "24h" | "1W" | "1M";
|
|
@@ -395,6 +397,10 @@ type PropertyHeroHeaderProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
395
397
|
propertyTypeLabel?: string;
|
|
396
398
|
onTrade?: () => void;
|
|
397
399
|
onMakeOffer?: () => void;
|
|
400
|
+
tradeButtonLabel?: string;
|
|
401
|
+
makeOfferButtonLabel?: string;
|
|
402
|
+
makeOfferDisabled?: boolean;
|
|
403
|
+
hideMakeOfferButton?: boolean;
|
|
398
404
|
};
|
|
399
405
|
declare const PropertyHeroHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
400
406
|
imageUrl: string;
|
|
@@ -410,6 +416,10 @@ declare const PropertyHeroHeader: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
410
416
|
propertyTypeLabel?: string;
|
|
411
417
|
onTrade?: () => void;
|
|
412
418
|
onMakeOffer?: () => void;
|
|
419
|
+
tradeButtonLabel?: string;
|
|
420
|
+
makeOfferButtonLabel?: string;
|
|
421
|
+
makeOfferDisabled?: boolean;
|
|
422
|
+
hideMakeOfferButton?: boolean;
|
|
413
423
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
414
424
|
|
|
415
425
|
type EmailCodeParams = {
|
|
@@ -578,13 +588,39 @@ declare const PropertyCompareBar: React.ForwardRefExoticComponent<React.HTMLAttr
|
|
|
578
588
|
price?: PropertyPriceSummary;
|
|
579
589
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
580
590
|
|
|
591
|
+
interface OverviewResponse {
|
|
592
|
+
readonly description: string;
|
|
593
|
+
readonly tokensIssued: number;
|
|
594
|
+
readonly offeringValuation: number;
|
|
595
|
+
readonly weeklyRent: number;
|
|
596
|
+
readonly indicativeListing: string;
|
|
597
|
+
readonly minimumParticipation?: number;
|
|
598
|
+
readonly landSizeSqm: number;
|
|
599
|
+
readonly buildingSizeSqm: number;
|
|
600
|
+
readonly swimmingPool: boolean;
|
|
601
|
+
readonly tennisCourt: boolean;
|
|
602
|
+
readonly garden: boolean;
|
|
603
|
+
readonly gym: boolean;
|
|
604
|
+
readonly propertyType?: string;
|
|
605
|
+
readonly yearBuilt: number;
|
|
606
|
+
readonly ownership: string;
|
|
607
|
+
readonly zoning: string;
|
|
608
|
+
readonly levels: number;
|
|
609
|
+
readonly daStatus: string;
|
|
610
|
+
}
|
|
581
611
|
type PropertyOverviewProps = {
|
|
582
612
|
propertyName: string;
|
|
583
613
|
location: string;
|
|
584
614
|
midPrice: number;
|
|
585
615
|
onTradeClick?: () => void;
|
|
616
|
+
overviewData?: OverviewResponse | null;
|
|
617
|
+
minimumParticipation?: number | null;
|
|
618
|
+
bedrooms?: number | null;
|
|
619
|
+
bathrooms?: number | null;
|
|
620
|
+
carSpaces?: number | null;
|
|
621
|
+
propertyTypeLabel?: string | null;
|
|
586
622
|
};
|
|
587
|
-
declare function PropertyOverview({ propertyName: _propertyName, location: _location, midPrice: _midPrice, onTradeClick: _onTradeClick }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
623
|
+
declare function PropertyOverview({ propertyName: _propertyName, location: _location, midPrice: _midPrice, onTradeClick: _onTradeClick, overviewData, minimumParticipation, bedrooms, bathrooms, carSpaces, propertyTypeLabel, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
588
624
|
|
|
589
625
|
type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
|
|
590
626
|
type PropertyOffer = {
|
|
@@ -603,7 +639,17 @@ declare function PropertyOffers({ offers }: PropertyOffersProps): react_jsx_runt
|
|
|
603
639
|
|
|
604
640
|
declare function PropertyHistory(): react_jsx_runtime.JSX.Element;
|
|
605
641
|
|
|
606
|
-
|
|
642
|
+
interface DocumentItem {
|
|
643
|
+
readonly title: string;
|
|
644
|
+
readonly documentUrl: string;
|
|
645
|
+
}
|
|
646
|
+
interface DocumentsResponse {
|
|
647
|
+
readonly documents: readonly DocumentItem[];
|
|
648
|
+
}
|
|
649
|
+
type PropertyDocumentsProps = {
|
|
650
|
+
documentsData?: DocumentsResponse | null;
|
|
651
|
+
};
|
|
652
|
+
declare function PropertyDocuments({ documentsData }: PropertyDocumentsProps): react_jsx_runtime.JSX.Element;
|
|
607
653
|
|
|
608
654
|
type InspectionSlot = {
|
|
609
655
|
slotId: string;
|
|
@@ -656,6 +702,16 @@ type SaleData = {
|
|
|
656
702
|
feePercent: number;
|
|
657
703
|
offeringValuation: number;
|
|
658
704
|
};
|
|
705
|
+
type PropertySubscription = {
|
|
706
|
+
propertyName: string;
|
|
707
|
+
tokenSymbol: string;
|
|
708
|
+
tokens: number;
|
|
709
|
+
value: number;
|
|
710
|
+
avgPrice: number;
|
|
711
|
+
percentOfProperty: string;
|
|
712
|
+
timestamp: string;
|
|
713
|
+
status?: string;
|
|
714
|
+
};
|
|
659
715
|
|
|
660
716
|
type PropertyBuyProps = {
|
|
661
717
|
propertyName?: string;
|
|
@@ -663,8 +719,15 @@ type PropertyBuyProps = {
|
|
|
663
719
|
isAuthenticated: boolean;
|
|
664
720
|
onSignIn: () => void;
|
|
665
721
|
saleData?: SaleData | null;
|
|
722
|
+
walletUsdcBalance?: number | null;
|
|
723
|
+
walletPropertyTokenBalance?: number | null;
|
|
724
|
+
onPurchase?: (tokenAmount: number) => Promise<void>;
|
|
725
|
+
purchaseStatus?: 'idle' | 'checking-allowance' | 'approving' | 'purchasing' | 'success' | 'error';
|
|
726
|
+
purchaseError?: string | null;
|
|
727
|
+
onDeposit?: () => void;
|
|
728
|
+
initialUserSubscriptions?: PropertySubscription[];
|
|
666
729
|
};
|
|
667
|
-
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, isAuthenticated, onSignIn, saleData, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
730
|
+
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, initialUserSubscriptions, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
668
731
|
|
|
669
732
|
type OwnerBookingProps = {
|
|
670
733
|
propertyName?: string | null;
|
|
@@ -753,4 +816,27 @@ type PropertyPhotoGalleryProps = {
|
|
|
753
816
|
};
|
|
754
817
|
declare function PropertyPhotoGallery({ isOpen, onClose, startIndex, title, subtitle, images, }: PropertyPhotoGalleryProps): react_jsx_runtime.JSX.Element | null;
|
|
755
818
|
|
|
756
|
-
|
|
819
|
+
type ToastVariant = 'success' | 'error' | 'info' | 'pending';
|
|
820
|
+
type ToastData = {
|
|
821
|
+
id: string;
|
|
822
|
+
variant: ToastVariant;
|
|
823
|
+
title: string;
|
|
824
|
+
/** Human-readable amount e.g. "20,000 USDC" */
|
|
825
|
+
amount?: string;
|
|
826
|
+
/** On-chain tx hash — shown truncated with a block explorer link */
|
|
827
|
+
txHash?: string;
|
|
828
|
+
/** Explorer base URL, defaults to Base Sepolia */
|
|
829
|
+
explorerUrl?: string;
|
|
830
|
+
/** Auto-dismiss after ms. 0 = never. Default 6000 */
|
|
831
|
+
duration?: number;
|
|
832
|
+
};
|
|
833
|
+
type ToastContextValue = {
|
|
834
|
+
toast: (data: Omit<ToastData, 'id'>) => string;
|
|
835
|
+
dismiss: (id: string) => void;
|
|
836
|
+
};
|
|
837
|
+
declare function ToastProvider({ children }: {
|
|
838
|
+
children: React__default.ReactNode;
|
|
839
|
+
}): react_jsx_runtime.JSX.Element;
|
|
840
|
+
declare function useToast(): ToastContextValue;
|
|
841
|
+
|
|
842
|
+
export { 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 FundWalletParams, 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, Orderbook, type OrderbookLevel, type OrderbookProps, type OrderbookSide, type OrderbookTrade, OwnerBooking, type OwnerBookingProps, PaymentPopup, type PaymentPopupProps, 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, 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 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, useToast };
|