@gitlab/ui 86.14.0 → 86.14.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
+ ## [86.14.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.14.0...v86.14.1) (2024-07-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **Heatmap:** rename `options` prop to `option` to be consistent ([8fcf7f6](https://gitlab.com/gitlab-org/gitlab-ui/commit/8fcf7f665adb0f5aefe954e90d28a0fbdaf1ea62))
7
+
1
8
  # [86.14.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v86.13.1...v86.14.0) (2024-07-19)
2
9
 
3
10
 
@@ -48,7 +48,7 @@ var script = {
48
48
  TooltipDefaultFormat
49
49
  },
50
50
  props: {
51
- options: {
51
+ option: {
52
52
  type: Object,
53
53
  required: false,
54
54
  default: () => ({})
@@ -195,7 +195,7 @@ var script = {
195
195
  }
196
196
  }
197
197
  }
198
- }, this.options);
198
+ }, this.option);
199
199
  },
200
200
  legendStyle() {
201
201
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "86.14.0",
3
+ "version": "86.14.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -49,7 +49,7 @@ export default {
49
49
  TooltipDefaultFormat,
50
50
  },
51
51
  props: {
52
- options: {
52
+ option: {
53
53
  type: Object,
54
54
  required: false,
55
55
  default: () => ({}),
@@ -197,7 +197,7 @@ export default {
197
197
  },
198
198
  },
199
199
  },
200
- this.options
200
+ this.option
201
201
  );
202
202
  },
203
203
  legendStyle() {