forked from mmarkus3/ngx-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Markus Montonen
committed
Feb 14, 2019
1 parent
3c3bc70
commit 948faa3
Showing
60 changed files
with
9,422 additions
and
7,948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
``` | ||
. | ||
├── e2e | ||
│ ├── app.e2e-spec.ts | ||
│ ├── app.po.ts | ||
│ └── tsconfig.e2e.json | ||
├── scripts | ||
│ ├── build.sh | ||
│ └── release.sh | ||
├── src | ||
│ ├── app | ||
│ │ ├── ngx-editor | ||
│ │ │ ├── common | ||
│ │ │ │ ├── services | ||
│ │ │ │ │ ├── command-executor.service.spec.ts | ||
│ │ │ │ │ ├── command-executor.service.ts | ||
│ │ │ │ │ ├── message.service.spec.ts | ||
│ │ │ │ │ └── message.service.ts | ||
│ │ │ │ ├── utils | ||
│ │ │ │ │ └── ngx-editor.utils.ts | ||
│ │ │ │ └── ngx-editor.defaults.ts | ||
│ │ │ ├── ngx-editor-message | ||
│ │ │ │ ├── ngx-editor-message.component.html | ||
│ │ │ │ ├── ngx-editor-message.component.scss | ||
│ │ │ │ ├── ngx-editor-message.component.spec.ts | ||
│ │ │ │ └── ngx-editor-message.component.ts | ||
│ │ │ ├── ngx-editor-toolbar | ||
│ │ │ │ ├── ngx-editor-toolbar.component.html | ||
│ │ │ │ ├── ngx-editor-toolbar.component.scss | ||
│ │ │ │ ├── ngx-editor-toolbar.component.spec.ts | ||
│ │ │ │ └── ngx-editor-toolbar.component.ts | ||
│ │ │ ├── ngx-grippie | ||
│ │ │ │ ├── ngx-grippie.component.html | ||
│ │ │ │ ├── ngx-grippie.component.scss | ||
│ │ │ │ ├── ngx-grippie.component.spec.ts | ||
│ │ │ │ └── ngx-grippie.component.ts | ||
│ │ │ ├── ngx-editor.component.html | ||
│ │ │ ├── ngx-editor.component.scss | ||
│ │ │ ├── ngx-editor.component.spec.ts | ||
│ │ │ ├── ngx-editor.component.ts | ||
│ │ │ └── ngx-editor.module.ts | ||
│ │ ├── app.component.html | ||
│ │ ├── app.component.scss | ||
│ │ ├── app.component.spec.ts | ||
│ │ ├── app.component.ts | ||
│ │ ├── app.module.ts | ||
│ │ ├── app.service.spec.ts | ||
│ │ └── app.service.ts | ||
│ ├── assets | ||
│ │ └── icons | ||
│ │ ├── ngx-editor-opt1 | ||
│ │ │ ├── ang_edit1_128.ico | ||
│ │ │ ├── ang_edit1_128.png | ||
│ │ │ ├── ang_edit1_256.ico | ||
│ │ │ ├── ang_edit1_256.png | ||
│ │ │ ├── ang_edit1_32.png | ||
│ │ │ ├── ang_edit1_64.ico | ||
│ │ │ ├── ang_edit1_64.png | ||
│ │ │ ├── ang_editv1_32_128.ico | ||
│ │ │ ├── ang_editv1_32_256.ico | ||
│ │ │ ├── ngx-editor1_64x64.ico | ||
│ │ │ ├── ngx-editor1.gvdesign | ||
│ │ │ ├── ngx-editor1.png | ||
│ │ │ └── ngx-editor1.svg | ||
│ │ ├── ngx-editor-opt2 | ||
│ │ │ ├── ang_editv4_128.ico | ||
│ │ │ ├── ang_editv4_128.png | ||
│ │ │ ├── ang_editv4_256.ico | ||
│ │ │ ├── ang_editv4_256.png | ||
│ │ │ ├── ang_editv4_32_128.ico | ||
│ │ │ ├── ang_editv4_32_256.ico | ||
│ │ │ ├── ang_editv4_32.ico | ||
│ │ │ ├── ang_editv4_32.png | ||
│ │ │ ├── ang_editv4_64.ico | ||
│ │ │ ├── ang_editv4_64.png | ||
│ │ │ ├── ngx-editor2_64x64.ico | ||
│ │ │ ├── ngx-editor2.gvdesign | ||
│ │ │ ├── ngx-editor2.png | ||
│ │ │ └── ngx-editor2.svg | ||
│ │ ├── ngx-editor.png | ||
│ │ └── ngx-editor.svg | ||
│ ├── environments | ||
│ │ ├── environment.prod.ts | ||
│ │ └── environment.ts | ||
│ ├── favicon.ico | ||
│ ├── index.html | ||
│ ├── main.ts | ||
│ ├── polyfills.ts | ||
│ ├── styles.scss | ||
│ ├── test.ts | ||
│ ├── tsconfig.app.json | ||
│ ├── tsconfig.spec.json | ||
│ └── typings.d.ts | ||
├── .vscode | ||
│ └── settings.json | ||
├── .angular-cli.json | ||
├── .editorconfig | ||
├── karma.conf.js | ||
├── LICENSE | ||
├── ng-package.json | ||
├── package.json | ||
├── package-lock.json | ||
├── protractor.conf.js | ||
├── public_api.ts | ||
├── .pullapprove.yml | ||
├── README.md | ||
├── .travis.yml | ||
├── TREE.md | ||
├── tsconfig.json | ||
├── tslint.json | ||
└── yarn.lock | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# HTML Code Editor | ||
|
||
Code Editor allows to view and edit plain HTML code. [codemirror](https://codemirror.net/) is used for this purpose. | ||
|
||
In order for the code editor to work. You must install codemirror as a `peerDependency` | ||
|
||
```bash | ||
npm install codemirror --save | ||
|
||
#or | ||
|
||
yarn add codemirror | ||
``` | ||
|
||
Then import the CodeMirror's stylesheet into your app. | ||
|
||
```bash | ||
node_modules/codemirror/lib/codemirror.css | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.