@gitlab/ui 56.2.0 → 56.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/CHANGELOG.md +7 -0
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +7 -7
- package/scss_to_js/scss_variables.js +1 -0
- package/scss_to_js/scss_variables.json +5 -0
- package/src/scss/utilities.scss +56 -0
- package/src/scss/utility-mixins/border.scss +20 -0
- package/src/scss/utility-mixins/flex.scss +4 -0
- package/src/scss/utility-mixins/typography.scss +4 -0
- package/src/scss/variables.scss +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "56.2.
|
|
3
|
+
"version": "56.2.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@popperjs/core": "^2.11.2",
|
|
64
64
|
"bootstrap-vue": "2.20.1",
|
|
65
|
-
"dompurify": "^2.4.
|
|
65
|
+
"dompurify": "^2.4.5",
|
|
66
66
|
"echarts": "^5.3.2",
|
|
67
67
|
"iframe-resizer": "^4.3.2",
|
|
68
68
|
"lodash": "^4.17.20",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
"@arkweid/lefthook": "0.7.7",
|
|
86
86
|
"@babel/core": "^7.21.0",
|
|
87
87
|
"@babel/preset-env": "^7.20.2",
|
|
88
|
-
"@gitlab/eslint-plugin": "18.
|
|
88
|
+
"@gitlab/eslint-plugin": "18.2.0",
|
|
89
89
|
"@gitlab/fonts": "^1.2.0",
|
|
90
90
|
"@gitlab/stylelint-config": "4.1.0",
|
|
91
|
-
"@gitlab/svgs": "3.
|
|
91
|
+
"@gitlab/svgs": "3.22.0",
|
|
92
92
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
93
93
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
94
94
|
"@rollup/plugin-replace": "^2.3.2",
|
|
@@ -117,10 +117,10 @@
|
|
|
117
117
|
"bootstrap-vue-vue3": "npm:bootstrap-vue@2.23.1",
|
|
118
118
|
"cypress": "^11.2.0",
|
|
119
119
|
"emoji-regex": "^10.0.0",
|
|
120
|
-
"eslint": "8.
|
|
120
|
+
"eslint": "8.35.0",
|
|
121
121
|
"eslint-import-resolver-jest": "3.0.2",
|
|
122
122
|
"eslint-plugin-cypress": "2.12.1",
|
|
123
|
-
"eslint-plugin-storybook": "0.6.
|
|
123
|
+
"eslint-plugin-storybook": "0.6.11",
|
|
124
124
|
"file-loader": "^4.2.0",
|
|
125
125
|
"glob": "^7.2.0",
|
|
126
126
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"pikaday": "^1.8.0",
|
|
135
135
|
"plop": "^2.5.4",
|
|
136
136
|
"postcss": "8.4.14",
|
|
137
|
-
"postcss-loader": "^
|
|
137
|
+
"postcss-loader": "^7.0.2",
|
|
138
138
|
"postcss-scss": "4.0.4",
|
|
139
139
|
"prettier": "2.6.2",
|
|
140
140
|
"puppeteer": "15.5.0",
|
|
@@ -250,6 +250,7 @@ export const glTextColorSecondary = '#737278'
|
|
|
250
250
|
export const glTextColorDisabled = '#89888d'
|
|
251
251
|
export const glFontWeightLight = '300'
|
|
252
252
|
export const glFontWeightNormal = '400'
|
|
253
|
+
export const glFontWeightSemibold = '500'
|
|
253
254
|
export const glFontWeightBold = '600'
|
|
254
255
|
export const glFontWeights = '("normal": 400, "bold": 600)'
|
|
255
256
|
export const glLineHeight16 = '1rem'
|
package/src/scss/utilities.scss
CHANGED
|
@@ -1085,6 +1085,14 @@
|
|
|
1085
1085
|
border-color: $white !important;
|
|
1086
1086
|
}
|
|
1087
1087
|
|
|
1088
|
+
.gl-border-transparent {
|
|
1089
|
+
border-color: transparent;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.gl-border-transparent\! {
|
|
1093
|
+
border-color: transparent !important;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1088
1096
|
.gl-border-t-transparent {
|
|
1089
1097
|
border-top-color: transparent;
|
|
1090
1098
|
}
|
|
@@ -1093,6 +1101,30 @@
|
|
|
1093
1101
|
border-top-color: transparent !important;
|
|
1094
1102
|
}
|
|
1095
1103
|
|
|
1104
|
+
.gl-border-r-transparent {
|
|
1105
|
+
border-right-color: transparent;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.gl-border-r-transparent\! {
|
|
1109
|
+
border-right-color: transparent !important;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.gl-border-b-transparent {
|
|
1113
|
+
border-bottom-color: transparent;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.gl-border-b-transparent\! {
|
|
1117
|
+
border-bottom-color: transparent !important;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.gl-border-l-transparent {
|
|
1121
|
+
border-left-color: transparent;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.gl-border-l-transparent\! {
|
|
1125
|
+
border-left-color: transparent !important;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1096
1128
|
.gl-border-gray-50 {
|
|
1097
1129
|
border-color: $gray-50;
|
|
1098
1130
|
}
|
|
@@ -1301,6 +1333,14 @@
|
|
|
1301
1333
|
border-bottom-color: $gray-10 !important;
|
|
1302
1334
|
}
|
|
1303
1335
|
|
|
1336
|
+
.gl-border-b-gray-50 {
|
|
1337
|
+
border-bottom-color: $gray-50;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.gl-border-b-gray-50\! {
|
|
1341
|
+
border-bottom-color: $gray-50 !important;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1304
1344
|
.gl-border-b-gray-100 {
|
|
1305
1345
|
border-bottom-color: $gray-100;
|
|
1306
1346
|
}
|
|
@@ -3544,6 +3584,14 @@
|
|
|
3544
3584
|
flex-basis: 50% !important;
|
|
3545
3585
|
}
|
|
3546
3586
|
|
|
3587
|
+
.gl-flex-basis-full {
|
|
3588
|
+
flex-basis: 100%;
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
.gl-flex-basis-full\! {
|
|
3592
|
+
flex-basis: 100% !important;
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3547
3595
|
.gl-justify-content-center {
|
|
3548
3596
|
justify-content: center;
|
|
3549
3597
|
}
|
|
@@ -8019,6 +8067,14 @@
|
|
|
8019
8067
|
font-weight: $gl-font-weight-normal !important;
|
|
8020
8068
|
}
|
|
8021
8069
|
|
|
8070
|
+
.gl-font-weight-semibold {
|
|
8071
|
+
font-weight: $gl-font-weight-semibold;
|
|
8072
|
+
}
|
|
8073
|
+
|
|
8074
|
+
.gl-font-weight-semibold\! {
|
|
8075
|
+
font-weight: $gl-font-weight-semibold !important;
|
|
8076
|
+
}
|
|
8077
|
+
|
|
8022
8078
|
.gl-font-weight-bold {
|
|
8023
8079
|
font-weight: $gl-font-weight-bold;
|
|
8024
8080
|
}
|
|
@@ -99,10 +99,26 @@
|
|
|
99
99
|
border-color: $white;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
@mixin gl-border-transparent {
|
|
103
|
+
border-color: transparent;
|
|
104
|
+
}
|
|
105
|
+
|
|
102
106
|
@mixin gl-border-t-transparent {
|
|
103
107
|
border-top-color: transparent;
|
|
104
108
|
}
|
|
105
109
|
|
|
110
|
+
@mixin gl-border-r-transparent {
|
|
111
|
+
border-right-color: transparent;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@mixin gl-border-b-transparent {
|
|
115
|
+
border-bottom-color: transparent;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@mixin gl-border-l-transparent {
|
|
119
|
+
border-left-color: transparent;
|
|
120
|
+
}
|
|
121
|
+
|
|
106
122
|
@mixin gl-border-gray-50 {
|
|
107
123
|
border-color: $gray-50;
|
|
108
124
|
}
|
|
@@ -191,6 +207,10 @@
|
|
|
191
207
|
border-bottom-color: $gray-10;
|
|
192
208
|
}
|
|
193
209
|
|
|
210
|
+
@mixin gl-border-b-gray-50 {
|
|
211
|
+
border-bottom-color: $gray-50;
|
|
212
|
+
}
|
|
213
|
+
|
|
194
214
|
@mixin gl-border-b-gray-100 {
|
|
195
215
|
border-bottom-color: $gray-100;
|
|
196
216
|
}
|