support binding [form] data directly (#1996)

- ability to bind [form] data directly inside `<activiti-form>` component
- ability to parse forms with FormService
- demo of the custom form in demo shell
This commit is contained in:
Denys Vuika
2017-06-21 19:59:57 +01:00
committed by Eugenio Romano
parent 5e3f14963b
commit 036f131122
10 changed files with 1205 additions and 7 deletions

View File

@@ -60,7 +60,8 @@ import {
AboutComponent,
FilesComponent,
FormNodeViewer,
SettingsComponent
SettingsComponent,
FormDemoComponent
} from './components/index';
let appConfigFile = 'app.config-dev.json';
@@ -113,7 +114,8 @@ if (process.env.ENV === 'production') {
FilesComponent,
FormNodeViewer,
CreateFolderDialog,
SettingsComponent
SettingsComponent,
FormDemoComponent
],
providers: [
{ provide: AppConfigService, useClass: DebugAppConfigService }