@po-ui/ng-code-editor 5.22.2 → 5.22.5

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 (40) hide show
  1. package/README.md +20 -20
  2. package/bundles/po-ui-ng-code-editor.umd.js +929 -929
  3. package/bundles/po-ui-ng-code-editor.umd.js.map +1 -1
  4. package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.js +2 -2
  5. package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.js +2 -2
  6. package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.js +2 -2
  7. package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.js +2 -2
  8. package/esm2015/lib/components/po-code-editor/po-code-editor-base.component.js +248 -248
  9. package/esm2015/lib/components/po-code-editor/po-code-editor-register.service.js +63 -63
  10. package/esm2015/lib/components/po-code-editor/po-code-editor-suggestion.service.js +28 -28
  11. package/esm2015/lib/components/po-code-editor/po-code-editor.component.js +225 -225
  12. package/esm2015/lib/components/po-code-editor/po-code-editor.module.js +31 -31
  13. package/esm2015/lib/index.js +4 -4
  14. package/esm2015/po-ui-ng-code-editor.js +6 -6
  15. package/esm2015/public-api.js +2 -2
  16. package/fesm2015/po-ui-ng-code-editor.js +574 -574
  17. package/fesm2015/po-ui-ng-code-editor.js.map +1 -1
  18. package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.d.ts +22 -22
  19. package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.d.ts +37 -37
  20. package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.d.ts +21 -21
  21. package/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.d.ts +17 -17
  22. package/lib/components/po-code-editor/po-code-editor-base.component.d.ts +191 -191
  23. package/lib/components/po-code-editor/po-code-editor-register.service.d.ts +67 -67
  24. package/lib/components/po-code-editor/po-code-editor-suggestion.service.d.ts +7 -7
  25. package/lib/components/po-code-editor/po-code-editor.component.d.ts +58 -58
  26. package/lib/components/po-code-editor/po-code-editor.module.d.ts +10 -10
  27. package/lib/index.d.ts +7 -7
  28. package/package.json +4 -4
  29. package/po-ui-ng-code-editor-5.22.5.tgz +0 -0
  30. package/po-ui-ng-code-editor.d.ts +6 -6
  31. package/po-ui-ng-code-editor.metadata.json +1 -1
  32. package/public-api.d.ts +1 -1
  33. package/schematics/README.md +98 -98
  34. package/schematics/collection.json +10 -10
  35. package/schematics/ng-add/index.d.ts +10 -10
  36. package/schematics/ng-add/index.js +38 -38
  37. package/schematics/ng-add/index.spec.d.ts +1 -1
  38. package/schematics/ng-add/index.spec.js +113 -113
  39. package/schematics/ng-add/schema.json +7 -7
  40. package/po-ui-ng-code-editor-5.22.2.tgz +0 -0
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
- # PO Code Editor
2
-
3
- O **PO Code Editor** é uma biblioteca Angular de componente para edição de código fonte.
4
-
5
- Tem dependência das bibliotecas:
6
- - [PO UI](http://po-ui.io);
7
- - [Monaco](https://microsoft.github.io/monaco-editor/).
8
-
9
- #### Instalação
10
-
11
- Instalando com npm:
12
- ```
13
- npm install @po-ui/ng-code-editor
14
- ```
15
-
16
- Caso prefira instalar com o yarn:
17
- ```
18
- yarn add @po-ui/ng-code-editor
19
- ```
20
-
1
+ # PO Code Editor
2
+
3
+ O **PO Code Editor** é uma biblioteca Angular de componente para edição de código fonte.
4
+
5
+ Tem dependência das bibliotecas:
6
+ - [PO UI](http://po-ui.io);
7
+ - [Monaco](https://microsoft.github.io/monaco-editor/).
8
+
9
+ #### Instalação
10
+
11
+ Instalando com npm:
12
+ ```
13
+ npm install @po-ui/ng-code-editor
14
+ ```
15
+
16
+ Caso prefira instalar com o yarn:
17
+ ```
18
+ yarn add @po-ui/ng-code-editor
19
+ ```
20
+
21
21
  Para maiores informações, acesse **[documentação do PO Code Editor](https://po-ui.io/documentation/po-code-editor)**.