@gem-sdk/plugin-sticky-add-to-cart 2.0.0-dev.324 → 2.0.0-dev.348
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/cjs/index.js +5 -3
- package/dist/esm/index.js +5 -3
- package/dist/types/index.d.ts +3 -2
- package/package.json +3 -3
- package/dist/cjs/setting/index.js +0 -11
- package/dist/esm/setting/index.js +0 -7
package/dist/cjs/index.js
CHANGED
|
@@ -3,9 +3,11 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var StickyAddToCart = require('./components/StickyAddToCart.js');
|
|
6
|
-
var
|
|
7
|
-
|
|
6
|
+
var StickyAddToCart$1 = require('./setting/StickyAddToCart.js');
|
|
8
7
|
|
|
8
|
+
const builderSetting = {
|
|
9
|
+
StickyAddToCart: StickyAddToCart$1.default
|
|
10
|
+
};
|
|
9
11
|
|
|
10
12
|
exports.default = StickyAddToCart.default;
|
|
11
|
-
exports.builderSetting =
|
|
13
|
+
exports.builderSetting = builderSetting;
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import StickyAddToCart from './components/StickyAddToCart.js';
|
|
2
|
-
|
|
2
|
+
import config from './setting/StickyAddToCart.js';
|
|
3
3
|
|
|
4
|
+
const builderSetting = {
|
|
5
|
+
StickyAddToCart: config
|
|
6
|
+
};
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
export { StickyAddToCart as default };
|
|
8
|
+
export { builderSetting, StickyAddToCart as default };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2,10 +2,11 @@ import * as _gem_sdk_core from '@gem-sdk/core';
|
|
|
2
2
|
import { BaseProps } from '@gem-sdk/core';
|
|
3
3
|
|
|
4
4
|
type StickyAddToCartProps = BaseProps;
|
|
5
|
+
|
|
5
6
|
declare const StickyAddToCart: React.FC<StickyAddToCartProps>;
|
|
6
7
|
|
|
7
|
-
declare const
|
|
8
|
+
declare const builderSetting: {
|
|
8
9
|
StickyAddToCart: _gem_sdk_core.ComponentSetting<StickyAddToCartProps>;
|
|
9
10
|
};
|
|
10
11
|
|
|
11
|
-
export {
|
|
12
|
+
export { builderSetting, StickyAddToCart as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/plugin-sticky-add-to-cart",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.348",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"test": "jest -c ./../../helpers/jest.config.ts"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@gem-sdk/components": "2.0.0-dev.
|
|
23
|
-
"@gem-sdk/core": "2.0.0-dev.
|
|
22
|
+
"@gem-sdk/components": "2.0.0-dev.348",
|
|
23
|
+
"@gem-sdk/core": "2.0.0-dev.345",
|
|
24
24
|
"@gem-sdk/styles": "2.0.0-dev.324"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|