Skip to content

fix(base-select): [select,base-select] fix the highlight style of the selected item icon #3268

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
<br />
<br />
<br />
<br />
<br />
<br />
<div>场景 3:click-expand 折叠</div>
<br />
<tiny-select v-model="value3" :max-visible-rows="2" :options="options" multiple click-expand> </tiny-select>
Expand Down
3 changes: 3 additions & 0 deletions examples/sites/demos/pc/app/select/collapse-tags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
<br />
<br />
<br />
<br />
<br />
<br />
<div>场景 3:click-expand 折叠</div>
<br />
<tiny-select v-model="value3" :max-visible-rows="2" :options="options" multiple click-expand> </tiny-select>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<tiny-form-item label="多选只读">
<tiny-select v-model="formData.select1" multiple :options="options" hover-expand> </tiny-select>
</tiny-form-item>
<br />
<br />
</tiny-form>
</div>
</template>
Expand Down
2 changes: 2 additions & 0 deletions examples/sites/demos/pc/app/select/multiple-mix.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<tiny-form-item label="多选只读">
<tiny-select v-model="formData.select1" multiple :options="options" hover-expand> </tiny-select>
</tiny-form-item>
<br />
<br />
</tiny-form>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opentiny/vue-theme",
"type": "module",
"version": "3.22.0",
"version": "3.22.1",
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"author": "OpenTiny Team",
"license": "MIT",
Expand Down
4 changes: 0 additions & 4 deletions packages/theme/src/option/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
path:first-child {
fill: var(--tv-Option-icon-color-checked);
}

path:last-child {
fill: var(--tv-Option-icon-inverse-disabled);
}
}

.check.tiny-svg {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/base-select/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opentiny/vue-base-select",
"type": "module",
"version": "3.22.0",
"version": "3.22.1",
"description": "",
"license": "MIT",
"sideEffects": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/src/base-select/src/pc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@
<slot name="dropdown"></slot>
<li
v-if="multiple && showCheck && showAlloption && !state.multipleLimit && !state.query && !remote"
class="tiny-option tiny-select-dropdown__item"
class="tiny-option tiny-option_all tiny-select-dropdown__item"
data-tag="tiny-option"
:class="[
{
Expand Down
Loading