@gitlab/ui 58.6.0 → 58.7.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": "58.6.0",
3
+ "version": "58.7.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -6671,6 +6671,12 @@
6671
6671
  gap: $gl-spacing-scale-3 !important;
6672
6672
  }
6673
6673
  }
6674
+ .gl-gap-4 {
6675
+ gap: $gl-spacing-scale-4;
6676
+ }
6677
+ .gl-gap-4\! {
6678
+ gap: $gl-spacing-scale-4 !important;
6679
+ }
6674
6680
  .gl-gap-5 {
6675
6681
  gap: $gl-spacing-scale-5;
6676
6682
  }
@@ -862,6 +862,10 @@
862
862
  }
863
863
  }
864
864
 
865
+ @mixin gl-gap-4 {
866
+ gap: $gl-spacing-scale-4;
867
+ }
868
+
865
869
  @mixin gl-gap-5 {
866
870
  gap: $gl-spacing-scale-5;
867
871
  }