vue-editify 0.1.35 → 0.1.36

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -9,7 +9,7 @@ export type { AttachmentOptionsType } from './plugins/attachment';
9
9
  export type { InsertAttachmentUploadErrorType } from './plugins/attachment/insertAttachment/props';
10
10
  export { getParsedomElementByElement, getCurrentParsedomElement, elementIsInList, elementIsInTask, isList, isTask, hasPreInRange, isRangeInPre, hasQuoteInRange, isRangeInQuote, hasListInRange, isRangeInList, hasTaskInRange, isRangeInTask, hasLinkInRange, hasTableInRange, hasImageInRange, hasVideoInRange, queryTextStyle, queryTextMark, getRangeText, setIndentIncrease, setIndentDecrease, setQuote, setAlign, setList, setTask, setTextStyle, setTextMark, removeTextStyle, removeTextMark, setLineHeight, insertLink, insertImage, insertVideo, insertTable, insertCodeBlock } from './core/function';
11
11
  declare const install: FunctionPlugin;
12
- declare const version = "0.1.35";
12
+ declare const version = "0.1.36";
13
13
  export { AlexElement } from 'alex-editor';
14
14
  export { attachment, isAttachment, hasAttachmentInRange } from './plugins/attachment';
15
15
  export { install as default, install, Editify, version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-editify",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -17,7 +17,7 @@
17
17
  "lib": "vue-tsc && vite build"
18
18
  },
19
19
  "dependencies": {
20
- "alex-editor": "^1.3.35",
20
+ "alex-editor": "^1.3.36",
21
21
  "dap-util": "^1.5.4",
22
22
  "highlight.js": "^11.8.0",
23
23
  "vue": "^3.4.19"
package/src/index.ts CHANGED
@@ -21,7 +21,7 @@ const install: FunctionPlugin = (app: App) => {
21
21
  app.component(Editify.name!, Editify)
22
22
  }
23
23
  //版本号
24
- const version = '0.1.35'
24
+ const version = '0.1.36'
25
25
 
26
26
  //导出AlexElement元素
27
27
  export { AlexElement } from 'alex-editor'