@gitlab/ui 40.1.0 → 40.2.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": "40.1.0",
3
+ "version": "40.2.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -83,7 +83,7 @@
83
83
  "@babel/preset-env": "^7.10.2",
84
84
  "@gitlab/eslint-plugin": "12.0.1",
85
85
  "@gitlab/stylelint-config": "4.0.0",
86
- "@gitlab/svgs": "2.12.0",
86
+ "@gitlab/svgs": "2.13.0",
87
87
  "@rollup/plugin-commonjs": "^11.1.0",
88
88
  "@rollup/plugin-node-resolve": "^7.1.3",
89
89
  "@rollup/plugin-replace": "^2.3.2",
@@ -5572,12 +5572,24 @@
5572
5572
  .gl-mb-2\! {
5573
5573
  margin-bottom: $gl-spacing-scale-2 !important;
5574
5574
  }
5575
+ .gl-mb-n2 {
5576
+ margin-bottom: -$gl-spacing-scale-2;
5577
+ }
5578
+ .gl-mb-n2\! {
5579
+ margin-bottom: -$gl-spacing-scale-2 !important;
5580
+ }
5575
5581
  .gl-mb-3 {
5576
5582
  margin-bottom: $gl-spacing-scale-3;
5577
5583
  }
5578
5584
  .gl-mb-3\! {
5579
5585
  margin-bottom: $gl-spacing-scale-3 !important;
5580
5586
  }
5587
+ .gl-mb-n3 {
5588
+ margin-bottom: -$gl-spacing-scale-3;
5589
+ }
5590
+ .gl-mb-n3\! {
5591
+ margin-bottom: -$gl-spacing-scale-3 !important;
5592
+ }
5581
5593
  .gl-mb-4 {
5582
5594
  margin-bottom: $gl-spacing-scale-4;
5583
5595
  }
@@ -6010,6 +6022,16 @@
6010
6022
  margin-left: $gl-spacing-scale-3 !important;
6011
6023
  }
6012
6024
  }
6025
+ .gl-sm-ml-7 {
6026
+ @include gl-media-breakpoint-up(sm) {
6027
+ margin-left: $gl-spacing-scale-7;
6028
+ }
6029
+ }
6030
+ .gl-sm-ml-7\! {
6031
+ @include gl-media-breakpoint-up(sm) {
6032
+ margin-left: $gl-spacing-scale-7 !important;
6033
+ }
6034
+ }
6013
6035
  .gl-sm-mt-0 {
6014
6036
  @include gl-media-breakpoint-up(sm) {
6015
6037
  margin-top: 0;
@@ -486,10 +486,18 @@
486
486
  margin-bottom: $gl-spacing-scale-2;
487
487
  }
488
488
 
489
+ @mixin gl-mb-n2 {
490
+ margin-bottom: -$gl-spacing-scale-2;
491
+ }
492
+
489
493
  @mixin gl-mb-3 {
490
494
  margin-bottom: $gl-spacing-scale-3;
491
495
  }
492
496
 
497
+ @mixin gl-mb-n3 {
498
+ margin-bottom: -$gl-spacing-scale-3;
499
+ }
500
+
493
501
  @mixin gl-mb-4 {
494
502
  margin-bottom: $gl-spacing-scale-4;
495
503
  }
@@ -787,6 +795,12 @@
787
795
  }
788
796
  }
789
797
 
798
+ @mixin gl-sm-ml-7 {
799
+ @include gl-media-breakpoint-up(sm) {
800
+ @include gl-ml-7;
801
+ }
802
+ }
803
+
790
804
  @mixin gl-sm-mt-0 {
791
805
  @include gl-media-breakpoint-up(sm) {
792
806
  @include gl-mt-0;