Permalink
Please
sign in to comment.
Showing
with
4,377 additions
and 1,443 deletions.
- +0 −61 .angular-cli.json
- +132 −0 angular.json
- +3 −3 karma.conf.js
- +2,795 −4 package-lock.json
- +29 −27 package.json
- +4 −25 src/app/app-routing/app-routing.module.ts
- +3 −11 src/app/app.module.ts
- +23 −0 src/app/auth/auth-routing.module.ts
- +2 −2 src/app/auth/auth.module.ts
- +1 −1 src/app/auth/index.ts
- +1 −1 src/app/auth/login/login.component.html
- +1 −1 src/app/auth/register/register.component.html
- +20 −0 src/app/dashboard/dashboard-routing.module.ts
- +16 −0 src/app/dashboard/dashboard.component.html
- +11 −0 src/app/dashboard/dashboard.component.scss
- +25 −0 src/app/dashboard/dashboard.component.spec.ts
- +15 −0 src/app/dashboard/dashboard.component.ts
- +27 −0 src/app/dashboard/dashboard.module.ts
- +3 −0 src/app/dashboard/sidebar-actions/sidebar-actions.component.html
- 0 src/app/{home/home.component.scss → dashboard/sidebar-actions/sidebar-actions.component.scss}
- +6 −6 .../schema-entities.component.spec.ts → dashboard/sidebar-actions/sidebar-actions.component.spec.ts}
- +15 −0 src/app/dashboard/sidebar-actions/sidebar-actions.component.ts
- +7 −0 src/app/dashboard/sidebar-entities/sidebar-entities.component.html
- +8 −0 src/app/dashboard/sidebar-entities/sidebar-entities.component.scss
- +6 −6 ...-schema-entity.component.spec.ts → dashboard/sidebar-entities/sidebar-entities.component.spec.ts}
- +37 −0 src/app/dashboard/sidebar-entities/sidebar-entities.component.ts
- +65 −0 src/app/dashboard/sidebar-entities/tree/dynamic-data-base.ts
- +70 −0 src/app/dashboard/sidebar-entities/tree/dynamic-data-source.ts
- +3 −0 src/app/dashboard/sidebar-entities/tree/dynamic-flat-node.ts
- +15 −0 src/app/dashboard/sidebar-entities/tree/tree.component.html
- 0 ...ma-entity/new-schema-entity.component.scss → dashboard/sidebar-entities/tree/tree.component.scss}
- +6 −6 src/app/{home/home.component.spec.ts → dashboard/sidebar-entities/tree/tree.component.spec.ts}
- +54 −0 src/app/dashboard/sidebar-entities/tree/tree.component.ts
- +1 −1 src/app/header/header.component.html
- +0 −3 src/app/home/home.component.html
- +0 −15 src/app/home/home.component.ts
- +0 −38 src/app/new-schema-entity/new-schema-entity.component.html
- +0 −63 src/app/new-schema-entity/new-schema-entity.component.ts
- +0 −37 src/app/schema-entities/schema-entities.component.html
- +0 −35 src/app/schema-entities/schema-entities.component.scss
- +0 −90 src/app/schema-entities/schema-entities.component.ts
- +0 −11 src/app/schema/schema.component.html
- +0 −5 src/app/schema/schema.component.scss
- +0 −7 src/app/schema/schema.component.ts
- +0 −13 src/app/schema/schema.service.ts
- +9 −0 src/app/shared/shared.module.ts
- +2 −1 src/tsconfig.spec.json
- +0 −1 tslint.json
- +962 −969 yarn.lock
| @@ -0,0 +1,132 @@ | ||
| { | ||
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
| "version": 1, | ||
| "newProjectRoot": "projects", | ||
| "projects": { | ||
| "angular-material": { | ||
| "root": "", | ||
| "sourceRoot": "src", | ||
| "projectType": "application", | ||
| "architect": { | ||
| "build": { | ||
| "builder": "@angular-devkit/build-angular:browser", | ||
| "options": { | ||
| "outputPath": "dist", | ||
| "index": "src/index.html", | ||
| "main": "src/main.ts", | ||
| "tsConfig": "src/tsconfig.app.json", | ||
| "polyfills": "src/polyfills.ts", | ||
| "assets": [ | ||
| "src/assets", | ||
| "src/favicon.ico" | ||
| ], | ||
| "styles": [ | ||
| "src/styles.css" | ||
| ], | ||
| "scripts": [] | ||
| }, | ||
| "configurations": { | ||
| "production": { | ||
| "optimization": true, | ||
| "outputHashing": "all", | ||
| "sourceMap": false, | ||
| "extractCss": true, | ||
| "namedChunks": false, | ||
| "aot": true, | ||
| "extractLicenses": true, | ||
| "vendorChunk": false, | ||
| "buildOptimizer": true, | ||
| "fileReplacements": [ | ||
| { | ||
| "replace": "src/environments/environment.ts", | ||
| "with": "src/environments/environment.prod.ts" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "serve": { | ||
| "builder": "@angular-devkit/build-angular:dev-server", | ||
| "options": { | ||
| "browserTarget": "angular-material:build" | ||
| }, | ||
| "configurations": { | ||
| "production": { | ||
| "browserTarget": "angular-material:build:production" | ||
| } | ||
| } | ||
| }, | ||
| "extract-i18n": { | ||
| "builder": "@angular-devkit/build-angular:extract-i18n", | ||
| "options": { | ||
| "browserTarget": "angular-material:build" | ||
| } | ||
| }, | ||
| "test": { | ||
| "builder": "@angular-devkit/build-angular:karma", | ||
| "options": { | ||
| "main": "src/test.ts", | ||
| "karmaConfig": "./karma.conf.js", | ||
| "polyfills": "src/polyfills.ts", | ||
| "tsConfig": "src/tsconfig.spec.json", | ||
| "scripts": [], | ||
| "styles": [ | ||
| "src/styles.css" | ||
| ], | ||
| "assets": [ | ||
| "src/assets", | ||
| "src/favicon.ico" | ||
| ] | ||
| } | ||
| }, | ||
| "lint": { | ||
| "builder": "@angular-devkit/build-angular:tslint", | ||
| "options": { | ||
| "tsConfig": [ | ||
| "src/tsconfig.app.json", | ||
| "src/tsconfig.spec.json" | ||
| ], | ||
| "exclude": [ | ||
| "**/node_modules/**" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "angular-material-e2e": { | ||
| "root": "", | ||
| "sourceRoot": "", | ||
| "projectType": "application", | ||
| "architect": { | ||
| "e2e": { | ||
| "builder": "@angular-devkit/build-angular:protractor", | ||
| "options": { | ||
| "protractorConfig": "./protractor.conf.js", | ||
| "devServerTarget": "angular-material:serve" | ||
| } | ||
| }, | ||
| "lint": { | ||
| "builder": "@angular-devkit/build-angular:tslint", | ||
| "options": { | ||
| "tsConfig": [ | ||
| "e2e/tsconfig.e2e.json" | ||
| ], | ||
| "exclude": [ | ||
| "**/node_modules/**" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "defaultProject": "angular-material", | ||
| "schematics": { | ||
| "@schematics/angular:component": { | ||
| "prefix": "app", | ||
| "styleext": "scss" | ||
| }, | ||
| "@schematics/angular:directive": { | ||
| "prefix": "app" | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.


0 comments on commit
a223d66