@gitlab/ui 95.4.0 → 95.5.1
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 +14 -0
- package/dist/components/base/search_box_by_type/search_box_by_type.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +2 -2
- package/src/components/base/search_box_by_type/search_box_by_type.scss +2 -3
- package/src/components/base/search_box_by_type/search_box_by_type.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "95.
|
|
3
|
+
"version": "95.5.1",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
"lodash": "^4.17.20",
|
|
86
86
|
"marked": "^12.0.0",
|
|
87
87
|
"marked-bidi": "^1.0.8",
|
|
88
|
-
"merge-cobertura": "^1.0.2",
|
|
89
88
|
"popper.js": "^1.16.1",
|
|
90
89
|
"portal-vue": "^2.1.7",
|
|
91
90
|
"vue-functional-data-merge": "^3.1.0",
|
|
@@ -169,6 +168,7 @@
|
|
|
169
168
|
"jest-environment-jsdom": "29.7.0",
|
|
170
169
|
"jest-image-snapshot": "^6.4.0",
|
|
171
170
|
"markdownlint-cli": "^0.29.0",
|
|
171
|
+
"merge-cobertura": "^1.0.2",
|
|
172
172
|
"mockdate": "^2.0.5",
|
|
173
173
|
"module-alias": "^2.2.2",
|
|
174
174
|
"npm-run-all": "^4.1.5",
|
|
@@ -2,7 +2,6 @@ $gl-search-box-by-type-search-icon-size: 16px;
|
|
|
2
2
|
$gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
3
3
|
|
|
4
4
|
.gl-search-box-by-type-search-icon {
|
|
5
|
-
@apply gl-text-gray-500;
|
|
6
5
|
@apply gl-w-5;
|
|
7
6
|
position: absolute;
|
|
8
7
|
left: $gl-spacing-scale-3;
|
|
@@ -15,7 +14,7 @@ $gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
|
15
14
|
}
|
|
16
15
|
|
|
17
16
|
.gl-search-box-by-type-loading-icon {
|
|
18
|
-
@apply gl-
|
|
17
|
+
@apply gl-fill-icon-subtle;
|
|
19
18
|
@apply gl-w-5;
|
|
20
19
|
@apply gl-mr-2;
|
|
21
20
|
}
|
|
@@ -53,7 +52,7 @@ $gl-search-box-by-type-input-padding: 3.5 * $grid-size;
|
|
|
53
52
|
}
|
|
54
53
|
|
|
55
54
|
&::placeholder {
|
|
56
|
-
|
|
55
|
+
color: var(--gl-control-placeholder-color);
|
|
57
56
|
}
|
|
58
57
|
|
|
59
58
|
&::-webkit-search-cancel-button {
|
|
@@ -130,7 +130,7 @@ export default {
|
|
|
130
130
|
|
|
131
131
|
<template>
|
|
132
132
|
<div class="gl-search-box-by-type">
|
|
133
|
-
<gl-icon name="search" class="gl-search-box-by-type-search-icon" />
|
|
133
|
+
<gl-icon name="search" class="gl-search-box-by-type-search-icon" variant="subtle" />
|
|
134
134
|
<gl-form-input
|
|
135
135
|
ref="input"
|
|
136
136
|
:value="value"
|