@gitlab/ui 32.68.0 → 33.0.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": "
|
|
3
|
+
"version": "33.0.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"test:unit:watch": "yarn test:unit --watch --notify",
|
|
42
42
|
"test:unit:debug": "NODE_ENV=test node --inspect node_modules/.bin/jest --testPathIgnorePatterns storyshot.spec.js --watch --runInBand",
|
|
43
43
|
"test:visual": "NODE_ENV=test IS_VISUAL_TEST=true start-test http-get://localhost:9001 'jest ./tests/storyshots.spec.js'",
|
|
44
|
-
"test:visual:update": "NODE_ENV=test IS_VISUAL_TEST=true start-test http-get://localhost:9001 'jest ./tests/storyshots.spec.js --updateSnapshot'",
|
|
44
|
+
"test:visual:update": "NODE_ENV=test IS_VISUAL_TEST=true JEST_IMAGE_SNAPSHOT_TRACK_OBSOLETE=1 start-test http-get://localhost:9001 'jest ./tests/storyshots.spec.js --updateSnapshot'",
|
|
45
45
|
"prettier": "prettier --check '**/*.{js,vue}'",
|
|
46
46
|
"prettier:fix": "prettier --write '**/*.{js,vue}'",
|
|
47
47
|
"eslint": "eslint --max-warnings 0 --ext .js,.vue .",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -2908,18 +2908,6 @@
|
|
|
2908
2908
|
}
|
|
2909
2909
|
}
|
|
2910
2910
|
|
|
2911
|
-
.gl-flex-sm-wrap {
|
|
2912
|
-
@include gl-media-breakpoint-up(sm) {
|
|
2913
|
-
flex-wrap: wrap;
|
|
2914
|
-
}
|
|
2915
|
-
}
|
|
2916
|
-
|
|
2917
|
-
.gl-flex-sm-wrap\! {
|
|
2918
|
-
@include gl-media-breakpoint-up(sm) {
|
|
2919
|
-
flex-wrap: wrap !important;
|
|
2920
|
-
}
|
|
2921
|
-
}
|
|
2922
|
-
|
|
2923
2911
|
.gl-flex-nowrap {
|
|
2924
2912
|
flex-wrap: nowrap;
|
|
2925
2913
|
}
|
|
@@ -3196,13 +3184,13 @@
|
|
|
3196
3184
|
justify-content: flex-start !important;
|
|
3197
3185
|
}
|
|
3198
3186
|
|
|
3199
|
-
.gl-justify-content-
|
|
3187
|
+
.gl-md-justify-content-start {
|
|
3200
3188
|
@include gl-media-breakpoint-up(md) {
|
|
3201
3189
|
justify-content: flex-start;
|
|
3202
3190
|
}
|
|
3203
3191
|
}
|
|
3204
3192
|
|
|
3205
|
-
.gl-justify-content-
|
|
3193
|
+
.gl-md-justify-content-start\! {
|
|
3206
3194
|
@include gl-media-breakpoint-up(md) {
|
|
3207
3195
|
justify-content: flex-start !important;
|
|
3208
3196
|
}
|
|
@@ -4828,16 +4816,6 @@
|
|
|
4828
4816
|
.gl-pt-2\! {
|
|
4829
4817
|
padding-top: $gl-spacing-scale-2 !important;
|
|
4830
4818
|
}
|
|
4831
|
-
.gl-pt-md-2 {
|
|
4832
|
-
@include gl-media-breakpoint-up(md) {
|
|
4833
|
-
padding-top: $gl-spacing-scale-2;
|
|
4834
|
-
}
|
|
4835
|
-
}
|
|
4836
|
-
.gl-pt-md-2\! {
|
|
4837
|
-
@include gl-media-breakpoint-up(md) {
|
|
4838
|
-
padding-top: $gl-spacing-scale-2 !important;
|
|
4839
|
-
}
|
|
4840
|
-
}
|
|
4841
4819
|
.gl-pt-3 {
|
|
4842
4820
|
padding-top: $gl-spacing-scale-3;
|
|
4843
4821
|
}
|
|
@@ -5100,12 +5078,12 @@
|
|
|
5100
5078
|
.gl-mt-n1\! {
|
|
5101
5079
|
margin-top: -$gl-spacing-scale-1 !important;
|
|
5102
5080
|
}
|
|
5103
|
-
.gl-mt-
|
|
5081
|
+
.gl-md-mt-n2 {
|
|
5104
5082
|
@include gl-media-breakpoint-up(md) {
|
|
5105
5083
|
margin-top: -$gl-spacing-scale-2;
|
|
5106
5084
|
}
|
|
5107
5085
|
}
|
|
5108
|
-
.gl-mt-
|
|
5086
|
+
.gl-md-mt-n2\! {
|
|
5109
5087
|
@include gl-media-breakpoint-up(md) {
|
|
5110
5088
|
margin-top: -$gl-spacing-scale-2 !important;
|
|
5111
5089
|
}
|
|
@@ -79,13 +79,6 @@
|
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
// Deprecated, prefer `gl-sm-flex-wrap`
|
|
83
|
-
@mixin gl-flex-sm-wrap {
|
|
84
|
-
@include gl-media-breakpoint-up(sm) {
|
|
85
|
-
@include gl-flex-wrap;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
82
|
@mixin gl-flex-nowrap {
|
|
90
83
|
flex-wrap: nowrap;
|
|
91
84
|
}
|
|
@@ -224,7 +217,7 @@
|
|
|
224
217
|
justify-content: flex-start;
|
|
225
218
|
}
|
|
226
219
|
|
|
227
|
-
@mixin gl-justify-content-
|
|
220
|
+
@mixin gl-md-justify-content-start {
|
|
228
221
|
@include gl-media-breakpoint-up(md) {
|
|
229
222
|
@include gl-justify-content-start;
|
|
230
223
|
}
|
|
@@ -202,12 +202,6 @@
|
|
|
202
202
|
padding-top: $gl-spacing-scale-2;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
@mixin gl-pt-md-2 {
|
|
206
|
-
@include gl-media-breakpoint-up(md) {
|
|
207
|
-
padding-top: $gl-spacing-scale-2;
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
|
|
211
205
|
@mixin gl-pt-3 {
|
|
212
206
|
padding-top: $gl-spacing-scale-3;
|
|
213
207
|
}
|
|
@@ -386,7 +380,7 @@
|
|
|
386
380
|
margin-top: -$gl-spacing-scale-1;
|
|
387
381
|
}
|
|
388
382
|
|
|
389
|
-
@mixin gl-mt-
|
|
383
|
+
@mixin gl-md-mt-n2 {
|
|
390
384
|
@include gl-media-breakpoint-up(md) {
|
|
391
385
|
margin-top: -$gl-spacing-scale-2;
|
|
392
386
|
}
|