@gitlab/ui 41.1.0 → 41.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.
@@ -86,7 +86,7 @@ const axes = {
86
86
  },
87
87
  nameGap: 30,
88
88
  nameTextStyle: {
89
- fontStyle: 'bold'
89
+ fontWeight: 'bold'
90
90
  },
91
91
  splitLine: {
92
92
  lineStyle: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "41.1.0",
3
+ "version": "41.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -58,7 +58,7 @@
58
58
  "@popperjs/core": "^2.11.2",
59
59
  "bootstrap-vue": "2.20.1",
60
60
  "dompurify": "^2.3.8",
61
- "echarts": "^5.2.1",
61
+ "echarts": "^5.3.2",
62
62
  "iframe-resizer": "^4.3.2",
63
63
  "lodash": "^4.17.20",
64
64
  "portal-vue": "^2.1.6",
@@ -83,7 +83,7 @@
83
83
  "@babel/preset-env": "^7.10.2",
84
84
  "@gitlab/eslint-plugin": "12.3.0",
85
85
  "@gitlab/stylelint-config": "4.0.0",
86
- "@gitlab/svgs": "2.14.0",
86
+ "@gitlab/svgs": "2.16.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",
@@ -2997,6 +2997,18 @@
2997
2997
  display: grid !important;
2998
2998
  }
2999
2999
 
3000
+ .gl-md-display-table-cell {
3001
+ @include gl-media-breakpoint-up(md) {
3002
+ display: table-cell;
3003
+ }
3004
+ }
3005
+
3006
+ .gl-md-display-table-cell\! {
3007
+ @include gl-media-breakpoint-up(md) {
3008
+ display: table-cell !important;
3009
+ }
3010
+ }
3011
+
3000
3012
  .gl-lg-display-table-cell {
3001
3013
  @include gl-media-breakpoint-up(lg) {
3002
3014
  display: table-cell;
@@ -5722,6 +5734,12 @@
5722
5734
  .gl-ml-3\! {
5723
5735
  margin-left: $gl-spacing-scale-3 !important;
5724
5736
  }
5737
+ .gl-ml-n3 {
5738
+ margin-left: -$gl-spacing-scale-3;
5739
+ }
5740
+ .gl-ml-n3\! {
5741
+ margin-left: -$gl-spacing-scale-3 !important;
5742
+ }
5725
5743
  .gl-ml-4 {
5726
5744
  margin-left: $gl-spacing-scale-4;
5727
5745
  }
@@ -187,6 +187,12 @@
187
187
  display: grid;
188
188
  }
189
189
 
190
+ @mixin gl-md-display-table-cell {
191
+ @include gl-media-breakpoint-up(md) {
192
+ @include gl-display-table-cell;
193
+ }
194
+ }
195
+
190
196
  @mixin gl-lg-display-table-cell {
191
197
  @include gl-media-breakpoint-up(lg) {
192
198
  @include gl-display-table-cell;
@@ -552,6 +552,10 @@
552
552
  margin-left: $gl-spacing-scale-3;
553
553
  }
554
554
 
555
+ @mixin gl-ml-n3 {
556
+ margin-left: -$gl-spacing-scale-3;
557
+ }
558
+
555
559
  @mixin gl-ml-4 {
556
560
  margin-left: $gl-spacing-scale-4;
557
561
  }
@@ -128,7 +128,7 @@ const axes = {
128
128
  },
129
129
  nameGap: 30,
130
130
  nameTextStyle: {
131
- fontStyle: 'bold',
131
+ fontWeight: 'bold',
132
132
  },
133
133
  splitLine: {
134
134
  lineStyle: {