@gitlab/ui 107.6.0 → 107.6.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "107.6.0",
3
+ "version": "107.6.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -100,10 +100,10 @@
100
100
  "jackspeak": "2.1.1"
101
101
  },
102
102
  "devDependencies": {
103
- "@babel/core": "^7.26.0",
103
+ "@babel/core": "^7.26.7",
104
104
  "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
105
105
  "@babel/plugin-proposal-optional-chaining": "^7.21.0",
106
- "@babel/preset-env": "^7.26.0",
106
+ "@babel/preset-env": "^7.26.7",
107
107
  "@babel/preset-react": "^7.26.3",
108
108
  "@cypress/grep": "^4.0.1",
109
109
  "@gitlab/eslint-plugin": "20.7.1",
@@ -1,10 +1,16 @@
1
1
  $gl-button-group-focus-z-index: 3;
2
2
  $gl-button-group-border-z-index: $gl-button-group-focus-z-index + 1;
3
3
 
4
+ .gl-button-group,
5
+ .btn-group,
6
+ .gl-dropdown.btn-group {
7
+ @apply gl-inline-flex;
8
+ }
9
+
4
10
  .gl-button-group:not(.gl-keyset-pagination),
5
11
  .btn-group:not(.gl-keyset-pagination),
6
12
  .gl-dropdown.btn-group {
7
- @apply gl-inline-flex gl-relative;
13
+ @apply gl-relative;
8
14
 
9
15
  // Reset borders
10
16
  > .gl-button:not(:first-child),
@@ -155,12 +155,12 @@ export default {
155
155
  <ul ref="pathNavList" class="gl-path-nav-list">
156
156
  <li
157
157
  v-for="(item, index) in items"
158
- :id="pathId(index)"
159
158
  ref="pathListItems"
160
159
  :key="index"
161
160
  class="gl-path-nav-list-item"
162
161
  >
163
162
  <button
163
+ :id="pathId(index)"
164
164
  :class="pathItemClass(index)"
165
165
  :category="item.disabled ? 'tertiary' : undefined"
166
166
  :disabled="item.disabled"