ngx-quill
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -9,3 +9,3 @@ { | ||
"root": "src", | ||
"outDir": "dist", | ||
"outDir": "demo", | ||
"assets": [ | ||
@@ -12,0 +12,0 @@ "assets", |
{ | ||
"name": "ngx-quill", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"license": "MIT", | ||
@@ -21,3 +21,4 @@ "author": { | ||
"pree2e": "webdriver-manager update", | ||
"e2e": "protractor" | ||
"e2e": "protractor", | ||
"build": "rm -rf dist && tsc -m system --outFile ./dist/index.js src/quill/quill.module.ts" | ||
}, | ||
@@ -24,0 +25,0 @@ "dependencies": { |
@@ -6,3 +6,3 @@ import './polyfills.ts'; | ||
import { environment } from './environments/environment'; | ||
import { AppModule } from './app/'; | ||
import { AppModule } from './demo/'; | ||
@@ -9,0 +9,0 @@ if (environment.production) { |
@@ -25,3 +25,2 @@ import { | ||
`, | ||
styleUrls: ['./quill-editor.component.css'], | ||
providers: [{ | ||
@@ -32,2 +31,8 @@ provide: NG_VALUE_ACCESSOR, | ||
}], | ||
styles: [` | ||
.ql-container .ql-editor { | ||
min-height: 200px; | ||
padding-bottom: 50px; | ||
} | ||
`], | ||
encapsulation: ViewEncapsulation.None | ||
@@ -82,3 +87,3 @@ }) | ||
this.quillEditor = new Quill(this.editorElem, { | ||
modules: this.modules || this.defaultModules, | ||
modules: this.modules || this.defaultModules, | ||
placeholder: this.placeholder || 'Insert text here ...', | ||
@@ -85,0 +90,0 @@ readOnly: this.readOnly || false, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35741
30
723