@loafmarkets/ui 0.1.414 → 0.1.416
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 +87 -2
- package/dist/index.d.ts +87 -2
- package/dist/index.js +1836 -583
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1609 -360
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -290,6 +290,36 @@ type PropertyNewsItem = {
|
|
|
290
290
|
url?: string;
|
|
291
291
|
summary?: string;
|
|
292
292
|
sentimentScore?: number;
|
|
293
|
+
/** Urgency flag owned by the news service (enricher sets it at impact_score >= 8). */
|
|
294
|
+
breaking?: boolean;
|
|
295
|
+
/** Enricher impact score, 0-10. Decides which breaking stories hold the two
|
|
296
|
+
* pinned slots (biggest first, user call 2026-08-24). Unset = treated as 8,
|
|
297
|
+
* the floor a breaking story can have. */
|
|
298
|
+
impactScore?: number;
|
|
299
|
+
/** Raw ISO publish time. `date` is display-formatted, so recency needs its own field. */
|
|
300
|
+
publishedAt?: string;
|
|
301
|
+
/** One-line "why this matters" from the enricher. */
|
|
302
|
+
impactRationale?: string;
|
|
303
|
+
/** Raw tickers the enricher attached to the article (may be external symbols). */
|
|
304
|
+
tickers?: string[];
|
|
305
|
+
/** The PLATFORM asset this property update is about, resolved by the consumer
|
|
306
|
+
* against the listed assets (hub matches `tickers` to its market list).
|
|
307
|
+
* Renders as a square thumbnail badge on home property rows — identifying
|
|
308
|
+
* which asset the story belongs to, since the home feed compiles property
|
|
309
|
+
* updates across ALL assets. Unset = unmatched = no badge (rule #9).
|
|
310
|
+
* Single-badge fallback — prefer `assets` (plural). */
|
|
311
|
+
asset?: NewsBadgeAsset;
|
|
312
|
+
/** ALL platform assets the story ties to — one badge each, in order (a story
|
|
313
|
+
* can concern several properties, user call 2026-08-20). Takes precedence
|
|
314
|
+
* over the singular `asset`. */
|
|
315
|
+
assets?: NewsBadgeAsset[];
|
|
316
|
+
};
|
|
317
|
+
/** The badge's tooltip is name and ticker only (user call 2026-08-24: no price or % change). */
|
|
318
|
+
type NewsBadgeAsset = {
|
|
319
|
+
ticker: string;
|
|
320
|
+
tokenName?: string;
|
|
321
|
+
imageUrl?: string;
|
|
322
|
+
name?: string;
|
|
293
323
|
};
|
|
294
324
|
type PurchaseFeedItem = {
|
|
295
325
|
id: string;
|
|
@@ -310,7 +340,43 @@ interface PropertyNewsUpdatesProps extends React$1.HTMLAttributes<HTMLDivElement
|
|
|
310
340
|
viewAllLabel?: string;
|
|
311
341
|
connectionStatus?: "live" | "connecting";
|
|
312
342
|
disablePagination?: boolean;
|
|
343
|
+
/** Suppress the panel heading. The trade page's media panel already names
|
|
344
|
+
* the panel with its own "Headlines" tab, so the title is dead vertical space. */
|
|
345
|
+
hideHeading?: boolean;
|
|
346
|
+
/** Suppress the built-in All/Property/Market filter row. Pair with `category`
|
|
347
|
+
* when the consumer renders those filters itself (trade page media tab row). */
|
|
348
|
+
hideCategoryTabs?: boolean;
|
|
349
|
+
/** Controlled category filter. Falls back to internal state when omitted. */
|
|
350
|
+
category?: "all" | "property" | "market";
|
|
351
|
+
onCategoryChange?: (category: "all" | "property" | "market") => void;
|
|
352
|
+
/** Pin recent breaking items above the list, independent of the category filter. */
|
|
353
|
+
pinBreaking?: boolean;
|
|
354
|
+
/** Clicking a row's asset BADGE (and only the badge) opens the asset — the
|
|
355
|
+
* consumer navigates (hub → /trade/{tokenName}). Omitted → the badge is
|
|
356
|
+
* inert and the click falls through to the row's article popup. */
|
|
357
|
+
onAssetOpen?: (asset: {
|
|
358
|
+
ticker: string;
|
|
359
|
+
tokenName?: string;
|
|
360
|
+
imageUrl?: string;
|
|
361
|
+
name?: string;
|
|
362
|
+
price?: number;
|
|
363
|
+
changePercent?: number;
|
|
364
|
+
}) => void;
|
|
365
|
+
/** Show the square asset thumbnail(s) on property rows: which platform
|
|
366
|
+
* asset(s) the story is about. ON by default (user call 2026-08-24, which
|
|
367
|
+
* reversed the 22 Aug "hide for now"); pass `false` to hide them. */
|
|
368
|
+
showAssetBadges?: boolean;
|
|
313
369
|
}
|
|
370
|
+
declare const __resetDismissedBreaking: () => void;
|
|
371
|
+
declare function formatAge(publishedAt: string, now: number): string;
|
|
372
|
+
declare function rowAgeLabel(publishedAt: string | undefined, now: number): {
|
|
373
|
+
label: string;
|
|
374
|
+
fresh: boolean;
|
|
375
|
+
} | null;
|
|
376
|
+
declare function SentimentBar({ score, color }: {
|
|
377
|
+
score: number;
|
|
378
|
+
color: string;
|
|
379
|
+
}): react_jsx_runtime.JSX.Element;
|
|
314
380
|
declare const PropertyNewsUpdates: React$1.ForwardRefExoticComponent<PropertyNewsUpdatesProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
315
381
|
|
|
316
382
|
interface PropertyMediaRowProps {
|
|
@@ -1155,6 +1221,18 @@ type SelectorItem = {
|
|
|
1155
1221
|
readonly status: string;
|
|
1156
1222
|
readonly imageUrl?: string;
|
|
1157
1223
|
readonly badge?: string;
|
|
1224
|
+
readonly price?: number | null;
|
|
1225
|
+
readonly changePercent?: number | null;
|
|
1226
|
+
readonly volume24h?: number | null;
|
|
1227
|
+
readonly propertyValue?: number | null;
|
|
1228
|
+
/** Category pill (trade's shared/propertyType.ts getPropertyTypeBadge) — market rows only. */
|
|
1229
|
+
readonly typeBadge?: {
|
|
1230
|
+
readonly label: string;
|
|
1231
|
+
readonly color: string;
|
|
1232
|
+
readonly background: string;
|
|
1233
|
+
} | null;
|
|
1234
|
+
/** Competition-round asset — the row wears the arena gold crust + wash. */
|
|
1235
|
+
readonly isCompetition?: boolean;
|
|
1158
1236
|
};
|
|
1159
1237
|
type AssetSelectorMetric = {
|
|
1160
1238
|
label: string;
|
|
@@ -1173,12 +1251,19 @@ type AssetSelectorBarProps = {
|
|
|
1173
1251
|
selectorItems?: readonly SelectorItem[];
|
|
1174
1252
|
onSelect?: (tokenName: string) => void;
|
|
1175
1253
|
trailing?: ReactNode;
|
|
1254
|
+
/** Rendered immediately RIGHT of the name/ticker pill, before metrics (trade's
|
|
1255
|
+
* Key Stakeholders logo strip). `trailing` stays pushed to the far right. */
|
|
1256
|
+
afterName?: ReactNode;
|
|
1176
1257
|
imageUrl?: string;
|
|
1177
1258
|
badgeLabel?: string;
|
|
1178
1259
|
/** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
|
|
1179
1260
|
tickerPrimary?: boolean;
|
|
1261
|
+
/** Tight bars (trade's fullscreen header under ~1050px): the pill shows ONLY the ticker
|
|
1262
|
+
* ("YONG") and hovering it pops an instant tooltip with the full name. Falls back to the
|
|
1263
|
+
* full name when no ticker is known. Ignored when `tickerPrimary` is set. */
|
|
1264
|
+
compactName?: boolean;
|
|
1180
1265
|
};
|
|
1181
|
-
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
1266
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, afterName, imageUrl, badgeLabel, tickerPrimary, compactName, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
1182
1267
|
|
|
1183
1268
|
type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
|
|
1184
1269
|
type ToastData = {
|
|
@@ -1439,4 +1524,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
|
|
|
1439
1524
|
}>, maxPoints?: number): number[];
|
|
1440
1525
|
declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
|
|
1441
1526
|
|
|
1442
|
-
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 HeaderNavItem, type HeaderPortfolioData, type HeaderProps, HlsVideo, type HlsVideoProps, type HlsVideoSource, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, type LoafLiquidityDotState, 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 };
|
|
1527
|
+
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 HeaderNavItem, type HeaderPortfolioData, type HeaderProps, HlsVideo, type HlsVideoProps, type HlsVideoSource, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, type LoafLiquidityDotState, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type NewsBadgeAsset, 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, SentimentBar, 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, __resetDismissedBreaking, badgeVariants, buttonVariants, extractSparkline, formatAge, hasPendingActivity, rowAgeLabel, useAdaptivePolling, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -290,6 +290,36 @@ type PropertyNewsItem = {
|
|
|
290
290
|
url?: string;
|
|
291
291
|
summary?: string;
|
|
292
292
|
sentimentScore?: number;
|
|
293
|
+
/** Urgency flag owned by the news service (enricher sets it at impact_score >= 8). */
|
|
294
|
+
breaking?: boolean;
|
|
295
|
+
/** Enricher impact score, 0-10. Decides which breaking stories hold the two
|
|
296
|
+
* pinned slots (biggest first, user call 2026-08-24). Unset = treated as 8,
|
|
297
|
+
* the floor a breaking story can have. */
|
|
298
|
+
impactScore?: number;
|
|
299
|
+
/** Raw ISO publish time. `date` is display-formatted, so recency needs its own field. */
|
|
300
|
+
publishedAt?: string;
|
|
301
|
+
/** One-line "why this matters" from the enricher. */
|
|
302
|
+
impactRationale?: string;
|
|
303
|
+
/** Raw tickers the enricher attached to the article (may be external symbols). */
|
|
304
|
+
tickers?: string[];
|
|
305
|
+
/** The PLATFORM asset this property update is about, resolved by the consumer
|
|
306
|
+
* against the listed assets (hub matches `tickers` to its market list).
|
|
307
|
+
* Renders as a square thumbnail badge on home property rows — identifying
|
|
308
|
+
* which asset the story belongs to, since the home feed compiles property
|
|
309
|
+
* updates across ALL assets. Unset = unmatched = no badge (rule #9).
|
|
310
|
+
* Single-badge fallback — prefer `assets` (plural). */
|
|
311
|
+
asset?: NewsBadgeAsset;
|
|
312
|
+
/** ALL platform assets the story ties to — one badge each, in order (a story
|
|
313
|
+
* can concern several properties, user call 2026-08-20). Takes precedence
|
|
314
|
+
* over the singular `asset`. */
|
|
315
|
+
assets?: NewsBadgeAsset[];
|
|
316
|
+
};
|
|
317
|
+
/** The badge's tooltip is name and ticker only (user call 2026-08-24: no price or % change). */
|
|
318
|
+
type NewsBadgeAsset = {
|
|
319
|
+
ticker: string;
|
|
320
|
+
tokenName?: string;
|
|
321
|
+
imageUrl?: string;
|
|
322
|
+
name?: string;
|
|
293
323
|
};
|
|
294
324
|
type PurchaseFeedItem = {
|
|
295
325
|
id: string;
|
|
@@ -310,7 +340,43 @@ interface PropertyNewsUpdatesProps extends React$1.HTMLAttributes<HTMLDivElement
|
|
|
310
340
|
viewAllLabel?: string;
|
|
311
341
|
connectionStatus?: "live" | "connecting";
|
|
312
342
|
disablePagination?: boolean;
|
|
343
|
+
/** Suppress the panel heading. The trade page's media panel already names
|
|
344
|
+
* the panel with its own "Headlines" tab, so the title is dead vertical space. */
|
|
345
|
+
hideHeading?: boolean;
|
|
346
|
+
/** Suppress the built-in All/Property/Market filter row. Pair with `category`
|
|
347
|
+
* when the consumer renders those filters itself (trade page media tab row). */
|
|
348
|
+
hideCategoryTabs?: boolean;
|
|
349
|
+
/** Controlled category filter. Falls back to internal state when omitted. */
|
|
350
|
+
category?: "all" | "property" | "market";
|
|
351
|
+
onCategoryChange?: (category: "all" | "property" | "market") => void;
|
|
352
|
+
/** Pin recent breaking items above the list, independent of the category filter. */
|
|
353
|
+
pinBreaking?: boolean;
|
|
354
|
+
/** Clicking a row's asset BADGE (and only the badge) opens the asset — the
|
|
355
|
+
* consumer navigates (hub → /trade/{tokenName}). Omitted → the badge is
|
|
356
|
+
* inert and the click falls through to the row's article popup. */
|
|
357
|
+
onAssetOpen?: (asset: {
|
|
358
|
+
ticker: string;
|
|
359
|
+
tokenName?: string;
|
|
360
|
+
imageUrl?: string;
|
|
361
|
+
name?: string;
|
|
362
|
+
price?: number;
|
|
363
|
+
changePercent?: number;
|
|
364
|
+
}) => void;
|
|
365
|
+
/** Show the square asset thumbnail(s) on property rows: which platform
|
|
366
|
+
* asset(s) the story is about. ON by default (user call 2026-08-24, which
|
|
367
|
+
* reversed the 22 Aug "hide for now"); pass `false` to hide them. */
|
|
368
|
+
showAssetBadges?: boolean;
|
|
313
369
|
}
|
|
370
|
+
declare const __resetDismissedBreaking: () => void;
|
|
371
|
+
declare function formatAge(publishedAt: string, now: number): string;
|
|
372
|
+
declare function rowAgeLabel(publishedAt: string | undefined, now: number): {
|
|
373
|
+
label: string;
|
|
374
|
+
fresh: boolean;
|
|
375
|
+
} | null;
|
|
376
|
+
declare function SentimentBar({ score, color }: {
|
|
377
|
+
score: number;
|
|
378
|
+
color: string;
|
|
379
|
+
}): react_jsx_runtime.JSX.Element;
|
|
314
380
|
declare const PropertyNewsUpdates: React$1.ForwardRefExoticComponent<PropertyNewsUpdatesProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
315
381
|
|
|
316
382
|
interface PropertyMediaRowProps {
|
|
@@ -1155,6 +1221,18 @@ type SelectorItem = {
|
|
|
1155
1221
|
readonly status: string;
|
|
1156
1222
|
readonly imageUrl?: string;
|
|
1157
1223
|
readonly badge?: string;
|
|
1224
|
+
readonly price?: number | null;
|
|
1225
|
+
readonly changePercent?: number | null;
|
|
1226
|
+
readonly volume24h?: number | null;
|
|
1227
|
+
readonly propertyValue?: number | null;
|
|
1228
|
+
/** Category pill (trade's shared/propertyType.ts getPropertyTypeBadge) — market rows only. */
|
|
1229
|
+
readonly typeBadge?: {
|
|
1230
|
+
readonly label: string;
|
|
1231
|
+
readonly color: string;
|
|
1232
|
+
readonly background: string;
|
|
1233
|
+
} | null;
|
|
1234
|
+
/** Competition-round asset — the row wears the arena gold crust + wash. */
|
|
1235
|
+
readonly isCompetition?: boolean;
|
|
1158
1236
|
};
|
|
1159
1237
|
type AssetSelectorMetric = {
|
|
1160
1238
|
label: string;
|
|
@@ -1173,12 +1251,19 @@ type AssetSelectorBarProps = {
|
|
|
1173
1251
|
selectorItems?: readonly SelectorItem[];
|
|
1174
1252
|
onSelect?: (tokenName: string) => void;
|
|
1175
1253
|
trailing?: ReactNode;
|
|
1254
|
+
/** Rendered immediately RIGHT of the name/ticker pill, before metrics (trade's
|
|
1255
|
+
* Key Stakeholders logo strip). `trailing` stays pushed to the far right. */
|
|
1256
|
+
afterName?: ReactNode;
|
|
1176
1257
|
imageUrl?: string;
|
|
1177
1258
|
badgeLabel?: string;
|
|
1178
1259
|
/** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
|
|
1179
1260
|
tickerPrimary?: boolean;
|
|
1261
|
+
/** Tight bars (trade's fullscreen header under ~1050px): the pill shows ONLY the ticker
|
|
1262
|
+
* ("YONG") and hovering it pops an instant tooltip with the full name. Falls back to the
|
|
1263
|
+
* full name when no ticker is known. Ignored when `tickerPrimary` is set. */
|
|
1264
|
+
compactName?: boolean;
|
|
1180
1265
|
};
|
|
1181
|
-
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
1266
|
+
declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, afterName, imageUrl, badgeLabel, tickerPrimary, compactName, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
|
|
1182
1267
|
|
|
1183
1268
|
type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
|
|
1184
1269
|
type ToastData = {
|
|
@@ -1439,4 +1524,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
|
|
|
1439
1524
|
}>, maxPoints?: number): number[];
|
|
1440
1525
|
declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
|
|
1441
1526
|
|
|
1442
|
-
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 HeaderNavItem, type HeaderPortfolioData, type HeaderProps, HlsVideo, type HlsVideoProps, type HlsVideoSource, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, type LoafLiquidityDotState, 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 };
|
|
1527
|
+
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 HeaderNavItem, type HeaderPortfolioData, type HeaderProps, HlsVideo, type HlsVideoProps, type HlsVideoSource, type HousePositionOrderbook, type HousePositionPendingOrder, HousePositionSlider, HousePositionSliderMobile, type HousePositionSliderMobileOrderPayload, type HousePositionSliderMobileOrderbook, type HousePositionSliderMobileProps, type HousePositionSliderOrderPayload, type HousePositionSliderProps, type InspectionSlot, LoafLiquidityBadge, type LoafLiquidityDotState, LoafLiquidityLogo, type LoafLiquidityLogoProps, LoginPopup, type LoginPopupProps, MobileTradeNav, type MobileTradeNavItem, type MobileTradeNavProps, type NewsBadgeAsset, 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, SentimentBar, 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, __resetDismissedBreaking, badgeVariants, buttonVariants, extractSparkline, formatAge, hasPendingActivity, rowAgeLabel, useAdaptivePolling, useToast };
|