mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
fix(select): incorrect when disabled and filterable (#699)
Co-authored-by: Jiwen Bai <56228105@qq.com> Co-authored-by: 07akioni <07akioni2@gmail.com>
This commit is contained in:
parent
966918ad57
commit
4e45f5d9c2
@ -5,10 +5,12 @@
|
||||
### Feats
|
||||
|
||||
- `n-time-picker` optimization the now button logic, closes [#401](https://github.com/TuSimple/naive-ui/issues/401).
|
||||
|
||||
### Fixes
|
||||
|
||||
- Fix `n-message`'s `destroyAll` method doesn't work.
|
||||
- Fix `n-timeline`'s header slot is invalid when using alone.
|
||||
- Fix `n-select` incorrect style when props has `disabled` and `filterable`, closes [#698](https://github.com/TuSimple/naive-ui/issues/698).
|
||||
|
||||
## 2.15.9 (2021-07-28)
|
||||
|
||||
|
@ -4,11 +4,13 @@
|
||||
|
||||
### Feats
|
||||
|
||||
- `n-time-picker` 优化此刻按钮逻辑, 关闭 [#401](https://github.com/TuSimple/naive-ui/issues/401)
|
||||
- `n-time-picker` 优化 now 按钮的逻辑,关闭 [#401](https://github.com/TuSimple/naive-ui/issues/401)
|
||||
|
||||
### Fixes
|
||||
|
||||
- 修复 `n-message` 的 `destroyAll` 方法不生效
|
||||
- 修复 `n-timeline` 的 header slot 单独使用无效的问题
|
||||
- 修复 `n-select` 当属性是 `disabled` 和 `filterable` 时样式错误, 关闭 [#698](https://github.com/TuSimple/naive-ui/issues/698)
|
||||
|
||||
## 2.15.9 (2021-07-28)
|
||||
|
||||
|
@ -196,6 +196,9 @@ export default c([
|
||||
cE('input', `
|
||||
cursor: not-allowed;
|
||||
color: var(--text-color-disabled);
|
||||
`),
|
||||
cE('render-label', `
|
||||
color: var(--text-color-disabled);
|
||||
`)
|
||||
]),
|
||||
cB('base-selection-tags', `
|
||||
|
Loading…
Reference in New Issue
Block a user