@po-ui/ng-code-editor 5.19.0 → 5.22.1
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/README.md +20 -20
- package/bundles/po-ui-ng-code-editor.umd.js +929 -929
- package/bundles/po-ui-ng-code-editor.umd.js.map +1 -1
- package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.js +2 -2
- package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.js +2 -2
- package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.js +2 -2
- package/esm2015/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.js +2 -2
- package/esm2015/lib/components/po-code-editor/po-code-editor-base.component.js +248 -248
- package/esm2015/lib/components/po-code-editor/po-code-editor-register.service.js +63 -63
- package/esm2015/lib/components/po-code-editor/po-code-editor-suggestion.service.js +28 -28
- package/esm2015/lib/components/po-code-editor/po-code-editor.component.js +225 -225
- package/esm2015/lib/components/po-code-editor/po-code-editor.module.js +31 -31
- package/esm2015/lib/index.js +4 -4
- package/esm2015/po-ui-ng-code-editor.js +6 -6
- package/esm2015/public-api.js +2 -2
- package/fesm2015/po-ui-ng-code-editor.js +574 -574
- package/fesm2015/po-ui-ng-code-editor.js.map +1 -1
- package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-options.interface.d.ts +22 -22
- package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-suggestion.interface.d.ts +37 -37
- package/lib/components/po-code-editor/interfaces/po-code-editor-registerable-tokens.interface.d.ts +21 -21
- package/lib/components/po-code-editor/interfaces/po-code-editor-registerable.interface.d.ts +17 -17
- package/lib/components/po-code-editor/po-code-editor-base.component.d.ts +191 -191
- package/lib/components/po-code-editor/po-code-editor-register.service.d.ts +67 -67
- package/lib/components/po-code-editor/po-code-editor-suggestion.service.d.ts +7 -7
- package/lib/components/po-code-editor/po-code-editor.component.d.ts +58 -58
- package/lib/components/po-code-editor/po-code-editor.module.d.ts +10 -10
- package/lib/index.d.ts +7 -7
- package/package.json +4 -4
- package/po-ui-ng-code-editor-5.22.1.tgz +0 -0
- package/po-ui-ng-code-editor.d.ts +6 -6
- package/po-ui-ng-code-editor.metadata.json +1 -1
- package/public-api.d.ts +1 -1
- package/schematics/README.md +98 -98
- package/schematics/collection.json +10 -10
- package/schematics/ng-add/index.d.ts +10 -10
- package/schematics/ng-add/index.js +38 -38
- package/schematics/ng-add/index.spec.d.ts +1 -1
- package/schematics/ng-add/index.spec.js +113 -113
- package/schematics/ng-add/schema.json +7 -7
- package/po-ui-ng-code-editor-5.19.0.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)**.
|