@gitlab/ui 66.5.0 → 66.6.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 +4 -4
- package/src/components/base/avatar/avatar.stories.js +3 -3
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/border.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "66.
|
|
3
|
+
"version": "66.6.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@arkweid/lefthook": "0.7.7",
|
|
91
|
-
"@babel/core": "^7.22.
|
|
92
|
-
"@babel/preset-env": "^7.22.
|
|
93
|
-
"@babel/preset-react": "^7.22.
|
|
91
|
+
"@babel/core": "^7.22.15",
|
|
92
|
+
"@babel/preset-env": "^7.22.15",
|
|
93
|
+
"@babel/preset-react": "^7.22.15",
|
|
94
94
|
"@gitlab/eslint-plugin": "19.0.0",
|
|
95
95
|
"@gitlab/fonts": "^1.2.0",
|
|
96
96
|
"@gitlab/stylelint-config": "5.0.0",
|
|
@@ -53,7 +53,7 @@ export const Image = (args, { argTypes }) => ({
|
|
|
53
53
|
<gl-avatar
|
|
54
54
|
:size="size"
|
|
55
55
|
:shape="shape"
|
|
56
|
-
src="./img/
|
|
56
|
+
src="./img/avatar_1.png"
|
|
57
57
|
/>
|
|
58
58
|
`,
|
|
59
59
|
});
|
|
@@ -66,7 +66,7 @@ export const ResponsiveImage = (args, { argTypes }) => ({
|
|
|
66
66
|
<gl-avatar
|
|
67
67
|
:size="size"
|
|
68
68
|
:shape="shape"
|
|
69
|
-
src="./img/
|
|
69
|
+
src="./img/avatar_1.png"
|
|
70
70
|
/>
|
|
71
71
|
`,
|
|
72
72
|
});
|
|
@@ -97,7 +97,7 @@ export const WithTooltip = (args, { argTypes }) => ({
|
|
|
97
97
|
:size="size"
|
|
98
98
|
:shape="shape"
|
|
99
99
|
:title="tooltipText"
|
|
100
|
-
src="./img/
|
|
100
|
+
src="./img/avatar_1.png"
|
|
101
101
|
v-gl-tooltip="{ placement }"
|
|
102
102
|
/>
|
|
103
103
|
`,
|
package/src/scss/utilities.scss
CHANGED
|
@@ -1169,10 +1169,18 @@
|
|
|
1169
1169
|
border-color: $gray-100;
|
|
1170
1170
|
}
|
|
1171
1171
|
|
|
1172
|
+
.gl-hover-border-gray-100:hover {
|
|
1173
|
+
border-color: $gray-100;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1172
1176
|
.gl-border-gray-100\! {
|
|
1173
1177
|
border-color: $gray-100 !important;
|
|
1174
1178
|
}
|
|
1175
1179
|
|
|
1180
|
+
.gl-hover-border-gray-100\!:hover {
|
|
1181
|
+
border-color: $gray-100 !important;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1176
1184
|
.gl-border-gray-200 {
|
|
1177
1185
|
border-color: $gray-200;
|
|
1178
1186
|
}
|