@timardex/cluemart-shared 1.5.533 → 1.5.535

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
@@ -758,7 +758,7 @@ declare const IMAGE_EXTENSION: ".webp";
758
758
  * This object is the single source of poster keys; `posters` is derived from it. Add an image with `IMAGE_EXTENSION` under `src/images/posters/` when adding an entry.
759
759
  * `images/node` reads this at runtime for `getSharedImagePath` allow-listing.
760
760
  */
761
- declare const posterIds: readonly ["poster1", "poster2", "poster3"];
761
+ declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3"];
762
762
  declare const posterFiles: { readonly [K in (typeof posterIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
763
763
  /**
764
764
  * Basenames for assets under `src/images/clui/` in source; they are copied flat into `dist/images/` (same as posters).
package/dist/index.d.ts CHANGED
@@ -758,7 +758,7 @@ declare const IMAGE_EXTENSION: ".webp";
758
758
  * This object is the single source of poster keys; `posters` is derived from it. Add an image with `IMAGE_EXTENSION` under `src/images/posters/` when adding an entry.
759
759
  * `images/node` reads this at runtime for `getSharedImagePath` allow-listing.
760
760
  */
761
- declare const posterIds: readonly ["poster1", "poster2", "poster3"];
761
+ declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3"];
762
762
  declare const posterFiles: { readonly [K in (typeof posterIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
763
763
  /**
764
764
  * Basenames for assets under `src/images/clui/` in source; they are copied flat into `dist/images/` (same as posters).
package/dist/index.mjs CHANGED
@@ -8177,7 +8177,16 @@ function useSchoolForm(data) {
8177
8177
  // src/images/index.ts
8178
8178
  var PKG = "@timardex/cluemart-shared";
8179
8179
  var IMAGE_EXTENSION = ".webp";
8180
- var posterIds = ["poster1", "poster2", "poster3"];
8180
+ var posterIds = [
8181
+ "mini-market1",
8182
+ "mini-market2",
8183
+ "mini-market3",
8184
+ "mini-market4",
8185
+ "mini-market5",
8186
+ "poster1",
8187
+ "poster2",
8188
+ "poster3"
8189
+ ];
8181
8190
  var posterFiles = Object.fromEntries(
8182
8191
  posterIds.map((id) => [id, `${id}${IMAGE_EXTENSION}`])
8183
8192
  );