@gitlab/ui 40.0.0 → 40.2.1

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.0.0",
3
+ "version": "40.2.1",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -57,7 +57,7 @@
57
57
  "dependencies": {
58
58
  "@popperjs/core": "^2.11.2",
59
59
  "bootstrap-vue": "2.20.1",
60
- "dompurify": "^2.3.6",
60
+ "dompurify": "^2.3.7",
61
61
  "echarts": "^5.2.1",
62
62
  "iframe-resizer": "^4.3.2",
63
63
  "lodash": "^4.17.20",
@@ -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.14.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",
@@ -3676,6 +3676,14 @@
3676
3676
  overflow-wrap: break-word !important
3677
3677
  }
3678
3678
 
3679
+ .gl-overflow-wrap-anywhere {
3680
+ overflow-wrap: anywhere
3681
+ }
3682
+
3683
+ .gl-overflow-wrap-anywhere\! {
3684
+ overflow-wrap: anywhere !important
3685
+ }
3686
+
3679
3687
  .gl-overflow-scroll {
3680
3688
  overflow: scroll
3681
3689
  }
@@ -5564,12 +5572,24 @@
5564
5572
  .gl-mb-2\! {
5565
5573
  margin-bottom: $gl-spacing-scale-2 !important;
5566
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
+ }
5567
5581
  .gl-mb-3 {
5568
5582
  margin-bottom: $gl-spacing-scale-3;
5569
5583
  }
5570
5584
  .gl-mb-3\! {
5571
5585
  margin-bottom: $gl-spacing-scale-3 !important;
5572
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
+ }
5573
5593
  .gl-mb-4 {
5574
5594
  margin-bottom: $gl-spacing-scale-4;
5575
5595
  }
@@ -6002,6 +6022,16 @@
6002
6022
  margin-left: $gl-spacing-scale-3 !important;
6003
6023
  }
6004
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
+ }
6005
6035
  .gl-sm-mt-0 {
6006
6036
  @include gl-media-breakpoint-up(sm) {
6007
6037
  margin-top: 0;
@@ -24,6 +24,10 @@
24
24
  overflow-wrap: break-word;
25
25
  }
26
26
 
27
+ @mixin gl-overflow-wrap-anywhere {
28
+ overflow-wrap: anywhere;
29
+ }
30
+
27
31
  @mixin gl-overflow-scroll {
28
32
  overflow: scroll;
29
33
  }
@@ -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;