Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

v0.16.1

Compare
Choose a tag to compare
@blutorange blutorange released this 15 Mar 21:41
· 46 commits to master since this release
33b37d9

0.16.1

  • update to monaco editor 0.16.1 (solves an issue with IE)
  • add new languages to the Enum of available code languages (see EditorOptions#setLanguage)
  • add an optional hook to the extender: createWorker. This lets you load your own workers instead of using the default ones.
  • add 3 new options to the monacoEditor tag: directory, basename, extension. This may be useful in case you need to customize the editor on the client side.
  • updated and corrected type definitions
  • When the editor is instantiated, create an ITextModel manually instead of just passing a value and language in the IEditorConstructionOptions. If you are using an MonacoExtender, the properties language and value are still available in the IEditorConstructionOptions passed #beforeCreate, but they will be removed in version 0.17. Use the property model instead.