@gitlab/ui 94.5.0 → 94.6.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,17 @@
1
+ ## [94.6.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.6.0...v94.6.1) (2024-10-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlBreadcrumb:** Fix items watcher behavior ([f4256e4](https://gitlab.com/gitlab-org/gitlab-ui/commit/f4256e41fec4d2b5ede133b4f0d070ffa049d78b))
7
+
8
+ # [94.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.5.0...v94.6.0) (2024-10-01)
9
+
10
+
11
+ ### Features
12
+
13
+ * **DesignTokens:** update overlap background color to color.neutral.900 ([e0a8b98](https://gitlab.com/gitlab-org/gitlab-ui/commit/e0a8b98acf0760062495f25b16367c2755d89f62))
14
+
1
15
  # [94.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.4.2...v94.5.0) (2024-10-01)
2
16
 
3
17
 
@@ -129,8 +129,9 @@ var script = {
129
129
  this.overflowingItems = [];
130
130
  },
131
131
  async measureAndMakeBreadcrumbsFit() {
132
- this.resizeDone = false;
133
132
  this.resetItems();
133
+ if (!this.autoResize) return;
134
+ this.resizeDone = false;
134
135
 
135
136
  // Wait for DOM update so all items get rendered and can be measured.
136
137
  await this.$nextTick();