Package Exports
- ng2sf-tinymce
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ng2sf-tinymce) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
TinyMCE widget for Angular2 Schema Form
Install
npm install ng2sf-tinymce
Usage
Add Ng2SFTinyMCEModule
wherever you need it in your dependency tree:
import { SchemaFormModule } from "angular2-schema-form";
import { Ng2SFTinyMCEModule } from "ng2sf-tinymce";
@NgModule({
imports: [
BrowserModule,
/*...*/
SchemaFormModule,
Ng2SFTinyMCEModule
],
declarations: [AppComponent, /*...*/]
})
export class AppModule {}
Register the TinyMCEWidget in your WidgetRegistry
:
import { WidgetRegistry } from "angular2-schema-form";
import { TinyMCEWidget } from "ng2sf-tinymce";
@Component({/*...*/})
export class AppComponent {
constructor(widgetRegistry: WidgetRegistry) {
widgetRegistry.register("tinymce", TinyMCEWidget);
}
}
Use the tinymce
widget's id in your schema:
{
"type": "object",
"properties": {
"type": "string",
"description": "A richtext input",
"widget": "tinymce"
}
}