@gitlab/ui 52.3.1 → 52.4.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": "52.3.1",
3
+ "version": "52.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -4939,6 +4939,14 @@
4939
4939
  min-height: $gl-spacing-scale-8 !important;
4940
4940
  }
4941
4941
 
4942
+ .gl-max-w-0 {
4943
+ max-width: 0;
4944
+ }
4945
+
4946
+ .gl-max-w-0\! {
4947
+ max-width: 0 !important;
4948
+ }
4949
+
4942
4950
  .gl-max-w-15 {
4943
4951
  max-width: $gl-spacing-scale-15;
4944
4952
  }
@@ -354,6 +354,10 @@
354
354
  min-height: $gl-spacing-scale-8;
355
355
  }
356
356
 
357
+ @mixin gl-max-w-0 {
358
+ max-width: 0;
359
+ }
360
+
357
361
  @mixin gl-max-w-15 {
358
362
  max-width: $gl-spacing-scale-15;
359
363
  }