@gravitee/ui-components 3.24.4 → 3.24.5-renovate-github-markdown-css-5-x-d2ffdad
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/CHANGELOG.md +1260 -0
- package/LICENSE.txt +202 -0
- package/README.md +195 -0
- package/assets/css/github-markdown-css/github-markdown.css +500 -545
- package/assets/i18n/en.json +0 -3
- package/assets/i18n/fr.json +0 -3
- package/package.json +19 -21
- package/src/.eslintrc.js +19 -0
- package/src/atoms/gv-autocomplete.js +156 -132
- package/src/atoms/gv-button.js +248 -73
- package/src/atoms/gv-checkbox.js +103 -45
- package/src/atoms/gv-date-picker-calendar.js +393 -312
- package/src/atoms/gv-date-picker-cell.js +81 -57
- package/src/atoms/gv-date-picker.js +319 -180
- package/src/atoms/gv-file-upload.js +195 -85
- package/src/atoms/gv-icon.js +34 -13
- package/src/atoms/gv-image.js +66 -31
- package/src/atoms/gv-input-message.js +37 -12
- package/src/atoms/gv-input.js +169 -139
- package/src/atoms/gv-link.js +125 -47
- package/src/atoms/gv-message.js +69 -18
- package/src/atoms/gv-metric.js +68 -19
- package/src/atoms/gv-relative-time.js +38 -67
- package/src/atoms/gv-select-native.js +215 -96
- package/src/atoms/gv-select.js +230 -110
- package/src/atoms/gv-spinner.js +26 -5
- package/src/atoms/gv-state.js +66 -25
- package/src/atoms/gv-switch.js +160 -40
- package/src/atoms/gv-tag.js +78 -26
- package/src/atoms/gv-text.js +83 -22
- package/src/charts/gv-chart-bar.js +18 -22
- package/src/charts/gv-chart-gauge.js +31 -28
- package/src/charts/gv-chart-histogram.js +10 -18
- package/src/charts/gv-chart-line.js +59 -70
- package/src/charts/gv-chart-map.js +42 -44
- package/src/charts/gv-chart-pie.js +14 -18
- package/src/index.js +0 -2
- package/src/lib/cron-expression.js +35 -40
- package/src/lib/date.js +1 -10
- package/src/lib/events.js +1 -3
- package/src/lib/http-client-schema-form.js +12 -13
- package/src/lib/http.js +56 -57
- package/src/lib/i18n.js +22 -30
- package/src/lib/item.js +12 -13
- package/src/lib/properties.js +42 -77
- package/src/lib/schema-form.js +5 -4
- package/src/lib/studio.js +60 -13
- package/src/lib/style.js +8 -8
- package/src/lib/text-format.js +7 -14
- package/src/lib/theme.js +5 -8
- package/src/lib/utils.js +18 -17
- package/src/mixins/chart-element.js +54 -31
- package/src/mixins/input-element.js +49 -60
- package/src/mixins/item-resource.js +32 -34
- package/src/mixins/keyboard-element.js +5 -6
- package/src/mixins/update-after-browser.js +1 -4
- package/src/mixins/with-resize-observer.js +13 -23
- package/src/mixins/with-skeleton-attribute.js +48 -54
- package/src/molecules/gv-card-full.js +147 -26
- package/src/molecules/gv-card-list.js +42 -13
- package/src/molecules/gv-card.js +91 -17
- package/src/molecules/gv-category-list.js +17 -6
- package/src/molecules/gv-category.js +103 -23
- package/src/molecules/gv-code.js +263 -189
- package/src/molecules/gv-confirm.js +71 -41
- package/src/molecules/gv-cron-editor.js +389 -143
- package/src/molecules/gv-dropdown-menu.js +46 -14
- package/src/molecules/gv-expandable.js +59 -31
- package/src/molecules/gv-expression-language.js +208 -552
- package/src/molecules/gv-identity-picture.js +65 -42
- package/src/molecules/gv-list.js +134 -42
- package/src/molecules/gv-metrics.js +49 -37
- package/src/molecules/gv-modal.js +95 -28
- package/src/molecules/gv-nav.js +75 -49
- package/src/molecules/gv-option.js +130 -57
- package/src/molecules/gv-plans.js +209 -86
- package/src/molecules/gv-popover.js +177 -57
- package/src/molecules/gv-promote.js +146 -28
- package/src/molecules/gv-rating-list.js +195 -69
- package/src/molecules/gv-rating.js +105 -52
- package/src/molecules/gv-row-expandable.js +11 -5
- package/src/molecules/gv-row.js +147 -21
- package/src/molecules/gv-stats.js +48 -23
- package/src/molecules/gv-stepper.js +187 -43
- package/src/molecules/gv-table.js +309 -199
- package/src/molecules/gv-tree.js +156 -33
- package/src/organisms/gv-documentation.js +127 -44
- package/src/organisms/gv-header.js +195 -37
- package/src/organisms/gv-http-client.js +168 -32
- package/src/organisms/gv-menu.js +158 -37
- package/src/organisms/gv-newsletter-subscription.js +189 -48
- package/src/organisms/gv-pagination.js +77 -49
- package/src/organisms/gv-properties.js +492 -271
- package/src/organisms/gv-resizable-views.js +259 -41
- package/src/organisms/gv-resources.js +275 -168
- package/src/organisms/gv-schema-form-array.js +159 -49
- package/src/organisms/gv-schema-form-control-object.js +73 -59
- package/src/organisms/gv-schema-form-control.js +134 -107
- package/src/organisms/gv-schema-form.js +280 -195
- package/src/organisms/gv-tabs.js +98 -66
- package/src/organisms/gv-user-menu.js +201 -36
- package/src/organisms/gv-vertical-menu.js +61 -20
- package/src/policy-studio/gv-flow-step.js +245 -105
- package/src/policy-studio/gv-flow.js +304 -125
- package/src/policy-studio/gv-policy-studio-menu.js +471 -157
- package/src/policy-studio/gv-policy-studio.js +761 -692
- package/src/styles/empty.js +20 -3
- package/src/styles/input.js +247 -3
- package/src/styles/link.js +16 -3
- package/src/styles/shapes.js +0 -1
- package/src/styles/skeleton.js +37 -3
- package/src/styles/zoom.js +24 -3
- package/src/theme/definition.json +1762 -0
- package/src/theme/gv-theme.js +60 -21
- package/assets/css/codemirror/all.css +0 -476
- package/src/molecules/gv-code-hint.js +0 -49
- package/wc/gv-code-hint.js +0 -1
package/assets/i18n/en.json
CHANGED
package/assets/i18n/fr.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravitee/ui-components",
|
|
3
|
-
"version": "3.24.
|
|
3
|
+
"version": "3.24.5-renovate-github-markdown-css-5-x-d2ffdad",
|
|
4
4
|
"description": "Gravitee.io UI Components library, based on Web Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -49,10 +49,13 @@
|
|
|
49
49
|
"package.json": "npm run lint:package"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
+
"@codemirror/basic-setup": "^0.19.1",
|
|
53
|
+
"@codemirror/language-data": "^0.19.1",
|
|
54
|
+
"@codemirror/stream-parser": "^0.19.3",
|
|
52
55
|
"@formatjs/intl-locale": "^2.4.40",
|
|
53
56
|
"@formatjs/intl-relativetimeformat": "^9.3.2",
|
|
54
57
|
"clipboard-copy": "^4.0.0",
|
|
55
|
-
"codemirror": "^
|
|
58
|
+
"codemirror-asciidoc": "^2.0.0",
|
|
56
59
|
"date-fns": "^2.26.0",
|
|
57
60
|
"jdenticon": "^3.1.0",
|
|
58
61
|
"jsonschema": "^1.4.0",
|
|
@@ -64,30 +67,29 @@
|
|
|
64
67
|
},
|
|
65
68
|
"devDependencies": {
|
|
66
69
|
"@asciidoctor/core": "2.2.5",
|
|
67
|
-
"@babel/core": "7.16.
|
|
70
|
+
"@babel/core": "7.16.5",
|
|
68
71
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
|
69
|
-
"@babel/preset-env": "7.16.
|
|
72
|
+
"@babel/preset-env": "7.16.5",
|
|
70
73
|
"@commitlint/cli": "15.0.0",
|
|
71
74
|
"@commitlint/config-conventional": "15.0.0",
|
|
72
|
-
"@highcharts/map-collection": "1.1.
|
|
75
|
+
"@highcharts/map-collection": "1.1.4",
|
|
73
76
|
"@semantic-release/changelog": "6.0.1",
|
|
74
77
|
"@semantic-release/git": "10.0.1",
|
|
75
|
-
"@storybook/addon-a11y": "6.4.
|
|
76
|
-
"@storybook/addon-essentials": "6.4.
|
|
77
|
-
"@storybook/components": "6.4.
|
|
78
|
-
"@storybook/theming": "6.4.
|
|
79
|
-
"@storybook/web-components": "6.4.
|
|
78
|
+
"@storybook/addon-a11y": "6.4.9",
|
|
79
|
+
"@storybook/addon-essentials": "6.4.9",
|
|
80
|
+
"@storybook/components": "6.4.9",
|
|
81
|
+
"@storybook/theming": "6.4.9",
|
|
82
|
+
"@storybook/web-components": "6.4.9",
|
|
80
83
|
"asciidoctor": "2.2.5",
|
|
81
84
|
"asciidoctor-highlight.js": "0.4.0",
|
|
82
|
-
"babel-jest": "27.4.
|
|
85
|
+
"babel-jest": "27.4.5",
|
|
83
86
|
"babel-loader": "8.2.3",
|
|
84
87
|
"babel-plugin-template-html-minifier": "4.1.0",
|
|
85
88
|
"bundle-phobia-cli": "0.14.13",
|
|
86
|
-
"chromatic": "6.
|
|
87
|
-
"codemirror-asciidoc": "1.0.4",
|
|
89
|
+
"chromatic": "6.2.3",
|
|
88
90
|
"danger": "10.7.1",
|
|
89
91
|
"del": "6.0.0",
|
|
90
|
-
"eslint": "8.
|
|
92
|
+
"eslint": "8.5.0",
|
|
91
93
|
"eslint-config-prettier": "8.3.0",
|
|
92
94
|
"eslint-config-standard": "16.0.3",
|
|
93
95
|
"eslint-plugin-import": "2.25.3",
|
|
@@ -97,7 +99,7 @@
|
|
|
97
99
|
"eslint-plugin-standard": "4.1.0",
|
|
98
100
|
"esm": "3.2.25",
|
|
99
101
|
"fs-extra": "10.0.0",
|
|
100
|
-
"github-markdown-css": "
|
|
102
|
+
"github-markdown-css": "5.1.0",
|
|
101
103
|
"glob": "7.2.0",
|
|
102
104
|
"gzip-size": "7.0.0",
|
|
103
105
|
"highcharts": "9.3.2",
|
|
@@ -107,11 +109,11 @@
|
|
|
107
109
|
"i18n-extract": "0.6.7",
|
|
108
110
|
"ignore-loader": "0.1.2",
|
|
109
111
|
"is-ci": "3.0.1",
|
|
110
|
-
"jest": "27.4.
|
|
112
|
+
"jest": "27.4.5",
|
|
111
113
|
"license-check-and-add": "4.0.3",
|
|
112
114
|
"lint-staged": "11.2.6",
|
|
113
115
|
"lit-html": "2.0.2",
|
|
114
|
-
"markdown-it": "12.
|
|
116
|
+
"markdown-it": "12.3.0",
|
|
115
117
|
"node-static": "0.7.11",
|
|
116
118
|
"nodemon": "2.0.15",
|
|
117
119
|
"pascal-case": "3.1.2",
|
|
@@ -131,7 +133,6 @@
|
|
|
131
133
|
"@highcharts/map-collection": "^1.0.0",
|
|
132
134
|
"asciidoctor": "^2.2.4",
|
|
133
135
|
"asciidoctor-highlight.js": "^0.3.0 || ^0.4.0",
|
|
134
|
-
"codemirror-asciidoc": "^1.0.4",
|
|
135
136
|
"highcharts": "^8.0.0 || ^9.0.0",
|
|
136
137
|
"highlight.js": "^10.7.0 || ^11.1.0"
|
|
137
138
|
},
|
|
@@ -148,9 +149,6 @@
|
|
|
148
149
|
"asciidoctor-highlight.js": {
|
|
149
150
|
"optional": true
|
|
150
151
|
},
|
|
151
|
-
"codemirror-asciidoc": {
|
|
152
|
-
"optional": true
|
|
153
|
-
},
|
|
154
152
|
"highcharts": {
|
|
155
153
|
"optional": true
|
|
156
154
|
},
|
package/src/.eslintrc.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
module.exports = {
|
|
17
|
+
extends: ['../.eslintrc.js', 'plugin:lit/recommended'],
|
|
18
|
+
env: { browser: true },
|
|
19
|
+
};
|