@gravitee/ui-components 3.25.3-typescript-6a73008 → 3.25.4-yarn-30737d0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravitee/ui-components",
|
|
3
|
-
"version": "3.25.
|
|
3
|
+
"version": "3.25.4-yarn-30737d0",
|
|
4
4
|
"description": "Gravitee.io UI Components library, based on Web Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"wc"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "
|
|
22
|
+
"build": "yarn docs && yarn check:i18n && yarn generate:theme && yarn generate:dist && build-storybook -s assets --modern --quiet",
|
|
23
23
|
"check:i18n": "node tasks/check-i18n.js",
|
|
24
24
|
"danger": "danger ci",
|
|
25
25
|
"docs": "wca analyze src/** --outFile .docs/custom-elements.json && node tasks/generate-docs.js",
|
|
26
|
-
"generate:dist": "
|
|
27
|
-
"generate:icons": "node tasks/generate-icons.js &&
|
|
28
|
-
"generate:theme": "node tasks/generate-theme.js &&
|
|
29
|
-
"lint": "eslint src stories tasks &&
|
|
26
|
+
"generate:dist": "yarn tsc && cp -R assets dist/ && cp package.json dist/",
|
|
27
|
+
"generate:icons": "node tasks/generate-icons.js && yarn lint:fix",
|
|
28
|
+
"generate:theme": "node tasks/generate-theme.js && yarn lint:fix",
|
|
29
|
+
"lint": "eslint src stories tasks && yarn prettier",
|
|
30
30
|
"lint:commit": "commitlint --from $(git describe --tags --abbrev=0) --to HEAD --verbose",
|
|
31
|
-
"lint:fix": "eslint --fix src stories tasks &&
|
|
31
|
+
"lint:fix": "eslint --fix src stories tasks && yarn prettier:fix",
|
|
32
32
|
"lint:license": "license-check-and-add check -f license-check-config.json",
|
|
33
33
|
"lint:license:fix": "license-check-and-add add -f license-check-config.json -r $(date +%Y)",
|
|
34
34
|
"lint:package": "sort-package-json",
|
|
@@ -36,19 +36,17 @@
|
|
|
36
36
|
"prettier": "prettier --check \"**/*.{js,html,css,json}\"",
|
|
37
37
|
"prettier:fix": "prettier --write \"**/*.{js,html,css,json}\"",
|
|
38
38
|
"release": "semantic-release",
|
|
39
|
-
"serve": "
|
|
40
|
-
"serve:prod": "
|
|
41
|
-
"size": "node tasks/size.js",
|
|
42
|
-
"size:dev": "nodemon -w src -x 'npm run generate:dist && npm run size'",
|
|
39
|
+
"serve": "yarn docs && start-storybook -p 6006 --ci -s assets --modern",
|
|
40
|
+
"serve:prod": "yarn build && static -a 0.0.0.0 -p 8080 storybook-static --modern",
|
|
43
41
|
"test": "jest",
|
|
44
|
-
"test:coverage": "
|
|
45
|
-
"test:watch": "
|
|
42
|
+
"test:coverage": "yarn test -- --collect-coverage",
|
|
43
|
+
"test:watch": "yarn test -- --watchAll",
|
|
46
44
|
"tsc": "tsc "
|
|
47
45
|
},
|
|
48
46
|
"lint-staged": {
|
|
49
|
-
"*": "
|
|
47
|
+
"*": "yarn lint:license:fix",
|
|
50
48
|
"*.{js,html,css,json}": "prettier --write",
|
|
51
|
-
"package.json": "
|
|
49
|
+
"package.json": "yarn lint:package"
|
|
52
50
|
},
|
|
53
51
|
"dependencies": {
|
|
54
52
|
"@codemirror/basic-setup": "^0.19.1",
|
|
@@ -69,8 +67,6 @@
|
|
|
69
67
|
},
|
|
70
68
|
"devDependencies": {
|
|
71
69
|
"@asciidoctor/core": "2.2.5",
|
|
72
|
-
"@babel/core": "7.16.5",
|
|
73
|
-
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
|
74
70
|
"@babel/preset-env": "7.16.5",
|
|
75
71
|
"@babel/preset-typescript": "^7.16.5",
|
|
76
72
|
"@commitlint/cli": "16.0.0",
|
|
@@ -87,7 +83,6 @@
|
|
|
87
83
|
"asciidoctor-highlight.js": "0.4.0",
|
|
88
84
|
"babel-jest": "27.4.5",
|
|
89
85
|
"babel-loader": "8.2.3",
|
|
90
|
-
"bundle-phobia-cli": "0.14.13",
|
|
91
86
|
"chromatic": "6.3.3",
|
|
92
87
|
"danger": "10.7.1",
|
|
93
88
|
"del": "6.0.0",
|
|
@@ -103,7 +98,6 @@
|
|
|
103
98
|
"fs-extra": "10.0.0",
|
|
104
99
|
"github-markdown-css": "4.0.0",
|
|
105
100
|
"glob": "7.2.0",
|
|
106
|
-
"gzip-size": "7.0.0",
|
|
107
101
|
"highcharts": "9.3.2",
|
|
108
102
|
"highlight.js": "11.3.1",
|
|
109
103
|
"html-to-react": "1.4.7",
|
|
@@ -124,7 +118,6 @@
|
|
|
124
118
|
"sort-package-json": "1.53.1",
|
|
125
119
|
"svgo": "2.8.0",
|
|
126
120
|
"svgstore": "3.0.1",
|
|
127
|
-
"text-table": "0.2.0",
|
|
128
121
|
"typescript": "^4.5.4",
|
|
129
122
|
"web-component-analyzer": "1.1.6",
|
|
130
123
|
"webpack-env": "0.8.0",
|
|
@@ -153,7 +153,7 @@ export class GvDatePicker extends LitElement {
|
|
|
153
153
|
value: any;
|
|
154
154
|
hasFrom(): boolean;
|
|
155
155
|
hasTo(): boolean;
|
|
156
|
-
_distanceTimer: NodeJS.
|
|
156
|
+
_distanceTimer: NodeJS.Timer | undefined;
|
|
157
157
|
monthChanged(month: any, year: any): void;
|
|
158
158
|
_monthPlus: string | undefined;
|
|
159
159
|
_yearPlus: number | undefined;
|
|
@@ -40,6 +40,6 @@ export class GvRelativeTime extends LitElement {
|
|
|
40
40
|
_datetime: any;
|
|
41
41
|
_formatDateInThePast(date: any): any;
|
|
42
42
|
_format(dateStr: any, lang: any): Promise<string | undefined>;
|
|
43
|
-
updateIntervalId: NodeJS.
|
|
43
|
+
updateIntervalId: NodeJS.Timer | null | undefined;
|
|
44
44
|
}
|
|
45
45
|
import { LitElement } from "lit-element/lit-element";
|
package/src/theme/gv-theme.d.ts
CHANGED