vue-editify 0.2.6 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -743,7 +743,7 @@ export type { MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuI
743
743
  export type { ElementMatchConfigType } from './core/function';
744
744
  export { elementIsMatch, getMatchElementByElement, getMatchElementByRange, isList, isTask, elementIsInList, elementIsInTask, hasPreInRange, hasQuoteInRange, hasListInRange, hasTaskInRange, hasLinkInRange, hasTableInRange, hasImageInRange, hasVideoInRange, isRangeInQuote, isRangeInList, isRangeInTask, queryTextStyle, queryTextMark, getRangeText, setIndentIncrease, setIndentDecrease, setQuote, setAlign, setList, setTask, setTextStyle, setTextMark, removeTextStyle, removeTextMark, setLineHeight, insertLink, insertImage, insertVideo, insertTable, insertCodeBlock, insertSeparator } from './core/function';
745
745
  declare const install: (app: App) => void;
746
- declare const version = "0.2.6";
746
+ declare const version = "0.2.8";
747
747
  export { AlexElement } from 'alex-editor';
748
748
  export type { AttachmentOptionsType } from './plugins/attachment';
749
749
  export type { InsertAttachmentUploadErrorType } from './plugins/attachment/insertAttachment/props';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-editify",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -17,8 +17,8 @@
17
17
  "lib": "vue-tsc && vite build"
18
18
  },
19
19
  "dependencies": {
20
- "alex-editor": "^1.4.14",
21
- "dap-util": "^1.5.4",
20
+ "alex-editor": "^1.4.16",
21
+ "dap-util": "^1.5.5",
22
22
  "highlight.js": "^11.8.0",
23
23
  "katex": "^0.16.10",
24
24
  "vue": "^3.4.19"
@@ -31,9 +31,9 @@
31
31
  "terser": "^5.16.9",
32
32
  "typescript": "^5.2.2",
33
33
  "vite": "^5.2.8",
34
+ "vite-plugin-css-injected-by-js": "^3.5.1",
34
35
  "vite-plugin-dts": "^3.7.3",
35
- "vue-tsc": "^1.8.27",
36
- "vite-plugin-css-injected-by-js": "^3.5.1"
36
+ "vue-tsc": "^1.8.27"
37
37
  },
38
38
  "browserslist": [
39
39
  "> 1%",
package/src/index.ts CHANGED
@@ -24,7 +24,7 @@ const install = (app: App) => {
24
24
  app.component(Editify.name!, Editify)
25
25
  }
26
26
  //版本号
27
- const version = '0.2.6'
27
+ const version = '0.2.8'
28
28
 
29
29
  //导出AlexElement元素
30
30
  export { AlexElement } from 'alex-editor'