@gravitee/ui-components 3.45.2 → 3.45.3-renovate-codemirror-1782f5b
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.45.
|
|
3
|
+
"version": "3.45.3-renovate-codemirror-1782f5b",
|
|
4
4
|
"description": "Gravitee.io UI Components library, based on Web Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"docs": "wca analyze src/** --outFile .docs/custom-elements.json && node tasks/generate-docs.js",
|
|
28
28
|
"generate:dist": "yarn compile && cp -R assets dist/ && cp package.json dist/",
|
|
29
29
|
"generate:icons": "node tasks/generate-icons.js && yarn lint:fix",
|
|
30
|
-
"generate:theme": "
|
|
30
|
+
"generate:theme": "zx tasks/generate-theme.mjs && yarn lint:fix",
|
|
31
31
|
"lint": "eslint src testing tasks && yarn prettier",
|
|
32
32
|
"lint:commit": "commitlint --from $(git describe --tags --abbrev=0) --to HEAD --verbose",
|
|
33
33
|
"lint:fix": "eslint --fix src testing tasks && yarn prettier:fix",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"colors": "1.4.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@codemirror/basic-setup": "^0.
|
|
57
|
-
"@codemirror/language-data": "^0.
|
|
56
|
+
"@codemirror/basic-setup": "^0.20.0",
|
|
57
|
+
"@codemirror/language-data": "^0.20.0",
|
|
58
58
|
"@codemirror/stream-parser": "^0.19.3",
|
|
59
59
|
"@formatjs/intl-locale": "^2.4.40",
|
|
60
60
|
"@formatjs/intl-relativetimeformat": "^9.3.2",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"messageformat": "^2.3.0",
|
|
70
70
|
"object-path": "^0.11.8",
|
|
71
71
|
"resize-observer-polyfill": "^1.5.1",
|
|
72
|
-
"whatwg-fetch": "^3.
|
|
72
|
+
"whatwg-fetch": "^3.6.17"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@asciidoctor/core": "2.2.6",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"babel-loader": "8.3.0",
|
|
93
93
|
"chromatic": "6.17.1",
|
|
94
94
|
"danger": "11.2.4",
|
|
95
|
-
"del": "
|
|
95
|
+
"del": "7.1.0",
|
|
96
96
|
"eslint": "8.35.0",
|
|
97
97
|
"eslint-config-prettier": "8.7.0",
|
|
98
98
|
"eslint-config-standard": "16.0.3",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"eslint-plugin-promise": "6.1.1",
|
|
103
103
|
"eslint-plugin-standard": "4.1.0",
|
|
104
104
|
"esm": "3.2.25",
|
|
105
|
-
"fs-extra": "
|
|
105
|
+
"fs-extra": "11.2.0",
|
|
106
106
|
"github-markdown-css": "4.0.0",
|
|
107
107
|
"glob": "7.2.3",
|
|
108
108
|
"highcharts": "10.3.3",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"pascal-case": "3.1.2",
|
|
123
123
|
"prettier": "2.8.4",
|
|
124
124
|
"semantic-release": "18.0.1",
|
|
125
|
-
"sort-package-json": "
|
|
125
|
+
"sort-package-json": "2.6.0",
|
|
126
126
|
"svgo": "2.8.0",
|
|
127
127
|
"svgstore": "3.0.1",
|
|
128
128
|
"typescript": "4.9.5",
|
|
@@ -213,7 +213,7 @@ export class GvOption extends LitElement {
|
|
|
213
213
|
_renderOption(option, index) {
|
|
214
214
|
const isActive = this.isActive(option);
|
|
215
215
|
const outlined = this.outlined || (!isActive && this._hasDescription);
|
|
216
|
-
return html
|
|
216
|
+
return html `<gv-button
|
|
217
217
|
.icon=${ifDefined(!this._hasDescription ? option.icon : null)}
|
|
218
218
|
.iconRight=${ifDefined(!option.icon && option.iconRight ? option.iconRight : null)}
|
|
219
219
|
.title="${ifDefined(option.title)}"
|