@gitlab/ui 32.51.1 → 32.51.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": "32.51.1",
3
+ "version": "32.51.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -15,15 +15,16 @@ to draw a `/`
15
15
  ```html
16
16
  <gl-breadcrumb :items="items">
17
17
  <template #avatar>
18
- <img
18
+ <img
19
+ alt=""
19
20
  class="gl-breadcrumb-avatar-tile"
20
- src="https://assets.gitlab-static.net/uploads/-/system/group/avatar/9970/logo-extra-whitespace.png?width=15"
21
- width="15"
22
- height="15"
21
+ src="https://assets.gitlab-static.net/uploads/-/system/group/avatar/9970/logo-extra-whitespace.png?width=16"
22
+ width="16"
23
+ height="16"
23
24
  />
24
25
  </template>
25
26
  <template #separator>
26
- <svg width="100" height="15">
27
+ <svg height="16">
27
28
  <line x1="100%" y1="0" x2="0" y2="100%" stroke="gray" />
28
29
  </svg>
29
30
  </template>
@@ -38,7 +38,7 @@ $breadcrumb-max-width: $grid-size * 16;
38
38
  @include gl-border-1;
39
39
  @include gl-border-solid;
40
40
  @include gl-border-gray-200;
41
- @include gl-rounded-full;
41
+ @include gl-rounded-base;
42
42
  }
43
43
 
44
44
  // bootstrap overrides
@@ -6,7 +6,10 @@ const template = `
6
6
  :items="items"
7
7
  >
8
8
  <template #avatar>
9
- <img class="gl-breadcrumb-avatar-tile" src="https://assets.gitlab-static.net/uploads/-/system/group/avatar/9970/logo-extra-whitespace.png?width=16" width="16" height="16" />
9
+ <img alt=""
10
+ class="gl-breadcrumb-avatar-tile" src="https://assets.gitlab-static.net/uploads/-/system/group/avatar/9970/logo-extra-whitespace.png?width=16"
11
+ width="16"
12
+ height="16" />
10
13
  </template>
11
14
  </gl-breadcrumb>
12
15
  `;