@liquidcommerce/elements-sdk 2.2.2 → 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/README.md +1608 -557
- package/dist/index.esm.js +10170 -8144
- package/dist/types/core/auth.service.d.ts +10 -4
- package/dist/types/core/base-component.service.d.ts +3 -0
- package/dist/types/core/circuit-breaker.service.d.ts +54 -0
- package/dist/types/core/client/client-action.service.d.ts +13 -11
- package/dist/types/core/client/client-config.service.d.ts +5 -3
- package/dist/types/core/command/common-command.service.d.ts +2 -1
- package/dist/types/core/debug-panel/debug-panel.service.d.ts +43 -0
- package/dist/types/core/debug-panel/debug-panel.styles.d.ts +1 -0
- package/dist/types/core/fingerprint.service.d.ts +4 -9
- package/dist/types/core/google-tag-manager.service.d.ts +127 -2
- package/dist/types/core/logger/logger-factory.d.ts +3 -0
- package/dist/types/core/logger/logger.service.d.ts +8 -5
- package/dist/types/core/pubsub/interfaces/core.interface.d.ts +2 -3
- package/dist/types/core/pubsub/interfaces/product.interface.d.ts +0 -5
- package/dist/types/core/store/interfaces/cart.interface.d.ts +0 -1
- package/dist/types/core/store/interfaces/checkout.interface.d.ts +0 -1
- package/dist/types/core/store/interfaces/core.interface.d.ts +2 -2
- package/dist/types/core/store/interfaces/product.interface.d.ts +0 -1
- package/dist/types/core/store/store.service.d.ts +1 -0
- package/dist/types/core/telemetry/telemetry.interface.d.ts +80 -0
- package/dist/types/core/telemetry/telemetry.service.d.ts +27 -0
- package/dist/types/enums/core.enum.d.ts +0 -1
- package/dist/types/enums/debug.enum.d.ts +6 -0
- package/dist/types/enums/index.d.ts +1 -0
- package/dist/types/interfaces/core.interface.d.ts +2 -2
- package/dist/types/modules/address/address.command.d.ts +1 -3
- package/dist/types/modules/cart/cart.commands.d.ts +1 -1
- package/dist/types/modules/cart/cart.component.d.ts +1 -2
- package/dist/types/modules/cart/components/cart-footer.component.d.ts +1 -0
- package/dist/types/modules/cart/components/cart-item.component.d.ts +2 -6
- package/dist/types/modules/checkout/checkout.commands.d.ts +3 -2
- package/dist/types/modules/checkout/checkout.component.d.ts +1 -2
- package/dist/types/modules/checkout/components/checkout-summary-section.component.d.ts +2 -0
- package/dist/types/modules/checkout/components/information/checkout-delivery-information-form.component.d.ts +1 -1
- package/dist/types/modules/checkout/components/summary/checkout-item-quantity.component.d.ts +0 -2
- package/dist/types/modules/checkout/components/summary/checkout-item.component.d.ts +2 -1
- package/dist/types/modules/checkout/components/summary/checkout-items.component.d.ts +1 -0
- package/dist/types/modules/checkout/components/summary/checkout-place-order-button.component.d.ts +0 -1
- package/dist/types/modules/checkout/constant.d.ts +0 -1
- package/dist/types/modules/product/components/index.d.ts +1 -0
- package/dist/types/modules/product/components/product-add-to-cart-section.component.d.ts +1 -0
- package/dist/types/modules/product/components/product-interactions.component.d.ts +4 -1
- package/dist/types/modules/product/components/product-price.component.d.ts +1 -0
- package/dist/types/modules/product/components/product-retailers.component.d.ts +1 -0
- package/dist/types/modules/product/product.commands.d.ts +1 -1
- package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +13 -11
- package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +4 -9
- package/dist/types/static/icon/index.d.ts +0 -1
- package/dist/types/utils/format.d.ts +2 -1
- 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 +17 -17
- package/umd/elements.js +1 -1
- package/dist/types/static/icon/completed.icon.d.ts +0 -2
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",
|
|
@@ -68,32 +71,32 @@
|
|
|
68
71
|
"embeddable commerce"
|
|
69
72
|
],
|
|
70
73
|
"devDependencies": {
|
|
71
|
-
"@biomejs/biome": "2.2.
|
|
72
|
-
"@commitlint/cli": "^
|
|
73
|
-
"@commitlint/config-conventional": "^
|
|
74
|
+
"@biomejs/biome": "2.2.6",
|
|
75
|
+
"@commitlint/cli": "^20.1.0",
|
|
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
|
-
"@rollup/plugin-node-resolve": "^
|
|
80
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
78
81
|
"@rollup/plugin-replace": "^6.0.2",
|
|
79
82
|
"@rollup/plugin-terser": "^0.4.4",
|
|
80
83
|
"@semantic-release/changelog": "^6.0.3",
|
|
81
84
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
82
85
|
"@semantic-release/git": "^10.0.1",
|
|
83
|
-
"@semantic-release/github": "^
|
|
84
|
-
"@semantic-release/npm": "^
|
|
86
|
+
"@semantic-release/github": "^12.0.0",
|
|
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",
|
|
91
|
-
"rollup": "^4.52.
|
|
94
|
+
"rollup": "^4.52.4",
|
|
92
95
|
"rollup-obfuscator": "^4.1.1",
|
|
93
96
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
94
97
|
"semantic-release": "^24.2.9",
|
|
95
98
|
"ts-node": "^10.9.2",
|
|
96
|
-
"typescript": "^5.9.
|
|
99
|
+
"typescript": "^5.9.3"
|
|
97
100
|
},
|
|
98
101
|
"engines": {
|
|
99
102
|
"node": ">=20"
|
|
@@ -105,9 +108,6 @@
|
|
|
105
108
|
"onlyBuiltDependencies": [
|
|
106
109
|
"@biomejs/biome",
|
|
107
110
|
"javascript-obfuscator"
|
|
108
|
-
]
|
|
109
|
-
"overrides": {
|
|
110
|
-
"@conventional-changelog/git-client@<2.0.0": ">=2.0.0"
|
|
111
|
-
}
|
|
111
|
+
]
|
|
112
112
|
}
|
|
113
113
|
}
|