This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
v0.16.1
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 theIEditorConstructionOptions
. If you are using anMonacoExtender
, the propertieslanguage
andvalue
are still available in theIEditorConstructionOptions
passed#beforeCreate
, but they will be removed in version 0.17. Use the propertymodel
instead.