@loafmarkets/ui 0.1.63 → 0.1.65
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 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +261 -297
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +260 -297
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -206,6 +206,8 @@ type PropertyNewsItem = {
|
|
|
206
206
|
isNew?: boolean;
|
|
207
207
|
source?: string;
|
|
208
208
|
url?: string;
|
|
209
|
+
summary?: string;
|
|
210
|
+
sentimentScore?: number;
|
|
209
211
|
};
|
|
210
212
|
type PurchaseFeedItem = {
|
|
211
213
|
id: string;
|
|
@@ -222,10 +224,8 @@ interface PropertyNewsUpdatesProps extends React$1.HTMLAttributes<HTMLDivElement
|
|
|
222
224
|
/** "default" = trade/IPO pages, "home" = compact home page style, "purchases" = live purchase feed */
|
|
223
225
|
variant?: "default" | "home" | "purchases";
|
|
224
226
|
purchases?: PurchaseFeedItem[];
|
|
225
|
-
/** Home variant: "View All" link */
|
|
226
227
|
viewAllHref?: string;
|
|
227
228
|
viewAllLabel?: string;
|
|
228
|
-
/** Default variant: drives the LIVE/CONNECTING indicator in the header */
|
|
229
229
|
connectionStatus?: "live" | "connecting";
|
|
230
230
|
}
|
|
231
231
|
declare const PropertyNewsUpdates: React$1.ForwardRefExoticComponent<PropertyNewsUpdatesProps & React$1.RefAttributes<HTMLDivElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -206,6 +206,8 @@ type PropertyNewsItem = {
|
|
|
206
206
|
isNew?: boolean;
|
|
207
207
|
source?: string;
|
|
208
208
|
url?: string;
|
|
209
|
+
summary?: string;
|
|
210
|
+
sentimentScore?: number;
|
|
209
211
|
};
|
|
210
212
|
type PurchaseFeedItem = {
|
|
211
213
|
id: string;
|
|
@@ -222,10 +224,8 @@ interface PropertyNewsUpdatesProps extends React$1.HTMLAttributes<HTMLDivElement
|
|
|
222
224
|
/** "default" = trade/IPO pages, "home" = compact home page style, "purchases" = live purchase feed */
|
|
223
225
|
variant?: "default" | "home" | "purchases";
|
|
224
226
|
purchases?: PurchaseFeedItem[];
|
|
225
|
-
/** Home variant: "View All" link */
|
|
226
227
|
viewAllHref?: string;
|
|
227
228
|
viewAllLabel?: string;
|
|
228
|
-
/** Default variant: drives the LIVE/CONNECTING indicator in the header */
|
|
229
229
|
connectionStatus?: "live" | "connecting";
|
|
230
230
|
}
|
|
231
231
|
declare const PropertyNewsUpdates: React$1.ForwardRefExoticComponent<PropertyNewsUpdatesProps & React$1.RefAttributes<HTMLDivElement>>;
|