vue-editify 0.2.2 → 0.2.3

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/lib/index.d.ts CHANGED
@@ -734,7 +734,7 @@ export type { MenuButtonType, MenuSelectButtonType, MenuDisplayButtonType, MenuI
734
734
  export type { ElementMatchConfigType } from './core/function';
735
735
  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';
736
736
  declare const install: (app: App) => void;
737
- declare const version = "0.2.2";
737
+ declare const version = "0.2.3";
738
738
  export { AlexElement } from 'alex-editor';
739
739
  export type { AttachmentOptionsType } from './plugins/attachment';
740
740
  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.2",
3
+ "version": "0.2.3",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "*.css"
@@ -12,7 +12,7 @@
12
12
  align-items: center;
13
13
  position: relative;
14
14
  padding: 6px 10px;
15
- transform: all 200ms;
15
+ transition: all 200ms;
16
16
  margin-bottom: 10px;
17
17
  opacity: 0.8;
18
18
 
package/src/index.ts CHANGED
@@ -22,7 +22,7 @@ const install = (app: App) => {
22
22
  app.component(Editify.name!, Editify)
23
23
  }
24
24
  //版本号
25
- const version = '0.2.2'
25
+ const version = '0.2.3'
26
26
 
27
27
  //导出AlexElement元素
28
28
  export { AlexElement } from 'alex-editor'