@gitlab/ui 66.0.1 → 66.1.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/CHANGELOG.md +7 -0
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +8 -8
- package/src/scss/utilities.scss +24 -0
- package/src/scss/utility-mixins/spacing.scss +16 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "66.0
|
|
3
|
+
"version": "66.1.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -86,13 +86,13 @@
|
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@arkweid/lefthook": "0.7.7",
|
|
89
|
-
"@babel/core": "^7.22.
|
|
89
|
+
"@babel/core": "^7.22.11",
|
|
90
90
|
"@babel/preset-env": "^7.22.10",
|
|
91
91
|
"@babel/preset-react": "^7.22.5",
|
|
92
92
|
"@gitlab/eslint-plugin": "19.0.0",
|
|
93
93
|
"@gitlab/fonts": "^1.2.0",
|
|
94
94
|
"@gitlab/stylelint-config": "5.0.0",
|
|
95
|
-
"@gitlab/svgs": "3.
|
|
95
|
+
"@gitlab/svgs": "3.60.0",
|
|
96
96
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
97
97
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
98
98
|
"@rollup/plugin-replace": "^2.3.2",
|
|
@@ -120,18 +120,18 @@
|
|
|
120
120
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
121
121
|
"bootstrap": "4.6.2",
|
|
122
122
|
"cypress": "12.17.4",
|
|
123
|
-
"dompurify": "^
|
|
123
|
+
"dompurify": "^3.0.0",
|
|
124
124
|
"emoji-regex": "^10.0.0",
|
|
125
|
-
"eslint": "8.
|
|
125
|
+
"eslint": "8.48.0",
|
|
126
126
|
"eslint-import-resolver-jest": "3.0.2",
|
|
127
127
|
"eslint-plugin-cypress": "2.14.0",
|
|
128
128
|
"eslint-plugin-storybook": "0.6.13",
|
|
129
129
|
"glob": "^7.2.0",
|
|
130
130
|
"identity-obj-proxy": "^3.0.0",
|
|
131
131
|
"inquirer-select-directory": "^1.2.0",
|
|
132
|
-
"jest": "^29.6.
|
|
133
|
-
"jest-circus": "29.6.
|
|
134
|
-
"jest-environment-jsdom": "29.6.
|
|
132
|
+
"jest": "^29.6.4",
|
|
133
|
+
"jest-circus": "29.6.4",
|
|
134
|
+
"jest-environment-jsdom": "29.6.4",
|
|
135
135
|
"markdownlint-cli": "^0.29.0",
|
|
136
136
|
"mockdate": "^2.0.5",
|
|
137
137
|
"module-alias": "^2.2.2",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -6387,24 +6387,48 @@
|
|
|
6387
6387
|
.gl-mb-4\! {
|
|
6388
6388
|
margin-bottom: $gl-spacing-scale-4 !important;
|
|
6389
6389
|
}
|
|
6390
|
+
.gl-mb-n4 {
|
|
6391
|
+
margin-bottom: -$gl-spacing-scale-4;
|
|
6392
|
+
}
|
|
6393
|
+
.gl-mb-n4\! {
|
|
6394
|
+
margin-bottom: -$gl-spacing-scale-4 !important;
|
|
6395
|
+
}
|
|
6390
6396
|
.gl-mb-5 {
|
|
6391
6397
|
margin-bottom: $gl-spacing-scale-5;
|
|
6392
6398
|
}
|
|
6393
6399
|
.gl-mb-5\! {
|
|
6394
6400
|
margin-bottom: $gl-spacing-scale-5 !important;
|
|
6395
6401
|
}
|
|
6402
|
+
.gl-mb-n5 {
|
|
6403
|
+
margin-bottom: -$gl-spacing-scale-5;
|
|
6404
|
+
}
|
|
6405
|
+
.gl-mb-n5\! {
|
|
6406
|
+
margin-bottom: -$gl-spacing-scale-5 !important;
|
|
6407
|
+
}
|
|
6396
6408
|
.gl-mb-6 {
|
|
6397
6409
|
margin-bottom: $gl-spacing-scale-6;
|
|
6398
6410
|
}
|
|
6399
6411
|
.gl-mb-6\! {
|
|
6400
6412
|
margin-bottom: $gl-spacing-scale-6 !important;
|
|
6401
6413
|
}
|
|
6414
|
+
.gl-mb-n6 {
|
|
6415
|
+
margin-bottom: -$gl-spacing-scale-6;
|
|
6416
|
+
}
|
|
6417
|
+
.gl-mb-n6\! {
|
|
6418
|
+
margin-bottom: -$gl-spacing-scale-6 !important;
|
|
6419
|
+
}
|
|
6402
6420
|
.gl-mb-7 {
|
|
6403
6421
|
margin-bottom: $gl-spacing-scale-7;
|
|
6404
6422
|
}
|
|
6405
6423
|
.gl-mb-7\! {
|
|
6406
6424
|
margin-bottom: $gl-spacing-scale-7 !important;
|
|
6407
6425
|
}
|
|
6426
|
+
.gl-mb-n7 {
|
|
6427
|
+
margin-bottom: -$gl-spacing-scale-7;
|
|
6428
|
+
}
|
|
6429
|
+
.gl-mb-n7\! {
|
|
6430
|
+
margin-bottom: -$gl-spacing-scale-7 !important;
|
|
6431
|
+
}
|
|
6408
6432
|
.gl-mb-8 {
|
|
6409
6433
|
margin-bottom: $gl-spacing-scale-8;
|
|
6410
6434
|
}
|
|
@@ -559,18 +559,34 @@
|
|
|
559
559
|
margin-bottom: $gl-spacing-scale-4;
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
+
@mixin gl-mb-n4 {
|
|
563
|
+
margin-bottom: -$gl-spacing-scale-4;
|
|
564
|
+
}
|
|
565
|
+
|
|
562
566
|
@mixin gl-mb-5 {
|
|
563
567
|
margin-bottom: $gl-spacing-scale-5;
|
|
564
568
|
}
|
|
565
569
|
|
|
570
|
+
@mixin gl-mb-n5 {
|
|
571
|
+
margin-bottom: -$gl-spacing-scale-5;
|
|
572
|
+
}
|
|
573
|
+
|
|
566
574
|
@mixin gl-mb-6 {
|
|
567
575
|
margin-bottom: $gl-spacing-scale-6;
|
|
568
576
|
}
|
|
569
577
|
|
|
578
|
+
@mixin gl-mb-n6 {
|
|
579
|
+
margin-bottom: -$gl-spacing-scale-6;
|
|
580
|
+
}
|
|
581
|
+
|
|
570
582
|
@mixin gl-mb-7 {
|
|
571
583
|
margin-bottom: $gl-spacing-scale-7;
|
|
572
584
|
}
|
|
573
585
|
|
|
586
|
+
@mixin gl-mb-n7 {
|
|
587
|
+
margin-bottom: -$gl-spacing-scale-7;
|
|
588
|
+
}
|
|
589
|
+
|
|
574
590
|
@mixin gl-mb-8 {
|
|
575
591
|
margin-bottom: $gl-spacing-scale-8;
|
|
576
592
|
}
|