@gitlab/ui 58.6.0 → 58.8.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.8.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -51,12 +51,16 @@
51
51
  }
52
52
 
53
53
  &.custom-control {
54
+ @include gl-pl-5;
55
+
54
56
  .custom-control-input ~ .custom-control-label {
55
57
  @include gl-cursor-pointer;
58
+ @include gl-pl-3;
56
59
 
57
60
  &::before,
58
61
  &::after {
59
62
  @include gl-top-0;
63
+ @include gl-left-n5;
60
64
  }
61
65
 
62
66
  &::before {
@@ -4465,6 +4465,14 @@
4465
4465
  left: $gl-spacing-scale-7 !important;
4466
4466
  }
4467
4467
 
4468
+ .gl-left-n5 {
4469
+ left: -$gl-spacing-scale-5;
4470
+ }
4471
+
4472
+ .gl-left-n5\! {
4473
+ left: -$gl-spacing-scale-5 !important;
4474
+ }
4475
+
4468
4476
  .gl-left-50p {
4469
4477
  left: 50%;
4470
4478
  }
@@ -6671,6 +6679,12 @@
6671
6679
  gap: $gl-spacing-scale-3 !important;
6672
6680
  }
6673
6681
  }
6682
+ .gl-gap-4 {
6683
+ gap: $gl-spacing-scale-4;
6684
+ }
6685
+ .gl-gap-4\! {
6686
+ gap: $gl-spacing-scale-4 !important;
6687
+ }
6674
6688
  .gl-gap-5 {
6675
6689
  gap: $gl-spacing-scale-5;
6676
6690
  }
@@ -194,6 +194,10 @@
194
194
  left: $gl-spacing-scale-7;
195
195
  }
196
196
 
197
+ @mixin gl-left-n5 {
198
+ left: -$gl-spacing-scale-5;
199
+ }
200
+
197
201
  @mixin gl-left-50p {
198
202
  left: 50%;
199
203
  }
@@ -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
  }