@gitlab/ui 32.61.0 → 32.62.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/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +9 -9
- package/scss_to_js/scss_variables.js +1 -0
- package/scss_to_js/scss_variables.json +5 -0
- package/src/scss/utilities.scss +8 -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": "32.
|
|
3
|
+
"version": "32.62.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -90,15 +90,15 @@
|
|
|
90
90
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
91
91
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
92
92
|
"@rollup/plugin-replace": "^2.3.2",
|
|
93
|
-
"@storybook/addon-a11y": "6.4.
|
|
94
|
-
"@storybook/addon-docs": "6.4.
|
|
95
|
-
"@storybook/addon-essentials": "6.4.
|
|
93
|
+
"@storybook/addon-a11y": "6.4.13",
|
|
94
|
+
"@storybook/addon-docs": "6.4.13",
|
|
95
|
+
"@storybook/addon-essentials": "6.4.13",
|
|
96
96
|
"@storybook/addon-knobs": "6.4.0",
|
|
97
|
-
"@storybook/addon-storyshots": "6.4.
|
|
98
|
-
"@storybook/addon-storyshots-puppeteer": "6.4.
|
|
99
|
-
"@storybook/addon-viewport": "6.4.
|
|
100
|
-
"@storybook/theming": "6.4.
|
|
101
|
-
"@storybook/vue": "6.4.
|
|
97
|
+
"@storybook/addon-storyshots": "6.4.13",
|
|
98
|
+
"@storybook/addon-storyshots-puppeteer": "6.4.13",
|
|
99
|
+
"@storybook/addon-viewport": "6.4.13",
|
|
100
|
+
"@storybook/theming": "6.4.13",
|
|
101
|
+
"@storybook/vue": "6.4.13",
|
|
102
102
|
"@vue/test-utils": "1.3.0",
|
|
103
103
|
"autoprefixer": "^9.7.6",
|
|
104
104
|
"babel-jest": "^26.6.3",
|
|
@@ -240,6 +240,7 @@ export const glLineHeight24 = '1.5rem'
|
|
|
240
240
|
export const glLineHeight28 = '1.75rem'
|
|
241
241
|
export const glLineHeight32 = '2rem'
|
|
242
242
|
export const glLineHeight36 = '2.25rem'
|
|
243
|
+
export const glLineHeight42 = '2.625rem'
|
|
243
244
|
export const glLineHeight44 = '2.75rem'
|
|
244
245
|
export const glLineHeight52 = '3.25rem'
|
|
245
246
|
export const glFontSize = '0.875rem'
|
|
@@ -1249,6 +1249,11 @@
|
|
|
1249
1249
|
"value": "px-to-rem(36px)",
|
|
1250
1250
|
"compiledValue": "2.25rem"
|
|
1251
1251
|
},
|
|
1252
|
+
{
|
|
1253
|
+
"name": "$gl-line-height-42",
|
|
1254
|
+
"value": "px-to-rem(42px)",
|
|
1255
|
+
"compiledValue": "2.625rem"
|
|
1256
|
+
},
|
|
1252
1257
|
{
|
|
1253
1258
|
"name": "$gl-line-height-44",
|
|
1254
1259
|
"value": "px-to-rem(44px)",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -7307,6 +7307,14 @@
|
|
|
7307
7307
|
line-height: $gl-line-height-36 !important;
|
|
7308
7308
|
}
|
|
7309
7309
|
|
|
7310
|
+
.gl-line-height-42 {
|
|
7311
|
+
line-height: $gl-line-height-42;
|
|
7312
|
+
}
|
|
7313
|
+
|
|
7314
|
+
.gl-line-height-42\! {
|
|
7315
|
+
line-height: $gl-line-height-42 !important;
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7310
7318
|
.gl-line-height-52 {
|
|
7311
7319
|
line-height: $gl-line-height-52;
|
|
7312
7320
|
}
|
package/src/scss/variables.scss
CHANGED
|
@@ -316,6 +316,7 @@ $gl-line-height-24: px-to-rem(24px);
|
|
|
316
316
|
$gl-line-height-28: px-to-rem(28px);
|
|
317
317
|
$gl-line-height-32: px-to-rem(32px);
|
|
318
318
|
$gl-line-height-36: px-to-rem(36px);
|
|
319
|
+
$gl-line-height-42: px-to-rem(42px);
|
|
319
320
|
$gl-line-height-44: px-to-rem(44px);
|
|
320
321
|
$gl-line-height-52: px-to-rem(52px);
|
|
321
322
|
|