@gitlab/ui 66.3.1 → 66.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": "66.3.1",
3
+ "version": "66.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -121,7 +121,7 @@
121
121
  "babel-loader": "^8.0.5",
122
122
  "babel-plugin-require-context-hook": "^1.0.0",
123
123
  "bootstrap": "4.6.2",
124
- "cypress": "12.17.4",
124
+ "cypress": "13.1.0",
125
125
  "dompurify": "^3.0.0",
126
126
  "emoji-regex": "^10.0.0",
127
127
  "eslint": "8.48.0",
@@ -6847,6 +6847,12 @@
6847
6847
  margin-top: #{$gl-spacing-scale-3} !important;
6848
6848
  }
6849
6849
  }
6850
+ .gl-gap-1 {
6851
+ gap: $gl-spacing-scale-1;
6852
+ }
6853
+ .gl-gap-1\! {
6854
+ gap: $gl-spacing-scale-1 !important;
6855
+ }
6850
6856
  .gl-gap-2 {
6851
6857
  gap: $gl-spacing-scale-2;
6852
6858
  }
@@ -868,6 +868,10 @@
868
868
  }
869
869
  }
870
870
 
871
+ @mixin gl-gap-1 {
872
+ gap: $gl-spacing-scale-1;
873
+ }
874
+
871
875
  @mixin gl-gap-2 {
872
876
  gap: $gl-spacing-scale-2;
873
877
  }