@syncfusion/ej2-angular-diagrams
Version:
Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.
11 lines (9 loc) • 515 B
text/typescript
import { pkgName, pkgVer, moduleName, themeVer } from './../utils/lib-details';
import { install } from '@syncfusion/ej2-angular-base/schematics';
import { OptionsSchema, LibOptionsSchema } from './schema';
import { Rule } from '@angular-devkit/schematics';
export default function (options: OptionsSchema): Rule {
const libOptions: LibOptionsSchema = Object.assign({},
{ 'pkgName': pkgName, 'pkgVer': pkgVer, 'moduleName': moduleName, 'themeVer': themeVer });
return install(options, libOptions);
}