@loafmarkets/ui 0.1.85 → 0.1.86

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
@@ -824,7 +824,6 @@ interface TradeHistoryItem {
824
824
  readonly price: number;
825
825
  readonly executedAt: number;
826
826
  readonly fee: number;
827
- readonly status?: string;
828
827
  }
829
828
  interface TransferHistoryItem {
830
829
  readonly type: 'DEPOSIT' | 'WITHDRAWAL';
@@ -979,10 +978,12 @@ type OfferingProgressCardProps = {
979
978
  raisedAmount?: number;
980
979
  targetAmount?: number;
981
980
  isPrivateClient?: boolean;
981
+ /** "default" = full card with header/countdown, "compact" = bar-only, "home" = countdown left + spinner right */
982
+ variant?: 'default' | 'compact' | 'home';
982
983
  style?: React__default.CSSProperties;
983
984
  className?: string;
984
985
  };
985
- declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
986
+ declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
986
987
 
987
988
  type OwnerBookingProps = {
988
989
  propertyName?: string | null;
package/dist/index.d.ts CHANGED
@@ -824,7 +824,6 @@ interface TradeHistoryItem {
824
824
  readonly price: number;
825
825
  readonly executedAt: number;
826
826
  readonly fee: number;
827
- readonly status?: string;
828
827
  }
829
828
  interface TransferHistoryItem {
830
829
  readonly type: 'DEPOSIT' | 'WITHDRAWAL';
@@ -979,10 +978,12 @@ type OfferingProgressCardProps = {
979
978
  raisedAmount?: number;
980
979
  targetAmount?: number;
981
980
  isPrivateClient?: boolean;
981
+ /** "default" = full card with header/countdown, "compact" = bar-only, "home" = countdown left + spinner right */
982
+ variant?: 'default' | 'compact' | 'home';
982
983
  style?: React__default.CSSProperties;
983
984
  className?: string;
984
985
  };
985
- declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
986
+ declare function OfferingProgressCard({ ipoStarted, statusLabel, statusColor, ipoStatus, tokenPrice, offeringValuation, percentSold, totalSold, supplyToSell, opensAt, subscriberCount, raisedAmount, targetAmount, isPrivateClient, variant, style, className, }: OfferingProgressCardProps): react_jsx_runtime.JSX.Element;
986
987
 
987
988
  type OwnerBookingProps = {
988
989
  propertyName?: string | null;