@gitlab/ui 113.0.0 → 113.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [113.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v113.0.0...v113.1.0) (2025-04-24)
2
+
3
+
4
+ ### Features
5
+
6
+ * **GlBadge:** pass listeners to badge ([9243c73](https://gitlab.com/gitlab-org/gitlab-ui/commit/9243c7362d2158141a392f84d3f20ae35c079aa6))
7
+
1
8
  # [113.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v112.3.3...v113.0.0) (2025-04-22)
2
9
 
3
10
 
@@ -161,7 +161,7 @@ var script = {
161
161
  const __vue_script__ = script;
162
162
 
163
163
  /* template */
164
- var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.computedTag,_vm._b({tag:"component",class:_vm.classes,attrs:{"role":_vm.role,"aria-label":_vm.ariaLabel}},'component',_vm.computedProps,false),[(_vm.icon)?_c('gl-icon',{staticClass:"gl-badge-icon",class:{ '-gl-ml-2': _vm.isCircularIcon },attrs:{"size":_vm.iconSizeComputed,"name":_vm.icon}}):_vm._e(),_vm._v(" "),(_vm.$slots.default)?_c('span',{staticClass:"gl-badge-content"},[_vm._t("default")],2):_vm._e()],1)};
164
+ var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.computedTag,_vm._g(_vm._b({tag:"component",class:_vm.classes,attrs:{"role":_vm.role,"aria-label":_vm.ariaLabel}},'component',_vm.computedProps,false),_vm.$listeners),[(_vm.icon)?_c('gl-icon',{staticClass:"gl-badge-icon",class:{ '-gl-ml-2': _vm.isCircularIcon },attrs:{"size":_vm.iconSizeComputed,"name":_vm.icon}}):_vm._e(),_vm._v(" "),(_vm.$slots.default)?_c('span',{staticClass:"gl-badge-content"},[_vm._t("default")],2):_vm._e()],1)};
165
165
  var __vue_staticRenderFns__ = [];
166
166
 
167
167
  /* style */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "113.0.0",
3
+ "version": "113.1.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -163,6 +163,7 @@ export default {
163
163
  :class="classes"
164
164
  :role="role"
165
165
  :aria-label="ariaLabel"
166
+ v-on="$listeners"
166
167
  >
167
168
  <gl-icon
168
169
  v-if="icon"