@gitlab/ui 124.4.3 → 125.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "124.4.3",
3
+ "version": "125.0.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -130,14 +130,14 @@
130
130
  "@yarnpkg/lockfile": "^1.1.0",
131
131
  "acorn": "^8.15.0",
132
132
  "acorn-walk": "^8.3.4",
133
- "autoprefixer": "10.4.21",
133
+ "autoprefixer": "10.4.22",
134
134
  "axe-playwright": "^2.2.2",
135
135
  "babel-loader": "^9.2.1",
136
136
  "cypress": "14.5.4",
137
137
  "cypress-real-events": "^1.15.0",
138
138
  "dompurify": "^3.1.2",
139
139
  "emoji-regex": "^10.6.0",
140
- "esbuild": "^0.26.0",
140
+ "esbuild": "^0.27.0",
141
141
  "gitlab-api-async-iterator": "^1.3.1",
142
142
  "glob": "11.0.3",
143
143
  "globby": "^14.1.0",
@@ -163,7 +163,7 @@
163
163
  "rollup-plugin-string": "^3.0.0",
164
164
  "rollup-plugin-svg": "^2.0.0",
165
165
  "rollup-plugin-vue": "^5.1.9",
166
- "sass": "^1.93.3",
166
+ "sass": "^1.94.0",
167
167
  "sass-loader": "^10.5.2",
168
168
  "sass-true": "^9",
169
169
  "start-server-and-test": "^2.1.2",
@@ -62,10 +62,6 @@ $gl-alert-top-border-size: 2px;
62
62
  padding-right: calc(#{$gl-spacing-scale-5} + #{$gl-alert-padding-x});
63
63
  }
64
64
 
65
- &-no-icon {
66
- padding-left: calc(#{$gl-spacing-scale-5} + #{$gl-alert-padding-x});
67
- }
68
-
69
65
  .gl-link:not(.gl-label-link) {
70
66
  @apply gl-underline;
71
67
  }
@@ -31,14 +31,6 @@ export default {
31
31
  required: false,
32
32
  default: true,
33
33
  },
34
- /**
35
- * Shows icon based on variant.
36
- */
37
- showIcon: {
38
- type: Boolean,
39
- required: false,
40
- default: true,
41
- },
42
34
  /**
43
35
  * The close button's label, it is used for the button's aria-label attribute.
44
36
  */
@@ -208,12 +200,11 @@ export default {
208
200
  'gl-alert',
209
201
  { 'gl-alert-sticky': sticky },
210
202
  { 'gl-alert-not-dismissible': !dismissible },
211
- { 'gl-alert-no-icon': !showIcon },
212
203
  { 'gl-alert-has-title': !!title },
213
204
  variantClass,
214
205
  ]"
215
206
  >
216
- <div v-if="showIcon" class="gl-alert-icon-container">
207
+ <div class="gl-alert-icon-container">
217
208
  <gl-icon :name="iconName" class="gl-alert-icon" />
218
209
  </div>
219
210
  <div class="gl-alert-content">