@synerise/ds-code-area 0.6.2 → 0.6.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/CHANGELOG.md +11 -0
- package/dist/components/CodeAreaEditorRaw.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.6.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-code-area@0.6.2...@synerise/ds-code-area@0.6.3) (2025-03-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **code-area:** test colorize ([e52a589](https://github.com/Synerise/synerise-design/commit/e52a5898b6ca86da350445002e8e77aaa92b68ac))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [0.6.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-code-area@0.6.1...@synerise/ds-code-area@0.6.2) (2025-03-10)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @synerise/ds-code-area
|
|
@@ -65,6 +65,7 @@ export var CodeAreaEditorRaw = function CodeAreaEditorRaw(_ref) {
|
|
|
65
65
|
var markers = monacoInstance.editor.getModelMarkers({});
|
|
66
66
|
onDidChangeMarkers && onDidChangeMarkers(markers);
|
|
67
67
|
});
|
|
68
|
+
monacoInstance.editor.colorize('test', 'html', {});
|
|
68
69
|
beforeMount && beforeMount(monacoInstance);
|
|
69
70
|
}, [onDidChangeMarkers, beforeMount]);
|
|
70
71
|
var handleEditorDidMount = useCallback(function (monacoEditor, monacoInstance) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-code-area",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "CodeArea UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"monaco-editor": "0.34.1"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "74602b6957caf97eb51d8256a86c32d9071a88ad"
|
|
58
58
|
}
|