@liquidcommerce/elements-sdk 2.1.0-beta.60 → 2.1.0-beta.62
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.
|
@@ -60,7 +60,7 @@ export interface IProcessInjectElementParams {
|
|
|
60
60
|
export interface ILiquidCommerceElementsUIMethod {
|
|
61
61
|
cartButton(containerId: string, showItemsCount?: boolean): void;
|
|
62
62
|
floatingCartButton(showItemsCount?: boolean): void;
|
|
63
|
-
|
|
63
|
+
cartSubtotal(elementId: string): void;
|
|
64
64
|
cartItemsCount(elementId: string): void;
|
|
65
65
|
}
|
|
66
66
|
export interface ILiquidCommerceElementsActions {
|
|
@@ -18,6 +18,7 @@ export declare class DrawerComponent extends BaseComponent {
|
|
|
18
18
|
private cleanupCurrentContent;
|
|
19
19
|
private handleBackdropClick;
|
|
20
20
|
private handleKeydown;
|
|
21
|
+
private updateDrawerContentTypeClass;
|
|
21
22
|
private updateDrawerState;
|
|
22
23
|
private isElementsEnabled;
|
|
23
24
|
protected template(): HTMLElement;
|
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.1.0-beta.
|
|
6
|
+
"version": "2.1.0-beta.62",
|
|
7
7
|
"homepage": "https://docs.liquidcommerce.co/elements-sdk",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -78,20 +78,20 @@
|
|
|
78
78
|
"@rollup/plugin-replace": "^6.0.2",
|
|
79
79
|
"@rollup/plugin-terser": "^0.4.4",
|
|
80
80
|
"@semantic-release/changelog": "^6.0.3",
|
|
81
|
-
"@semantic-release/commit-analyzer": "^13.0.
|
|
81
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
82
82
|
"@semantic-release/git": "^10.0.1",
|
|
83
83
|
"@semantic-release/github": "^11.0.6",
|
|
84
84
|
"@semantic-release/npm": "^12.0.2",
|
|
85
|
-
"@semantic-release/release-notes-generator": "^14.
|
|
85
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
86
86
|
"@types/core-js": "^2.5.8",
|
|
87
87
|
"@types/node": "^24.5.2",
|
|
88
88
|
"conventional-changelog-cli": "^5.0.0",
|
|
89
89
|
"husky": "^9.1.7",
|
|
90
90
|
"process": "^0.11.10",
|
|
91
|
-
"rollup": "^4.
|
|
91
|
+
"rollup": "^4.52.2",
|
|
92
92
|
"rollup-obfuscator": "^4.1.1",
|
|
93
93
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
94
|
-
"semantic-release": "^24.2.
|
|
94
|
+
"semantic-release": "^24.2.9",
|
|
95
95
|
"ts-node": "^10.9.2",
|
|
96
96
|
"typescript": "^5.9.2"
|
|
97
97
|
},
|
|
@@ -105,6 +105,9 @@
|
|
|
105
105
|
"onlyBuiltDependencies": [
|
|
106
106
|
"@biomejs/biome",
|
|
107
107
|
"javascript-obfuscator"
|
|
108
|
-
]
|
|
108
|
+
],
|
|
109
|
+
"overrides": {
|
|
110
|
+
"@conventional-changelog/git-client@<2.0.0": ">=2.0.0"
|
|
111
|
+
}
|
|
109
112
|
}
|
|
110
113
|
}
|