@scayle/storefront-product-detail 1.6.1 → 1.6.3
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/CHANGELOG.md +12 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/index.d.ts +1 -0
- package/dist/runtime/index.js +1 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @scayle/storefront-product-detail
|
|
2
2
|
|
|
3
|
+
## 1.6.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- This is an internal change only. The packages now use the PNPM catalog feature to ensure dependencies use the identical version across packages.
|
|
8
|
+
|
|
9
|
+
## 1.6.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fix export of `useSellableTimeFrame` composable.
|
|
14
|
+
|
|
3
15
|
## 1.6.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const PACKAGE_NAME = "@scayle/storefront-product-detail";
|
|
4
|
-
const PACKAGE_VERSION = "1.6.
|
|
4
|
+
const PACKAGE_VERSION = "1.6.3";
|
|
5
5
|
const module$1 = defineNuxtModule({
|
|
6
6
|
meta: {
|
|
7
7
|
name: PACKAGE_NAME,
|
package/dist/runtime/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './composables/useProductSeoData.js';
|
|
2
2
|
export * from './composables/useAllShopProductsForId.js';
|
|
3
|
+
export * from './composables/useSellableTimeFrame.js';
|
|
3
4
|
export * from './utils/product.js';
|
|
4
5
|
export * from './utils/attribute.js';
|
|
5
6
|
export * from './utils/seo.js';
|
package/dist/runtime/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./composables/useProductSeoData.js";
|
|
2
2
|
export * from "./composables/useAllShopProductsForId.js";
|
|
3
|
+
export * from "./composables/useSellableTimeFrame.js";
|
|
3
4
|
export * from "./utils/product.js";
|
|
4
5
|
export * from "./utils/attribute.js";
|
|
5
6
|
export * from "./utils/seo.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scayle/storefront-product-detail",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Collection of essential composables and utilities to work with product detail",
|
|
5
5
|
"author": "SCAYLE Commerce Engine",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@nuxt/kit": ">=3.13.0",
|
|
32
32
|
"@scayle/storefront-nuxt": "^8.0.0",
|
|
33
|
-
"@vueuse/core": "^12.8.2 || ^13.0.0",
|
|
33
|
+
"@vueuse/core": "^12.8.2 || ^13.0.0 || ^14.0.0",
|
|
34
34
|
"schema-dts": "^1.1.5",
|
|
35
35
|
"vue-router": "^4.5.0",
|
|
36
36
|
"vue": "^3.5.13"
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"@nuxt/module-builder": "1.0.2",
|
|
42
42
|
"@nuxt/schema": "3.20.0",
|
|
43
43
|
"@nuxt/test-utils": "3.21.0",
|
|
44
|
-
"@types/node": "22.19.
|
|
45
|
-
"@vitest/coverage-v8": "4.0.
|
|
46
|
-
"@vueuse/core": "
|
|
44
|
+
"@types/node": "22.19.3",
|
|
45
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
46
|
+
"@vueuse/core": "14.1.0",
|
|
47
47
|
"dprint": "0.50.2",
|
|
48
48
|
"eslint-formatter-gitlab": "7.0.1",
|
|
49
|
-
"eslint": "9.39.
|
|
49
|
+
"eslint": "9.39.2",
|
|
50
50
|
"happy-dom": "20.0.11",
|
|
51
51
|
"nuxt": "3.20.0",
|
|
52
52
|
"publint": "0.3.16",
|
|
53
53
|
"schema-dts": "1.1.5",
|
|
54
54
|
"typescript": "5.9.3",
|
|
55
55
|
"unbuild": "3.6.1",
|
|
56
|
-
"vitest": "4.0.
|
|
57
|
-
"vue-router": "4.6.
|
|
56
|
+
"vitest": "4.0.16",
|
|
57
|
+
"vue-router": "4.6.4",
|
|
58
58
|
"vue-tsc": "3.1.8",
|
|
59
|
-
"vue": "3.5.
|
|
60
|
-
"@scayle/eslint-config-storefront": "4.7.
|
|
61
|
-
"@scayle/storefront-nuxt": "8.
|
|
59
|
+
"vue": "3.5.26",
|
|
60
|
+
"@scayle/eslint-config-storefront": "4.7.18",
|
|
61
|
+
"@scayle/storefront-nuxt": "8.57.2",
|
|
62
62
|
"@scayle/vitest-config-storefront": "1.0.0"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|