@loafmarkets/ui 0.1.360 → 0.1.362

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
@@ -1120,46 +1120,25 @@ type PaymentPopupProps = {
1120
1120
  };
1121
1121
  declare function PaymentPopup({ isOpen, onClose, onConfirm, selectedDates, totalCost, isOwnerRate, tokenPrice, ownerRate, marketRate, userTokenHoldings, propertyName, }: PaymentPopupProps): react_jsx_runtime.JSX.Element | null;
1122
1122
 
1123
- type ValuationRecentSale = {
1124
- readonly imageUrl?: string;
1125
- readonly price?: number | null;
1126
- readonly currency?: string | null;
1127
- readonly saleDate?: string | null;
1128
- readonly address?: string | null;
1129
- readonly suburb?: string | null;
1130
- readonly bedrooms?: number | null;
1131
- readonly bathrooms?: number | null;
1132
- readonly landSize?: string | null;
1133
- };
1134
- type ValuationSummary = {
1135
- readonly propertyId?: number;
1136
- readonly lastPrice?: number | null;
1137
- readonly fairValue?: number | null;
1138
- readonly totalTokens?: number | null;
1139
- readonly confidence?: string | null;
1140
- readonly undervaluedThreshold?: number | null;
1141
- readonly overvaluedThreshold?: number | null;
1142
- readonly valuationDeltaPercent?: number | null;
1143
- readonly valuationStatus?: string | null;
1144
- readonly areaDemand?: string | null;
1145
- readonly propertyMoat?: string | null;
1146
- readonly recentSales?: ValuationRecentSale[];
1147
- };
1148
- type ValuationHistoryPoint = {
1149
- readonly timestamp: number;
1150
- readonly valuation: number;
1151
- readonly fairValue?: number | null;
1152
- };
1123
+ type ValSummary = {
1124
+ valuationAsOf?: string | number | null;
1125
+ confidence?: string | null;
1126
+ fairValue?: number | null;
1127
+ valuationStatus?: string | null;
1128
+ valuationDeltaPercent?: number | null;
1129
+ areaDemand?: string | null;
1130
+ propertyMoat?: string | null;
1131
+ undervaluedThreshold?: number | null;
1132
+ overvaluedThreshold?: number | null;
1133
+ } | null | undefined;
1153
1134
  type PropertyValuationProps = {
1154
- propertyName: string;
1155
- tokenPrice: number;
1156
- totalTokens?: number | null;
1157
- summary?: ValuationSummary | null;
1158
- history?: ValuationHistoryPoint[];
1159
- loading?: boolean;
1160
- error?: string | null;
1135
+ propertyTitle: string;
1136
+ tokenPriceValue: number | null;
1137
+ valSummary: ValSummary;
1138
+ offeringValuationValue: number | null;
1139
+ totalUnits: number;
1161
1140
  };
1162
- declare function PropertyValuation({ propertyName, tokenPrice, totalTokens, summary, history, loading, error, }: PropertyValuationProps): react_jsx_runtime.JSX.Element;
1141
+ declare function PropertyValuation({ propertyTitle, tokenPriceValue, valSummary, offeringValuationValue, totalUnits, }: PropertyValuationProps): react_jsx_runtime.JSX.Element;
1163
1142
 
1164
1143
  type PropertyGalleryHotspot = {
1165
1144
  id: number;
@@ -1226,4 +1205,11 @@ declare function SlideDigit({ value }: {
1226
1205
  value: string;
1227
1206
  }): react_jsx_runtime.JSX.Element;
1228
1207
 
1229
- 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 };
1208
+ declare const SiteFooter: () => react_jsx_runtime.JSX.Element;
1209
+
1210
+ interface ContactPopupProps {
1211
+ onClose: () => void;
1212
+ }
1213
+ declare const ContactPopup: ({ onClose }: ContactPopupProps) => react_jsx_runtime.JSX.Element;
1214
+
1215
+ 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, 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, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };
package/dist/index.d.ts CHANGED
@@ -1120,46 +1120,25 @@ type PaymentPopupProps = {
1120
1120
  };
1121
1121
  declare function PaymentPopup({ isOpen, onClose, onConfirm, selectedDates, totalCost, isOwnerRate, tokenPrice, ownerRate, marketRate, userTokenHoldings, propertyName, }: PaymentPopupProps): react_jsx_runtime.JSX.Element | null;
1122
1122
 
1123
- type ValuationRecentSale = {
1124
- readonly imageUrl?: string;
1125
- readonly price?: number | null;
1126
- readonly currency?: string | null;
1127
- readonly saleDate?: string | null;
1128
- readonly address?: string | null;
1129
- readonly suburb?: string | null;
1130
- readonly bedrooms?: number | null;
1131
- readonly bathrooms?: number | null;
1132
- readonly landSize?: string | null;
1133
- };
1134
- type ValuationSummary = {
1135
- readonly propertyId?: number;
1136
- readonly lastPrice?: number | null;
1137
- readonly fairValue?: number | null;
1138
- readonly totalTokens?: number | null;
1139
- readonly confidence?: string | null;
1140
- readonly undervaluedThreshold?: number | null;
1141
- readonly overvaluedThreshold?: number | null;
1142
- readonly valuationDeltaPercent?: number | null;
1143
- readonly valuationStatus?: string | null;
1144
- readonly areaDemand?: string | null;
1145
- readonly propertyMoat?: string | null;
1146
- readonly recentSales?: ValuationRecentSale[];
1147
- };
1148
- type ValuationHistoryPoint = {
1149
- readonly timestamp: number;
1150
- readonly valuation: number;
1151
- readonly fairValue?: number | null;
1152
- };
1123
+ type ValSummary = {
1124
+ valuationAsOf?: string | number | null;
1125
+ confidence?: string | null;
1126
+ fairValue?: number | null;
1127
+ valuationStatus?: string | null;
1128
+ valuationDeltaPercent?: number | null;
1129
+ areaDemand?: string | null;
1130
+ propertyMoat?: string | null;
1131
+ undervaluedThreshold?: number | null;
1132
+ overvaluedThreshold?: number | null;
1133
+ } | null | undefined;
1153
1134
  type PropertyValuationProps = {
1154
- propertyName: string;
1155
- tokenPrice: number;
1156
- totalTokens?: number | null;
1157
- summary?: ValuationSummary | null;
1158
- history?: ValuationHistoryPoint[];
1159
- loading?: boolean;
1160
- error?: string | null;
1135
+ propertyTitle: string;
1136
+ tokenPriceValue: number | null;
1137
+ valSummary: ValSummary;
1138
+ offeringValuationValue: number | null;
1139
+ totalUnits: number;
1161
1140
  };
1162
- declare function PropertyValuation({ propertyName, tokenPrice, totalTokens, summary, history, loading, error, }: PropertyValuationProps): react_jsx_runtime.JSX.Element;
1141
+ declare function PropertyValuation({ propertyTitle, tokenPriceValue, valSummary, offeringValuationValue, totalUnits, }: PropertyValuationProps): react_jsx_runtime.JSX.Element;
1163
1142
 
1164
1143
  type PropertyGalleryHotspot = {
1165
1144
  id: number;
@@ -1226,4 +1205,11 @@ declare function SlideDigit({ value }: {
1226
1205
  value: string;
1227
1206
  }): react_jsx_runtime.JSX.Element;
1228
1207
 
1229
- 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 };
1208
+ declare const SiteFooter: () => react_jsx_runtime.JSX.Element;
1209
+
1210
+ interface ContactPopupProps {
1211
+ onClose: () => void;
1212
+ }
1213
+ declare const ContactPopup: ({ onClose }: ContactPopupProps) => react_jsx_runtime.JSX.Element;
1214
+
1215
+ 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, 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, type ToastData, ToastProvider, type ToastVariant, TradeConfirmationModal, type TradeConfirmationModalDetails, type TradeConfirmationModalProps, TradingSlider, type TradingSliderProps, type YourOrder, type YourOrderSide, YourOrders, type YourOrdersProps, badgeVariants, buttonVariants, hasPendingActivity, useAdaptivePolling, useToast };