vue-editify 0.2.27 → 0.2.28

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/examples/App.vue CHANGED
@@ -2,7 +2,7 @@
2
2
  <div style="height: 100%; padding: 40px; box-sizing: border-box">
3
3
  <button @click="insert">插入</button>
4
4
  <div>{{ val }}</div>
5
- <Editify disabled :dark="dark" ref="editifyRef" border v-model="val" :menu="menuConfig" placeholder="Please Enter Text..." :toolbar="toolbarConfig" locale="zh_CN" show-word-length allow-paste-html></Editify>
5
+ <Editify :dark="dark" ref="editifyRef" border v-model="val" :menu="menuConfig" placeholder="Please Enter Text..." :toolbar="toolbarConfig" locale="zh_CN" show-word-length allow-paste-html></Editify>
6
6
  </div>
7
7
  </template>
8
8
  <script setup lang="ts">
@@ -345,7 +345,7 @@ declare const _default: import('vue').DefineComponent<{
345
345
  }>> & {
346
346
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
347
347
  }, {
348
- type: "text" | "orderList" | "unorderList" | "link" | "table" | "video" | "image" | "codeBlock";
348
+ type: "link" | "text" | "orderList" | "unorderList" | "table" | "video" | "image" | "codeBlock";
349
349
  color: string;
350
350
  zIndex: number;
351
351
  modelValue: boolean;