@gitlab/ui 56.0.0 → 56.0.1
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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [56.0.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v56.0.0...v56.0.1) (2023-02-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency dompurify to ^2.4.4 ([c90c17b](https://gitlab.com/gitlab-org/gitlab-ui/commit/c90c17b307da010cacb566800f9cf5922124f28e))
|
|
7
|
+
|
|
1
8
|
# [56.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v55.3.1...v56.0.0) (2023-02-16)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@popperjs/core": "^2.11.2",
|
|
64
64
|
"bootstrap-vue": "2.20.1",
|
|
65
|
-
"dompurify": "^2.4.
|
|
65
|
+
"dompurify": "^2.4.4",
|
|
66
66
|
"echarts": "^5.3.2",
|
|
67
67
|
"iframe-resizer": "^4.3.2",
|
|
68
68
|
"lodash": "^4.17.20",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"bootstrap-vue-vue3": "npm:bootstrap-vue@2.23.1",
|
|
116
116
|
"cypress": "^11.2.0",
|
|
117
117
|
"emoji-regex": "^10.0.0",
|
|
118
|
-
"eslint": "8.
|
|
118
|
+
"eslint": "8.34.0",
|
|
119
119
|
"eslint-import-resolver-jest": "3.0.2",
|
|
120
120
|
"eslint-plugin-cypress": "2.12.1",
|
|
121
121
|
"eslint-plugin-storybook": "0.6.10",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
### ECharts Wrapper
|
|
2
2
|
|
|
3
|
-
The chart component is a Vue component wrapper around
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
by default.
|
|
3
|
+
The chart component is a Vue component wrapper around [Apache ECharts](https://echarts.apache.org/en/api.html#echarts).
|
|
4
|
+
The chart component accepts width and height props in order to allow the user to make it responsive,
|
|
5
|
+
but it is not responsive by default.
|
|
7
6
|
|
|
8
|
-
> Note:
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
> Note: When implementing a chart type that does not already have a GitLab UI component, you can use
|
|
8
|
+
> this component alonside the [ECharts options](https://echarts.apache.org/en/api.html#echarts) to
|
|
9
|
+
> build your chart. Each type of chart should still follow the general guidelines in the
|
|
10
|
+
> [pajamas documentation](https://design.gitlab.com/data-visualization/charts).
|
|
11
11
|
|
|
12
12
|
### EChart Lifecycle
|
|
13
13
|
|