@scayle/storefront-product-detail 1.6.0 → 1.6.2
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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @scayle/storefront-product-detail
|
|
2
2
|
|
|
3
|
+
## 1.6.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix export of `useSellableTimeFrame` composable.
|
|
8
|
+
|
|
9
|
+
## 1.6.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Exposed the `useSellableTimeFrame` composable for determining the current status of a product's sellable timeframe.
|
|
14
|
+
|
|
3
15
|
## 1.6.0
|
|
4
16
|
|
|
5
17
|
### Minor 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.2";
|
|
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