@gitlab/ui 113.2.3 → 113.2.4

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.2.4](https://gitlab.com/gitlab-org/gitlab-ui/compare/v113.2.3...v113.2.4) (2025-05-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlBaseDropdown:** use aria-labelledby properly ([1d3a96f](https://gitlab.com/gitlab-org/gitlab-ui/commit/1d3a96fbb7db2d44e587a6df5840df6c81fe3485))
7
+
1
8
  ## [113.2.3](https://gitlab.com/gitlab-org/gitlab-ui/compare/v113.2.2...v113.2.3) (2025-05-01)
2
9
 
3
10
 
@@ -185,7 +185,7 @@ var script = {
185
185
  return this.block ? 'gl-w-full' : '';
186
186
  },
187
187
  toggleLabelledBy() {
188
- return this.ariaLabelledby ? `${this.ariaLabelledby} ${this.toggleId}` : this.toggleId;
188
+ return this.ariaLabelledby ? `${this.ariaLabelledby} ${this.toggleId}` : undefined;
189
189
  },
190
190
  isDefaultToggle() {
191
191
  return !this.$scopedSlots.toggle;
@@ -116,7 +116,7 @@ var script = {
116
116
  width: width(),
117
117
  height: height(),
118
118
  ...(reducedMotion ? {
119
- class: 'gl-fill-gray-100'
119
+ class: 'gl-skeleton-loader-fill-background-color'
120
120
  } : {
121
121
  fill: `url(${props.baseUrl}#${props.uniqueKey}-idGradient)`
122
122
  })