@digital-realty/ix-drawer 1.3.3 → 1.3.4-IXUAT-10996.538677
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/IxDrawer.d.ts +8 -8
- package/package.json +4 -10
package/dist/IxDrawer.d.ts
CHANGED
|
@@ -36,13 +36,13 @@ export declare class IxDrawer extends LitElement {
|
|
|
36
36
|
clickOutsideDrawer(event: MouseEvent): void;
|
|
37
37
|
handleCloseButton(): void;
|
|
38
38
|
handleClosing(): void;
|
|
39
|
-
renderCloseButton(): typeof nothing | import("lit
|
|
40
|
-
renderMinimiseButton(): typeof nothing | import("lit
|
|
41
|
-
renderMaximiseButton(): import("lit
|
|
42
|
-
renderDeleteButton(): import("lit
|
|
43
|
-
renderDeleteConfirmationDialog(): import("lit
|
|
44
|
-
renderMinimisedContainer(): import("lit
|
|
39
|
+
renderCloseButton(): typeof nothing | import("lit").TemplateResult<1>;
|
|
40
|
+
renderMinimiseButton(): typeof nothing | import("lit").TemplateResult<1>;
|
|
41
|
+
renderMaximiseButton(): import("lit").TemplateResult<1>;
|
|
42
|
+
renderDeleteButton(): import("lit").TemplateResult<1>;
|
|
43
|
+
renderDeleteConfirmationDialog(): import("lit").TemplateResult<1>;
|
|
44
|
+
renderMinimisedContainer(): import("lit").TemplateResult<1>;
|
|
45
45
|
handleHeaderFooterChange(): void;
|
|
46
|
-
renderDrawerContainer(): import("lit
|
|
47
|
-
render(): typeof nothing | import("lit
|
|
46
|
+
renderDrawerContainer(): import("lit").TemplateResult<1>;
|
|
47
|
+
render(): typeof nothing | import("lit").TemplateResult<1>;
|
|
48
48
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent ix-drawer following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "interxion",
|
|
6
|
-
"version": "1.3.
|
|
6
|
+
"version": "1.3.4-IXUAT-10996.538677",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"analyze": "cem analyze --litelement",
|
|
21
21
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
22
|
-
"build": "tsc &&
|
|
23
|
-
"prepublish": "tsc &&
|
|
22
|
+
"build": "tsc && pnpm run analyze --exclude dist && rollup -c",
|
|
23
|
+
"prepublish": "tsc && pnpm run analyze --exclude dist",
|
|
24
24
|
"lint": "eslint --ext .ts,.html . && prettier \"**/*.ts\" --check --ignore-path .gitignore",
|
|
25
25
|
"format": "eslint --ext .ts,.html . --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
|
|
26
26
|
"test": "tsc && wtr --coverage",
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
"concurrently": "^9.2.1",
|
|
48
48
|
"eslint": "^9.39.4",
|
|
49
49
|
"eslint-config-prettier": "^8.3.0",
|
|
50
|
-
"husky": "^4.3.8",
|
|
51
50
|
"lint-staged": "^10.5.4",
|
|
52
51
|
"prettier": "^2.4.1",
|
|
53
52
|
"rollup": "^4.29.1",
|
|
@@ -83,11 +82,6 @@
|
|
|
83
82
|
"singleQuote": true,
|
|
84
83
|
"arrowParens": "avoid"
|
|
85
84
|
},
|
|
86
|
-
"husky": {
|
|
87
|
-
"hooks": {
|
|
88
|
-
"pre-commit": "lint-staged"
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
85
|
"lint-staged": {
|
|
92
86
|
"*.ts": [
|
|
93
87
|
"eslint --fix",
|
|
@@ -101,5 +95,5 @@
|
|
|
101
95
|
"README.md",
|
|
102
96
|
"LICENSE"
|
|
103
97
|
],
|
|
104
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "683985e894a0aa14411b568af8d2d2df6677bfd4"
|
|
105
99
|
}
|