@liquidcommerce/elements-sdk 2.3.0 → 2.4.0
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/index.esm.js +7942 -7627
- package/dist/types/core/google-tag-manager.service.d.ts +1 -0
- package/dist/types/modules/cart/components/cart-footer.component.d.ts +1 -0
- package/dist/types/modules/cart/components/cart-item.component.d.ts +1 -0
- package/dist/types/modules/checkout/components/checkout-summary-section.component.d.ts +2 -0
- package/dist/types/modules/checkout/components/summary/checkout-items.component.d.ts +1 -0
- package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +1 -0
- package/docs/ACTIONS.md +1235 -0
- package/docs/BROWSER_SUPPORT.md +279 -0
- package/docs/CONFIGURATION.md +613 -0
- package/docs/DOCUMENTATION_INDEX.md +311 -0
- package/docs/EVENTS.md +532 -0
- package/docs/PROXY.md +228 -0
- package/docs/THEMING.md +592 -0
- package/docs/TROUBLESHOOTING.md +755 -0
- package/package.json +8 -5
- package/umd/elements.js +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "LiquidCommerce Elements SDK",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "LiquidCommerce Team",
|
|
6
|
-
"version": "2.
|
|
6
|
+
"version": "2.4.0",
|
|
7
7
|
"homepage": "https://docs.liquidcommerce.co/elements-sdk",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"files": [
|
|
29
29
|
"dist",
|
|
30
30
|
"umd",
|
|
31
|
-
"
|
|
31
|
+
"docs",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
32
34
|
],
|
|
33
35
|
"publishConfig": {
|
|
34
36
|
"access": "public",
|
|
@@ -54,7 +56,8 @@
|
|
|
54
56
|
"clean": "rm -rf dist umd",
|
|
55
57
|
"clean:hard": "rm -rf dist umd node_modules && pnpm install && pnpm build",
|
|
56
58
|
"prepublishOnly": "pnpm run build",
|
|
57
|
-
"deprecate:old": "npm deprecate @liquidcommerceteam/elements-sdk@\"*\" \"Package moved to @liquidcommerce/elements-sdk\""
|
|
59
|
+
"deprecate:old": "npm deprecate @liquidcommerceteam/elements-sdk@\"*\" \"Package moved to @liquidcommerce/elements-sdk\"",
|
|
60
|
+
"prepare": "husky"
|
|
58
61
|
},
|
|
59
62
|
"keywords": [
|
|
60
63
|
"liquidcommerce",
|
|
@@ -72,7 +75,7 @@
|
|
|
72
75
|
"@commitlint/cli": "^20.1.0",
|
|
73
76
|
"@commitlint/config-conventional": "^20.0.0",
|
|
74
77
|
"@rollup/plugin-alias": "^5.1.1",
|
|
75
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
78
|
+
"@rollup/plugin-commonjs": "^28.0.8",
|
|
76
79
|
"@rollup/plugin-json": "^6.1.0",
|
|
77
80
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
78
81
|
"@rollup/plugin-replace": "^6.0.2",
|
|
@@ -84,7 +87,7 @@
|
|
|
84
87
|
"@semantic-release/npm": "^13.0.0",
|
|
85
88
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
86
89
|
"@types/core-js": "^2.5.8",
|
|
87
|
-
"@types/node": "^24.
|
|
90
|
+
"@types/node": "^24.8.0",
|
|
88
91
|
"conventional-changelog-cli": "^5.0.0",
|
|
89
92
|
"husky": "^9.1.7",
|
|
90
93
|
"process": "^0.11.10",
|