@ng-util/monaco-editor 12.1.1 → 13.1.0

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.
Files changed (31) hide show
  1. package/README.md +1 -0
  2. package/esm2020/monaco-editor-base.component.mjs +152 -0
  3. package/esm2020/monaco-editor-diff.component.mjs +47 -0
  4. package/esm2020/monaco-editor.component.mjs +102 -0
  5. package/esm2020/monaco-editor.config.mjs +3 -0
  6. package/esm2020/monaco-editor.module.mjs +27 -0
  7. package/{esm2015/monaco-editor.types.js → esm2020/monaco-editor.types.mjs} +0 -0
  8. package/esm2020/ng-util-monaco-editor.mjs +5 -0
  9. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  10. package/fesm2015/{ng-util-monaco-editor.js → ng-util-monaco-editor.mjs} +106 -78
  11. package/fesm2015/ng-util-monaco-editor.mjs.map +1 -0
  12. package/fesm2020/ng-util-monaco-editor.mjs +326 -0
  13. package/fesm2020/ng-util-monaco-editor.mjs.map +1 -0
  14. package/monaco-editor-base.component.d.ts +6 -3
  15. package/monaco-editor-diff.component.d.ts +5 -2
  16. package/monaco-editor.component.d.ts +5 -1
  17. package/monaco-editor.config.d.ts +1 -1
  18. package/monaco-editor.module.d.ts +7 -0
  19. package/monaco.d.ts +1603 -997
  20. package/ng-util-monaco-editor.d.ts +1 -1
  21. package/package.json +20 -8
  22. package/bundles/ng-util-monaco-editor.umd.js +0 -656
  23. package/bundles/ng-util-monaco-editor.umd.js.map +0 -1
  24. package/esm2015/monaco-editor-base.component.js +0 -148
  25. package/esm2015/monaco-editor-diff.component.js +0 -42
  26. package/esm2015/monaco-editor.component.js +0 -85
  27. package/esm2015/monaco-editor.config.js +0 -3
  28. package/esm2015/monaco-editor.module.js +0 -23
  29. package/esm2015/ng-util-monaco-editor.js +0 -6
  30. package/fesm2015/ng-util-monaco-editor.js.map +0 -1
  31. package/ng-util-monaco-editor.metadata.json +0 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@ng-util/monaco-editor" />
4
5
  export * from './public-api';
5
- export { NuMonacoEditorBase as ɵa } from './monaco-editor-base.component';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-util/monaco-editor",
3
- "version": "12.1.1",
3
+ "version": "13.1.0",
4
4
  "author": "cipchk<cipchk@qq.com>",
5
5
  "description": "Monaco Code Editor for Angular",
6
6
  "license": "MIT",
@@ -20,14 +20,26 @@
20
20
  "monaco"
21
21
  ],
22
22
  "sideEffects": false,
23
- "main": "bundles/ng-util-monaco-editor.umd.js",
24
- "module": "fesm2015/ng-util-monaco-editor.js",
25
- "es2015": "fesm2015/ng-util-monaco-editor.js",
26
- "esm2015": "esm2015/ng-util-monaco-editor.js",
27
- "fesm2015": "fesm2015/ng-util-monaco-editor.js",
23
+ "module": "fesm2015/ng-util-monaco-editor.mjs",
24
+ "es2020": "fesm2020/ng-util-monaco-editor.mjs",
25
+ "esm2020": "esm2020/ng-util-monaco-editor.mjs",
26
+ "fesm2020": "fesm2020/ng-util-monaco-editor.mjs",
27
+ "fesm2015": "fesm2015/ng-util-monaco-editor.mjs",
28
28
  "typings": "ng-util-monaco-editor.d.ts",
29
- "metadata": "ng-util-monaco-editor.metadata.json",
29
+ "exports": {
30
+ "./package.json": {
31
+ "default": "./package.json"
32
+ },
33
+ ".": {
34
+ "types": "./ng-util-monaco-editor.d.ts",
35
+ "esm2020": "./esm2020/ng-util-monaco-editor.mjs",
36
+ "es2020": "./fesm2020/ng-util-monaco-editor.mjs",
37
+ "es2015": "./fesm2015/ng-util-monaco-editor.mjs",
38
+ "node": "./fesm2015/ng-util-monaco-editor.mjs",
39
+ "default": "./fesm2020/ng-util-monaco-editor.mjs"
40
+ }
41
+ },
30
42
  "dependencies": {
31
- "tslib": "^2.1.0"
43
+ "tslib": "^2.3.0"
32
44
  }
33
45
  }