@loafmarkets/ui 0.1.416 → 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
@@ -1217,7 +1217,10 @@ type SelectorItem = {
1217
1217
  readonly ticker: string;
1218
1218
  readonly streetAddress: string;
1219
1219
  readonly name?: string;
1220
- 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;
1221
1224
  readonly status: string;
1222
1225
  readonly imageUrl?: string;
1223
1226
  readonly badge?: string;
package/dist/index.d.ts CHANGED
@@ -1217,7 +1217,10 @@ type SelectorItem = {
1217
1217
  readonly ticker: string;
1218
1218
  readonly streetAddress: string;
1219
1219
  readonly name?: string;
1220
- 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;
1221
1224
  readonly status: string;
1222
1225
  readonly imageUrl?: string;
1223
1226
  readonly badge?: string;