@gitlab/ui 94.4.0 → 94.4.2

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
+ ## [94.4.2](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.4.1...v94.4.2) (2024-09-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update illustrations in stories ([8ab654e](https://gitlab.com/gitlab-org/gitlab-ui/commit/8ab654e9bcc83628c608cf67a026d2464add7171))
7
+
8
+ ## [94.4.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.4.0...v94.4.1) (2024-09-26)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **GlFormInput:** Set `noWheel` to `true` for number inputs ([a218651](https://gitlab.com/gitlab-org/gitlab-ui/commit/a218651603df75f4568fb1ffdee9d1729ff50450))
14
+
1
15
  # [94.4.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.3.0...v94.4.0) (2024-09-26)
2
16
 
3
17
 
@@ -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":""}},'b-form-input',_vm.$attrs,false),_vm.listeners))};
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "94.4.0",
3
+ "version": "94.4.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -115,7 +115,7 @@
115
115
  "@gitlab/eslint-plugin": "20.2.1",
116
116
  "@gitlab/fonts": "^1.3.0",
117
117
  "@gitlab/stylelint-config": "6.2.2",
118
- "@gitlab/svgs": "3.116.0",
118
+ "@gitlab/svgs": "3.117.0",
119
119
  "@jest/test-sequencer": "^29.7.0",
120
120
  "@rollup/plugin-commonjs": "^11.1.0",
121
121
  "@rollup/plugin-node-resolve": "^7.1.3",
@@ -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
  />