Skip to content

Latest commit

 

History

History
97 lines (59 loc) · 2.2 KB

CHANGELOG.md

File metadata and controls

97 lines (59 loc) · 2.2 KB

CHANGELOG

v6.1.1 (2022-08-28)

  • feat: use vue's built-in CSSProperties instead of csstype

v6.1.0 (2022-08-27)

  • feat: add phrases prop #166

v6.0.2 (2022-07-27)

  • fix: use the correct global component name #161

v6.0.1 (2022-07-22)

  • feat: add autoDestroy prop for #156.
  • feat: refactoring component.
  • chore: upgrade deps and upgrade vite to v3.

v6.0.0 (2022-06-13)

Breaking changes

  1. The package no longer depends on the codemirror package and now requires you to install the codemirror dependency manually.

e.g. npm install codemirror vue-codemirror

  1. The package no longer exports the original codemirror package. If you need import interface from codemirror, you now need to make codemirror explicitly dependent in your package.json.

e.g.

"dependencies": {
  "@codemirror/state": "6.x"
}
import { EditorView } from 'codemirror'
import { EditorState } from '@codemirror/state'

v5.1.0 (2022-06-12)

v5.0.1 (2022-05-14)

  • Use the correct version dependencies for the @codemirror/* package.

v5.0.0-beta.1

  • Upgrade to Vue@3
  • Upgrade to CodeMirror@v6

v4.0.6

  • add textarea name prop with #82

v4.0.5

Enable switching from/to DiffView based on 'merge' prop status(merge pr 65).

v4.0.4

optimize events and refresh function.

v4.0.3

add props placeholder

v4.0.2

  • add scroll event

v4.0.1

  • the components options attr is not required

v4.0.0

  • fix import es module bug
  • add test script
  • assign options to ssr.js
  • add global default events
  • update the options assign logic
  • add global default options
  • update editor to codemirror

project

  • add browser support
  • add test scripts
  • update babel and webpack configs