完成富文本编辑器的重构
parent
0b2ac330c8
commit
902aadd424
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
- wkit 针对`web components`的核心封装库, 以数据驱动, 可以更方便的开发 wc 组件
|
- wkit 针对`web components`的核心封装库, 以数据驱动, 可以更方便的开发 wc 组件
|
||||||
|
|
||||||
### 开发进度 && 计划 (40/55)
|
### 开发进度 && 计划 (41/55)
|
||||||
|
|
||||||
- [x] `wc-card` 卡片组件
|
- [x] `wc-card` 卡片组件
|
||||||
- [x] `wc-space` 间隔组件
|
- [x] `wc-space` 间隔组件
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
- [x] `wc-layer` 弹层组件
|
- [x] `wc-layer` 弹层组件
|
||||||
- [x] `wc-markd` markdown 组件
|
- [x] `wc-markd` markdown 组件
|
||||||
- [ ] `wc-meditor` md 文本编辑器
|
- [ ] `wc-meditor` md 文本编辑器
|
||||||
- [ ] `wc-neditor` 富文本编辑器
|
- [x] `wc-editor` 富文本编辑器
|
||||||
- [x] `wc-pager` 分页组件
|
- [x] `wc-pager` 分页组件
|
||||||
- [x] `wc-color` 颜色选择器
|
- [x] `wc-color` 颜色选择器
|
||||||
- [ ] `wc-datepicker` 日期选择器
|
- [ ] `wc-datepicker` 日期选择器
|
||||||
|
|
|
@ -118,7 +118,6 @@ class Editor extends Component {
|
||||||
:host {
|
:host {
|
||||||
display: flex;
|
display: flex;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
min-height: 100px;
|
|
||||||
max-height: 720px;
|
max-height: 720px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
transition: box-shadow 0.15s linear;
|
transition: box-shadow 0.15s linear;
|
||||||
|
@ -791,7 +790,6 @@ class Editor extends Component {
|
||||||
unmounted() {
|
unmounted() {
|
||||||
this._scrollFn?.disconnect()
|
this._scrollFn?.disconnect()
|
||||||
this._inputFn?.disconnect()
|
this._inputFn?.disconnect()
|
||||||
|
|
||||||
clearOutsideClick(this._clickoutsideFn)
|
clearOutsideClick(this._clickoutsideFn)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue