Skip to content
This repository was archived by the owner on Aug 25, 2020. It is now read-only.

Commit d99015c

Browse files
committed
fix: quill injector
1 parent c9b2a20 commit d99015c

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

dist/ngx-forms.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"lint": "tslint -p tsconfig.json -c tslint.json"
1717
},
1818
"peerDependencies": {
19-
"@angular/animations": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
20-
"@angular/common": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
21-
"@angular/compiler": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
22-
"@angular/core": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
23-
"@angular/forms": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
24-
"@angular/platform-browser": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
25-
"@angular/platform-browser-dynamic": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
19+
"@angular/animations": ">=6.0.0",
20+
"@angular/common": ">=6.0.0",
21+
"@angular/compiler": ">=6.0.0",
22+
"@angular/core": ">=6.0.0",
23+
"@angular/forms": ">=6.0.0",
24+
"@angular/platform-browser": ">=6.0.0",
25+
"@angular/platform-browser-dynamic": ">=6.0.0",
2626
"quill": "^1.3.6",
2727
"rxjs": "^5.5.2 || ^6.1.0 || ^6.2.0 || ^6.3.0 || ^6.4.0 || ^6.5.0",
2828
"rxjs-compat": "^5.5.2 || ^6.1.0 || ^6.2.0 || ^6.3.0 || ^6.4.0 || ^6.5.0",
@@ -32,21 +32,21 @@
3232
"dependencies": {
3333
"core-js": "^2.4.1",
3434
"ngx-chips": "^2.0.2",
35-
"ngx-quill": "^6.1.0",
35+
"ngx-quill": "^7.1.2",
3636
"reflect-metadata": "^0.1.13",
3737
"zone.js": "^0.9.1"
3838
},
3939
"devDependencies": {
4040
"fork-ts-checker-webpack-plugin": "^1.3.7",
4141
"@ng-bootstrap/ng-bootstrap": "^4.2.0",
4242
"bootstrap": "^4.3.0",
43-
"@angular/common": "^8.0.2",
44-
"@angular/compiler": "^8.0.2",
45-
"@angular/core": "^8.0.2",
46-
"@angular/forms": "^8.0.2",
47-
"@angular/platform-browser": "^8.0.2",
48-
"@angular/platform-browser-dynamic": "^8.0.2",
49-
"@angular/compiler-cli": "^8.0.2",
43+
"@angular/common": "^6.0.4",
44+
"@angular/compiler": "^6.0.4",
45+
"@angular/core": "^6.0.4",
46+
"@angular/forms": "^6.0.4",
47+
"@angular/platform-browser": "^6.0.4",
48+
"@angular/platform-browser-dynamic": "^6.0.4",
49+
"@angular/compiler-cli": "^6.0.4",
5050
"@commitlint/cli": "^8.0.0",
5151
"@commitlint/config-conventional": "^8.0.0",
5252
"@labshare/semantic-release-config": "^1.0.0",

src/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const defaultLayouts: LayoutDictionary = {
2020
BrowserAnimationsModule,
2121
ReactiveFormsModule,
2222
FormsModule,
23-
QuillModule,
23+
QuillModule.forRoot(),
2424
NgbModule
2525
],
2626
declarations: [

src/app/fields/form-json/json-control/json-control.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class JsonControlValueAccessorComponent implements ControlValueAccessor {
1616
public disabled = false;
1717
public valid = true;
1818

19-
@ViewChild('textarea', { static: false }) textarea: ElementRef;
19+
@ViewChild('textarea') textarea: ElementRef;
2020
@Input() required = false;
2121
onModelChange = (model: any) => { };
2222
onModelTouched = (model: any) => { };

src/app/fields/form-text-editor/form-text-editor.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('FormTextEditorComponent', () => {
1414
imports: [
1515
FormsModule,
1616
ReactiveFormsModule,
17-
QuillModule
17+
QuillModule.forRoot()
1818
],
1919
declarations: [FormTextEditorComponent],
2020
providers: [

0 commit comments

Comments
 (0)