@loafmarkets/ui 0.1.36 → 0.1.38
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 +32 -3
- package/dist/index.d.ts +32 -3
- package/dist/index.js +213 -141
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +213 -142
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -591,6 +591,8 @@ declare const PropertySubheader: React$1.ForwardRefExoticComponent<React$1.HTMLA
|
|
|
591
591
|
type PropertyAddressOption = {
|
|
592
592
|
id: string;
|
|
593
593
|
label: string;
|
|
594
|
+
subtitle?: string;
|
|
595
|
+
status?: string;
|
|
594
596
|
};
|
|
595
597
|
type PropertyValueSummary = {
|
|
596
598
|
value: number;
|
|
@@ -754,12 +756,13 @@ type OrderType = 'MARKET' | 'LIMIT';
|
|
|
754
756
|
type TimeInForce = 'GTC' | 'IOC' | 'FOK' | 'GTD';
|
|
755
757
|
type OrderStatus = 'OPEN' | 'PARTIALLY_FILLED' | 'FILLED' | 'CANCELLED' | 'REJECTED';
|
|
756
758
|
interface OfferingOrder {
|
|
759
|
+
readonly ipoOrderId?: number;
|
|
757
760
|
readonly tokenName: string;
|
|
758
761
|
readonly txHash: string;
|
|
759
762
|
readonly price: number;
|
|
760
763
|
readonly quantity: number;
|
|
761
764
|
readonly status: string;
|
|
762
|
-
readonly imageUrl
|
|
765
|
+
readonly imageUrl?: string;
|
|
763
766
|
readonly createdAt: number;
|
|
764
767
|
}
|
|
765
768
|
interface OrderHistoryItem {
|
|
@@ -832,6 +835,30 @@ type PortfolioActivityPanelProps = {
|
|
|
832
835
|
};
|
|
833
836
|
declare function PortfolioActivityPanel({ positions, showPositionsTab, onPositionClick, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, cancellingOrderId, defaultTab, pageSize, blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
|
|
834
837
|
|
|
838
|
+
type SelectorItem = {
|
|
839
|
+
readonly tokenName: string;
|
|
840
|
+
readonly ticker: string;
|
|
841
|
+
readonly streetAddress: string;
|
|
842
|
+
readonly suburb: string;
|
|
843
|
+
readonly status: string;
|
|
844
|
+
};
|
|
845
|
+
type AssetSelectorMetric = {
|
|
846
|
+
label: string;
|
|
847
|
+
value: string;
|
|
848
|
+
accent?: boolean;
|
|
849
|
+
change?: number;
|
|
850
|
+
};
|
|
851
|
+
type AssetSelectorBarProps = {
|
|
852
|
+
propertyName: string;
|
|
853
|
+
tokenPrice?: number;
|
|
854
|
+
offeringValuation?: number;
|
|
855
|
+
metrics?: AssetSelectorMetric[];
|
|
856
|
+
currentTokenName?: string;
|
|
857
|
+
selectorItems?: readonly SelectorItem[];
|
|
858
|
+
onSelect?: (tokenName: string) => void;
|
|
859
|
+
};
|
|
860
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
861
|
+
|
|
835
862
|
type IpoStatus = 'PENDING' | 'LIVE' | 'CLOSED' | 'CANCELLED';
|
|
836
863
|
type SaleData = {
|
|
837
864
|
loading: boolean;
|
|
@@ -883,6 +910,8 @@ type PropertyBuyProps = {
|
|
|
883
910
|
recentOrders?: readonly IpoRecentOrder[];
|
|
884
911
|
ordersAllocated?: number;
|
|
885
912
|
subscribers?: number;
|
|
913
|
+
selectorItems?: readonly SelectorItem[];
|
|
914
|
+
onSelectorSelect?: (tokenName: string) => void;
|
|
886
915
|
portfolioActivity?: {
|
|
887
916
|
positions?: readonly PortfolioPosition[];
|
|
888
917
|
onPositionClick?: (tokenName: string, isIpo: boolean) => void;
|
|
@@ -895,7 +924,7 @@ type PropertyBuyProps = {
|
|
|
895
924
|
cancellingOrderId?: number | null;
|
|
896
925
|
};
|
|
897
926
|
};
|
|
898
|
-
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, tokenDisplayName, tokenSymbol, tokenName, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, opensAt, isPrivateClient, recentOrders, ordersAllocated, subscribers, portfolioActivity, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
927
|
+
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, tokenDisplayName, tokenSymbol, tokenName, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, opensAt, isPrivateClient, recentOrders, ordersAllocated, subscribers, selectorItems, onSelectorSelect, portfolioActivity, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
899
928
|
|
|
900
929
|
type OwnerBookingProps = {
|
|
901
930
|
propertyName?: string | null;
|
|
@@ -1007,4 +1036,4 @@ declare function ToastProvider({ children }: {
|
|
|
1007
1036
|
}): react_jsx_runtime.JSX.Element;
|
|
1008
1037
|
declare function useToast(): ToastContextValue;
|
|
1009
1038
|
|
|
1010
|
-
export { type ActivityTabId, 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, 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 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 };
|
|
1039
|
+
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, 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, 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
|
@@ -591,6 +591,8 @@ declare const PropertySubheader: React$1.ForwardRefExoticComponent<React$1.HTMLA
|
|
|
591
591
|
type PropertyAddressOption = {
|
|
592
592
|
id: string;
|
|
593
593
|
label: string;
|
|
594
|
+
subtitle?: string;
|
|
595
|
+
status?: string;
|
|
594
596
|
};
|
|
595
597
|
type PropertyValueSummary = {
|
|
596
598
|
value: number;
|
|
@@ -754,12 +756,13 @@ type OrderType = 'MARKET' | 'LIMIT';
|
|
|
754
756
|
type TimeInForce = 'GTC' | 'IOC' | 'FOK' | 'GTD';
|
|
755
757
|
type OrderStatus = 'OPEN' | 'PARTIALLY_FILLED' | 'FILLED' | 'CANCELLED' | 'REJECTED';
|
|
756
758
|
interface OfferingOrder {
|
|
759
|
+
readonly ipoOrderId?: number;
|
|
757
760
|
readonly tokenName: string;
|
|
758
761
|
readonly txHash: string;
|
|
759
762
|
readonly price: number;
|
|
760
763
|
readonly quantity: number;
|
|
761
764
|
readonly status: string;
|
|
762
|
-
readonly imageUrl
|
|
765
|
+
readonly imageUrl?: string;
|
|
763
766
|
readonly createdAt: number;
|
|
764
767
|
}
|
|
765
768
|
interface OrderHistoryItem {
|
|
@@ -832,6 +835,30 @@ type PortfolioActivityPanelProps = {
|
|
|
832
835
|
};
|
|
833
836
|
declare function PortfolioActivityPanel({ positions, showPositionsTab, onPositionClick, offeringOrders, openOrders, orderHistory, tradeHistory, transfers, onCancelOrder, cancellingOrderId, defaultTab, pageSize, blockExplorerBaseUrl, className, style, }: PortfolioActivityPanelProps): react_jsx_runtime.JSX.Element;
|
|
834
837
|
|
|
838
|
+
type SelectorItem = {
|
|
839
|
+
readonly tokenName: string;
|
|
840
|
+
readonly ticker: string;
|
|
841
|
+
readonly streetAddress: string;
|
|
842
|
+
readonly suburb: string;
|
|
843
|
+
readonly status: string;
|
|
844
|
+
};
|
|
845
|
+
type AssetSelectorMetric = {
|
|
846
|
+
label: string;
|
|
847
|
+
value: string;
|
|
848
|
+
accent?: boolean;
|
|
849
|
+
change?: number;
|
|
850
|
+
};
|
|
851
|
+
type AssetSelectorBarProps = {
|
|
852
|
+
propertyName: string;
|
|
853
|
+
tokenPrice?: number;
|
|
854
|
+
offeringValuation?: number;
|
|
855
|
+
metrics?: AssetSelectorMetric[];
|
|
856
|
+
currentTokenName?: string;
|
|
857
|
+
selectorItems?: readonly SelectorItem[];
|
|
858
|
+
onSelect?: (tokenName: string) => void;
|
|
859
|
+
};
|
|
860
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
861
|
+
|
|
835
862
|
type IpoStatus = 'PENDING' | 'LIVE' | 'CLOSED' | 'CANCELLED';
|
|
836
863
|
type SaleData = {
|
|
837
864
|
loading: boolean;
|
|
@@ -883,6 +910,8 @@ type PropertyBuyProps = {
|
|
|
883
910
|
recentOrders?: readonly IpoRecentOrder[];
|
|
884
911
|
ordersAllocated?: number;
|
|
885
912
|
subscribers?: number;
|
|
913
|
+
selectorItems?: readonly SelectorItem[];
|
|
914
|
+
onSelectorSelect?: (tokenName: string) => void;
|
|
886
915
|
portfolioActivity?: {
|
|
887
916
|
positions?: readonly PortfolioPosition[];
|
|
888
917
|
onPositionClick?: (tokenName: string, isIpo: boolean) => void;
|
|
@@ -895,7 +924,7 @@ type PropertyBuyProps = {
|
|
|
895
924
|
cancellingOrderId?: number | null;
|
|
896
925
|
};
|
|
897
926
|
};
|
|
898
|
-
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, tokenDisplayName, tokenSymbol, tokenName, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, opensAt, isPrivateClient, recentOrders, ordersAllocated, subscribers, portfolioActivity, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
927
|
+
declare function PropertyBuy({ propertyName, propertyLocation: propertyLocationLabel, tokenDisplayName, tokenSymbol, tokenName, isAuthenticated, onSignIn, saleData, walletUsdcBalance, walletPropertyTokenBalance, onPurchase, purchaseStatus, purchaseError, onDeposit, opensAt, isPrivateClient, recentOrders, ordersAllocated, subscribers, selectorItems, onSelectorSelect, portfolioActivity, }: PropertyBuyProps): react_jsx_runtime.JSX.Element;
|
|
899
928
|
|
|
900
929
|
type OwnerBookingProps = {
|
|
901
930
|
propertyName?: string | null;
|
|
@@ -1007,4 +1036,4 @@ declare function ToastProvider({ children }: {
|
|
|
1007
1036
|
}): react_jsx_runtime.JSX.Element;
|
|
1008
1037
|
declare function useToast(): ToastContextValue;
|
|
1009
1038
|
|
|
1010
|
-
export { type ActivityTabId, 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, 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 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 };
|
|
1039
|
+
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, 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, 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 };
|