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

Commit

Permalink
prepare 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
blutorange committed Aug 31, 2019
1 parent fedec76 commit f09f1fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ See also [the changelog of monaco-editor](https://github.com/Microsoft/monaco-ed

# 0.17.2

- Feature #9. Add new method to extender: `createEditorOverrideOptions`. This lets you pass specify custom override services to the
editor.
- Fix #10. Load CSS worker when language is set to SCSS or LESS
- Fix a missing localization (CSS specificity tooltip)
- Implement #9. Add new method to extender: `createEditorOverrideOptions`. This lets you pass specify custom override services to the
editor.
- Fix `https://github.com/microsoft/monaco-editor/issues/1353` (scrolling does not work in Firefox). It will be fixed in
the next release of monaco-editor. Since it seems to be taking some time, this includes the proposed patch
https://github.com/microsoft/vscode/pull/72832
- Demo project: change from cargo to jetty

# 0.17.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Make sure you're running at least PrimeFaces 7.0. Include this as a dependency:
<dependency>
<groupId>com.github.blutorange</groupId>
<artifactId>primefaces.monaco</artifactId>
<version>0.17.1</version>
<version>0.17.2</version>
</dependency>
</dependencies>

Expand Down
1 change: 1 addition & 0 deletions docs/vdldoc/primefaces-blutorange/monacoEditor.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ <h2 class="title">
<li>beforeDestroy(editorWidget). Called before the editor is destroyed, eg. when updating a component via AJAX.</li>
<li>afterDestroy(editorWidget). Called after the editor is destroyed, eg. when updating a component via AJAX. Note that <code>editorWidget.getMonaco()</code> now returns undefined.</li>
<li>createWorker(editorWidget, moduleId, label). Called when a worker for additional language support needs to be created. By default, monaco editor ships with the workers for JSON, CSS, HTML, and TYPESCRIPT. The label is the name of the language, eg. <code>css</code> or <code>javascript</code>. Must return the worker to be used for the given language. Note that <code>editorWidget.getMonaco()</code> returns undefined as the monaco editor was not created yet.</li>
<li>createEditorOverrideServices(editorWidget, options). Called when the monaco editor is created. May return an object with services that should be overriden. See <a href="https://github.com/Microsoft/monaco-editor/issues/935#issuecomment-402174095">here on github</a> for details on the available services. The options are the editor constructor options that will be used to create the editor, they are readonly and must not be changed.</li>
</ul>

</td>
Expand Down

0 comments on commit f09f1fb

Please sign in to comment.