@loafmarkets/ui 0.1.136 → 0.1.138
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 +6 -3
- package/dist/index.d.ts +6 -3
- package/dist/index.js +390 -113
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +390 -113
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -750,10 +750,12 @@ type PropertyOverviewProps = {
|
|
|
750
750
|
propertyTypeLabel?: string | null;
|
|
751
751
|
minimumParticipation?: number | null;
|
|
752
752
|
tokensIssued?: number | null;
|
|
753
|
-
/** When true, financial grid values render as skeletons instead of 'N/A'. */
|
|
754
753
|
isLoading?: boolean;
|
|
754
|
+
ticker?: string;
|
|
755
|
+
contractAddress?: string;
|
|
756
|
+
chain?: string;
|
|
755
757
|
};
|
|
756
|
-
declare function PropertyOverview({ propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel,
|
|
758
|
+
declare function PropertyOverview({ propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
757
759
|
|
|
758
760
|
type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
|
|
759
761
|
type PropertyOffer = {
|
|
@@ -767,8 +769,9 @@ type PropertyOffer = {
|
|
|
767
769
|
};
|
|
768
770
|
type PropertyOffersProps = {
|
|
769
771
|
offers: PropertyOffer[];
|
|
772
|
+
totalShares?: number | null;
|
|
770
773
|
};
|
|
771
|
-
declare function PropertyOffers({ offers }: PropertyOffersProps): react_jsx_runtime.JSX.Element;
|
|
774
|
+
declare function PropertyOffers({ offers, totalShares }: PropertyOffersProps): react_jsx_runtime.JSX.Element;
|
|
772
775
|
|
|
773
776
|
declare function PropertyHistory(): react_jsx_runtime.JSX.Element;
|
|
774
777
|
|
package/dist/index.d.ts
CHANGED
|
@@ -750,10 +750,12 @@ type PropertyOverviewProps = {
|
|
|
750
750
|
propertyTypeLabel?: string | null;
|
|
751
751
|
minimumParticipation?: number | null;
|
|
752
752
|
tokensIssued?: number | null;
|
|
753
|
-
/** When true, financial grid values render as skeletons instead of 'N/A'. */
|
|
754
753
|
isLoading?: boolean;
|
|
754
|
+
ticker?: string;
|
|
755
|
+
contractAddress?: string;
|
|
756
|
+
chain?: string;
|
|
755
757
|
};
|
|
756
|
-
declare function PropertyOverview({ propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel,
|
|
758
|
+
declare function PropertyOverview({ propertyName, location, midPrice, onTradeClick, onPhotosClick, description: descriptionProp, tradeButtonLabel, images, galleryCategories, videoUrl, tokenName, landSizeSqm: landProp, buildingSizeSqm: buildingProp, features: featuresProp, propertyInfo: propertyInfoProp, overviewData, bedrooms, bathrooms, carSpaces, propertyTypeLabel, tokensIssued: tokensIssuedProp, isLoading, ticker, contractAddress, chain, }: PropertyOverviewProps): react_jsx_runtime.JSX.Element;
|
|
757
759
|
|
|
758
760
|
type OfferStatus = 'active' | 'rejected' | 'expired' | 'historical' | 'pending';
|
|
759
761
|
type PropertyOffer = {
|
|
@@ -767,8 +769,9 @@ type PropertyOffer = {
|
|
|
767
769
|
};
|
|
768
770
|
type PropertyOffersProps = {
|
|
769
771
|
offers: PropertyOffer[];
|
|
772
|
+
totalShares?: number | null;
|
|
770
773
|
};
|
|
771
|
-
declare function PropertyOffers({ offers }: PropertyOffersProps): react_jsx_runtime.JSX.Element;
|
|
774
|
+
declare function PropertyOffers({ offers, totalShares }: PropertyOffersProps): react_jsx_runtime.JSX.Element;
|
|
772
775
|
|
|
773
776
|
declare function PropertyHistory(): react_jsx_runtime.JSX.Element;
|
|
774
777
|
|