@gitlab/ui 108.9.1 → 108.10.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.
- package/CHANGELOG.md +7 -0
- package/dist/components/charts/chart/chart.js +6 -1
- package/dist/utils/charts/config.js +4 -1
- package/dist/utils/charts/mock_data.js +3 -0
- package/package.json +1 -1
- package/src/components/charts/chart/chart.vue +6 -1
- package/src/utils/charts/config.js +3 -0
- package/src/utils/charts/mock_data.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [108.10.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v108.9.1...v108.10.0) (2025-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **charts:** Set up charts to auto generate long description ([96bb848](https://gitlab.com/gitlab-org/gitlab-ui/commit/96bb848c2d359c5e6ed21683d7f689db138aa2f3))
|
|
7
|
+
|
|
1
8
|
## [108.9.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v108.9.0...v108.9.1) (2025-03-03)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -149,7 +149,12 @@ var script = {
|
|
|
149
149
|
},
|
|
150
150
|
methods: {
|
|
151
151
|
draw() {
|
|
152
|
-
this.chart.setOption(
|
|
152
|
+
this.chart.setOption({
|
|
153
|
+
...this.normalizedOptions,
|
|
154
|
+
aria: {
|
|
155
|
+
enabled: true
|
|
156
|
+
}
|
|
157
|
+
});
|
|
153
158
|
/**
|
|
154
159
|
* Emitted after calling `echarts.setOption`
|
|
155
160
|
*/
|
package/package.json
CHANGED
|
@@ -155,7 +155,12 @@ export default {
|
|
|
155
155
|
},
|
|
156
156
|
methods: {
|
|
157
157
|
draw() {
|
|
158
|
-
this.chart.setOption(
|
|
158
|
+
this.chart.setOption({
|
|
159
|
+
...this.normalizedOptions,
|
|
160
|
+
aria: {
|
|
161
|
+
enabled: true,
|
|
162
|
+
},
|
|
163
|
+
});
|
|
159
164
|
/**
|
|
160
165
|
* Emitted after calling `echarts.setOption`
|
|
161
166
|
*/
|