@gitlab/ui 80.19.1 → 80.20.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "80.19.1",
3
+ "version": "80.20.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -137,7 +137,7 @@
137
137
  "babel-jest": "29.0.1",
138
138
  "babel-loader": "^8.0.5",
139
139
  "bootstrap": "4.6.2",
140
- "cypress": "13.10.0",
140
+ "cypress": "13.11.0",
141
141
  "cypress-axe": "^1.4.0",
142
142
  "cypress-real-events": "^1.11.0",
143
143
  "dompurify": "^3.1.2",
@@ -41,6 +41,11 @@ export default {
41
41
  required: false,
42
42
  default: null,
43
43
  },
44
+ rows: {
45
+ type: Number,
46
+ required: false,
47
+ default: 4,
48
+ },
44
49
  },
45
50
  data() {
46
51
  return {
@@ -89,6 +94,7 @@ export default {
89
94
  class: 'gl-form-input gl-form-textarea',
90
95
  noResize: this.noResize,
91
96
  value: this.value,
97
+ rows: this.rows,
92
98
  };
93
99
  },
94
100
  },
@@ -45,7 +45,6 @@
45
45
  @import '../components/base/form/form_radio/form_radio';
46
46
  @import '../components/base/form/form_radio_group/form_radio_group';
47
47
  @import '../components/base/form/form_select/form_select';
48
- @import '../components/base/form/form_textarea/form_textarea';
49
48
  @import '../components/base/form/form_combobox/form_combobox';
50
49
  @import '../components/base/icon/icon';
51
50
  @import '../components/base/infinite_scroll/infinite_scroll';
@@ -1,12 +0,0 @@
1
- /**
2
- * Form textarea styles.
3
- *
4
- * notes:
5
- * - gl-form-input is the SSOT for the textbox styles,
6
- * we maintain this class to set the correct height.
7
- */
8
-
9
- .gl-form-textarea,
10
- .gl-form-textarea.form-control {
11
- @include gl-h-11-5;
12
- }