Skip to content

Commit 7adfd3d

Browse files
MomoPoppykagol
authored andcommitted
fix(base-select): [select,base-select] fix the highlight style of the selected item icon (#3268)
* fix(base-select): [select,base-select] fix the highlight style of the selected item icon * feat(base-select): [base-select] modify version number
1 parent 1d132c1 commit 7adfd3d

File tree

8 files changed

+13
-7
lines changed

8 files changed

+13
-7
lines changed

examples/sites/demos/pc/app/select/collapse-tags-composition-api.vue

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<br />
1717
<br />
1818
<br />
19+
<br />
20+
<br />
21+
<br />
1922
<div>场景 3:click-expand 折叠</div>
2023
<br />
2124
<tiny-select v-model="value3" :max-visible-rows="2" :options="options" multiple click-expand> </tiny-select>

examples/sites/demos/pc/app/select/collapse-tags.vue

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<br />
1717
<br />
1818
<br />
19+
<br />
20+
<br />
21+
<br />
1922
<div>场景 3:click-expand 折叠</div>
2023
<br />
2124
<tiny-select v-model="value3" :max-visible-rows="2" :options="options" multiple click-expand> </tiny-select>

examples/sites/demos/pc/app/select/multiple-mix-composition-api.vue

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<tiny-form-item label="多选只读">
1111
<tiny-select v-model="formData.select1" multiple :options="options" hover-expand> </tiny-select>
1212
</tiny-form-item>
13+
<br />
14+
<br />
1315
</tiny-form>
1416
</div>
1517
</template>

examples/sites/demos/pc/app/select/multiple-mix.vue

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<tiny-form-item label="多选只读">
1111
<tiny-select v-model="formData.select1" multiple :options="options" hover-expand> </tiny-select>
1212
</tiny-form-item>
13+
<br />
14+
<br />
1315
</tiny-form>
1416
</div>
1517
</template>

packages/theme/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opentiny/vue-theme",
33
"type": "module",
4-
"version": "3.22.0",
4+
"version": "3.22.1",
55
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
66
"author": "OpenTiny Team",
77
"license": "MIT",

packages/theme/src/option/index.less

-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@
5151
path:first-child {
5252
fill: var(--tv-Option-icon-color-checked);
5353
}
54-
55-
path:last-child {
56-
fill: var(--tv-Option-icon-inverse-disabled);
57-
}
5854
}
5955

6056
.check.tiny-svg {

packages/vue/src/base-select/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opentiny/vue-base-select",
33
"type": "module",
4-
"version": "3.22.0",
4+
"version": "3.22.1",
55
"description": "",
66
"license": "MIT",
77
"sideEffects": false,

packages/vue/src/base-select/src/pc.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
<slot name="dropdown"></slot>
457457
<li
458458
v-if="multiple && showCheck && showAlloption && !state.multipleLimit && !state.query && !remote"
459-
class="tiny-option tiny-select-dropdown__item"
459+
class="tiny-option tiny-option_all tiny-select-dropdown__item"
460460
data-tag="tiny-option"
461461
:class="[
462462
{

0 commit comments

Comments
 (0)