@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/{chunk-TXHYVMOH.mjs → chunk-N26FUCHY.mjs} +11 -2
- package/dist/chunk-N26FUCHY.mjs.map +1 -0
- package/dist/hooks/index.cjs +10 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/images/index.cjs +10 -1
- package/dist/images/index.cjs.map +1 -1
- package/dist/images/index.d.mts +1 -1
- package/dist/images/index.d.ts +1 -1
- package/dist/images/index.mjs +1 -1
- package/dist/images/mini-market1.webp +0 -0
- package/dist/images/mini-market1.webp.d.ts +2 -0
- package/dist/images/mini-market2.webp +0 -0
- package/dist/images/mini-market2.webp.d.ts +2 -0
- package/dist/images/mini-market3.webp +0 -0
- package/dist/images/mini-market3.webp.d.ts +2 -0
- package/dist/images/mini-market4.webp +0 -0
- package/dist/images/mini-market4.webp.d.ts +2 -0
- package/dist/images/mini-market5.webp +0 -0
- package/dist/images/mini-market5.webp.d.ts +2 -0
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-TXHYVMOH.mjs.map +0 -1
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 = [
|
|
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
|
);
|