@gitlab/ui 80.19.1 → 80.20.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,17 @@
1
+ ## [80.20.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.20.0...v80.20.1) (2024-06-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlPopover:** properly align close button ([2e86876](https://gitlab.com/gitlab-org/gitlab-ui/commit/2e868768a36339219cdd554b8ef1a869b6475b57))
7
+
8
+ # [80.20.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.19.1...v80.20.0) (2024-06-10)
9
+
10
+
11
+ ### Features
12
+
13
+ * allow controlling GlFormTextArea rows ([074004d](https://gitlab.com/gitlab-org/gitlab-ui/commit/074004de5e98a6d12e7b3f1422afa2b1b3cf77af))
14
+
1
15
  ## [80.19.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.19.0...v80.19.1) (2024-06-07)
2
16
 
3
17
 
@@ -39,6 +39,11 @@ var script = {
39
39
  type: Number,
40
40
  required: false,
41
41
  default: null
42
+ },
43
+ rows: {
44
+ type: Number,
45
+ required: false,
46
+ default: 4
42
47
  }
43
48
  },
44
49
  data() {
@@ -94,7 +99,8 @@ var script = {
94
99
  ...this.$attrs,
95
100
  class: 'gl-form-input gl-form-textarea',
96
101
  noResize: this.noResize,
97
- value: this.value
102
+ value: this.value,
103
+ rows: this.rows
98
104
  };
99
105
  }
100
106
  },
@@ -75,7 +75,7 @@ var script = {
75
75
  const __vue_script__ = script;
76
76
 
77
77
  /* template */
78
- var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-popover',_vm._g(_vm._b({ref:_vm.$options.popoverRefName,attrs:{"custom-class":_vm.customClass,"triggers":_vm.triggers,"title":_vm.title,"placement":_vm.placement,"boundary-padding":_vm.boundaryPadding},scopedSlots:_vm._u([(_vm.shouldShowTitle)?{key:"title",fn:function(){return [_vm._t("title",function(){return [_vm._v("\n "+_vm._s(_vm.title)+"\n ")]}),_vm._v(" "),(_vm.showCloseButton)?_c('close-button',{staticClass:"gl-float-right gl-mt-n2 gl-mr-n3",attrs:{"data-testid":"close-button"},on:{"click":_vm.close}}):_vm._e()]},proxy:true}:null],null,true)},'b-popover',_vm.$attrs,false),_vm.$listeners),[_vm._v(" "),_vm._t("default")],2)};
78
+ var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-popover',_vm._g(_vm._b({ref:_vm.$options.popoverRefName,attrs:{"custom-class":_vm.customClass,"triggers":_vm.triggers,"title":_vm.title,"placement":_vm.placement,"boundary-padding":_vm.boundaryPadding},scopedSlots:_vm._u([(_vm.shouldShowTitle)?{key:"title",fn:function(){return [_vm._t("title",function(){return [_vm._v("\n "+_vm._s(_vm.title)+"\n ")]}),_vm._v(" "),(_vm.showCloseButton)?_c('div',{staticClass:"gl-mt-n2 gl-mr-n3 gl-ml-3 gl-h-0"},[_c('close-button',{attrs:{"data-testid":"close-button"},on:{"click":_vm.close}})],1):_vm._e()]},proxy:true}:null],null,true)},'b-popover',_vm.$attrs,false),_vm.$listeners),[_vm._v(" "),_vm._t("default")],2)};
79
79
  var __vue_staticRenderFns__ = [];
80
80
 
81
81
  /* style */