@gitlab/ui 71.6.1 → 71.7.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,15 @@
1
+ # [71.7.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v71.6.1...v71.7.0) (2023-12-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **Dropdown:** Polish trigger spacing ([9e60b07](https://gitlab.com/gitlab-org/gitlab-ui/commit/9e60b07b4c248350028d151840cb1c2899229be6))
7
+
8
+
9
+ ### Features
10
+
11
+ * **GlAvatarLabeled:** Wrap subLabel ([aa773e2](https://gitlab.com/gitlab-org/gitlab-ui/commit/aa773e28400568119a6c72d7106a3db63aa4e85c))
12
+
1
13
  ## [71.6.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v71.6.0...v71.6.1) (2023-12-06)
2
14
 
3
15
 
@@ -160,7 +160,7 @@ var script = {
160
160
  toggleButtonClasses() {
161
161
  return [this.toggleClass, {
162
162
  'gl-new-dropdown-toggle': true,
163
- 'gl-new-dropdown-icon-only': this.isIconOnly,
163
+ 'gl-new-dropdown-icon-only btn-icon': this.isIconOnly,
164
164
  'gl-new-dropdown-toggle-no-caret': this.noCaret
165
165
  }];
166
166
  },