@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "66.5.0",
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.11",
92
- "@babel/preset-env": "^7.22.14",
93
- "@babel/preset-react": "^7.22.5",
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/gitlab-summit-south-africa.jpg"
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/gitlab-summit-south-africa.jpg"
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/gitlab-summit-south-africa.jpg"
100
+ src="./img/avatar_1.png"
101
101
  v-gl-tooltip="{ placement }"
102
102
  />
103
103
  `,
@@ -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
  }
@@ -127,7 +127,7 @@
127
127
  border-color: $gray-50;
128
128
  }
129
129
 
130
- @mixin gl-border-gray-100 {
130
+ @mixin gl-border-gray-100($hover: true) {
131
131
  border-color: $gray-100;
132
132
  }
133
133