@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 +14 -0
- package/dist/components/base/breadcrumb/breadcrumb.js +2 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +2 -2
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/json/tokens.dark.json +6 -3
- package/dist/tokens/json/tokens.json +5 -2
- package/dist/tokens/scss/_tokens.dark.scss +2 -2
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/tokens/tailwind/tokens.cjs +1 -1
- package/package.json +1 -1
- package/src/components/base/breadcrumb/breadcrumb.vue +2 -1
- package/src/tokens/background.tokens.json +5 -2
- package/src/tokens/build/css/tokens.css +1 -1
- package/src/tokens/build/css/tokens.dark.css +2 -2
- package/src/tokens/build/js/tokens.dark.js +1 -1
- package/src/tokens/build/json/tokens.dark.json +6 -3
- package/src/tokens/build/json/tokens.json +5 -2
- package/src/tokens/build/scss/_tokens.dark.scss +2 -2
- package/src/tokens/build/scss/_tokens.scss +1 -1
- package/src/tokens/build/tailwind/tokens.cjs +1 -1
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();
|