@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 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(this.normalizedOptions);
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
  */
@@ -40,7 +40,10 @@ const grid = {
40
40
  const defaultChartOptions = {
41
41
  grid,
42
42
  xAxis,
43
- yAxis
43
+ yAxis,
44
+ aria: {
45
+ enabled: true
46
+ }
44
47
  };
45
48
  const gridWithSecondaryYAxis = {
46
49
  ...grid,
@@ -56,6 +56,9 @@ const mockDefaultChartOptions = {
56
56
  },
57
57
  legend: {
58
58
  show: false
59
+ },
60
+ aria: {
61
+ enabled: true
59
62
  }
60
63
  };
61
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "108.9.1",
3
+ "version": "108.10.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -155,7 +155,12 @@ export default {
155
155
  },
156
156
  methods: {
157
157
  draw() {
158
- this.chart.setOption(this.normalizedOptions);
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
  */
@@ -46,6 +46,9 @@ export const defaultChartOptions = {
46
46
  grid,
47
47
  xAxis,
48
48
  yAxis,
49
+ aria: {
50
+ enabled: true,
51
+ },
49
52
  };
50
53
 
51
54
  export const gridWithSecondaryYAxis = {
@@ -61,6 +61,9 @@ export const mockDefaultChartOptions = {
61
61
  legend: {
62
62
  show: false,
63
63
  },
64
+ aria: {
65
+ enabled: true,
66
+ },
64
67
  };
65
68
 
66
69
  /**