@timardex/cluemart-shared 1.5.529 → 1.5.530
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-IBKLW65U.mjs → chunk-4PJQMQVX.mjs} +10 -2
- package/dist/chunk-4PJQMQVX.mjs.map +1 -0
- package/dist/{chunk-PYMLMTOQ.mjs → chunk-G2YFRN6A.mjs} +1 -1
- package/dist/{chunk-PYMLMTOQ.mjs.map → chunk-G2YFRN6A.mjs.map} +1 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +6 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/images/cluiTui.png +0 -0
- package/dist/images/cluiTui.png.d.ts +2 -0
- package/dist/images/index.cjs +10 -0
- package/dist/images/index.cjs.map +1 -1
- package/dist/images/index.d.mts +17 -2
- package/dist/images/index.d.ts +17 -2
- package/dist/images/index.mjs +5 -1
- package/dist/images/node.cjs +26 -20
- package/dist/images/node.d.ts +19 -7
- package/dist/images/node.mjs +21 -19
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +17 -2
- package/dist/index.d.ts +17 -2
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-IBKLW65U.mjs.map +0 -1
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4491,9 +4491,15 @@ var posterFiles = {
|
|
|
4491
4491
|
poster2: "poster2.png",
|
|
4492
4492
|
poster3: "poster3.png"
|
|
4493
4493
|
};
|
|
4494
|
+
var otherFiles = {
|
|
4495
|
+
cluiTui: "cluiTui.png"
|
|
4496
|
+
};
|
|
4494
4497
|
var posters = Object.fromEntries(
|
|
4495
4498
|
Object.entries(posterFiles).map(([key, file]) => [key, `${PKG}/images/${file}`])
|
|
4496
4499
|
);
|
|
4500
|
+
var otherImages = Object.fromEntries(
|
|
4501
|
+
Object.entries(otherFiles).map(([key, file]) => [key, `${PKG}/images/${file}`])
|
|
4502
|
+
);
|
|
4497
4503
|
|
|
4498
4504
|
// src/types/post.ts
|
|
4499
4505
|
var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|