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