@timardex/cluemart-shared 1.5.567 → 1.5.569
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-I7WE3EBR.mjs → chunk-J7JHBSR7.mjs} +12 -8
- package/dist/chunk-J7JHBSR7.mjs.map +1 -0
- package/dist/{chunk-N26FUCHY.mjs → chunk-S2VBOUOO.mjs} +7 -2
- package/dist/chunk-S2VBOUOO.mjs.map +1 -0
- package/dist/hooks/index.cjs +6 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/images/index.cjs +6 -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/poster4.webp +0 -0
- package/dist/images/poster4.webp.d.ts +2 -0
- package/dist/images/poster5.webp +0 -0
- package/dist/images/poster5.webp.d.ts +2 -0
- package/dist/images/poster6.webp +0 -0
- package/dist/images/poster6.webp.d.ts +2 -0
- package/dist/images/poster7.webp +0 -0
- package/dist/images/poster7.webp.d.ts +2 -0
- package/dist/index.cjs +17 -8
- 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 +17 -8
- package/dist/index.mjs.map +1 -1
- package/dist/theme/index.cjs +11 -7
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-I7WE3EBR.mjs.map +0 -1
- package/dist/chunk-N26FUCHY.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -764,7 +764,7 @@ declare const IMAGE_EXTENSION: ".webp";
|
|
|
764
764
|
* 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.
|
|
765
765
|
* `images/node` reads this at runtime for `getSharedImagePath` allow-listing.
|
|
766
766
|
*/
|
|
767
|
-
declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3"];
|
|
767
|
+
declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3", "poster4", "poster5", "poster6", "poster7"];
|
|
768
768
|
declare const posterFiles: { readonly [K in (typeof posterIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
769
769
|
/**
|
|
770
770
|
* 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
|
@@ -764,7 +764,7 @@ declare const IMAGE_EXTENSION: ".webp";
|
|
|
764
764
|
* 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.
|
|
765
765
|
* `images/node` reads this at runtime for `getSharedImagePath` allow-listing.
|
|
766
766
|
*/
|
|
767
|
-
declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3"];
|
|
767
|
+
declare const posterIds: readonly ["mini-market1", "mini-market2", "mini-market3", "mini-market4", "mini-market5", "poster1", "poster2", "poster3", "poster4", "poster5", "poster6", "poster7"];
|
|
768
768
|
declare const posterFiles: { readonly [K in (typeof posterIds)[number]]: `${K}${typeof IMAGE_EXTENSION}`; };
|
|
769
769
|
/**
|
|
770
770
|
* Basenames for assets under `src/images/clui/` in source; they are copied flat into `dist/images/` (same as posters).
|
package/dist/index.mjs
CHANGED
|
@@ -8293,7 +8293,12 @@ var posterIds = [
|
|
|
8293
8293
|
"mini-market5",
|
|
8294
8294
|
"poster1",
|
|
8295
8295
|
"poster2",
|
|
8296
|
-
"poster3"
|
|
8296
|
+
"poster3",
|
|
8297
|
+
// New
|
|
8298
|
+
"poster4",
|
|
8299
|
+
"poster5",
|
|
8300
|
+
"poster6",
|
|
8301
|
+
"poster7"
|
|
8297
8302
|
];
|
|
8298
8303
|
var posterFiles = Object.fromEntries(
|
|
8299
8304
|
posterIds.map((id) => [id, `${id}${IMAGE_EXTENSION}`])
|
|
@@ -8374,22 +8379,26 @@ var SAVED_REFRESH_TOKEN_KEY = "savedRefreshToken";
|
|
|
8374
8379
|
var USER_STORAGE_KEY = "authUser";
|
|
8375
8380
|
|
|
8376
8381
|
// src/theme/index.ts
|
|
8382
|
+
var primaryColor = "#ff7a00";
|
|
8383
|
+
var secondaryColor = "#371134";
|
|
8384
|
+
var tertiaryColor = "#191a75";
|
|
8385
|
+
var quaternaryColor = "#3b7c67";
|
|
8377
8386
|
var darkColors = {
|
|
8378
8387
|
background: "#3D3D3F",
|
|
8379
8388
|
card: "#1c1c1e",
|
|
8380
8389
|
primary: "#ff7a00",
|
|
8381
|
-
quaternary:
|
|
8382
|
-
secondary:
|
|
8383
|
-
tertiary:
|
|
8390
|
+
quaternary: quaternaryColor,
|
|
8391
|
+
secondary: secondaryColor,
|
|
8392
|
+
tertiary: tertiaryColor,
|
|
8384
8393
|
textMuted: "#8e8e93"
|
|
8385
8394
|
};
|
|
8386
8395
|
var lightColors = {
|
|
8387
8396
|
background: "#ffffff",
|
|
8388
8397
|
card: "#f1f2f6",
|
|
8389
|
-
primary:
|
|
8390
|
-
quaternary:
|
|
8391
|
-
secondary:
|
|
8392
|
-
tertiary:
|
|
8398
|
+
primary: primaryColor,
|
|
8399
|
+
quaternary: quaternaryColor,
|
|
8400
|
+
secondary: secondaryColor,
|
|
8401
|
+
tertiary: tertiaryColor,
|
|
8393
8402
|
textMuted: "#6c757d"
|
|
8394
8403
|
};
|
|
8395
8404
|
var fonts = {
|