@gitlab/ui 43.16.0 → 43.17.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": "43.16.0",
3
+ "version": "43.17.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -112,9 +112,9 @@
112
112
  "glob": "^7.2.0",
113
113
  "identity-obj-proxy": "^3.0.0",
114
114
  "inquirer-select-directory": "^1.2.0",
115
- "jest": "^29.0.2",
116
- "jest-circus": "29.0.2",
117
- "jest-environment-jsdom": "29.0.2",
115
+ "jest": "^29.0.3",
116
+ "jest-circus": "29.0.3",
117
+ "jest-environment-jsdom": "29.0.3",
118
118
  "jest-serializer-vue": "^2.0.2",
119
119
  "markdownlint-cli": "^0.29.0",
120
120
  "mockdate": "^2.0.5",
@@ -6308,6 +6308,16 @@
6308
6308
  margin-left: #{$gl-spacing-scale-5} !important;
6309
6309
  }
6310
6310
  }
6311
+ .gl-gap-y-3 {
6312
+ > * + * {
6313
+ margin-top: #{$gl-spacing-scale-3};
6314
+ }
6315
+ }
6316
+ .gl-gap-y-3\! {
6317
+ > * + * {
6318
+ margin-top: #{$gl-spacing-scale-3} !important;
6319
+ }
6320
+ }
6311
6321
  .gl-gap-3 {
6312
6322
  gap: $gl-spacing-scale-3;
6313
6323
  }
@@ -813,6 +813,12 @@
813
813
  }
814
814
  }
815
815
 
816
+ @mixin gl-gap-y-3 {
817
+ > * + * {
818
+ margin-top: #{$gl-spacing-scale-3};
819
+ }
820
+ }
821
+
816
822
  @mixin gl-gap-3 {
817
823
  gap: $gl-spacing-scale-3;
818
824
  }