@loafmarkets/ui 0.1.415 → 0.1.417

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
@@ -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 {
@@ -1151,10 +1217,25 @@ type SelectorItem = {
1151
1217
  readonly ticker: string;
1152
1218
  readonly streetAddress: string;
1153
1219
  readonly name?: string;
1154
- readonly suburb: string;
1220
+ /** Optional: Shared-Types 2.0.5 (commit b5560f3) removed `suburb` from SelectorItem
1221
+ * and nothing replaced it per row, so an item may simply not carry one. The IPO
1222
+ * row appends ", {suburb}" only when present; market rows never show it. */
1223
+ readonly suburb?: string;
1155
1224
  readonly status: string;
1156
1225
  readonly imageUrl?: string;
1157
1226
  readonly badge?: string;
1227
+ readonly price?: number | null;
1228
+ readonly changePercent?: number | null;
1229
+ readonly volume24h?: number | null;
1230
+ readonly propertyValue?: number | null;
1231
+ /** Category pill (trade's shared/propertyType.ts getPropertyTypeBadge) — market rows only. */
1232
+ readonly typeBadge?: {
1233
+ readonly label: string;
1234
+ readonly color: string;
1235
+ readonly background: string;
1236
+ } | null;
1237
+ /** Competition-round asset — the row wears the arena gold crust + wash. */
1238
+ readonly isCompetition?: boolean;
1158
1239
  };
1159
1240
  type AssetSelectorMetric = {
1160
1241
  label: string;
@@ -1173,12 +1254,19 @@ type AssetSelectorBarProps = {
1173
1254
  selectorItems?: readonly SelectorItem[];
1174
1255
  onSelect?: (tokenName: string) => void;
1175
1256
  trailing?: ReactNode;
1257
+ /** Rendered immediately RIGHT of the name/ticker pill, before metrics (trade's
1258
+ * Key Stakeholders logo strip). `trailing` stays pushed to the far right. */
1259
+ afterName?: ReactNode;
1176
1260
  imageUrl?: string;
1177
1261
  badgeLabel?: string;
1178
1262
  /** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
1179
1263
  tickerPrimary?: boolean;
1264
+ /** Tight bars (trade's fullscreen header under ~1050px): the pill shows ONLY the ticker
1265
+ * ("YONG") and hovering it pops an instant tooltip with the full name. Falls back to the
1266
+ * full name when no ticker is known. Ignored when `tickerPrimary` is set. */
1267
+ compactName?: boolean;
1180
1268
  };
1181
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1269
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, afterName, imageUrl, badgeLabel, tickerPrimary, compactName, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1182
1270
 
1183
1271
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
1184
1272
  type ToastData = {
@@ -1439,4 +1527,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
1439
1527
  }>, maxPoints?: number): number[];
1440
1528
  declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
1441
1529
 
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 };
1530
+ 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 {
@@ -1151,10 +1217,25 @@ type SelectorItem = {
1151
1217
  readonly ticker: string;
1152
1218
  readonly streetAddress: string;
1153
1219
  readonly name?: string;
1154
- readonly suburb: string;
1220
+ /** Optional: Shared-Types 2.0.5 (commit b5560f3) removed `suburb` from SelectorItem
1221
+ * and nothing replaced it per row, so an item may simply not carry one. The IPO
1222
+ * row appends ", {suburb}" only when present; market rows never show it. */
1223
+ readonly suburb?: string;
1155
1224
  readonly status: string;
1156
1225
  readonly imageUrl?: string;
1157
1226
  readonly badge?: string;
1227
+ readonly price?: number | null;
1228
+ readonly changePercent?: number | null;
1229
+ readonly volume24h?: number | null;
1230
+ readonly propertyValue?: number | null;
1231
+ /** Category pill (trade's shared/propertyType.ts getPropertyTypeBadge) — market rows only. */
1232
+ readonly typeBadge?: {
1233
+ readonly label: string;
1234
+ readonly color: string;
1235
+ readonly background: string;
1236
+ } | null;
1237
+ /** Competition-round asset — the row wears the arena gold crust + wash. */
1238
+ readonly isCompetition?: boolean;
1158
1239
  };
1159
1240
  type AssetSelectorMetric = {
1160
1241
  label: string;
@@ -1173,12 +1254,19 @@ type AssetSelectorBarProps = {
1173
1254
  selectorItems?: readonly SelectorItem[];
1174
1255
  onSelect?: (tokenName: string) => void;
1175
1256
  trailing?: ReactNode;
1257
+ /** Rendered immediately RIGHT of the name/ticker pill, before metrics (trade's
1258
+ * Key Stakeholders logo strip). `trailing` stays pushed to the far right. */
1259
+ afterName?: ReactNode;
1176
1260
  imageUrl?: string;
1177
1261
  badgeLabel?: string;
1178
1262
  /** Stack the TICKER as the primary label with the asset name beneath (InstrumentTile-style), instead of "Name (TICKER)". */
1179
1263
  tickerPrimary?: boolean;
1264
+ /** Tight bars (trade's fullscreen header under ~1050px): the pill shows ONLY the ticker
1265
+ * ("YONG") and hovering it pops an instant tooltip with the full name. Falls back to the
1266
+ * full name when no ticker is known. Ignored when `tickerPrimary` is set. */
1267
+ compactName?: boolean;
1180
1268
  };
1181
- declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, imageUrl, badgeLabel, tickerPrimary, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1269
+ declare function AssetSelectorBar({ propertyName, tokenPrice, offeringValuation, metrics: metricsProp, currentTokenName, selectorItems, onSelect, trailing, afterName, imageUrl, badgeLabel, tickerPrimary, compactName, }: AssetSelectorBarProps): react_jsx_runtime.JSX.Element;
1182
1270
 
1183
1271
  type ToastVariant = 'success' | 'error' | 'info' | 'pending' | 'sell';
1184
1272
  type ToastData = {
@@ -1439,4 +1527,4 @@ declare function extractSparkline(candles: ReadonlyArray<{
1439
1527
  }>, maxPoints?: number): number[];
1440
1528
  declare const SparklineChart: React__default.NamedExoticComponent<SparklineChartProps>;
1441
1529
 
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 };
1530
+ 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 };