@zywave/customelement-manifest-element 1.0.4 → 1.1.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.
|
@@ -33,7 +33,7 @@ export declare class CustomElementManifestElement extends LitElement {
|
|
|
33
33
|
*/
|
|
34
34
|
get initialHeaderLevel(): 1 | 2 | 3;
|
|
35
35
|
set initialHeaderLevel(value: 1 | 2 | 3);
|
|
36
|
-
static get styles():
|
|
36
|
+
static get styles(): CSSStyleSheet[];
|
|
37
37
|
constructor();
|
|
38
38
|
firstUpdated(changedProps: PropertyValues): void;
|
|
39
39
|
update(changedProps: PropertyValues): void;
|
|
@@ -3,8 +3,7 @@ import { __decorate } from "tslib";
|
|
|
3
3
|
/* eslint-disable lit/binding-positions */
|
|
4
4
|
import { LitElement, nothing } from "lit";
|
|
5
5
|
import { customElement, property } from "lit/decorators.js";
|
|
6
|
-
|
|
7
|
-
import css from "./customelement-manifest-element.css" assert { type: 'css' };
|
|
6
|
+
import css from "./customelement-manifest-element.css" assert { type: 'css' }; // eslint-disable-line
|
|
8
7
|
import { html, unsafeStatic } from "lit/static-html.js";
|
|
9
8
|
import { findDefinition, getElementNames } from "./manifest-helpers";
|
|
10
9
|
function publicMembersFilter(classMember) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zywave/customelement-manifest-element",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"lit": "^2.
|
|
8
|
+
"lit": "^2.1.0"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
@@ -17,35 +17,38 @@
|
|
|
17
17
|
"README.md",
|
|
18
18
|
"custom-elements.json"
|
|
19
19
|
],
|
|
20
|
+
"resolutions": {
|
|
21
|
+
"typescript": "4.5.0-beta"
|
|
22
|
+
},
|
|
20
23
|
"devDependencies": {
|
|
21
|
-
"@custom-elements-manifest/analyzer": "^0.5.
|
|
24
|
+
"@custom-elements-manifest/analyzer": "^0.5.5",
|
|
22
25
|
"@custom-elements-manifest/to-markdown": "^0.0.13",
|
|
23
26
|
"@esm-bundle/chai": "^4.3.4",
|
|
24
27
|
"@semantic-release/gitlab": "^6.2.1",
|
|
25
28
|
"@semantic-release/gitlab-config": "^8.0.0",
|
|
26
|
-
"@typescript-eslint/eslint-plugin": "^4.
|
|
27
|
-
"@typescript-eslint/parser": "^4.
|
|
28
|
-
"@web/test-runner": "^0.13.
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
30
|
+
"@typescript-eslint/parser": "^4.33.0",
|
|
31
|
+
"@web/test-runner": "^0.13.18",
|
|
29
32
|
"@web/test-runner-junit-reporter": "^0.4.7",
|
|
30
33
|
"@web/test-runner-playwright": "^0.8.6",
|
|
31
34
|
"custom-elements-manifest": "^1.0.0",
|
|
32
35
|
"es-dev-server": "^2.1.0",
|
|
33
36
|
"eslint": "^7.30.0",
|
|
34
37
|
"eslint-config-prettier": "^8.3.0",
|
|
35
|
-
"eslint-plugin-lit": "^1.
|
|
38
|
+
"eslint-plugin-lit": "^1.6.0",
|
|
36
39
|
"eslint-plugin-prettier": "^4.0.0",
|
|
37
|
-
"mocha": "^9.
|
|
38
|
-
"playwright": "^1.15.
|
|
40
|
+
"mocha": "^9.1.2",
|
|
41
|
+
"playwright": "^1.15.2",
|
|
39
42
|
"prettier": "^2.4.1",
|
|
40
|
-
"sass": "^1.42.
|
|
43
|
+
"sass": "^1.42.1",
|
|
41
44
|
"semantic-release": "^18.0.0",
|
|
42
45
|
"sinon": "^11.1.1",
|
|
43
|
-
"typescript": "^4.
|
|
46
|
+
"typescript": "^4.5.0-beta"
|
|
44
47
|
},
|
|
45
48
|
"scripts": {
|
|
46
49
|
"analyze": "cem analyze --globs \"src/customelement-manifest-element.ts\" --litelement",
|
|
47
|
-
"build": "yarn run build:
|
|
48
|
-
"build:ts": "tsc -p tsconfig.json
|
|
50
|
+
"build": "yarn run build:scss && yarn run build:ts",
|
|
51
|
+
"build:ts": "tsc -p tsconfig.json",
|
|
49
52
|
"build:scss": "sass src/customelement-manifest-element.scss customelement-manifest-element.css",
|
|
50
53
|
"clean": "git clean -dfX",
|
|
51
54
|
"demo": "es-dev-server --app-index demo/index.html --node-resolve --watch --open",
|