@gitlab/ui 64.17.0 → 64.18.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 +2 -2
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/border.scss +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "64.
|
|
3
|
+
"version": "64.18.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"babel-loader": "^8.0.5",
|
|
119
119
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
120
120
|
"bootstrap": "4.6.2",
|
|
121
|
-
"cypress": "12.
|
|
121
|
+
"cypress": "12.16.0",
|
|
122
122
|
"emoji-regex": "^10.0.0",
|
|
123
123
|
"eslint": "8.42.0",
|
|
124
124
|
"eslint-import-resolver-jest": "3.0.2",
|
package/src/scss/utilities.scss
CHANGED
|
@@ -1149,6 +1149,14 @@
|
|
|
1149
1149
|
border-left-color: transparent !important;
|
|
1150
1150
|
}
|
|
1151
1151
|
|
|
1152
|
+
.gl-border-gray-10 {
|
|
1153
|
+
border-color: $gray-10;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.gl-border-gray-10\! {
|
|
1157
|
+
border-color: $gray-10 !important;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1152
1160
|
.gl-border-gray-50 {
|
|
1153
1161
|
border-color: $gray-50;
|
|
1154
1162
|
}
|