@gitlab/ui 72.3.1 → 72.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.
- 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 +14 -14
- package/src/scss/utilities.scss +12 -0
- package/src/scss/utility-mixins/flex.scss +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "72.
|
|
3
|
+
"version": "72.4.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -98,18 +98,18 @@
|
|
|
98
98
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
99
99
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
|
100
100
|
"@rollup/plugin-replace": "^2.3.2",
|
|
101
|
-
"@storybook/addon-a11y": "7.6.
|
|
102
|
-
"@storybook/addon-docs": "7.6.
|
|
103
|
-
"@storybook/addon-essentials": "7.6.
|
|
104
|
-
"@storybook/addon-storyshots": "7.6.
|
|
105
|
-
"@storybook/addon-storyshots-puppeteer": "7.6.
|
|
106
|
-
"@storybook/addon-viewport": "7.6.
|
|
107
|
-
"@storybook/builder-webpack5": "7.6.
|
|
108
|
-
"@storybook/theming": "7.6.
|
|
109
|
-
"@storybook/vue": "7.6.
|
|
110
|
-
"@storybook/vue-webpack5": "7.6.
|
|
111
|
-
"@storybook/vue3": "7.6.
|
|
112
|
-
"@storybook/vue3-webpack5": "7.6.
|
|
101
|
+
"@storybook/addon-a11y": "7.6.7",
|
|
102
|
+
"@storybook/addon-docs": "7.6.7",
|
|
103
|
+
"@storybook/addon-essentials": "7.6.7",
|
|
104
|
+
"@storybook/addon-storyshots": "7.6.7",
|
|
105
|
+
"@storybook/addon-storyshots-puppeteer": "7.6.7",
|
|
106
|
+
"@storybook/addon-viewport": "7.6.7",
|
|
107
|
+
"@storybook/builder-webpack5": "7.6.7",
|
|
108
|
+
"@storybook/theming": "7.6.7",
|
|
109
|
+
"@storybook/vue": "7.6.7",
|
|
110
|
+
"@storybook/vue-webpack5": "7.6.7",
|
|
111
|
+
"@storybook/vue3": "7.6.7",
|
|
112
|
+
"@storybook/vue3-webpack5": "7.6.7",
|
|
113
113
|
"@vue/compat": "^3.2.40",
|
|
114
114
|
"@vue/compiler-sfc": "^3.2.40",
|
|
115
115
|
"@vue/test-utils": "1.3.0",
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"sass-loader": "^10.2.0",
|
|
162
162
|
"sass-true": "^6.1.0",
|
|
163
163
|
"start-server-and-test": "^1.10.6",
|
|
164
|
-
"storybook": "7.6.
|
|
164
|
+
"storybook": "7.6.7",
|
|
165
165
|
"storybook-dark-mode": "3.0.3",
|
|
166
166
|
"style-dictionary": "^3.8.0",
|
|
167
167
|
"stylelint": "15.10.2",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -3678,6 +3678,18 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
3678
3678
|
}
|
|
3679
3679
|
}
|
|
3680
3680
|
|
|
3681
|
+
.gl-md-flex-direction-row-reverse {
|
|
3682
|
+
@include gl-media-breakpoint-up(md) {
|
|
3683
|
+
flex-direction: row-reverse;
|
|
3684
|
+
}
|
|
3685
|
+
}
|
|
3686
|
+
|
|
3687
|
+
.gl-md-flex-direction-row-reverse\! {
|
|
3688
|
+
@include gl-media-breakpoint-up(md) {
|
|
3689
|
+
flex-direction: row-reverse !important;
|
|
3690
|
+
}
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3681
3693
|
.gl-flex-shrink-0 {
|
|
3682
3694
|
flex-shrink: 0;
|
|
3683
3695
|
}
|