@gravitee/ui-particles-angular 7.37.2 → 7.37.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/esm2020/lib/gio-monaco-editor/gio-monaco-editor.component.mjs +9 -13
- package/fesm2015/gravitee-ui-particles-angular.mjs +8 -12
- package/fesm2015/gravitee-ui-particles-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-particles-angular.mjs +8 -12
- package/fesm2020/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-monaco-editor/gio-monaco-editor.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3911,18 +3911,14 @@ class GioMonacoEditorComponent {
|
|
|
3911
3911
|
if (!languageConfig) {
|
|
3912
3912
|
return;
|
|
3913
3913
|
}
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
break;
|
|
3923
|
-
default:
|
|
3924
|
-
break;
|
|
3925
|
-
}
|
|
3914
|
+
switch (languageConfig.language) {
|
|
3915
|
+
case 'json':
|
|
3916
|
+
if (languageConfig.schemas) {
|
|
3917
|
+
this.languageJsonService.addSchemas(uri, languageConfig.schemas);
|
|
3918
|
+
}
|
|
3919
|
+
break;
|
|
3920
|
+
default:
|
|
3921
|
+
break;
|
|
3926
3922
|
}
|
|
3927
3923
|
}
|
|
3928
3924
|
}
|