@gitlab/ui 94.4.0 → 94.4.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
|
+
## [94.4.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.4.0...v94.4.1) (2024-09-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlFormInput:** Set `noWheel` to `true` for number inputs ([a218651](https://gitlab.com/gitlab-org/gitlab-ui/commit/a218651603df75f4568fb1ffdee9d1729ff50450))
|
|
7
|
+
|
|
1
8
|
# [94.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.3.0...v94.4.0) (2024-09-26)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -84,6 +84,9 @@ var script = {
|
|
|
84
84
|
_this.$emit(MODEL_EVENT, ...args);
|
|
85
85
|
}
|
|
86
86
|
};
|
|
87
|
+
},
|
|
88
|
+
noWheel() {
|
|
89
|
+
return this.$attrs.type === 'number';
|
|
87
90
|
}
|
|
88
91
|
}
|
|
89
92
|
};
|
|
@@ -92,7 +95,7 @@ var script = {
|
|
|
92
95
|
const __vue_script__ = script;
|
|
93
96
|
|
|
94
97
|
/* template */
|
|
95
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-form-input',_vm._g(_vm._b({staticClass:"gl-form-input",class:_vm.cssClasses,attrs:{"no-wheel":
|
|
98
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-form-input',_vm._g(_vm._b({staticClass:"gl-form-input",class:_vm.cssClasses,attrs:{"no-wheel":_vm.noWheel}},'b-form-input',_vm.$attrs,false),_vm.listeners))};
|
|
96
99
|
var __vue_staticRenderFns__ = [];
|
|
97
100
|
|
|
98
101
|
/* style */
|
package/package.json
CHANGED
|
@@ -80,6 +80,9 @@ export default {
|
|
|
80
80
|
},
|
|
81
81
|
};
|
|
82
82
|
},
|
|
83
|
+
noWheel() {
|
|
84
|
+
return this.$attrs.type === 'number';
|
|
85
|
+
},
|
|
83
86
|
},
|
|
84
87
|
};
|
|
85
88
|
</script>
|
|
@@ -88,7 +91,7 @@ export default {
|
|
|
88
91
|
<b-form-input
|
|
89
92
|
class="gl-form-input"
|
|
90
93
|
:class="cssClasses"
|
|
91
|
-
no-wheel
|
|
94
|
+
:no-wheel="noWheel"
|
|
92
95
|
v-bind="$attrs"
|
|
93
96
|
v-on="listeners"
|
|
94
97
|
/>
|