diff options
author | Lvbo163 <lv.bo163@zte.com.cn> | 2017-08-30 17:17:11 +0800 |
---|---|---|
committer | Lvbo163 <lv.bo163@zte.com.cn> | 2017-08-30 17:22:30 +0800 |
commit | 97e19323bd1e9ee44a02173a5ba05d13219c4082 (patch) | |
tree | a2c809787cf8f0b1109b6ca652a0f58d7d8915de /sdc-workflow-designer-ui/.angular-cli.json | |
parent | aa77d17e3f68d8236b4fa07904fec054b07aa23b (diff) |
add property edit panel
add canvas component and add property edit panel, this panel will display while a workflow node is double clicked.
Issue-ID: SDC-260
Change-Id: I0f150b0a480f986e0a8ab3bb67cf89f3e2267155
Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/.angular-cli.json')
-rw-r--r-- | sdc-workflow-designer-ui/.angular-cli.json | 112 |
1 files changed, 57 insertions, 55 deletions
diff --git a/sdc-workflow-designer-ui/.angular-cli.json b/sdc-workflow-designer-ui/.angular-cli.json index dc7dacd1..7154dc18 100644 --- a/sdc-workflow-designer-ui/.angular-cli.json +++ b/sdc-workflow-designer-ui/.angular-cli.json @@ -1,60 +1,62 @@ { - "$schema": "./node_modules/@angular/cli/lib/config/schema.json", - "project": { - "name": "workflowmodeler" - }, - "apps": [ - { - "root": "src", - "outDir": "dist", - "assets": [ - "assets", - "favicon.ico" - ], - "index": "index.html", - "main": "main.ts", - "polyfills": "polyfills.ts", - "test": "test.ts", - "tsconfig": "tsconfig.app.json", - "testTsconfig": "tsconfig.spec.json", - "prefix": "app", - "styles": [ - "styles.css" - ], - "scripts": [], - "environmentSource": "environments/environment.ts", - "environments": { - "dev": "environments/environment.ts", - "prod": "environments/environment.prod.ts" - } - } - ], - "e2e": { - "protractor": { - "config": "./protractor.conf.js" - } - }, - "lint": [ - { - "project": "src/tsconfig.app.json", - "exclude": "**/node_modules/**" + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "project": { + "name": "workflowmodeler" }, - { - "project": "src/tsconfig.spec.json", - "exclude": "**/node_modules/**" + "apps": [ + { + "root": "src", + "outDir": "dist", + "assets": [ + "assets", + "favicon.ico" + ], + "index": "index.html", + "main": "main.ts", + "polyfills": "polyfills.ts", + "test": "test.ts", + "tsconfig": "tsconfig.app.json", + "testTsconfig": "tsconfig.spec.json", + "prefix": "app", + "styles": [ + "./../node_modules/bootstrap/dist/css/bootstrap.min.css", + "./../node_modules/font-awesome/css/font-awesome.min.css", + "styles.css" + ], + "scripts": [], + "environmentSource": "environments/environment.ts", + "environments": { + "dev": "environments/environment.ts", + "prod": "environments/environment.prod.ts" + } + } + ], + "e2e": { + "protractor": { + "config": "./protractor.conf.js" + } }, - { - "project": "e2e/tsconfig.e2e.json", - "exclude": "**/node_modules/**" - } - ], - "test": { - "karma": { - "config": "./karma.conf.js" + "lint": [ + { + "project": "src/tsconfig.app.json", + "exclude": "**/node_modules/**" + }, + { + "project": "src/tsconfig.spec.json", + "exclude": "**/node_modules/**" + }, + { + "project": "e2e/tsconfig.e2e.json", + "exclude": "**/node_modules/**" + } + ], + "test": { + "karma": { + "config": "./karma.conf.js" + } + }, + "defaults": { + "styleExt": "css", + "component": {} } - }, - "defaults": { - "styleExt": "css", - "component": {} - } } |