@gitlab/ui 85.0.0 → 85.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
+ ## [85.0.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v85.0.0...v85.0.1) (2024-06-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * textarea rows should accept strings ([691bb64](https://gitlab.com/gitlab-org/gitlab-ui/commit/691bb64f3797cdfbeec2c7924683f50e9ed83bc7))
7
+
1
8
  # [85.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v84.2.0...v85.0.0) (2024-06-24)
2
9
 
3
10
 
@@ -42,7 +42,7 @@ var script = {
42
42
  default: null
43
43
  },
44
44
  rows: {
45
- type: Number,
45
+ type: [Number, String],
46
46
  required: false,
47
47
  default: 4
48
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "85.0.0",
3
+ "version": "85.0.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -43,7 +43,7 @@ export default {
43
43
  default: null,
44
44
  },
45
45
  rows: {
46
- type: Number,
46
+ type: [Number, String],
47
47
  required: false,
48
48
  default: 4,
49
49
  },