diff --git a/.gitignore b/.gitignore index 17bda9d91..9f4881e43 100644 --- a/.gitignore +++ b/.gitignore @@ -235,10 +235,8 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -/test-report.xml -/test-report -junit.xml +**/test-report yarn.lock -eslint_report.json +eslint_report.* .scannerwork releases \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile index f98c22243..6d182e274 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,10 +22,8 @@ pipeline { } stage('Jenkins Clean') { steps { - sh 'rm -f junit.xml' sh 'rm -rf test-report' sh 'rm -rf coverage' - sh 'rm -f eslint_report.json' } } @@ -80,15 +78,15 @@ pipeline { steps { nvm('') { catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') { - sh 'npm run test-with-coverage' - sh 'npm run test-clearCache' + sh 'npm run test mdm-ui -- --coverage' + sh 'npm run test mdm-ui -- --clear-cache' sh "rm -rf /tmp/jest_${JOB_BASE_NAME}" } } } post { always { - junit allowEmptyResults: true, testResults: 'junit.xml' + junit allowEmptyResults: true, testResults: 'test-report/mdm-ui/junit.xml' } } } @@ -96,7 +94,7 @@ pipeline { steps { nvm('') { catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') { - sh 'npm run eslint-report' + sh 'npm run eslint-xml' } } } @@ -217,8 +215,8 @@ pipeline { allowMissing : true, alwaysLinkToLastBuild: true, keepAll : false, - reportDir : 'test-report', - reportFiles : 'index.html', + reportDir : 'test-report/mdm-ui', + reportFiles : 'jest-report.html', reportName : 'Test Report', reportTitles : 'Test' ]) diff --git a/README.md b/README.md index a262ab7e4..d9a20dd9f 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,34 @@ $ npm install ### Run the application -* To start the application in development mode run `ng serve` -* After the terminal finishes compiling, open up your browser and navigate to http://localhost:4200 +To start the application in development mode run `npm start`. After the terminal finishes compiling, open up your browser and navigate to http://localhost:4200. + +Alternatively: + +```bash +# Explicitly state which Angular project to test +npm start mdm-ui +``` ### Testing the application -* To test the application run `npm test` +To test the application run `npm test`. + +This Angular workspace uses [Jest](https://jestjs.io/) as testing framework, so any command line parameters that Jest can use can also be provided. For example: + +```bash +# Explicitly state which Angular project to test +npm run test mdm-ui + +# Execute test runner in watch mode. Note the "--" separator for npm to separate command line arguments +npm run test mdm-ui -- --watch +``` + +## Build the application + +To 'export' the code for production, run `ng build --configuration production`. This will compile & minify the code, making it ready for production. + +### Deployments All pushes to the repository will invoke a Jenkins CI build. When Jenkins runs the builds it uses `npm ci` which uses the `package-lock.json` to determine dependencies, @@ -95,8 +117,4 @@ This is surprisingly simple just run `npm install` or `npm ci` There is a useful npm package ([symlinked](https://www.npmjs.com/package/symlinked)) which can list what modules are linked into your repository. This is helpful if you want to check if mdm-resources is currently linked to mdm-ui. -We recommend installing this globally with `npm i -g symlinked` then you can call it inside mdm-ui using `symlinked names`. - -## Build the application - -To 'export' the code for production, run `ng build --prod` this will compile & minify the code, making it ready for production \ No newline at end of file +We recommend installing this globally with `npm i -g symlinked` then you can call it inside mdm-ui using `symlinked names`. \ No newline at end of file diff --git a/TESTING.md b/TESTING.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/angular.json b/angular.json index bc6f91308..5b0844fd5 100644 --- a/angular.json +++ b/angular.json @@ -10,8 +10,8 @@ "style": "scss" } }, - "root": "", - "sourceRoot": "src", + "root": "projects/mdm-ui", + "sourceRoot": "projects/mdm-ui/src", "prefix": "mdm", "architect": { "build": { @@ -23,25 +23,25 @@ }, "preserveSymlinks": true, "customWebpackConfig": { - "path": "webpack.config.js" + "path": "projects/mdm-ui/webpack.config.js" }, - "outputPath": "dist", - "index": "src/index.html", - "main": "src/main.ts", - "polyfills": "src/polyfills.ts", - "tsConfig": "tsconfig.app.json", + "outputPath": "dist/mdm-ui", + "index": "projects/mdm-ui/src/index.html", + "main": "projects/mdm-ui/src/main.ts", + "polyfills": "projects/mdm-ui/src/polyfills.ts", + "tsConfig": "projects/mdm-ui/tsconfig.app.json", "aot": true, "assets": [ - "src/assets/favicon.ico", - "src/assets", + "projects/mdm-ui/src/assets/favicon.ico", + "projects/mdm-ui/src/assets", { "glob": "open-id-connect-redirect.html", - "input": "src/static-pages", + "input": "projects/mdm-ui/src/static-pages", "output": "/redirects" } ], "styles": [ - "src/styles.scss", + "projects/mdm-ui/src/styles.scss", "node_modules/jodit/build/jodit.min.css" ], "scripts": [ @@ -49,8 +49,8 @@ ], "stylePreprocessorOptions": { "includePaths": [ - "src/style", - "src/app" + "projects/mdm-ui/src/style", + "projects/mdm-ui/src/app" ] } }, @@ -58,8 +58,8 @@ "production": { "fileReplacements": [ { - "replace": "src/environments/environment.ts", - "with": "src/environments/environment.prod.ts" + "replace": "projects/mdm-ui/src/environments/environment.ts", + "with": "projects/mdm-ui/src/environments/environment.prod.ts" } ], "optimization": true, @@ -120,26 +120,13 @@ "builder": "@angular-devkit/build-angular:tslint", "options": { "tsConfig": [ - "tsconfig.app.json", - "tsconfig.spec.json", - "e2e/tsconfig.json" + "projects/mdm-ui/tsconfig.app.json", + "projects/mdm-ui/tsconfig.spec.json" ], "exclude": [ "**/node_modules/**" ] } - }, - "e2e": { - "builder": "@angular-devkit/build-angular:protractor", - "options": { - "protractorConfig": "e2e/protractor.conf.js", - "devServerTarget": "mdm-ui:serve" - }, - "configurations": { - "production": { - "devServerTarget": "mdm-ui:serve:production" - } - } } } } diff --git a/dependencies-2020-05-22.csv b/dependencies-2020-05-22.csv deleted file mode 100644 index 5e9c5f9cf..000000000 --- a/dependencies-2020-05-22.csv +++ /dev/null @@ -1,1329 +0,0 @@ -"module name","license","repository" -"@angular-builders/custom-webpack@9.1.0","MIT","https://github.com/just-jeb/angular-builders/tree/master/packages/custom-webpack" -"@angular-builders/jest@9.0.1","MIT","https://github.com/just-jeb/angular-builders/tree/master/packages/jest" -"@angular-devkit/architect@0.901.3","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/architect@0.901.6","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/build-angular@0.901.6","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/build-optimizer@0.901.6","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/build-webpack@0.901.6","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/core@9.1.3","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/core@9.1.6","MIT","https://github.com/angular/angular-cli" -"@angular-devkit/schematics@9.1.6","MIT","https://github.com/angular/angular-cli" -"@angular-material-extensions/password-strength@6.0.0","MIT","https://github.com/angular-material-extensions/password-strength" -"@angular/animations@9.1.9","MIT","https://github.com/angular/angular" -"@angular/cdk@9.2.4","MIT","https://github.com/angular/components" -"@angular/cli@9.1.6","MIT","https://github.com/angular/angular-cli" -"@angular/common@9.1.9","MIT","https://github.com/angular/angular" -"@angular/compiler-cli@9.1.9","MIT","https://github.com/angular/angular" -"@angular/compiler@9.1.9","MIT","https://github.com/angular/angular" -"@angular/core@9.1.9","MIT","https://github.com/angular/angular" -"@angular/flex-layout@9.0.0-beta.31","MIT","https://github.com/angular/flex-layout" -"@angular/forms@9.1.9","MIT","https://github.com/angular/angular" -"@angular/language-service@9.1.9","MIT","https://github.com/angular/angular" -"@angular/material@9.2.4","MIT","https://github.com/angular/components" -"@angular/platform-browser-dynamic@9.1.9","MIT","https://github.com/angular/angular" -"@angular/platform-browser@9.1.9","MIT","https://github.com/angular/angular" -"@angular/router@9.1.9","MIT","https://github.com/angular/angular" -"@babel/code-frame@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-code-frame" -"@babel/compat-data@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-compat-data" -"@babel/core@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-core" -"@babel/generator@7.9.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-generator" -"@babel/generator@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-generator" -"@babel/helper-annotate-as-pure@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure" -"@babel/helper-builder-binary-assignment-operator-visitor@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor" -"@babel/helper-compilation-targets@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets" -"@babel/helper-create-regexp-features-plugin@7.8.8","MIT","https://github.com/babel/babel" -"@babel/helper-define-map@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-define-map" -"@babel/helper-explode-assignable-expression@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression" -"@babel/helper-function-name@7.9.5","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" -"@babel/helper-get-function-arity@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" -"@babel/helper-hoist-variables@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables" -"@babel/helper-member-expression-to-functions@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions" -"@babel/helper-module-imports@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports" -"@babel/helper-module-transforms@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms" -"@babel/helper-optimise-call-expression@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression" -"@babel/helper-plugin-utils@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils" -"@babel/helper-regex@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-regex" -"@babel/helper-remap-async-to-generator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator" -"@babel/helper-replace-supers@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" -"@babel/helper-simple-access@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access" -"@babel/helper-split-export-declaration@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" -"@babel/helper-validator-identifier@7.9.5","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-validator-identifier" -"@babel/helper-wrap-function@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function" -"@babel/helpers@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-helpers" -"@babel/highlight@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-highlight" -"@babel/parser@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-parser" -"@babel/plugin-proposal-async-generator-functions@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions" -"@babel/plugin-proposal-dynamic-import@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-dynamic-import" -"@babel/plugin-proposal-json-strings@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings" -"@babel/plugin-proposal-nullish-coalescing-operator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator" -"@babel/plugin-proposal-numeric-separator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-numeric-separator" -"@babel/plugin-proposal-object-rest-spread@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread" -"@babel/plugin-proposal-optional-catch-binding@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding" -"@babel/plugin-proposal-optional-chaining@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining" -"@babel/plugin-proposal-unicode-property-regex@7.8.8","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex" -"@babel/plugin-syntax-async-generators@7.8.4","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators" -"@babel/plugin-syntax-bigint@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint" -"@babel/plugin-syntax-class-properties@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties" -"@babel/plugin-syntax-dynamic-import@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import" -"@babel/plugin-syntax-json-strings@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings" -"@babel/plugin-syntax-logical-assignment-operators@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-logical-assignment-operators" -"@babel/plugin-syntax-nullish-coalescing-operator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-nullish-coalescing-operator" -"@babel/plugin-syntax-numeric-separator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-numeric-separator" -"@babel/plugin-syntax-object-rest-spread@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread" -"@babel/plugin-syntax-optional-catch-binding@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding" -"@babel/plugin-syntax-optional-chaining@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-chaining" -"@babel/plugin-syntax-top-level-await@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-top-level-await" -"@babel/plugin-transform-arrow-functions@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions" -"@babel/plugin-transform-async-to-generator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator" -"@babel/plugin-transform-block-scoped-functions@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions" -"@babel/plugin-transform-block-scoping@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping" -"@babel/plugin-transform-classes@7.9.5","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes" -"@babel/plugin-transform-computed-properties@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties" -"@babel/plugin-transform-destructuring@7.9.5","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring" -"@babel/plugin-transform-dotall-regex@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex" -"@babel/plugin-transform-duplicate-keys@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys" -"@babel/plugin-transform-exponentiation-operator@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator" -"@babel/plugin-transform-for-of@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of" -"@babel/plugin-transform-function-name@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name" -"@babel/plugin-transform-literals@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals" -"@babel/plugin-transform-member-expression-literals@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals" -"@babel/plugin-transform-modules-amd@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd" -"@babel/plugin-transform-modules-commonjs@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs" -"@babel/plugin-transform-modules-systemjs@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs" -"@babel/plugin-transform-modules-umd@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd" -"@babel/plugin-transform-named-capturing-groups-regex@7.8.3","MIT","https://github.com/babel/babel" -"@babel/plugin-transform-new-target@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target" -"@babel/plugin-transform-object-super@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super" -"@babel/plugin-transform-parameters@7.9.5","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters" -"@babel/plugin-transform-property-literals@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals" -"@babel/plugin-transform-regenerator@7.8.7","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" -"@babel/plugin-transform-reserved-words@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words" -"@babel/plugin-transform-shorthand-properties@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties" -"@babel/plugin-transform-spread@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread" -"@babel/plugin-transform-sticky-regex@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex" -"@babel/plugin-transform-template-literals@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals" -"@babel/plugin-transform-typeof-symbol@7.8.4","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol" -"@babel/plugin-transform-unicode-regex@7.8.3","MIT","https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex" -"@babel/preset-env@7.9.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-preset-env" -"@babel/preset-modules@0.1.3","MIT","" -"@babel/runtime@7.9.6","MIT","https://github.com/babel/babel" -"@babel/template@7.8.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-template" -"@babel/traverse@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-traverse" -"@babel/types@7.9.6","MIT","https://github.com/babel/babel/tree/master/packages/babel-types" -"@bcoe/v8-coverage@0.2.3","MIT","https://github.com/demurgos/v8-coverage" -"@cnakazawa/watch@1.0.4","Apache-2.0","https://github.com/mikeal/watch" -"@istanbuljs/load-nyc-config@1.1.0","ISC","https://github.com/istanbuljs/load-nyc-config" -"@istanbuljs/schema@0.1.2","MIT","https://github.com/istanbuljs/schema" -"@jest/console@25.5.0","MIT","https://github.com/facebook/jest" -"@jest/core@25.5.4","MIT","https://github.com/facebook/jest" -"@jest/environment@25.5.0","MIT","https://github.com/facebook/jest" -"@jest/fake-timers@25.5.0","MIT","https://github.com/facebook/jest" -"@jest/globals@25.5.2","MIT","https://github.com/facebook/jest" -"@jest/reporters@25.5.1","MIT","https://github.com/facebook/jest" -"@jest/source-map@25.5.0","MIT","https://github.com/facebook/jest" -"@jest/test-result@25.5.0","MIT","https://github.com/facebook/jest" -"@jest/test-sequencer@25.5.4","MIT","https://github.com/facebook/jest" -"@jest/transform@25.5.1","MIT","https://github.com/facebook/jest" -"@jest/types@25.5.0","MIT","https://github.com/facebook/jest" -"@jsdevtools/coverage-istanbul-loader@3.0.3","MIT","https://github.com/JS-DevTools/coverage-istanbul-loader" -"@mat-datetimepicker/core@4.1.0","MIT","https://github.com/kuhnroyal/mat-datetimepicker" -"@ngtools/webpack@9.1.6","MIT","https://github.com/angular/angular-cli" -"@schematics/angular@9.1.6","MIT","https://github.com/angular/angular-cli" -"@schematics/update@0.901.6","MIT","https://github.com/angular/angular-cli" -"@sinonjs/commons@1.8.0","BSD-3-Clause","https://github.com/sinonjs/commons" -"@types/babel__core@7.1.7","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/babel__generator@7.6.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/babel__template@7.0.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/babel__traverse@7.0.11","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/backbone@1.4.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/chart.js@2.9.21","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/color-name@1.1.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/events@3.0.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/glob@7.1.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/graceful-fs@4.1.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/istanbul-lib-coverage@2.0.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/istanbul-lib-report@3.0.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/istanbul-reports@1.1.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/jasmine@3.3.16","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/jasminewd2@2.0.8","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/jest@25.2.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/jquery@3.3.38","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/lodash@3.10.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/marked@0.7.4","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/minimatch@3.0.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/node@12.12.41","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/normalize-package-data@2.4.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/prettier@1.19.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/q@0.0.32","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/q@1.5.4","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/selenium-webdriver@3.0.17","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/sizzle@2.3.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/source-list-map@0.1.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/stack-utils@1.0.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/underscore@1.10.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/webpack-sources@0.1.7","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/yargs-parser@15.0.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@types/yargs@15.0.5","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped" -"@uirouter/angular@6.0.1","MIT","https://github.com/ui-router/angular" -"@uirouter/core@6.0.5","MIT","https://github.com/ui-router/core" -"@uirouter/rx@0.6.5","MIT","https://github.com/ui-router/rx" -"@webassemblyjs/ast@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/floating-point-hex-parser@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/helper-api-error@1.8.5","MIT","" -"@webassemblyjs/helper-buffer@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/helper-code-frame@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/helper-fsm@1.8.5","ISC","" -"@webassemblyjs/helper-module-context@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/helper-wasm-bytecode@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/helper-wasm-section@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/ieee754@1.8.5","MIT","" -"@webassemblyjs/leb128@1.8.5","MIT","" -"@webassemblyjs/utf8@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wasm-edit@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wasm-gen@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wasm-opt@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wasm-parser@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wast-parser@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@webassemblyjs/wast-printer@1.8.5","MIT","https://github.com/xtuc/webassemblyjs" -"@xtuc/ieee754@1.2.0","BSD-3-Clause","https://github.com/feross/ieee754" -"@xtuc/long@4.2.2","Apache-2.0","https://github.com/dcodeIO/long.js" -"@yarnpkg/lockfile@1.1.0","BSD-2-Clause","https://github.com/yarnpkg/yarn/blob/master/packages/lockfile" -"JSONStream@1.3.5","(MIT OR Apache-2.0)","https://github.com/dominictarr/JSONStream" -"abab@2.0.3","BSD-3-Clause","https://github.com/jsdom/abab" -"accepts@1.3.7","MIT","https://github.com/jshttp/accepts" -"acorn-globals@4.3.4","MIT","https://github.com/ForbesLindesay/acorn-globals" -"acorn-walk@6.2.0","MIT","https://github.com/acornjs/acorn" -"acorn@6.4.1","MIT","https://github.com/acornjs/acorn" -"acorn@7.2.0","MIT","https://github.com/acornjs/acorn" -"adm-zip@0.4.14","MIT","https://github.com/cthackers/adm-zip" -"agent-base@4.2.1","MIT","https://github.com/TooTallNate/node-agent-base" -"agent-base@4.3.0","MIT","https://github.com/TooTallNate/node-agent-base" -"agentkeepalive@3.5.2","MIT","https://github.com/node-modules/agentkeepalive" -"aggregate-error@3.0.1","MIT","https://github.com/sindresorhus/aggregate-error" -"ajv-errors@1.0.1","MIT","https://github.com/epoberezkin/ajv-errors" -"ajv-keywords@3.4.1","MIT","https://github.com/epoberezkin/ajv-keywords" -"ajv@6.12.0","MIT","https://github.com/epoberezkin/ajv" -"alphanum-sort@1.0.2","MIT","https://github.com/TrySound/alphanum-sort" -"angular-split@3.0.3","Apache-2.0","https://github.com/bertrandg/angular-split" -"angular-user-idle@2.2.2","MIT","https://github.com/rednez/angular-user-idle" -"ansi-colors@3.2.4","MIT","https://github.com/doowb/ansi-colors" -"ansi-colors@4.1.1","MIT","https://github.com/doowb/ansi-colors" -"ansi-escapes@4.3.1","MIT","https://github.com/sindresorhus/ansi-escapes" -"ansi-html@0.0.7","Apache-2.0","https://github.com/Tjatse/ansi-html" -"ansi-regex@2.1.1","MIT","https://github.com/chalk/ansi-regex" -"ansi-regex@3.0.0","MIT","https://github.com/chalk/ansi-regex" -"ansi-regex@4.1.0","MIT","https://github.com/chalk/ansi-regex" -"ansi-regex@5.0.0","MIT","https://github.com/chalk/ansi-regex" -"ansi-styles@2.2.1","MIT","https://github.com/chalk/ansi-styles" -"ansi-styles@3.2.1","MIT","https://github.com/chalk/ansi-styles" -"ansi-styles@4.2.1","MIT","https://github.com/chalk/ansi-styles" -"anymatch@2.0.0","ISC","https://github.com/micromatch/anymatch" -"anymatch@3.1.1","ISC","https://github.com/micromatch/anymatch" -"app-root-path@2.2.1","MIT","https://github.com/inxilpro/node-app-root-path" -"aproba@1.2.0","ISC","https://github.com/iarna/aproba" -"arg@4.1.3","MIT","https://github.com/zeit/arg" -"argparse@1.0.10","MIT","https://github.com/nodeca/argparse" -"aria-query@3.0.0","Apache-2.0","https://github.com/A11yance/aria-query" -"arr-diff@4.0.0","MIT","https://github.com/jonschlinkert/arr-diff" -"arr-flatten@1.1.0","MIT","https://github.com/jonschlinkert/arr-flatten" -"arr-union@3.1.0","MIT","https://github.com/jonschlinkert/arr-union" -"array-equal@1.0.0","MIT","https://github.com/component/array-equal" -"array-flatten@1.1.1","MIT","https://github.com/blakeembrey/array-flatten" -"array-flatten@2.1.2","MIT","https://github.com/blakeembrey/array-flatten" -"array-union@1.0.2","MIT","https://github.com/sindresorhus/array-union" -"array-uniq@1.0.3","MIT","https://github.com/sindresorhus/array-uniq" -"array-unique@0.3.2","MIT","https://github.com/jonschlinkert/array-unique" -"arrify@1.0.1","MIT","https://github.com/sindresorhus/arrify" -"asap@2.0.6","MIT","https://github.com/kriskowal/asap" -"asn1.js@4.10.1","MIT","https://github.com/indutny/asn1.js" -"asn1@0.2.4","MIT","https://github.com/joyent/node-asn1" -"assert-plus@1.0.0","MIT","https://github.com/mcavage/node-assert-plus" -"assert@1.5.0","MIT","https://github.com/browserify/commonjs-assert" -"assign-symbols@1.0.0","MIT","https://github.com/jonschlinkert/assign-symbols" -"ast-types-flow@0.0.7","ISC","https://github.com/kyldvs/ast-types-flow" -"astral-regex@1.0.0","MIT","https://github.com/kevva/astral-regex" -"async-each@1.0.3","MIT","https://github.com/paulmillr/async-each" -"async-limiter@1.0.1","MIT","https://github.com/strml/async-limiter" -"async@2.6.3","MIT","https://github.com/caolan/async" -"asynckit@0.4.0","MIT","https://github.com/alexindigo/asynckit" -"atob@2.1.2","(MIT OR Apache-2.0)","git://git.coolaj86.com/coolaj86/atob.js" -"autoprefixer@9.7.4","MIT","https://github.com/postcss/autoprefixer" -"aws-sign2@0.7.0","Apache-2.0","https://github.com/mikeal/aws-sign" -"aws4@1.9.1","MIT","https://github.com/mhart/aws4" -"axobject-query@2.0.2","Apache-2.0","https://github.com/A11yance/axobject-query" -"babel-code-frame@6.26.0","MIT","https://github.com/babel/babel/tree/master/packages/babel-code-frame" -"babel-jest@25.5.1","MIT","https://github.com/facebook/jest" -"babel-loader@8.0.6","MIT","https://github.com/babel/babel-loader" -"babel-plugin-dynamic-import-node@2.3.3","MIT","https://github.com/airbnb/babel-plugin-dynamic-import-node" -"babel-plugin-istanbul@6.0.0","BSD-3-Clause","https://github.com/istanbuljs/babel-plugin-istanbul" -"babel-plugin-jest-hoist@25.5.0","MIT","https://github.com/facebook/jest" -"babel-preset-current-node-syntax@0.1.2","MIT","https://github.com/nicolo-ribaudo/babel-preset-current-node-syntax" -"babel-preset-jest@25.5.0","MIT","https://github.com/facebook/jest" -"backbone@1.4.0","MIT","https://github.com/jashkenas/backbone" -"balanced-match@1.0.0","MIT","https://github.com/juliangruber/balanced-match" -"base64-js@1.3.1","MIT","https://github.com/beatgammit/base64-js" -"base@0.11.2","MIT","https://github.com/node-base/base" -"batch@0.6.1","MIT","https://github.com/visionmedia/batch" -"bcrypt-pbkdf@1.0.2","BSD-3-Clause","https://github.com/joyent/node-bcrypt-pbkdf" -"big.js@5.2.2","MIT","https://github.com/MikeMcl/big.js" -"binary-extensions@1.13.1","MIT","https://github.com/sindresorhus/binary-extensions" -"binary-extensions@2.0.0","MIT","https://github.com/sindresorhus/binary-extensions" -"bindings@1.5.0","MIT","https://github.com/TooTallNate/node-bindings" -"blocking-proxy@1.0.1","MIT","https://github.com/angular/jasminewd" -"bluebird@3.7.2","MIT","https://github.com/petkaantonov/bluebird" -"bn.js@4.11.9","MIT","https://github.com/indutny/bn.js" -"bn.js@5.1.2","MIT","https://github.com/indutny/bn.js" -"body-parser@1.19.0","MIT","https://github.com/expressjs/body-parser" -"bonjour@3.5.0","MIT","https://github.com/watson/bonjour" -"boolbase@1.0.0","ISC","https://github.com/fb55/boolbase" -"brace-expansion@1.1.11","MIT","https://github.com/juliangruber/brace-expansion" -"braces@2.3.2","MIT","https://github.com/micromatch/braces" -"braces@3.0.2","MIT","https://github.com/micromatch/braces" -"brorand@1.1.0","MIT","https://github.com/indutny/brorand" -"browser-process-hrtime@1.0.0","BSD-2-Clause","https://github.com/kumavis/browser-process-hrtime" -"browser-resolve@1.11.3","MIT","https://github.com/shtylman/node-browser-resolve" -"browserify-aes@1.2.0","MIT","https://github.com/crypto-browserify/browserify-aes" -"browserify-cipher@1.0.1","MIT","https://github.com/crypto-browserify/browserify-cipher" -"browserify-des@1.0.2","MIT","https://github.com/crypto-browserify/browserify-des" -"browserify-rsa@4.0.1","MIT","https://github.com/crypto-browserify/browserify-rsa" -"browserify-sign@4.2.0","ISC","https://github.com/crypto-browserify/browserify-sign" -"browserify-zlib@0.2.0","MIT","https://github.com/devongovett/browserify-zlib" -"browserslist@4.12.0","MIT","https://github.com/browserslist/browserslist" -"browserstack@1.6.0","MIT","https://github.com/scottgonzalez/node-browserstack" -"bs-logger@0.2.6","MIT","https://github.com/huafu/bs-logger" -"bser@2.1.1","Apache-2.0","https://github.com/facebook/watchman" -"buffer-from@1.1.1","MIT","https://github.com/LinusU/buffer-from" -"buffer-indexof@1.1.1","MIT","https://github.com/soldair/node-buffer-indexof" -"buffer-xor@1.0.3","MIT","https://github.com/crypto-browserify/buffer-xor" -"buffer@4.9.2","MIT","https://github.com/feross/buffer" -"builtin-modules@1.1.1","MIT","https://github.com/sindresorhus/builtin-modules" -"builtin-status-codes@3.0.0","MIT","https://github.com/bendrucker/builtin-status-codes" -"builtins@1.0.3","MIT","https://github.com/juliangruber/builtins" -"bytes@3.0.0","MIT","https://github.com/visionmedia/bytes.js" -"bytes@3.1.0","MIT","https://github.com/visionmedia/bytes.js" -"cacache@12.0.4","ISC","https://github.com/npm/cacache" -"cacache@13.0.1","ISC","https://github.com/npm/cacache" -"cacache@15.0.0","ISC","https://github.com/npm/cacache" -"cache-base@1.0.1","MIT","https://github.com/jonschlinkert/cache-base" -"caller-callsite@2.0.0","MIT","https://github.com/sindresorhus/caller-callsite" -"caller-path@2.0.0","MIT","https://github.com/sindresorhus/caller-path" -"callsites@2.0.0","MIT","https://github.com/sindresorhus/callsites" -"callsites@3.1.0","MIT","https://github.com/sindresorhus/callsites" -"camelcase@5.3.1","MIT","https://github.com/sindresorhus/camelcase" -"caniuse-api@3.0.0","MIT","https://github.com/nyalab/caniuse-api" -"caniuse-lite@1.0.30001062","CC-BY-4.0","https://github.com/ben-eb/caniuse-lite" -"canonical-path@1.0.0","MIT","https://github.com/petebacondarwin/node-canonical-path" -"capture-exit@2.0.0","ISC","https://github.com/stefanpenner/capture-exit" -"caseless@0.12.0","Apache-2.0","https://github.com/mikeal/caseless" -"chalk@1.1.3","MIT","https://github.com/chalk/chalk" -"chalk@2.4.2","MIT","https://github.com/chalk/chalk" -"chalk@3.0.0","MIT","https://github.com/chalk/chalk" -"chardet@0.7.0","MIT","https://github.com/runk/node-chardet" -"chart.js@2.9.3","MIT","https://github.com/chartjs/Chart.js" -"chartjs-color-string@0.6.0","MIT","https://github.com/chartjs/chartjs-color-string" -"chartjs-color@2.4.1","MIT","https://github.com/chartjs/chartjs-color" -"chokidar@2.1.8","MIT","https://github.com/paulmillr/chokidar" -"chokidar@3.4.0","MIT","https://github.com/paulmillr/chokidar" -"chownr@1.1.4","ISC","https://github.com/isaacs/chownr" -"chownr@2.0.0","ISC","https://github.com/isaacs/chownr" -"chrome-trace-event@1.0.2","MIT","github.com:samccone/chrome-trace-event" -"ci-info@2.0.0","MIT","https://github.com/watson/ci-info" -"cipher-base@1.0.4","MIT","https://github.com/crypto-browserify/cipher-base" -"circular-dependency-plugin@5.2.0","ISC","https://github.com/aackerman/circular-dependency-plugin" -"class-utils@0.3.6","MIT","https://github.com/jonschlinkert/class-utils" -"classlist.js@1.1.20150312","Public Domain","https://github.com/eligrey/classList.js" -"clean-stack@2.2.0","MIT","https://github.com/sindresorhus/clean-stack" -"cli-cursor@3.1.0","MIT","https://github.com/sindresorhus/cli-cursor" -"cli-spinners@2.3.0","MIT","https://github.com/sindresorhus/cli-spinners" -"cli-width@2.2.1","ISC","https://github.com/knownasilya/cli-width" -"cliui@4.1.0","ISC","https://github.com/yargs/cliui" -"cliui@6.0.0","ISC","https://github.com/yargs/cliui" -"clone-deep@4.0.1","MIT","https://github.com/jonschlinkert/clone-deep" -"clone@1.0.4","MIT","https://github.com/pvorb/node-clone" -"clone@2.1.2","MIT","https://github.com/pvorb/node-clone" -"co@4.6.0","MIT","https://github.com/tj/co" -"coa@2.0.2","MIT","https://github.com/veged/coa" -"code-point-at@1.1.0","MIT","https://github.com/sindresorhus/code-point-at" -"codelyzer@5.2.2","MIT","https://github.com/mgechev/codelyzer" -"collect-v8-coverage@1.0.1","MIT","https://github.com/SimenB/collect-v8-coverage" -"collection-visit@1.0.0","MIT","https://github.com/jonschlinkert/collection-visit" -"color-convert@1.9.3","MIT","https://github.com/Qix-/color-convert" -"color-convert@2.0.1","MIT","https://github.com/Qix-/color-convert" -"color-name@1.1.3","MIT","https://github.com/dfcreative/color-name" -"color-name@1.1.4","MIT","https://github.com/colorjs/color-name" -"color-string@1.5.3","MIT","https://github.com/Qix-/color-string" -"color@3.1.2","MIT","https://github.com/Qix-/color" -"colors@1.1.2","MIT","https://github.com/Marak/colors.js" -"combined-stream@1.0.8","MIT","https://github.com/felixge/node-combined-stream" -"commander@2.20.3","MIT","https://github.com/tj/commander.js" -"commondir@1.0.1","MIT","https://github.com/substack/node-commondir" -"component-emitter@1.3.0","MIT","https://github.com/component/emitter" -"compressible@2.0.18","MIT","https://github.com/jshttp/compressible" -"compression@1.7.4","MIT","https://github.com/expressjs/compression" -"concat-map@0.0.1","MIT","https://github.com/substack/node-concat-map" -"concat-stream@1.6.2","MIT","https://github.com/maxogden/concat-stream" -"connect-history-api-fallback@1.6.0","MIT","https://github.com/bripkens/connect-history-api-fallback" -"console-browserify@1.2.0","MIT","https://github.com/browserify/console-browserify" -"constants-browserify@1.0.0","MIT","https://github.com/juliangruber/constants-browserify" -"content-disposition@0.5.3","MIT","https://github.com/jshttp/content-disposition" -"content-type@1.0.4","MIT","https://github.com/jshttp/content-type" -"convert-source-map@1.7.0","MIT","https://github.com/thlorenz/convert-source-map" -"cookie-signature@1.0.6","MIT","https://github.com/visionmedia/node-cookie-signature" -"cookie@0.4.0","MIT","https://github.com/jshttp/cookie" -"copy-concurrently@1.0.5","ISC","https://github.com/npm/copy-concurrently" -"copy-descriptor@0.1.1","MIT","https://github.com/jonschlinkert/copy-descriptor" -"copy-webpack-plugin@5.1.1","MIT","https://github.com/webpack-contrib/copy-webpack-plugin" -"core-js-compat@3.6.5","MIT","https://github.com/zloirock/core-js" -"core-js@3.6.4","MIT","https://github.com/zloirock/core-js" -"core-util-is@1.0.2","MIT","https://github.com/isaacs/core-util-is" -"cosmiconfig@5.2.1","MIT","https://github.com/davidtheclark/cosmiconfig" -"create-ecdh@4.0.3","MIT","https://github.com/crypto-browserify/createECDH" -"create-hash@1.2.0","MIT","https://github.com/crypto-browserify/createHash" -"create-hmac@1.1.7","MIT","https://github.com/crypto-browserify/createHmac" -"cross-spawn@6.0.5","MIT","https://github.com/moxystudio/node-cross-spawn" -"cross-spawn@7.0.2","MIT","https://github.com/moxystudio/node-cross-spawn" -"crypto-browserify@3.12.0","MIT","https://github.com/crypto-browserify/crypto-browserify" -"crypto@1.0.1","ISC","https://github.com/npm/deprecate-holder" -"css-color-names@0.0.4","MIT","https://github.com/bahamas10/css-color-names" -"css-declaration-sorter@4.0.1","MIT","https://github.com/Siilwyn/css-declaration-sorter" -"css-loader@3.5.1","MIT","https://github.com/webpack-contrib/css-loader" -"css-parse@2.0.0","MIT","https://github.com/reworkcss/css-parse" -"css-select-base-adapter@0.1.1","MIT","https://github.com/nrkn/css-select-base-adapter" -"css-select@2.1.0","BSD-2-Clause","https://github.com/fb55/css-select" -"css-selector-tokenizer@0.7.2","MIT","https://github.com/css-modules/css-selector-tokenizer" -"css-tree@1.0.0-alpha.37","MIT","https://github.com/csstree/csstree" -"css-tree@1.0.0-alpha.39","MIT","https://github.com/csstree/csstree" -"css-what@3.2.1","BSD-2-Clause","https://github.com/fb55/css-what" -"css@2.2.4","MIT","https://github.com/reworkcss/css" -"cssauron@1.4.0","MIT","https://github.com/chrisdickinson/cssauron" -"cssesc@3.0.0","MIT","https://github.com/mathiasbynens/cssesc" -"cssnano-preset-default@4.0.7","MIT","https://github.com/cssnano/cssnano" -"cssnano-util-get-arguments@4.0.0","MIT","https://github.com/cssnano/cssnano" -"cssnano-util-get-match@4.0.0","MIT","https://github.com/cssnano/cssnano" -"cssnano-util-raw-cache@4.0.1","MIT","https://github.com/cssnano/cssnano" -"cssnano-util-same-parent@4.0.1","MIT","https://github.com/cssnano/cssnano" -"cssnano@4.1.10","MIT","https://github.com/cssnano/cssnano" -"csso@4.0.3","MIT","https://github.com/css/csso" -"cssom@0.3.8","MIT","https://github.com/NV/CSSOM" -"cssom@0.4.4","MIT","https://github.com/NV/CSSOM" -"cssstyle@2.3.0","MIT","https://github.com/jsdom/cssstyle" -"cyclist@1.0.1","MIT","https://github.com/mafintosh/cyclist" -"dagre@0.8.5","MIT","https://github.com/dagrejs/dagre" -"damerau-levenshtein@1.0.6","BSD-2-Clause","https://github.com/tad-lispy/node-damerau-levenshtein" -"dashdash@1.14.1","MIT","https://github.com/trentm/node-dashdash" -"data-urls@1.1.0","MIT","https://github.com/jsdom/data-urls" -"debug@2.6.9","MIT","https://github.com/visionmedia/debug" -"debug@3.1.0","MIT","https://github.com/visionmedia/debug" -"debug@3.2.6","MIT","https://github.com/visionmedia/debug" -"debug@4.1.1","MIT","https://github.com/visionmedia/debug" -"debuglog@1.0.1","MIT","https://github.com/sam-github/node-debuglog" -"decamelize@1.2.0","MIT","https://github.com/sindresorhus/decamelize" -"decode-uri-component@0.2.0","MIT","https://github.com/SamVerschueren/decode-uri-component" -"deep-equal@1.1.1","MIT","https://github.com/substack/node-deep-equal" -"deep-is@0.1.3","MIT","https://github.com/thlorenz/deep-is" -"deepmerge@4.2.2","MIT","https://github.com/TehShrike/deepmerge" -"default-gateway@4.2.0","BSD-2-Clause","https://github.com/silverwind/default-gateway" -"defaults@1.0.3","MIT","https://github.com/tmpvar/defaults" -"define-properties@1.1.3","MIT","https://github.com/ljharb/define-properties" -"define-property@0.2.5","MIT","https://github.com/jonschlinkert/define-property" -"define-property@1.0.0","MIT","https://github.com/jonschlinkert/define-property" -"define-property@2.0.2","MIT","https://github.com/jonschlinkert/define-property" -"del@2.2.2","MIT","https://github.com/sindresorhus/del" -"del@4.1.1","MIT","https://github.com/sindresorhus/del" -"delayed-stream@1.0.0","MIT","https://github.com/felixge/node-delayed-stream" -"depd@1.1.2","MIT","https://github.com/dougwilson/nodejs-depd" -"dependency-graph@0.7.2","MIT","https://github.com/jriecken/dependency-graph" -"des.js@1.0.1","MIT","https://github.com/indutny/des.js" -"destroy@1.0.4","MIT","https://github.com/stream-utils/destroy" -"detect-newline@3.1.0","MIT","https://github.com/sindresorhus/detect-newline" -"detect-node@2.0.4","ISC","https://github.com/iliakan/detect-node" -"dezalgo@1.0.3","ISC","https://github.com/npm/dezalgo" -"diff-sequences@25.2.6","MIT","https://github.com/facebook/jest" -"diff@3.5.0","BSD-3-Clause","https://github.com/kpdecker/jsdiff" -"diff@4.0.2","BSD-3-Clause","https://github.com/kpdecker/jsdiff" -"diffie-hellman@5.0.3","MIT","https://github.com/crypto-browserify/diffie-hellman" -"dir-glob@2.2.2","MIT","https://github.com/kevva/dir-glob" -"dns-equal@1.0.0","MIT","https://github.com/watson/dns-equal" -"dns-packet@1.3.1","MIT","https://github.com/mafintosh/dns-packet" -"dns-txt@2.0.2","MIT","https://github.com/watson/dns-txt" -"dom-serializer@0.2.2","MIT","https://github.com/cheeriojs/dom-renderer" -"domain-browser@1.2.0","MIT","https://github.com/bevry/domain-browser" -"domelementtype@1.3.1","BSD-2-Clause","https://github.com/fb55/domelementtype" -"domelementtype@2.0.1","BSD-2-Clause","https://github.com/fb55/domelementtype" -"domexception@1.0.1","MIT","https://github.com/jsdom/domexception" -"domutils@1.7.0","BSD-2-Clause","https://github.com/FB55/domutils" -"dot-prop@5.2.0","MIT","https://github.com/sindresorhus/dot-prop" -"duplexify@3.7.1","MIT","https://github.com/mafintosh/duplexify" -"ecc-jsbn@0.1.2","MIT","https://github.com/quartzjer/ecc-jsbn" -"ee-first@1.1.1","MIT","https://github.com/jonathanong/ee-first" -"electron-to-chromium@1.3.448","ISC","https://github.com/kilian/electron-to-chromium" -"elliptic@6.5.2","MIT","https://github.com/indutny/elliptic" -"emoji-regex@8.0.0","MIT","https://github.com/mathiasbynens/emoji-regex" -"emojis-list@3.0.0","MIT","https://github.com/kikobeats/emojis-list" -"encodeurl@1.0.2","MIT","https://github.com/pillarjs/encodeurl" -"encoding@0.1.12","MIT","https://github.com/andris9/encoding" -"end-of-stream@1.4.4","MIT","https://github.com/mafintosh/end-of-stream" -"enhanced-resolve@4.1.1","MIT","https://github.com/webpack/enhanced-resolve" -"entities@2.0.2","BSD-2-Clause","https://github.com/fb55/entities" -"err-code@1.1.2","MIT","https://github.com/IndigoUnited/js-err-code" -"errno@0.1.7","MIT","https://github.com/rvagg/node-errno" -"error-ex@1.3.2","MIT","https://github.com/qix-/node-error-ex" -"es-abstract@1.17.5","MIT","https://github.com/ljharb/es-abstract" -"es-to-primitive@1.2.1","MIT","https://github.com/ljharb/es-to-primitive" -"es6-promise@4.2.8","MIT","https://github.com/stefanpenner/es6-promise" -"es6-promisify@5.0.0","MIT","https://github.com/digitaldesignlabs/es6-promisify" -"escape-html@1.0.3","MIT","https://github.com/component/escape-html" -"escape-string-regexp@1.0.5","MIT","https://github.com/sindresorhus/escape-string-regexp" -"escodegen@1.14.1","BSD-2-Clause","https://github.com/estools/escodegen" -"eslint-scope@4.0.3","BSD-2-Clause","https://github.com/eslint/eslint-scope" -"esprima@4.0.1","BSD-2-Clause","https://github.com/jquery/esprima" -"esrecurse@4.2.1","BSD-2-Clause","https://github.com/estools/esrecurse" -"estraverse@4.3.0","BSD-2-Clause","https://github.com/estools/estraverse" -"esutils@2.0.3","BSD-2-Clause","https://github.com/estools/esutils" -"etag@1.8.1","MIT","https://github.com/jshttp/etag" -"eventemitter3@4.0.4","MIT","https://github.com/primus/eventemitter3" -"events@3.1.0","MIT","https://github.com/Gozala/events" -"eventsource@1.0.7","MIT","https://github.com/EventSource/eventsource" -"evp_bytestokey@1.0.3","MIT","https://github.com/crypto-browserify/EVP_BytesToKey" -"exec-sh@0.3.4","MIT","https://github.com/tsertkov/exec-sh" -"execa@1.0.0","MIT","https://github.com/sindresorhus/execa" -"execa@3.4.0","MIT","https://github.com/sindresorhus/execa" -"exit@0.1.2","MIT","https://github.com/cowboy/node-exit" -"expand-brackets@2.1.4","MIT","https://github.com/jonschlinkert/expand-brackets" -"expect@25.5.0","MIT","https://github.com/facebook/jest" -"express@4.17.1","MIT","https://github.com/expressjs/express" -"extend-shallow@2.0.1","MIT","https://github.com/jonschlinkert/extend-shallow" -"extend-shallow@3.0.2","MIT","https://github.com/jonschlinkert/extend-shallow" -"extend@3.0.2","MIT","https://github.com/justmoon/node-extend" -"external-editor@3.1.0","MIT","https://github.com/mrkmg/node-external-editor" -"extglob@2.0.4","MIT","https://github.com/micromatch/extglob" -"extsprintf@1.3.0","MIT","https://github.com/davepacheco/node-extsprintf" -"fast-deep-equal@3.1.1","MIT","https://github.com/epoberezkin/fast-deep-equal" -"fast-json-stable-stringify@2.1.0","MIT","https://github.com/epoberezkin/fast-json-stable-stringify" -"fast-levenshtein@2.0.6","MIT","https://github.com/hiddentao/fast-levenshtein" -"fastparse@1.1.2","MIT","https://github.com/webpack/fastparse" -"faye-websocket@0.10.0","MIT","https://github.com/faye/faye-websocket-node" -"faye-websocket@0.11.3","Apache-2.0","https://github.com/faye/faye-websocket-node" -"fb-watchman@2.0.1","Apache-2.0","https://github.com/facebook/watchman" -"figgy-pudding@3.5.2","ISC","https://github.com/npm/figgy-pudding" -"figures@3.2.0","MIT","https://github.com/sindresorhus/figures" -"file-loader@6.0.0","MIT","https://github.com/webpack-contrib/file-loader" -"file-saver@2.0.2","MIT","https://github.com/eligrey/FileSaver.js" -"file-uri-to-path@1.0.0","MIT","https://github.com/TooTallNate/file-uri-to-path" -"fill-range@4.0.0","MIT","https://github.com/jonschlinkert/fill-range" -"fill-range@7.0.1","MIT","https://github.com/jonschlinkert/fill-range" -"finalhandler@1.1.2","MIT","https://github.com/pillarjs/finalhandler" -"find-cache-dir@2.1.0","MIT","https://github.com/avajs/find-cache-dir" -"find-cache-dir@3.3.1","MIT","https://github.com/avajs/find-cache-dir" -"find-up@2.1.0","MIT","https://github.com/sindresorhus/find-up" -"find-up@3.0.0","MIT","https://github.com/sindresorhus/find-up" -"find-up@4.1.0","MIT","https://github.com/sindresorhus/find-up" -"flush-write-stream@1.1.1","MIT","https://github.com/mafintosh/flush-write-stream" -"follow-redirects@1.11.0","MIT","https://github.com/follow-redirects/follow-redirects" -"for-in@1.0.2","MIT","https://github.com/jonschlinkert/for-in" -"forever-agent@0.6.1","Apache-2.0","https://github.com/mikeal/forever-agent" -"form-data@2.3.3","MIT","https://github.com/form-data/form-data" -"forwarded@0.1.2","MIT","https://github.com/jshttp/forwarded" -"fragment-cache@0.2.1","MIT","https://github.com/jonschlinkert/fragment-cache" -"fresh@0.5.2","MIT","https://github.com/jshttp/fresh" -"from2@2.3.0","MIT","https://github.com/hughsk/from2" -"fs-extra@4.0.2","MIT","https://github.com/jprichardson/node-fs-extra" -"fs-minipass@1.2.7","ISC","https://github.com/npm/fs-minipass" -"fs-minipass@2.1.0","ISC","https://github.com/npm/fs-minipass" -"fs-write-stream-atomic@1.0.10","ISC","https://github.com/npm/fs-write-stream-atomic" -"fs.realpath@1.0.0","ISC","https://github.com/isaacs/fs.realpath" -"fsevents@1.2.13","MIT","https://github.com/strongloop/fsevents" -"fsevents@2.1.3","MIT","https://github.com/fsevents/fsevents" -"function-bind@1.1.1","MIT","https://github.com/Raynos/function-bind" -"genfun@5.0.0","MIT","https://github.com/zkat/genfun" -"gensync@1.0.0-beta.1","MIT","" -"get-caller-file@1.0.3","ISC","https://github.com/stefanpenner/get-caller-file" -"get-caller-file@2.0.5","ISC","https://github.com/stefanpenner/get-caller-file" -"get-package-type@0.1.0","MIT","https://github.com/cfware/get-package-type" -"get-stream@4.1.0","MIT","https://github.com/sindresorhus/get-stream" -"get-stream@5.1.0","MIT","https://github.com/sindresorhus/get-stream" -"get-value@2.0.6","MIT","https://github.com/jonschlinkert/get-value" -"getpass@0.1.7","MIT","https://github.com/arekinath/node-getpass" -"glob-parent@3.1.0","ISC","https://github.com/es128/glob-parent" -"glob-parent@5.1.1","ISC","https://github.com/gulpjs/glob-parent" -"glob@7.1.4","ISC","https://github.com/isaacs/node-glob" -"glob@7.1.6","ISC","https://github.com/isaacs/node-glob" -"globals@11.12.0","MIT","https://github.com/sindresorhus/globals" -"globby@5.0.0","MIT","https://github.com/sindresorhus/globby" -"globby@6.1.0","MIT","https://github.com/sindresorhus/globby" -"globby@7.1.1","MIT","https://github.com/sindresorhus/globby" -"graceful-fs@4.2.4","ISC","https://github.com/isaacs/node-graceful-fs" -"graphlib@2.1.8","MIT","https://github.com/dagrejs/graphlib" -"growly@1.3.0","MIT","https://github.com/theabraham/growly" -"hammerjs@2.0.8","MIT","https://github.com/hammerjs/hammer.js" -"handle-thing@2.0.1","MIT","https://github.com/indutny/handle-thing" -"har-schema@2.0.0","ISC","https://github.com/ahmadnassri/har-schema" -"har-validator@5.1.3","MIT","https://github.com/ahmadnassri/node-har-validator" -"has-ansi@2.0.0","MIT","https://github.com/sindresorhus/has-ansi" -"has-flag@3.0.0","MIT","https://github.com/sindresorhus/has-flag" -"has-flag@4.0.0","MIT","https://github.com/sindresorhus/has-flag" -"has-symbols@1.0.1","MIT","https://github.com/ljharb/has-symbols" -"has-value@0.3.1","MIT","https://github.com/jonschlinkert/has-value" -"has-value@1.0.0","MIT","https://github.com/jonschlinkert/has-value" -"has-values@0.1.4","MIT","https://github.com/jonschlinkert/has-values" -"has-values@1.0.0","MIT","https://github.com/jonschlinkert/has-values" -"has@1.0.3","MIT","https://github.com/tarruda/has" -"hash-base@3.1.0","MIT","https://github.com/crypto-browserify/hash-base" -"hash.js@1.1.7","MIT","https://github.com/indutny/hash.js" -"hex-color-regex@1.1.0","MIT","https://github.com/regexps/hex-color-regex" -"hmac-drbg@1.0.1","MIT","https://github.com/indutny/hmac-drbg" -"hosted-git-info@2.8.8","ISC","https://github.com/npm/hosted-git-info" -"hosted-git-info@3.0.4","ISC","https://github.com/npm/hosted-git-info" -"hpack.js@2.1.6","MIT","https://github.com/indutny/hpack.js" -"hsl-regex@1.0.0","MIT","https://github.com/regexps/hsl-regex" -"hsla-regex@1.0.0","MIT","https://github.com/regexps/hsla-regex" -"html-comment-regex@1.1.2","MIT","https://github.com/stevemao/html-comment-regex" -"html-encoding-sniffer@1.0.2","MIT","https://github.com/jsdom/html-encoding-sniffer" -"html-entities@1.3.1","MIT","https://github.com/mdevils/node-html-entities" -"html-escaper@2.0.2","MIT","https://github.com/WebReflection/html-escaper" -"http-cache-semantics@3.8.1","BSD-2-Clause","https://github.com/pornel/http-cache-semantics" -"http-deceiver@1.2.7","MIT","https://github.com/indutny/http-deceiver" -"http-errors@1.6.3","MIT","https://github.com/jshttp/http-errors" -"http-errors@1.7.2","MIT","https://github.com/jshttp/http-errors" -"http-parser-js@0.4.10","MIT","https://github.com/creationix/http-parser-js" -"http-proxy-agent@2.1.0","MIT","https://github.com/TooTallNate/node-http-proxy-agent" -"http-proxy-middleware@0.19.1","MIT","https://github.com/chimurai/http-proxy-middleware" -"http-proxy@1.18.1","MIT","https://github.com/http-party/node-http-proxy" -"http-signature@1.2.0","MIT","https://github.com/joyent/node-http-signature" -"https-browserify@1.0.0","MIT","https://github.com/substack/https-browserify" -"https-proxy-agent@2.2.4","MIT","https://github.com/TooTallNate/node-https-proxy-agent" -"human-signals@1.1.1","Apache-2.0","https://github.com/ehmicky/human-signals" -"humanize-ms@1.2.1","MIT","https://github.com/node-modules/humanize-ms" -"iconv-lite@0.4.24","MIT","https://github.com/ashtuchkin/iconv-lite" -"icss-utils@4.1.1","ISC","https://github.com/css-modules/icss-utils" -"ieee754@1.1.13","BSD-3-Clause","https://github.com/feross/ieee754" -"iferr@0.1.5","MIT","https://github.com/shesek/iferr" -"ignore-walk@3.0.3","ISC","https://github.com/isaacs/ignore-walk" -"ignore@3.3.10","MIT","https://github.com/kaelzhang/node-ignore" -"image-size@0.5.5","MIT","https://github.com/image-size/image-size" -"immediate@3.0.6","MIT","https://github.com/calvinmetcalf/immediate" -"import-cwd@2.1.0","MIT","https://github.com/sindresorhus/import-cwd" -"import-fresh@2.0.0","MIT","https://github.com/sindresorhus/import-fresh" -"import-from@2.1.0","MIT","https://github.com/sindresorhus/import-from" -"import-local@2.0.0","MIT","https://github.com/sindresorhus/import-local" -"import-local@3.0.2","MIT","https://github.com/sindresorhus/import-local" -"imurmurhash@0.1.4","MIT","https://github.com/jensyt/imurmurhash-js" -"indent-string@4.0.0","MIT","https://github.com/sindresorhus/indent-string" -"indexes-of@1.0.1","MIT","https://github.com/dominictarr/indexes-of" -"infer-owner@1.0.4","ISC","https://github.com/npm/infer-owner" -"inflight@1.0.6","ISC","https://github.com/npm/inflight" -"inherits@2.0.1","ISC","https://github.com/isaacs/inherits" -"inherits@2.0.3","ISC","https://github.com/isaacs/inherits" -"inherits@2.0.4","ISC","https://github.com/isaacs/inherits" -"ini@1.3.5","ISC","https://github.com/isaacs/ini" -"inquirer@7.1.0","MIT","https://github.com/SBoudrias/Inquirer.js" -"internal-ip@4.3.0","MIT","https://github.com/sindresorhus/internal-ip" -"invariant@2.2.4","MIT","https://github.com/zertosh/invariant" -"invert-kv@2.0.0","MIT","https://github.com/sindresorhus/invert-kv" -"ip-regex@2.1.0","MIT","https://github.com/sindresorhus/ip-regex" -"ip@1.1.5","MIT","https://github.com/indutny/node-ip" -"ipaddr.js@1.9.1","MIT","https://github.com/whitequark/ipaddr.js" -"is-absolute-url@2.1.0","MIT","https://github.com/sindresorhus/is-absolute-url" -"is-absolute-url@3.0.3","MIT","https://github.com/sindresorhus/is-absolute-url" -"is-accessor-descriptor@0.1.6","MIT","https://github.com/jonschlinkert/is-accessor-descriptor" -"is-accessor-descriptor@1.0.0","MIT","https://github.com/jonschlinkert/is-accessor-descriptor" -"is-arguments@1.0.4","MIT","https://github.com/ljharb/is-arguments" -"is-arrayish@0.2.1","MIT","https://github.com/qix-/node-is-arrayish" -"is-arrayish@0.3.2","MIT","https://github.com/qix-/node-is-arrayish" -"is-binary-path@1.0.1","MIT","https://github.com/sindresorhus/is-binary-path" -"is-binary-path@2.1.0","MIT","https://github.com/sindresorhus/is-binary-path" -"is-buffer@1.1.6","MIT","https://github.com/feross/is-buffer" -"is-callable@1.1.5","MIT","https://github.com/ljharb/is-callable" -"is-ci@2.0.0","MIT","https://github.com/watson/is-ci" -"is-color-stop@1.1.0","MIT","https://github.com/pigcan/is-color-stop" -"is-data-descriptor@0.1.4","MIT","https://github.com/jonschlinkert/is-data-descriptor" -"is-data-descriptor@1.0.0","MIT","https://github.com/jonschlinkert/is-data-descriptor" -"is-date-object@1.0.2","MIT","https://github.com/ljharb/is-date-object" -"is-descriptor@0.1.6","MIT","https://github.com/jonschlinkert/is-descriptor" -"is-descriptor@1.0.2","MIT","https://github.com/jonschlinkert/is-descriptor" -"is-directory@0.3.1","MIT","https://github.com/jonschlinkert/is-directory" -"is-docker@2.0.0","MIT","https://github.com/sindresorhus/is-docker" -"is-extendable@0.1.1","MIT","https://github.com/jonschlinkert/is-extendable" -"is-extendable@1.0.1","MIT","https://github.com/jonschlinkert/is-extendable" -"is-extglob@2.1.1","MIT","https://github.com/jonschlinkert/is-extglob" -"is-fullwidth-code-point@1.0.0","MIT","https://github.com/sindresorhus/is-fullwidth-code-point" -"is-fullwidth-code-point@2.0.0","MIT","https://github.com/sindresorhus/is-fullwidth-code-point" -"is-fullwidth-code-point@3.0.0","MIT","https://github.com/sindresorhus/is-fullwidth-code-point" -"is-generator-fn@2.1.0","MIT","https://github.com/sindresorhus/is-generator-fn" -"is-glob@3.1.0","MIT","https://github.com/jonschlinkert/is-glob" -"is-glob@4.0.1","MIT","https://github.com/micromatch/is-glob" -"is-interactive@1.0.0","MIT","https://github.com/sindresorhus/is-interactive" -"is-number@3.0.0","MIT","https://github.com/jonschlinkert/is-number" -"is-number@7.0.0","MIT","https://github.com/jonschlinkert/is-number" -"is-obj@2.0.0","MIT","https://github.com/sindresorhus/is-obj" -"is-path-cwd@1.0.0","MIT","https://github.com/sindresorhus/is-path-cwd" -"is-path-cwd@2.2.0","MIT","https://github.com/sindresorhus/is-path-cwd" -"is-path-in-cwd@1.0.1","MIT","https://github.com/sindresorhus/is-path-in-cwd" -"is-path-in-cwd@2.1.0","MIT","https://github.com/sindresorhus/is-path-in-cwd" -"is-path-inside@1.0.1","MIT","https://github.com/sindresorhus/is-path-inside" -"is-path-inside@2.1.0","MIT","https://github.com/sindresorhus/is-path-inside" -"is-plain-obj@1.1.0","MIT","https://github.com/sindresorhus/is-plain-obj" -"is-plain-object@2.0.4","MIT","https://github.com/jonschlinkert/is-plain-object" -"is-regex@1.0.5","MIT","https://github.com/ljharb/is-regex" -"is-resolvable@1.1.0","ISC","https://github.com/shinnn/is-resolvable" -"is-stream@1.1.0","MIT","https://github.com/sindresorhus/is-stream" -"is-stream@2.0.0","MIT","https://github.com/sindresorhus/is-stream" -"is-svg@3.0.0","MIT","https://github.com/sindresorhus/is-svg" -"is-symbol@1.0.3","MIT","https://github.com/inspect-js/is-symbol" -"is-typedarray@1.0.0","MIT","https://github.com/hughsk/is-typedarray" -"is-windows@1.0.2","MIT","https://github.com/jonschlinkert/is-windows" -"is-wsl@1.1.0","MIT","https://github.com/sindresorhus/is-wsl" -"is-wsl@2.2.0","MIT","https://github.com/sindresorhus/is-wsl" -"isarray@1.0.0","MIT","https://github.com/juliangruber/isarray" -"isexe@2.0.0","ISC","https://github.com/isaacs/isexe" -"isobject@2.1.0","MIT","https://github.com/jonschlinkert/isobject" -"isobject@3.0.1","MIT","https://github.com/jonschlinkert/isobject" -"isstream@0.1.2","MIT","https://github.com/rvagg/isstream" -"istanbul-lib-coverage@3.0.0","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs" -"istanbul-lib-instrument@4.0.3","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs" -"istanbul-lib-report@3.0.0","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs" -"istanbul-lib-source-maps@4.0.0","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs" -"istanbul-reports@3.0.2","BSD-3-Clause","https://github.com/istanbuljs/istanbuljs" -"jasmine-core@2.8.0","MIT","https://github.com/jasmine/jasmine" -"jasmine-core@3.4.0","MIT","https://github.com/jasmine/jasmine" -"jasmine-spec-reporter@4.2.1","Apache-2.0","https://github.com/bcaudan/jasmine-spec-reporter" -"jasmine@2.8.0","MIT","https://github.com/jasmine/jasmine-npm" -"jasminewd2@2.2.0","MIT","https://github.com/angular/jasminewd" -"jest-changed-files@25.5.0","MIT","https://github.com/facebook/jest" -"jest-cli@25.5.4","MIT","https://github.com/facebook/jest" -"jest-config@25.5.4","MIT","https://github.com/facebook/jest" -"jest-diff@25.5.0","MIT","https://github.com/facebook/jest" -"jest-docblock@25.3.0","MIT","https://github.com/facebook/jest" -"jest-each@25.5.0","MIT","https://github.com/facebook/jest" -"jest-environment-jsdom@25.5.0","MIT","https://github.com/facebook/jest" -"jest-environment-node@25.5.0","MIT","https://github.com/facebook/jest" -"jest-get-type@25.2.6","MIT","https://github.com/facebook/jest" -"jest-haste-map@25.5.1","MIT","https://github.com/facebook/jest" -"jest-jasmine2@25.5.4","MIT","https://github.com/facebook/jest" -"jest-leak-detector@25.5.0","MIT","https://github.com/facebook/jest" -"jest-matcher-utils@25.5.0","MIT","https://github.com/facebook/jest" -"jest-message-util@25.5.0","MIT","https://github.com/facebook/jest" -"jest-mock@25.5.0","MIT","https://github.com/facebook/jest" -"jest-pnp-resolver@1.2.1","MIT","https://github.com/arcanis/jest-pnp-resolver" -"jest-preset-angular@8.2.0","MIT","https://github.com/thymikee/jest-preset-angular" -"jest-regex-util@25.2.6","MIT","https://github.com/facebook/jest" -"jest-resolve-dependencies@25.5.4","MIT","https://github.com/facebook/jest" -"jest-resolve@25.5.1","MIT","https://github.com/facebook/jest" -"jest-runner@25.5.4","MIT","https://github.com/facebook/jest" -"jest-runtime@25.5.4","MIT","https://github.com/facebook/jest" -"jest-serializer@25.5.0","MIT","https://github.com/facebook/jest" -"jest-snapshot@25.5.1","MIT","https://github.com/facebook/jest" -"jest-util@25.5.0","MIT","https://github.com/facebook/jest" -"jest-validate@25.5.0","MIT","https://github.com/facebook/jest" -"jest-watcher@25.5.0","MIT","https://github.com/facebook/jest" -"jest-worker@25.1.0","MIT","https://github.com/facebook/jest" -"jest-worker@25.5.0","MIT","https://github.com/facebook/jest" -"jest@25.5.4","MIT","https://github.com/facebook/jest" -"jointjs@3.1.1","MPL-2.0","https://github.com/clientIO/joint" -"jquery@3.4.1","MIT","https://github.com/jquery/jquery" -"jquery@3.5.1","MIT","https://github.com/jquery/jquery" -"js-tokens@3.0.2","MIT","https://github.com/lydell/js-tokens" -"js-tokens@4.0.0","MIT","https://github.com/lydell/js-tokens" -"js-yaml@3.13.1","MIT","https://github.com/nodeca/js-yaml" -"jsbn@0.1.1","MIT","https://github.com/andyperlitch/jsbn" -"jsdom@15.2.1","MIT","https://github.com/jsdom/jsdom" -"jsesc@0.5.0","MIT","https://github.com/mathiasbynens/jsesc" -"jsesc@2.5.2","MIT","https://github.com/mathiasbynens/jsesc" -"json-parse-better-errors@1.0.2","MIT","https://github.com/zkat/json-parse-better-errors" -"json-schema-traverse@0.4.1","MIT","https://github.com/epoberezkin/json-schema-traverse" -"json-schema@0.2.3","AFLv2.1,BSD","https://github.com/kriszyp/json-schema" -"json-stringify-safe@5.0.1","ISC","https://github.com/isaacs/json-stringify-safe" -"json3@3.3.3","MIT","https://github.com/bestiejs/json3" -"json5@1.0.1","MIT","https://github.com/json5/json5" -"json5@2.1.3","MIT","https://github.com/json5/json5" -"jsonfile@4.0.0","MIT","https://github.com/jprichardson/node-jsonfile" -"jsonparse@1.3.1","MIT","https://github.com/creationix/jsonparse" -"jsprim@1.4.1","MIT","https://github.com/joyent/node-jsprim" -"jszip@3.4.0","(MIT OR GPL-3.0)","https://github.com/Stuk/jszip" -"karma-source-map-support@1.4.0","MIT","https://github.com/tschaub/karma-source-map-support" -"killable@1.0.1","ISC","https://github.com/marten-de-vries/killable" -"kind-of@3.2.2","MIT","https://github.com/jonschlinkert/kind-of" -"kind-of@4.0.0","MIT","https://github.com/jonschlinkert/kind-of" -"kind-of@5.1.0","MIT","https://github.com/jonschlinkert/kind-of" -"kind-of@6.0.3","MIT","https://github.com/jonschlinkert/kind-of" -"kleur@3.0.3","MIT","https://github.com/lukeed/kleur" -"lcid@2.0.0","MIT","https://github.com/sindresorhus/lcid" -"less-loader@5.0.0","MIT","https://github.com/webpack-contrib/less-loader" -"less@3.11.1","Apache-2.0","https://github.com/less/less.js" -"leven@3.1.0","MIT","https://github.com/sindresorhus/leven" -"levenary@1.1.1","MIT","https://github.com/tanhauhau/levenary" -"levn@0.3.0","MIT","https://github.com/gkz/levn" -"license-webpack-plugin@2.1.4","ISC","https://github.com/xz64/license-webpack-plugin" -"lie@3.3.0","MIT","https://github.com/calvinmetcalf/lie" -"lines-and-columns@1.1.6","MIT","https://github.com/eventualbuddha/lines-and-columns" -"loader-runner@2.4.0","MIT","https://github.com/webpack/loader-runner" -"loader-utils@1.4.0","MIT","https://github.com/webpack/loader-utils" -"loader-utils@2.0.0","MIT","https://github.com/webpack/loader-utils" -"locate-path@2.0.0","MIT","https://github.com/sindresorhus/locate-path" -"locate-path@3.0.0","MIT","https://github.com/sindresorhus/locate-path" -"locate-path@5.0.0","MIT","https://github.com/sindresorhus/locate-path" -"lodash-es@4.17.15","MIT","https://github.com/lodash/lodash" -"lodash.clonedeep@4.5.0","MIT","https://github.com/lodash/lodash" -"lodash.memoize@4.1.2","MIT","https://github.com/lodash/lodash" -"lodash.sortby@4.7.0","MIT","https://github.com/lodash/lodash" -"lodash.uniq@4.5.0","MIT","https://github.com/lodash/lodash" -"lodash@4.17.15","MIT","https://github.com/lodash/lodash" -"log-symbols@3.0.0","MIT","https://github.com/sindresorhus/log-symbols" -"loglevel@1.6.8","MIT","https://github.com/pimterry/loglevel" -"lolex@5.1.2","BSD-3-Clause","https://github.com/sinonjs/lolex" -"loose-envify@1.4.0","MIT","https://github.com/zertosh/loose-envify" -"lru-cache@5.1.1","ISC","https://github.com/isaacs/node-lru-cache" -"magic-string@0.25.7","MIT","https://github.com/rich-harris/magic-string" -"make-dir@2.1.0","MIT","https://github.com/sindresorhus/make-dir" -"make-dir@3.1.0","MIT","https://github.com/sindresorhus/make-dir" -"make-error@1.3.6","ISC","https://github.com/JsCommunity/make-error" -"make-fetch-happen@5.0.2","ISC","https://github.com/zkat/make-fetch-happen" -"makeerror@1.0.11","BSD-3-Clause","https://github.com/daaku/nodejs-makeerror" -"mamacro@0.0.3","MIT","" -"map-age-cleaner@0.1.3","MIT","https://github.com/SamVerschueren/map-age-cleaner" -"map-cache@0.2.2","MIT","https://github.com/jonschlinkert/map-cache" -"map-visit@1.0.0","MIT","https://github.com/jonschlinkert/map-visit" -"marked@1.1.0","MIT","https://github.com/markedjs/marked" -"md5.js@1.3.5","MIT","https://github.com/crypto-browserify/md5.js" -"mdm-ui@0.0.0","UNLICENSED","" -"mdn-data@2.0.4","CC0-1.0","https://github.com/mdn/data" -"mdn-data@2.0.6","CC0-1.0","https://github.com/mdn/data" -"media-typer@0.3.0","MIT","https://github.com/jshttp/media-typer" -"mem@4.3.0","MIT","https://github.com/sindresorhus/mem" -"memory-fs@0.4.1","MIT","https://github.com/webpack/memory-fs" -"memory-fs@0.5.0","MIT","https://github.com/webpack/memory-fs" -"merge-descriptors@1.0.1","MIT","https://github.com/component/merge-descriptors" -"merge-source-map@1.1.0","MIT","https://github.com/keik/merge-source-map" -"merge-stream@2.0.0","MIT","https://github.com/grncdr/merge-stream" -"methods@1.1.2","MIT","https://github.com/jshttp/methods" -"micromatch@3.1.10","MIT","https://github.com/micromatch/micromatch" -"micromatch@4.0.2","MIT","https://github.com/micromatch/micromatch" -"miller-rabin@4.0.1","MIT","https://github.com/indutny/miller-rabin" -"mime-db@1.44.0","MIT","https://github.com/jshttp/mime-db" -"mime-types@2.1.27","MIT","https://github.com/jshttp/mime-types" -"mime@1.6.0","MIT","https://github.com/broofa/node-mime" -"mime@2.4.5","MIT","https://github.com/broofa/node-mime" -"mimic-fn@2.1.0","MIT","https://github.com/sindresorhus/mimic-fn" -"mini-css-extract-plugin@0.9.0","MIT","https://github.com/webpack-contrib/mini-css-extract-plugin" -"minimalistic-assert@1.0.1","ISC","https://github.com/calvinmetcalf/minimalistic-assert" -"minimalistic-crypto-utils@1.0.1","MIT","https://github.com/indutny/minimalistic-crypto-utils" -"minimatch@3.0.4","ISC","https://github.com/isaacs/minimatch" -"minimist@0.0.8","MIT","https://github.com/substack/minimist" -"minimist@1.2.5","MIT","https://github.com/substack/minimist" -"minipass-collect@1.0.2","ISC","" -"minipass-flush@1.0.5","ISC","https://github.com/isaacs/minipass-flush" -"minipass-pipeline@1.2.3","ISC","" -"minipass@2.9.0","ISC","https://github.com/isaacs/minipass" -"minipass@3.1.3","ISC","https://github.com/isaacs/minipass" -"minizlib@1.3.3","MIT","https://github.com/isaacs/minizlib" -"minizlib@2.1.0","MIT","https://github.com/isaacs/minizlib" -"mississippi@3.0.0","BSD-2-Clause","https://github.com/maxogden/mississippi" -"mixin-deep@1.3.2","MIT","https://github.com/jonschlinkert/mixin-deep" -"mkdirp@0.5.1","MIT","https://github.com/substack/node-mkdirp" -"mkdirp@1.0.4","MIT","https://github.com/isaacs/node-mkdirp" -"moment@2.24.0","MIT","https://github.com/moment/moment" -"move-concurrently@1.0.1","ISC","https://github.com/npm/move-concurrently" -"ms@2.0.0","MIT","https://github.com/zeit/ms" -"ms@2.1.1","MIT","https://github.com/zeit/ms" -"ms@2.1.2","MIT","https://github.com/zeit/ms" -"multicast-dns-service-types@1.1.0","MIT","https://github.com/mafintosh/multicast-dns-service-types" -"multicast-dns@6.2.3","MIT","https://github.com/mafintosh/multicast-dns" -"mute-stream@0.0.8","ISC","https://github.com/isaacs/mute-stream" -"nan@2.14.1","MIT","https://github.com/nodejs/nan" -"nanomatch@1.2.13","MIT","https://github.com/micromatch/nanomatch" -"natural-compare@1.4.0","MIT","https://github.com/litejs/natural-compare-lite" -"negotiator@0.6.2","MIT","https://github.com/jshttp/negotiator" -"neo-async@2.6.1","MIT","https://github.com/suguru03/neo-async" -"ng2-charts@2.3.2","ISC","https://github.com/valor-software/ng2-charts" -"ngx-clipboard@13.0.1","MIT","https://github.com/maxisam/ngx-clipboard" -"ngx-image-cropper@3.1.9","MIT","https://github.com/Mawi137/ngx-image-cropper" -"ngx-json-viewer@2.4.0","MIT","https://github.com/hivivo/ngx-json-viewer" -"ngx-toastr@12.0.1","MIT","https://github.com/scttcper/ngx-toastr" -"ngx-window-token@3.0.0","MIT","https://github.com/maxisam/ngx-window-token" -"nice-try@1.0.5","MIT","https://github.com/electerious/nice-try" -"node-fetch-npm@2.0.4","MIT","https://github.com/npm/node-fetch-npm" -"node-forge@0.9.0","(BSD-3-Clause OR GPL-2.0)","https://github.com/digitalbazaar/forge" -"node-int64@0.4.0","MIT","https://github.com/broofa/node-int64" -"node-libs-browser@2.2.1","MIT","https://github.com/webpack/node-libs-browser" -"node-modules-regexp@1.0.0","MIT","https://github.com/jamestalmage/node-modules-regexp" -"node-notifier@6.0.0","MIT","https://github.com/mikaelbr/node-notifier" -"node-releases@1.1.56","MIT","https://github.com/chicoxyzzy/node-releases" -"normalize-package-data@2.5.0","BSD-2-Clause","https://github.com/npm/normalize-package-data" -"normalize-path@2.1.1","MIT","https://github.com/jonschlinkert/normalize-path" -"normalize-path@3.0.0","MIT","https://github.com/jonschlinkert/normalize-path" -"normalize-range@0.1.2","MIT","https://github.com/jamestalmage/normalize-range" -"normalize-url@1.9.1","MIT","https://github.com/sindresorhus/normalize-url" -"normalize-url@3.3.0","MIT","https://github.com/sindresorhus/normalize-url" -"npm-bundled@1.1.1","ISC","https://github.com/npm/npm-bundled" -"npm-install-checks@4.0.0","BSD-2-Clause","https://github.com/npm/npm-install-checks" -"npm-normalize-package-bin@1.0.1","ISC","https://github.com/npm/npm-normalize-package-bin" -"npm-package-arg@6.1.1","ISC","https://github.com/npm/npm-package-arg" -"npm-package-arg@8.0.1","ISC","https://github.com/npm/npm-package-arg" -"npm-packlist@1.4.8","ISC","https://github.com/npm/npm-packlist" -"npm-pick-manifest@3.0.2","ISC","https://github.com/npm/npm-pick-manifest" -"npm-pick-manifest@6.0.0","ISC","https://github.com/npm/npm-pick-manifest" -"npm-registry-fetch@4.0.4","ISC","https://github.com/npm/registry-fetch" -"npm-run-path@2.0.2","MIT","https://github.com/sindresorhus/npm-run-path" -"npm-run-path@4.0.1","MIT","https://github.com/sindresorhus/npm-run-path" -"nth-check@1.0.2","BSD-2-Clause","https://github.com/fb55/nth-check" -"num2fraction@1.2.2","MIT","https://github.com/yisibl/num2fraction" -"number-is-nan@1.0.1","MIT","https://github.com/sindresorhus/number-is-nan" -"nwsapi@2.2.0","MIT","https://github.com/dperini/nwsapi" -"oauth-sign@0.9.0","Apache-2.0","https://github.com/mikeal/oauth-sign" -"object-assign@4.1.1","MIT","https://github.com/sindresorhus/object-assign" -"object-copy@0.1.0","MIT","https://github.com/jonschlinkert/object-copy" -"object-inspect@1.7.0","MIT","https://github.com/substack/object-inspect" -"object-is@1.1.2","MIT","https://github.com/es-shims/object-is" -"object-keys@1.1.1","MIT","https://github.com/ljharb/object-keys" -"object-visit@1.0.1","MIT","https://github.com/jonschlinkert/object-visit" -"object.assign@4.1.0","MIT","https://github.com/ljharb/object.assign" -"object.getownpropertydescriptors@2.1.0","MIT","https://github.com/es-shims/object.getownpropertydescriptors" -"object.pick@1.3.0","MIT","https://github.com/jonschlinkert/object.pick" -"object.values@1.1.1","MIT","https://github.com/es-shims/Object.values" -"obuf@1.1.2","MIT","https://github.com/indutny/offset-buffer" -"on-finished@2.3.0","MIT","https://github.com/jshttp/on-finished" -"on-headers@1.0.2","MIT","https://github.com/jshttp/on-headers" -"once@1.4.0","ISC","https://github.com/isaacs/once" -"onetime@5.1.0","MIT","https://github.com/sindresorhus/onetime" -"open@7.0.3","MIT","https://github.com/sindresorhus/open" -"opn@5.5.0","MIT","https://github.com/sindresorhus/opn" -"optionator@0.8.3","MIT","https://github.com/gkz/optionator" -"ora@4.0.3","MIT","https://github.com/sindresorhus/ora" -"original@1.0.2","MIT","https://github.com/unshiftio/original" -"os-browserify@0.3.0","MIT","https://github.com/CoderPuppy/os-browserify" -"os-homedir@1.0.2","MIT","https://github.com/sindresorhus/os-homedir" -"os-locale@3.1.0","MIT","https://github.com/sindresorhus/os-locale" -"os-tmpdir@1.0.2","MIT","https://github.com/sindresorhus/os-tmpdir" -"osenv@0.1.5","ISC","https://github.com/npm/osenv" -"p-defer@1.0.0","MIT","https://github.com/sindresorhus/p-defer" -"p-each-series@2.1.0","MIT","https://github.com/sindresorhus/p-each-series" -"p-finally@1.0.0","MIT","https://github.com/sindresorhus/p-finally" -"p-finally@2.0.1","MIT","https://github.com/sindresorhus/p-finally" -"p-is-promise@2.1.0","MIT","https://github.com/sindresorhus/p-is-promise" -"p-limit@1.3.0","MIT","https://github.com/sindresorhus/p-limit" -"p-limit@2.3.0","MIT","https://github.com/sindresorhus/p-limit" -"p-locate@2.0.0","MIT","https://github.com/sindresorhus/p-locate" -"p-locate@3.0.0","MIT","https://github.com/sindresorhus/p-locate" -"p-locate@4.1.0","MIT","https://github.com/sindresorhus/p-locate" -"p-map@2.1.0","MIT","https://github.com/sindresorhus/p-map" -"p-map@3.0.0","MIT","https://github.com/sindresorhus/p-map" -"p-retry@3.0.1","MIT","https://github.com/sindresorhus/p-retry" -"p-try@1.0.0","MIT","https://github.com/sindresorhus/p-try" -"p-try@2.2.0","MIT","https://github.com/sindresorhus/p-try" -"pacote@9.5.12","MIT","https://github.com/npm/pacote" -"pako@1.0.11","(MIT AND Zlib)","https://github.com/nodeca/pako" -"parallel-transform@1.2.0","MIT","https://github.com/mafintosh/parallel-transform" -"parse-asn1@5.1.5","ISC","https://github.com/crypto-browserify/parse-asn1" -"parse-json@4.0.0","MIT","https://github.com/sindresorhus/parse-json" -"parse-json@5.0.0","MIT","https://github.com/sindresorhus/parse-json" -"parse5@4.0.0","MIT","https://github.com/inikulin/parse5" -"parse5@5.1.0","MIT","https://github.com/inikulin/parse5" -"parse5@5.1.1","MIT","https://github.com/inikulin/parse5" -"parseurl@1.3.3","MIT","https://github.com/pillarjs/parseurl" -"pascalcase@0.1.1","MIT","https://github.com/jonschlinkert/pascalcase" -"path-browserify@0.0.1","MIT","https://github.com/substack/path-browserify" -"path-dirname@1.0.2","MIT","https://github.com/es128/path-dirname" -"path-exists@3.0.0","MIT","https://github.com/sindresorhus/path-exists" -"path-exists@4.0.0","MIT","https://github.com/sindresorhus/path-exists" -"path-is-absolute@1.0.1","MIT","https://github.com/sindresorhus/path-is-absolute" -"path-is-inside@1.0.2","(WTFPL OR MIT)","https://github.com/domenic/path-is-inside" -"path-key@2.0.1","MIT","https://github.com/sindresorhus/path-key" -"path-key@3.1.1","MIT","https://github.com/sindresorhus/path-key" -"path-parse@1.0.6","MIT","https://github.com/jbgutierrez/path-parse" -"path-to-regexp@0.1.7","MIT","https://github.com/component/path-to-regexp" -"path-type@3.0.0","MIT","https://github.com/sindresorhus/path-type" -"pbkdf2@3.0.17","MIT","https://github.com/crypto-browserify/pbkdf2" -"performance-now@2.1.0","MIT","https://github.com/braveg1rl/performance-now" -"picomatch@2.2.2","MIT","https://github.com/micromatch/picomatch" -"pify@2.3.0","MIT","https://github.com/sindresorhus/pify" -"pify@3.0.0","MIT","https://github.com/sindresorhus/pify" -"pify@4.0.1","MIT","https://github.com/sindresorhus/pify" -"pinkie-promise@2.0.1","MIT","https://github.com/floatdrop/pinkie-promise" -"pinkie@2.0.4","MIT","https://github.com/floatdrop/pinkie" -"pirates@4.0.1","MIT","https://github.com/ariporad/pirates" -"pkg-dir@3.0.0","MIT","https://github.com/sindresorhus/pkg-dir" -"pkg-dir@4.2.0","MIT","https://github.com/sindresorhus/pkg-dir" -"pkg-up@2.0.0","MIT","https://github.com/sindresorhus/pkg-up" -"pn@1.1.0","MIT","https://github.com/cscott/node-pn" -"portfinder@1.0.26","MIT","https://github.com/http-party/node-portfinder" -"posix-character-classes@0.1.1","MIT","https://github.com/jonschlinkert/posix-character-classes" -"postcss-calc@7.0.2","MIT","https://github.com/postcss/postcss-calc" -"postcss-colormin@4.0.3","MIT","https://github.com/cssnano/cssnano" -"postcss-convert-values@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-discard-comments@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-discard-duplicates@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-discard-empty@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-discard-overridden@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-import@12.0.1","MIT","https://github.com/postcss/postcss-import" -"postcss-load-config@2.1.0","MIT","https://github.com/michael-ciniawsky/postcss-load-config" -"postcss-loader@3.0.0","MIT","https://github.com/postcss/postcss-loader" -"postcss-merge-longhand@4.0.11","MIT","https://github.com/cssnano/cssnano" -"postcss-merge-rules@4.0.3","MIT","https://github.com/cssnano/cssnano" -"postcss-minify-font-values@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-minify-gradients@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-minify-params@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-minify-selectors@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-modules-extract-imports@2.0.0","ISC","https://github.com/css-modules/postcss-modules-extract-imports" -"postcss-modules-local-by-default@3.0.2","MIT","https://github.com/css-modules/postcss-modules-local-by-default" -"postcss-modules-scope@2.2.0","ISC","https://github.com/css-modules/postcss-modules-scope" -"postcss-modules-values@3.0.0","ISC","https://github.com/css-modules/postcss-modules-values" -"postcss-normalize-charset@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-display-values@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-positions@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-repeat-style@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-string@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-timing-functions@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-unicode@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-url@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-normalize-whitespace@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-ordered-values@4.1.2","MIT","https://github.com/cssnano/cssnano" -"postcss-reduce-initial@4.0.3","MIT","https://github.com/cssnano/cssnano" -"postcss-reduce-transforms@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-selector-parser@3.1.2","MIT","https://github.com/postcss/postcss-selector-parser" -"postcss-selector-parser@6.0.2","MIT","https://github.com/postcss/postcss-selector-parser" -"postcss-svgo@4.0.2","MIT","https://github.com/cssnano/cssnano" -"postcss-unique-selectors@4.0.1","MIT","https://github.com/cssnano/cssnano" -"postcss-value-parser@3.3.1","MIT","https://github.com/TrySound/postcss-value-parser" -"postcss-value-parser@4.1.0","MIT","https://github.com/TrySound/postcss-value-parser" -"postcss@7.0.27","MIT","https://github.com/postcss/postcss" -"prelude-ls@1.1.2","MIT","https://github.com/gkz/prelude-ls" -"prepend-http@1.0.4","MIT","https://github.com/sindresorhus/prepend-http" -"pretty-format@25.5.0","MIT","https://github.com/facebook/jest" -"private@0.1.8","MIT","https://github.com/benjamn/private" -"process-nextick-args@2.0.1","MIT","https://github.com/calvinmetcalf/process-nextick-args" -"process@0.11.10","MIT","https://github.com/shtylman/node-process" -"promise-inflight@1.0.1","ISC","https://github.com/iarna/promise-inflight" -"promise-retry@1.1.1","MIT","https://github.com/IndigoUnited/node-promise-retry" -"promise@7.3.1","MIT","https://github.com/then/promise" -"prompts@2.3.2","MIT","https://github.com/terkelg/prompts" -"protoduck@5.0.1","MIT","https://github.com/zkat/protoduck" -"protractor@5.4.4","MIT","https://github.com/angular/protractor" -"proxy-addr@2.0.6","MIT","https://github.com/jshttp/proxy-addr" -"prr@1.0.1","MIT","https://github.com/rvagg/prr" -"psl@1.8.0","MIT","https://github.com/lupomontero/psl" -"public-encrypt@4.0.3","MIT","https://github.com/crypto-browserify/publicEncrypt" -"pump@2.0.1","MIT","https://github.com/mafintosh/pump" -"pump@3.0.0","MIT","https://github.com/mafintosh/pump" -"pumpify@1.5.1","MIT","https://github.com/mafintosh/pumpify" -"punycode@1.3.2","MIT","https://github.com/bestiejs/punycode.js" -"punycode@1.4.1","MIT","https://github.com/bestiejs/punycode.js" -"punycode@2.1.1","MIT","https://github.com/bestiejs/punycode.js" -"q@1.4.1","MIT","https://github.com/kriskowal/q" -"q@1.5.1","MIT","https://github.com/kriskowal/q" -"qs@6.5.2","BSD-3-Clause","https://github.com/ljharb/qs" -"qs@6.7.0","BSD-3-Clause","https://github.com/ljharb/qs" -"query-string@4.3.4","MIT","https://github.com/sindresorhus/query-string" -"querystring-es3@0.2.1","MIT","https://github.com/mike-spainhower/querystring" -"querystring@0.2.0","MIT","https://github.com/Gozala/querystring" -"querystringify@2.1.1","MIT","https://github.com/unshiftio/querystringify" -"randombytes@2.1.0","MIT","https://github.com/crypto-browserify/randombytes" -"randomfill@1.0.4","MIT","https://github.com/crypto-browserify/randomfill" -"range-parser@1.2.1","MIT","https://github.com/jshttp/range-parser" -"raw-body@2.4.0","MIT","https://github.com/stream-utils/raw-body" -"raw-loader@4.0.0","MIT","https://github.com/webpack-contrib/raw-loader" -"react-is@16.13.1","MIT","https://github.com/facebook/react" -"read-cache@1.0.0","MIT","https://github.com/TrySound/read-cache" -"read-package-json@2.1.1","ISC","https://github.com/npm/read-package-json" -"read-package-tree@5.3.1","ISC","https://github.com/npm/read-package-tree" -"read-pkg-up@7.0.1","MIT","https://github.com/sindresorhus/read-pkg-up" -"read-pkg@5.2.0","MIT","https://github.com/sindresorhus/read-pkg" -"readable-stream@2.3.7","MIT","https://github.com/nodejs/readable-stream" -"readable-stream@3.6.0","MIT","https://github.com/nodejs/readable-stream" -"readdir-scoped-modules@1.1.0","ISC","https://github.com/npm/readdir-scoped-modules" -"readdirp@2.2.1","MIT","https://github.com/paulmillr/readdirp" -"readdirp@3.4.0","MIT","https://github.com/paulmillr/readdirp" -"realpath-native@2.0.0","MIT","https://github.com/SimenB/realpath-native" -"reflect-metadata@0.1.13","Apache-2.0","https://github.com/rbuckton/reflect-metadata" -"regenerate-unicode-properties@8.2.0","MIT","https://github.com/mathiasbynens/regenerate-unicode-properties" -"regenerate@1.4.0","MIT","https://github.com/mathiasbynens/regenerate" -"regenerator-runtime@0.13.5","MIT","https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" -"regenerator-transform@0.14.4","MIT","https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" -"regex-not@1.0.2","MIT","https://github.com/jonschlinkert/regex-not" -"regexp.prototype.flags@1.3.0","MIT","https://github.com/es-shims/RegExp.prototype.flags" -"regexpu-core@4.7.0","MIT","https://github.com/mathiasbynens/regexpu-core" -"regjsgen@0.5.1","MIT","https://github.com/bnjmnt4n/regjsgen" -"regjsparser@0.6.4","BSD-2-Clause","https://github.com/jviereck/regjsparser" -"remove-trailing-separator@1.1.0","ISC","https://github.com/darsain/remove-trailing-separator" -"repeat-element@1.1.3","MIT","https://github.com/jonschlinkert/repeat-element" -"repeat-string@1.6.1","MIT","https://github.com/jonschlinkert/repeat-string" -"request-promise-core@1.1.3","ISC","https://github.com/request/promise-core" -"request-promise-native@1.0.8","ISC","https://github.com/request/request-promise-native" -"request@2.88.2","Apache-2.0","https://github.com/request/request" -"require-directory@2.1.1","MIT","https://github.com/troygoode/node-require-directory" -"require-main-filename@1.0.1","ISC","https://github.com/yargs/require-main-filename" -"require-main-filename@2.0.0","ISC","https://github.com/yargs/require-main-filename" -"requires-port@1.0.0","MIT","https://github.com/unshiftio/requires-port" -"resolve-cwd@2.0.0","MIT","https://github.com/sindresorhus/resolve-cwd" -"resolve-cwd@3.0.0","MIT","https://github.com/sindresorhus/resolve-cwd" -"resolve-from@3.0.0","MIT","https://github.com/sindresorhus/resolve-from" -"resolve-from@5.0.0","MIT","https://github.com/sindresorhus/resolve-from" -"resolve-url@0.2.1","MIT","https://github.com/lydell/resolve-url" -"resolve@1.1.7","MIT","https://github.com/substack/node-resolve" -"resolve@1.15.1","MIT","https://github.com/browserify/resolve" -"resolve@1.17.0","MIT","https://github.com/browserify/resolve" -"restore-cursor@3.1.0","MIT","https://github.com/sindresorhus/restore-cursor" -"ret@0.1.15","MIT","https://github.com/fent/ret.js" -"retry@0.10.1","MIT","https://github.com/tim-kos/node-retry" -"retry@0.12.0","MIT","https://github.com/tim-kos/node-retry" -"rgb-regex@1.0.1","MIT","https://github.com/regexps/rgb-regex" -"rgba-regex@1.0.0","MIT","https://github.com/johnotander/rgba-regex" -"rimraf@2.7.1","ISC","https://github.com/isaacs/rimraf" -"rimraf@3.0.2","ISC","https://github.com/isaacs/rimraf" -"ripemd160@2.0.2","MIT","https://github.com/crypto-browserify/ripemd160" -"rollup@2.1.0","MIT","https://github.com/rollup/rollup" -"rsvp@4.8.5","MIT","https://github.com/tildeio/rsvp.js" -"run-async@2.4.1","MIT","https://github.com/SBoudrias/run-async" -"run-queue@1.0.3","ISC","https://github.com/iarna/run-queue" -"rxjs@6.5.4","Apache-2.0","https://github.com/reactivex/rxjs" -"rxjs@6.5.5","Apache-2.0","https://github.com/reactivex/rxjs" -"safe-buffer@5.1.2","MIT","https://github.com/feross/safe-buffer" -"safe-buffer@5.2.1","MIT","https://github.com/feross/safe-buffer" -"safe-regex@1.1.0","MIT","https://github.com/substack/safe-regex" -"safer-buffer@2.1.2","MIT","https://github.com/ChALkeR/safer-buffer" -"sane@4.1.0","MIT","https://github.com/amasad/sane" -"sass-loader@8.0.2","MIT","https://github.com/webpack-contrib/sass-loader" -"sass@1.26.3","MIT","https://github.com/sass/dart-sass" -"saucelabs@1.5.0","MIT*","https://github.com/holidayextras/node-saucelabs" -"save-svg-as-png@1.4.17","MIT","https://github.com/exupero/saveSvgAsPng" -"sax@1.2.4","ISC","https://github.com/isaacs/sax-js" -"saxes@3.1.11","ISC","https://github.com/lddubeau/saxes" -"schema-utils@1.0.0","MIT","https://github.com/webpack-contrib/schema-utils" -"schema-utils@2.6.6","MIT","https://github.com/webpack/schema-utils" -"select-hose@2.0.0","MIT","https://github.com/indutny/select-hose" -"selenium-webdriver@3.6.0","Apache-2.0","https://github.com/SeleniumHQ/selenium" -"selfsigned@1.10.7","MIT","https://github.com/jfromaniello/selfsigned" -"semver-dsl@1.0.1","MIT","https://github.com/mgechev/semver-dsl" -"semver-intersect@1.4.0","MIT","https://github.com/snyamathi/semver-intersect" -"semver@5.7.1","ISC","https://github.com/npm/node-semver" -"semver@6.3.0","ISC","https://github.com/npm/node-semver" -"semver@7.0.0","ISC","https://github.com/npm/node-semver" -"semver@7.1.3","ISC","https://github.com/npm/node-semver" -"send@0.17.1","MIT","https://github.com/pillarjs/send" -"serialize-javascript@2.1.2","BSD-3-Clause","https://github.com/yahoo/serialize-javascript" -"serve-index@1.9.1","MIT","https://github.com/expressjs/serve-index" -"serve-static@1.14.1","MIT","https://github.com/expressjs/serve-static" -"set-blocking@2.0.0","ISC","https://github.com/yargs/set-blocking" -"set-immediate-shim@1.0.1","MIT","https://github.com/sindresorhus/set-immediate-shim" -"set-value@2.0.1","MIT","https://github.com/jonschlinkert/set-value" -"setimmediate@1.0.5","MIT","https://github.com/YuzuJS/setImmediate" -"setprototypeof@1.1.0","ISC","https://github.com/wesleytodd/setprototypeof" -"setprototypeof@1.1.1","ISC","https://github.com/wesleytodd/setprototypeof" -"sha.js@2.4.11","(MIT AND BSD-3-Clause)","https://github.com/crypto-browserify/sha.js" -"shallow-clone@3.0.1","MIT","https://github.com/jonschlinkert/shallow-clone" -"shebang-command@1.2.0","MIT","https://github.com/kevva/shebang-command" -"shebang-command@2.0.0","MIT","https://github.com/kevva/shebang-command" -"shebang-regex@1.0.0","MIT","https://github.com/sindresorhus/shebang-regex" -"shebang-regex@3.0.0","MIT","https://github.com/sindresorhus/shebang-regex" -"shellwords@0.1.1","MIT","https://github.com/jimmycuadra/shellwords" -"signal-exit@3.0.3","ISC","https://github.com/tapjs/signal-exit" -"simple-swizzle@0.2.2","MIT","https://github.com/qix-/node-simple-swizzle" -"sisteransi@1.0.5","MIT","https://github.com/terkelg/sisteransi" -"slash@1.0.0","MIT","https://github.com/sindresorhus/slash" -"slash@3.0.0","MIT","https://github.com/sindresorhus/slash" -"smart-buffer@4.1.0","MIT","https://github.com/JoshGlazebrook/smart-buffer" -"snapdragon-node@2.1.1","MIT","https://github.com/jonschlinkert/snapdragon-node" -"snapdragon-util@3.0.1","MIT","https://github.com/jonschlinkert/snapdragon-util" -"snapdragon@0.8.2","MIT","https://github.com/jonschlinkert/snapdragon" -"sockjs-client@1.4.0","MIT","https://github.com/sockjs/sockjs-client" -"sockjs@0.3.19","MIT","https://github.com/sockjs/sockjs-node" -"socks-proxy-agent@4.0.2","MIT","https://github.com/TooTallNate/node-socks-proxy-agent" -"socks@2.3.3","MIT","https://github.com/JoshGlazebrook/socks" -"sort-keys@1.1.2","MIT","https://github.com/sindresorhus/sort-keys" -"source-list-map@2.0.1","MIT","https://github.com/webpack/source-list-map" -"source-map-loader@0.2.4","MIT","https://github.com/webpack-contrib/source-map-loader" -"source-map-resolve@0.5.3","MIT","https://github.com/lydell/source-map-resolve" -"source-map-support@0.4.18","MIT","https://github.com/evanw/node-source-map-support" -"source-map-support@0.5.19","MIT","https://github.com/evanw/node-source-map-support" -"source-map-url@0.4.0","MIT","https://github.com/lydell/source-map-url" -"source-map@0.5.7","BSD-3-Clause","https://github.com/mozilla/source-map" -"source-map@0.6.1","BSD-3-Clause","https://github.com/mozilla/source-map" -"source-map@0.7.3","BSD-3-Clause","https://github.com/mozilla/source-map" -"sourcemap-codec@1.4.8","MIT","https://github.com/Rich-Harris/sourcemap-codec" -"spdx-correct@3.1.0","Apache-2.0","https://github.com/jslicense/spdx-correct.js" -"spdx-exceptions@2.3.0","CC-BY-3.0","https://github.com/kemitchell/spdx-exceptions.json" -"spdx-expression-parse@3.0.1","MIT","https://github.com/jslicense/spdx-expression-parse.js" -"spdx-license-ids@3.0.5","CC0-1.0","https://github.com/shinnn/spdx-license-ids" -"spdy-transport@3.0.0","MIT","https://github.com/spdy-http2/spdy-transport" -"spdy@4.0.2","MIT","https://github.com/indutny/node-spdy" -"speed-measure-webpack-plugin@1.3.1","MIT","https://github.com/stephencookdev/speed-measure-webpack-plugin" -"split-string@3.1.0","MIT","https://github.com/jonschlinkert/split-string" -"sprintf-js@1.0.3","BSD-3-Clause","https://github.com/alexei/sprintf.js" -"sprintf-js@1.1.2","BSD-3-Clause","https://github.com/alexei/sprintf.js" -"sshpk@1.16.1","MIT","https://github.com/joyent/node-sshpk" -"ssri@6.0.1","ISC","https://github.com/zkat/ssri" -"ssri@7.1.0","ISC","https://github.com/npm/ssri" -"ssri@8.0.0","ISC","https://github.com/npm/ssri" -"stable@0.1.8","MIT","https://github.com/Two-Screen/stable" -"stack-utils@1.0.2","MIT","https://github.com/tapjs/stack-utils" -"static-extend@0.1.2","MIT","https://github.com/jonschlinkert/static-extend" -"statuses@1.5.0","MIT","https://github.com/jshttp/statuses" -"stealthy-require@1.1.1","ISC","https://github.com/analog-nico/stealthy-require" -"stream-browserify@2.0.2","MIT","https://github.com/browserify/stream-browserify" -"stream-each@1.2.3","MIT","https://github.com/mafintosh/stream-each" -"stream-http@2.8.3","MIT","https://github.com/jhiesey/stream-http" -"stream-shift@1.0.1","MIT","https://github.com/mafintosh/stream-shift" -"strict-uri-encode@1.1.0","MIT","https://github.com/kevva/strict-uri-encode" -"string-length@3.1.0","MIT","https://github.com/sindresorhus/string-length" -"string-width@1.0.2","MIT","https://github.com/sindresorhus/string-width" -"string-width@2.1.1","MIT","https://github.com/sindresorhus/string-width" -"string-width@4.2.0","MIT","https://github.com/sindresorhus/string-width" -"string.prototype.trimend@1.0.1","MIT","https://github.com/es-shims/String.prototype.trimEnd" -"string.prototype.trimleft@2.1.2","MIT","https://github.com/es-shims/String.prototype.trimLeft" -"string.prototype.trimright@2.1.2","MIT","https://github.com/es-shims/String.prototype.trimRight" -"string.prototype.trimstart@1.0.1","MIT","https://github.com/es-shims/String.prototype.trimStart" -"string_decoder@1.1.1","MIT","https://github.com/nodejs/string_decoder" -"strip-ansi@3.0.1","MIT","https://github.com/chalk/strip-ansi" -"strip-ansi@4.0.0","MIT","https://github.com/chalk/strip-ansi" -"strip-ansi@5.2.0","MIT","https://github.com/chalk/strip-ansi" -"strip-ansi@6.0.0","MIT","https://github.com/chalk/strip-ansi" -"strip-bom@4.0.0","MIT","https://github.com/sindresorhus/strip-bom" -"strip-eof@1.0.0","MIT","https://github.com/sindresorhus/strip-eof" -"strip-final-newline@2.0.0","MIT","https://github.com/sindresorhus/strip-final-newline" -"style-loader@1.1.3","MIT","https://github.com/webpack-contrib/style-loader" -"stylehacks@4.0.3","MIT","https://github.com/cssnano/cssnano" -"stylus-loader@3.0.2","MIT","https://github.com/shama/stylus-loader" -"stylus@0.54.7","MIT","https://github.com/stylus/stylus" -"supports-color@2.0.0","MIT","https://github.com/chalk/supports-color" -"supports-color@5.5.0","MIT","https://github.com/chalk/supports-color" -"supports-color@6.1.0","MIT","https://github.com/chalk/supports-color" -"supports-color@7.1.0","MIT","https://github.com/chalk/supports-color" -"supports-hyperlinks@2.1.0","MIT","https://github.com/jamestalmage/supports-hyperlinks" -"svg-pan-zoom@3.6.1","BSD-2-Clause","https://github.com/ariutta/svg-pan-zoom" -"svgo@1.3.2","MIT","https://github.com/svg/svgo" -"symbol-observable@1.2.0","MIT","https://github.com/blesh/symbol-observable" -"symbol-tree@3.2.4","MIT","https://github.com/jsdom/js-symbol-tree" -"tapable@1.1.3","MIT","https://github.com/webpack/tapable" -"tar@4.4.13","ISC","https://github.com/npm/node-tar" -"tar@6.0.2","ISC","https://github.com/npm/node-tar" -"terminal-link@2.1.1","MIT","https://github.com/sindresorhus/terminal-link" -"terser-webpack-plugin@1.4.3","MIT","https://github.com/webpack-contrib/terser-webpack-plugin" -"terser-webpack-plugin@2.3.5","MIT","https://github.com/webpack-contrib/terser-webpack-plugin" -"terser@4.6.10","BSD-2-Clause","https://github.com/terser/terser" -"test-exclude@6.0.0","ISC","https://github.com/istanbuljs/test-exclude" -"throat@5.0.0","MIT","https://github.com/ForbesLindesay/throat" -"through2@2.0.5","MIT","https://github.com/rvagg/through2" -"through@2.3.8","MIT","https://github.com/dominictarr/through" -"thunky@1.1.0","MIT","https://github.com/mafintosh/thunky" -"timers-browserify@2.0.11","MIT","https://github.com/jryans/timers-browserify" -"timsort@0.3.0","MIT","https://github.com/mziccard/node-timsort" -"tmp@0.0.30","MIT","https://github.com/raszi/node-tmp" -"tmp@0.0.33","MIT","https://github.com/raszi/node-tmp" -"tmpl@1.0.4","BSD-3-Clause","https://github.com/daaku/nodejs-tmpl" -"to-arraybuffer@1.0.1","MIT","https://github.com/jhiesey/to-arraybuffer" -"to-fast-properties@2.0.0","MIT","https://github.com/sindresorhus/to-fast-properties" -"to-object-path@0.3.0","MIT","https://github.com/jonschlinkert/to-object-path" -"to-regex-range@2.1.1","MIT","https://github.com/micromatch/to-regex-range" -"to-regex-range@5.0.1","MIT","https://github.com/micromatch/to-regex-range" -"to-regex@3.0.2","MIT","https://github.com/jonschlinkert/to-regex" -"toidentifier@1.0.0","MIT","https://github.com/component/toidentifier" -"tough-cookie@2.5.0","BSD-3-Clause","https://github.com/salesforce/tough-cookie" -"tough-cookie@3.0.1","BSD-3-Clause","https://github.com/salesforce/tough-cookie" -"tr46@1.0.1","MIT","https://github.com/Sebmaster/tr46.js" -"tree-kill@1.2.2","MIT","https://github.com/pkrumins/node-tree-kill" -"ts-jest@25.5.1","MIT","https://github.com/kulshekhar/ts-jest" -"ts-node@8.10.1","MIT","https://github.com/TypeStrong/ts-node" -"tslib@1.11.1","Apache-2.0","https://github.com/Microsoft/tslib" -"tslib@1.13.0","0BSD","https://github.com/Microsoft/tslib" -"tslint@5.15.0","Apache-2.0","https://github.com/palantir/tslint" -"tsutils@2.29.0","MIT","https://github.com/ajafff/tsutils" -"tty-browserify@0.0.0","MIT","https://github.com/substack/tty-browserify" -"tunnel-agent@0.6.0","Apache-2.0","https://github.com/mikeal/tunnel-agent" -"tweetnacl@0.14.5","Unlicense","https://github.com/dchest/tweetnacl-js" -"type-check@0.3.2","MIT","https://github.com/gkz/type-check" -"type-detect@4.0.8","MIT","https://github.com/chaijs/type-detect" -"type-fest@0.11.0","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest" -"type-fest@0.6.0","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest" -"type-fest@0.8.1","(MIT OR CC0-1.0)","https://github.com/sindresorhus/type-fest" -"type-is@1.6.18","MIT","https://github.com/jshttp/type-is" -"typedarray-to-buffer@3.1.5","MIT","https://github.com/feross/typedarray-to-buffer" -"typedarray@0.0.6","MIT","https://github.com/substack/typedarray" -"typescript@3.6.5","Apache-2.0","https://github.com/Microsoft/TypeScript" -"typescript@3.8.3","Apache-2.0","https://github.com/Microsoft/TypeScript" -"underscore@1.9.2","MIT","https://github.com/jashkenas/underscore" -"unicode-canonical-property-names-ecmascript@1.0.4","MIT","https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript" -"unicode-match-property-ecmascript@1.0.4","MIT","https://github.com/mathiasbynens/unicode-match-property-ecmascript" -"unicode-match-property-value-ecmascript@1.2.0","MIT","https://github.com/mathiasbynens/unicode-match-property-value-ecmascript" -"unicode-property-aliases-ecmascript@1.1.0","MIT","https://github.com/mathiasbynens/unicode-property-aliases-ecmascript" -"union-value@1.0.1","MIT","https://github.com/jonschlinkert/union-value" -"uniq@1.0.1","MIT","https://github.com/mikolalysenko/uniq" -"uniqs@2.0.0","MIT","https://github.com/fgnass/uniqs" -"unique-filename@1.1.1","ISC","https://github.com/iarna/unique-filename" -"unique-slug@2.0.2","ISC","https://github.com/iarna/unique-slug" -"universal-analytics@0.4.20","MIT","https://github.com/peaksandpies/universal-analytics" -"universalify@0.1.2","MIT","https://github.com/RyanZim/universalify" -"unpipe@1.0.0","MIT","https://github.com/stream-utils/unpipe" -"unquote@1.1.1","MIT","https://github.com/lakenen/node-unquote" -"unset-value@1.0.0","MIT","https://github.com/jonschlinkert/unset-value" -"upath@1.2.0","MIT","https://github.com/anodynos/upath" -"uri-js@4.2.2","BSD-2-Clause","https://github.com/garycourt/uri-js" -"urix@0.1.0","MIT","https://github.com/lydell/urix" -"url-parse@1.4.7","MIT","https://github.com/unshiftio/url-parse" -"url@0.11.0","MIT","https://github.com/defunctzombie/node-url" -"use@3.1.1","MIT","https://github.com/jonschlinkert/use" -"util-deprecate@1.0.2","MIT","https://github.com/TooTallNate/util-deprecate" -"util-promisify@2.1.0","MIT","https://github.com/juliangruber/util-promisify" -"util.promisify@1.0.1","MIT","https://github.com/ljharb/util.promisify" -"util@0.10.3","MIT","https://github.com/defunctzombie/node-util" -"util@0.11.1","MIT","https://github.com/defunctzombie/node-util" -"utils-merge@1.0.1","MIT","https://github.com/jaredhanson/utils-merge" -"uuid@3.4.0","MIT","https://github.com/uuidjs/uuid" -"uuid@7.0.2","MIT","https://github.com/uuidjs/uuid" -"v8-to-istanbul@4.1.4","ISC","https://github.com/istanbuljs/v8-to-istanbul" -"validate-npm-package-license@3.0.4","Apache-2.0","https://github.com/kemitchell/validate-npm-package-license.js" -"validate-npm-package-name@3.0.0","ISC","https://github.com/npm/validate-npm-package-name" -"vary@1.1.2","MIT","https://github.com/jshttp/vary" -"vendors@1.0.4","MIT","https://github.com/wooorm/vendors" -"verror@1.10.0","MIT","https://github.com/davepacheco/node-verror" -"vm-browserify@1.1.2","MIT","https://github.com/substack/vm-browserify" -"w3c-hr-time@1.0.2","MIT","https://github.com/jsdom/w3c-hr-time" -"w3c-xmlserializer@1.1.2","MIT","https://github.com/jsdom/w3c-xmlserializer" -"walker@1.0.7","Apache-2.0","https://github.com/daaku/nodejs-walker" -"watchpack-chokidar2@2.0.0","MIT","https://github.com/webpack/watchpack" -"watchpack@1.7.2","MIT","https://github.com/webpack/watchpack" -"wbuf@1.7.3","MIT","https://github.com/indutny/wbuf" -"wcwidth@1.0.1","MIT","https://github.com/timoxley/wcwidth" -"web-animations-js@2.3.2","Apache-2.0","https://github.com/web-animations/web-animations-js" -"webdriver-js-extender@2.1.0","MIT","https://github.com/angular/webdriver-js-extender" -"webdriver-manager@12.1.7","MIT","https://github.com/angular/webdriver-manager" -"webidl-conversions@4.0.2","BSD-2-Clause","https://github.com/jsdom/webidl-conversions" -"webpack-dev-middleware@3.7.2","MIT","https://github.com/webpack/webpack-dev-middleware" -"webpack-dev-server@3.10.3","MIT","https://github.com/webpack/webpack-dev-server" -"webpack-log@2.0.0","MIT","https://github.com/webpack-contrib/webpack-log" -"webpack-merge@4.2.2","MIT","https://github.com/survivejs/webpack-merge" -"webpack-sources@1.4.3","MIT","https://github.com/webpack/webpack-sources" -"webpack-subresource-integrity@1.4.0","MIT","https://github.com/waysact/webpack-subresource-integrity" -"webpack@4.42.0","MIT","https://github.com/webpack/webpack" -"websocket-driver@0.7.3","Apache-2.0","https://github.com/faye/websocket-driver-node" -"websocket-extensions@0.1.3","MIT","https://github.com/faye/websocket-extensions-node" -"whatwg-encoding@1.0.5","MIT","https://github.com/jsdom/whatwg-encoding" -"whatwg-mimetype@2.3.0","MIT","https://github.com/jsdom/whatwg-mimetype" -"whatwg-url@7.1.0","MIT","https://github.com/jsdom/whatwg-url" -"when@3.6.4","MIT","https://github.com/cujojs/when" -"which-module@2.0.0","ISC","https://github.com/nexdrew/which-module" -"which@1.3.1","ISC","https://github.com/isaacs/node-which" -"which@2.0.2","ISC","https://github.com/isaacs/node-which" -"word-wrap@1.2.3","MIT","https://github.com/jonschlinkert/word-wrap" -"worker-farm@1.7.0","MIT","https://github.com/rvagg/node-worker-farm" -"worker-plugin@4.0.3","Apache-2.0","https://github.com/GoogleChromeLabs/worker-plugin" -"wrap-ansi@2.1.0","MIT","https://github.com/chalk/wrap-ansi" -"wrap-ansi@6.2.0","MIT","https://github.com/chalk/wrap-ansi" -"wrappy@1.0.2","ISC","https://github.com/npm/wrappy" -"write-file-atomic@3.0.3","ISC","https://github.com/npm/write-file-atomic" -"ws@6.2.1","MIT","https://github.com/websockets/ws" -"ws@7.3.0","MIT","https://github.com/websockets/ws" -"xml-name-validator@3.0.0","Apache-2.0","https://github.com/jsdom/xml-name-validator" -"xml2js@0.4.23","MIT","https://github.com/Leonidas-from-XIV/node-xml2js" -"xmlbuilder@11.0.1","MIT","https://github.com/oozcitak/xmlbuilder-js" -"xmlchars@2.2.0","MIT","https://github.com/lddubeau/xmlchars" -"xtend@4.0.2","MIT","https://github.com/Raynos/xtend" -"y18n@4.0.0","ISC","https://github.com/yargs/y18n" -"yallist@3.1.1","ISC","https://github.com/isaacs/yallist" -"yallist@4.0.0","ISC","https://github.com/isaacs/yallist" -"yargs-parser@11.1.1","ISC","https://github.com/yargs/yargs-parser" -"yargs-parser@18.1.3","ISC","https://github.com/yargs/yargs-parser" -"yargs@12.0.5","MIT","https://github.com/yargs/yargs" -"yargs@15.3.0","MIT","https://github.com/yargs/yargs" -"yargs@15.3.1","MIT","https://github.com/yargs/yargs" -"yn@3.1.1","MIT","https://github.com/sindresorhus/yn" -"zone.js@0.10.3","MIT","https://github.com/angular/angular" diff --git a/jesthtmlreporter.config.json b/jesthtmlreporter.config.json deleted file mode 100644 index 3778b5404..000000000 --- a/jesthtmlreporter.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "pageTitle": "Mauro Data Mapper User Interface: Test Results", - "outputPath": "test-report/index.html", - "includeFailureMsg": true -} diff --git a/license-check-and-add-config.json b/license-check-and-add-config.json index db12012ae..8c8dd4c58 100644 --- a/license-check-and-add-config.json +++ b/license-check-and-add-config.json @@ -7,6 +7,7 @@ ".idea", "test-report.xml", "test-report", + "eslint_report.*", "browserslist", ".scannerwork", ".DS_Store", @@ -18,6 +19,7 @@ ".eslintignore", "NOTICE", "Jenkinsfile", + "**/browserslist", "**/*.xml", "**/*.csv", "**/*.yml", diff --git a/package-lock.json b/package-lock.json index 56e4b0c75..2642ca73c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -72,7 +72,7 @@ }, "devDependencies": { "@angular-builders/custom-webpack": "^12.1.3", - "@angular-builders/jest": "^12.1.2", + "@angular-builders/jest": "^13.0.2", "@angular-devkit/build-angular": "12.2.13", "@angular-eslint/eslint-plugin": "12.6.1", "@angular-eslint/eslint-plugin-template": "12.6.1", @@ -177,37 +177,382 @@ } }, "node_modules/@angular-builders/jest": { - "version": "12.1.2", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-13.0.2.tgz", + "integrity": "sha512-lBr+Aw1PGVev/Cz3jpD+wZzoxIGOujFzxc5IAL2l5+LTzHGHxi+/f+rKIIidBjRm3iORqFwoxJXXm9StSIjbWA==", "dev": true, - "license": "MIT", "dependencies": { - "@angular-devkit/architect": ">=0.1200.0 < 0.1300.0", - "@angular-devkit/core": "^12.0.0", - "jest-preset-angular": "^9.0.1", + "@angular-devkit/architect": ">=0.1300.0 < 0.1400.0", + "@angular-devkit/core": "^13.0.0", + "jest-preset-angular": "11.0.1", "lodash": "^4.17.15" }, "engines": { - "node": ">=12.14.1" + "node": ">=12.20.0" }, "peerDependencies": { "jest": ">=27" } }, + "node_modules/@angular-builders/jest/node_modules/@angular-devkit/architect": { + "version": "0.1301.3", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1301.3.tgz", + "integrity": "sha512-fFSevgYGZHCybYoyTkZ9b1YCSthBmoi77alwWjqMhYXUNXx7yx50zJZ6Ur2v3YpctVjU6eoGc5FDFyVHwXT0Iw==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "13.1.3", + "rxjs": "6.6.7" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@angular-builders/jest/node_modules/@angular-devkit/core": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.1.3.tgz", + "integrity": "sha512-o14jGDk4h14dVYYQafOn+2rq9CDmDMbDV6logqKYCLzTDRlK8gccDnqJM/QKAlfWCzbllZqcHDmg6FyoRLO9RQ==", + "dev": true, + "dependencies": { + "ajv": "8.8.2", + "ajv-formats": "2.1.1", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/@angular-builders/jest/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@angular-builders/jest/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@angular-builders/jest/node_modules/esbuild": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.13.tgz", + "integrity": "sha512-Z17A/R6D0b4s3MousytQ/5i7mTCbaF+Ua/yPfoe71vdTv4KBvVAvQ/6ytMngM2DwGJosl8WxaD75NOQl2QF26Q==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "optionalDependencies": { + "esbuild-android-arm64": "0.13.13", + "esbuild-darwin-64": "0.13.13", + "esbuild-darwin-arm64": "0.13.13", + "esbuild-freebsd-64": "0.13.13", + "esbuild-freebsd-arm64": "0.13.13", + "esbuild-linux-32": "0.13.13", + "esbuild-linux-64": "0.13.13", + "esbuild-linux-arm": "0.13.13", + "esbuild-linux-arm64": "0.13.13", + "esbuild-linux-mips64le": "0.13.13", + "esbuild-linux-ppc64le": "0.13.13", + "esbuild-netbsd-64": "0.13.13", + "esbuild-openbsd-64": "0.13.13", + "esbuild-sunos-64": "0.13.13", + "esbuild-windows-32": "0.13.13", + "esbuild-windows-64": "0.13.13", + "esbuild-windows-arm64": "0.13.13" + } + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-android-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.13.13.tgz", + "integrity": "sha512-T02aneWWguJrF082jZworjU6vm8f4UQ+IH2K3HREtlqoY9voiJUwHLRL6khRlsNLzVglqgqb7a3HfGx7hAADCQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-darwin-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.13.13.tgz", + "integrity": "sha512-wkaiGAsN/09X9kDlkxFfbbIgR78SNjMOfUhoel3CqKBDsi9uZhw7HBNHNxTzYUK8X8LAKFpbODgcRB3b/I8gHA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-darwin-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.13.tgz", + "integrity": "sha512-b02/nNKGSV85Gw9pUCI5B48AYjk0vFggDeom0S6QMP/cEDtjSh1WVfoIFNAaLA0MHWfue8KBwoGVsN7rBshs4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-freebsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.13.tgz", + "integrity": "sha512-ALgXYNYDzk9YPVk80A+G4vz2D22Gv4j4y25exDBGgqTcwrVQP8rf/rjwUjHoh9apP76oLbUZTmUmvCMuTI1V9A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-freebsd-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.13.tgz", + "integrity": "sha512-uFvkCpsZ1yqWQuonw5T1WZ4j59xP/PCvtu6I4pbLejhNo4nwjW6YalqnBvBSORq5/Ifo9S/wsIlVHzkzEwdtlw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-32": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.13.13.tgz", + "integrity": "sha512-yxR9BBwEPs9acVEwTrEE2JJNHYVuPQC9YGjRfbNqtyfK/vVBQYuw8JaeRFAvFs3pVJdQD0C2BNP4q9d62SCP4w==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.13.tgz", + "integrity": "sha512-kzhjlrlJ+6ESRB/n12WTGll94+y+HFeyoWsOrLo/Si0s0f+Vip4b8vlnG0GSiS6JTsWYAtGHReGczFOaETlKIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-arm": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.13.13.tgz", + "integrity": "sha512-hXub4pcEds+U1TfvLp1maJ+GHRw7oizvzbGRdUvVDwtITtjq8qpHV5Q5hWNNn6Q+b3b2UxF03JcgnpzCw96nUQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.13.tgz", + "integrity": "sha512-KMrEfnVbmmJxT3vfTnPv/AiXpBFbbyExH13BsUGy1HZRPFMi5Gev5gk8kJIZCQSRfNR17aqq8sO5Crm2KpZkng==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-mips64le": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.13.tgz", + "integrity": "sha512-cJT9O1LYljqnnqlHaS0hdG73t7hHzF3zcN0BPsjvBq+5Ad47VJun+/IG4inPhk8ta0aEDK6LdP+F9299xa483w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-linux-ppc64le": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.13.tgz", + "integrity": "sha512-+rghW8st6/7O6QJqAjVK3eXzKkZqYAw6LgHv7yTMiJ6ASnNvghSeOcIvXFep3W2oaJc35SgSPf21Ugh0o777qQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-netbsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.13.13.tgz", + "integrity": "sha512-A/B7rwmzPdzF8c3mht5TukbnNwY5qMJqes09ou0RSzA5/jm7Jwl/8z853ofujTFOLhkNHUf002EAgokzSgEMpQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-openbsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.13.tgz", + "integrity": "sha512-szwtuRA4rXKT3BbwoGpsff6G7nGxdKgUbW9LQo6nm0TVCCjDNDC/LXxT994duIW8Tyq04xZzzZSW7x7ttDiw1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-sunos-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.13.13.tgz", + "integrity": "sha512-ihyds9O48tVOYF48iaHYUK/boU5zRaLOXFS+OOL3ceD39AyHo46HVmsJLc7A2ez0AxNZCxuhu+P9OxfPfycTYQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-windows-32": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.13.13.tgz", + "integrity": "sha512-h2RTYwpG4ldGVJlbmORObmilzL8EECy8BFiF8trWE1ZPHLpECE9//J3Bi+W3eDUuv/TqUbiNpGrq4t/odbayUw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-windows-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.13.13.tgz", + "integrity": "sha512-oMrgjP4CjONvDHe7IZXHrMk3wX5Lof/IwFEIbwbhgbXGBaN2dke9PkViTiXC3zGJSGpMvATXVplEhlInJ0drHA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@angular-builders/jest/node_modules/esbuild-windows-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.13.tgz", + "integrity": "sha512-6fsDfTuTvltYB5k+QPah/x7LrI2+OLAJLE3bWLDiZI6E8wXMQU+wLqtEO/U/RvJgVY1loPs5eMpUBpVajczh1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@angular-builders/jest/node_modules/jest-preset-angular": { - "version": "9.0.7", + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-11.0.1.tgz", + "integrity": "sha512-7img58VmxvPtwOrkEEczDbV3cjdO/1qzB8Edbde8/e3GJIIk+6LcPnHOLw+dagJxZhcWagYGbqNbR7dxqntOBQ==", "dev": true, - "license": "MIT", "dependencies": { + "bs-logger": "^0.2.6", + "esbuild": "0.13.13", "jest-environment-jsdom": "^27.0.0", "pretty-format": "^27.0.0", "ts-jest": "^27.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^12.20.0 || ^14.15.0 || >=16.10.0" }, "peerDependencies": { - "@angular/core": ">=9.0.0", - "@angular/platform-browser-dynamic": ">=9.0.0" + "@angular/compiler-cli": ">=10.0.0", + "@angular/core": ">=10.0.0", + "@angular/platform-browser-dynamic": ">=10.0.0" + } + }, + "node_modules/@angular-builders/jest/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@angular-builders/jest/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" } }, "node_modules/@angular-devkit/architect": { @@ -23977,23 +24322,230 @@ } }, "@angular-builders/jest": { - "version": "12.1.2", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-13.0.2.tgz", + "integrity": "sha512-lBr+Aw1PGVev/Cz3jpD+wZzoxIGOujFzxc5IAL2l5+LTzHGHxi+/f+rKIIidBjRm3iORqFwoxJXXm9StSIjbWA==", "dev": true, "requires": { - "@angular-devkit/architect": ">=0.1200.0 < 0.1300.0", - "@angular-devkit/core": "^12.0.0", - "jest-preset-angular": "^9.0.1", + "@angular-devkit/architect": ">=0.1300.0 < 0.1400.0", + "@angular-devkit/core": "^13.0.0", + "jest-preset-angular": "11.0.1", "lodash": "^4.17.15" }, "dependencies": { + "@angular-devkit/architect": { + "version": "0.1301.3", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1301.3.tgz", + "integrity": "sha512-fFSevgYGZHCybYoyTkZ9b1YCSthBmoi77alwWjqMhYXUNXx7yx50zJZ6Ur2v3YpctVjU6eoGc5FDFyVHwXT0Iw==", + "dev": true, + "requires": { + "@angular-devkit/core": "13.1.3", + "rxjs": "6.6.7" + } + }, + "@angular-devkit/core": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.1.3.tgz", + "integrity": "sha512-o14jGDk4h14dVYYQafOn+2rq9CDmDMbDV6logqKYCLzTDRlK8gccDnqJM/QKAlfWCzbllZqcHDmg6FyoRLO9RQ==", + "dev": true, + "requires": { + "ajv": "8.8.2", + "ajv-formats": "2.1.1", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" + } + }, + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + } + }, + "esbuild": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.13.13.tgz", + "integrity": "sha512-Z17A/R6D0b4s3MousytQ/5i7mTCbaF+Ua/yPfoe71vdTv4KBvVAvQ/6ytMngM2DwGJosl8WxaD75NOQl2QF26Q==", + "dev": true, + "requires": { + "esbuild-android-arm64": "0.13.13", + "esbuild-darwin-64": "0.13.13", + "esbuild-darwin-arm64": "0.13.13", + "esbuild-freebsd-64": "0.13.13", + "esbuild-freebsd-arm64": "0.13.13", + "esbuild-linux-32": "0.13.13", + "esbuild-linux-64": "0.13.13", + "esbuild-linux-arm": "0.13.13", + "esbuild-linux-arm64": "0.13.13", + "esbuild-linux-mips64le": "0.13.13", + "esbuild-linux-ppc64le": "0.13.13", + "esbuild-netbsd-64": "0.13.13", + "esbuild-openbsd-64": "0.13.13", + "esbuild-sunos-64": "0.13.13", + "esbuild-windows-32": "0.13.13", + "esbuild-windows-64": "0.13.13", + "esbuild-windows-arm64": "0.13.13" + } + }, + "esbuild-android-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.13.13.tgz", + "integrity": "sha512-T02aneWWguJrF082jZworjU6vm8f4UQ+IH2K3HREtlqoY9voiJUwHLRL6khRlsNLzVglqgqb7a3HfGx7hAADCQ==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.13.13.tgz", + "integrity": "sha512-wkaiGAsN/09X9kDlkxFfbbIgR78SNjMOfUhoel3CqKBDsi9uZhw7HBNHNxTzYUK8X8LAKFpbODgcRB3b/I8gHA==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.13.13.tgz", + "integrity": "sha512-b02/nNKGSV85Gw9pUCI5B48AYjk0vFggDeom0S6QMP/cEDtjSh1WVfoIFNAaLA0MHWfue8KBwoGVsN7rBshs4g==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.13.13.tgz", + "integrity": "sha512-ALgXYNYDzk9YPVk80A+G4vz2D22Gv4j4y25exDBGgqTcwrVQP8rf/rjwUjHoh9apP76oLbUZTmUmvCMuTI1V9A==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.13.13.tgz", + "integrity": "sha512-uFvkCpsZ1yqWQuonw5T1WZ4j59xP/PCvtu6I4pbLejhNo4nwjW6YalqnBvBSORq5/Ifo9S/wsIlVHzkzEwdtlw==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.13.13.tgz", + "integrity": "sha512-yxR9BBwEPs9acVEwTrEE2JJNHYVuPQC9YGjRfbNqtyfK/vVBQYuw8JaeRFAvFs3pVJdQD0C2BNP4q9d62SCP4w==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.13.13.tgz", + "integrity": "sha512-kzhjlrlJ+6ESRB/n12WTGll94+y+HFeyoWsOrLo/Si0s0f+Vip4b8vlnG0GSiS6JTsWYAtGHReGczFOaETlKIw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.13.13.tgz", + "integrity": "sha512-hXub4pcEds+U1TfvLp1maJ+GHRw7oizvzbGRdUvVDwtITtjq8qpHV5Q5hWNNn6Q+b3b2UxF03JcgnpzCw96nUQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.13.13.tgz", + "integrity": "sha512-KMrEfnVbmmJxT3vfTnPv/AiXpBFbbyExH13BsUGy1HZRPFMi5Gev5gk8kJIZCQSRfNR17aqq8sO5Crm2KpZkng==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.13.13.tgz", + "integrity": "sha512-cJT9O1LYljqnnqlHaS0hdG73t7hHzF3zcN0BPsjvBq+5Ad47VJun+/IG4inPhk8ta0aEDK6LdP+F9299xa483w==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.13.13.tgz", + "integrity": "sha512-+rghW8st6/7O6QJqAjVK3eXzKkZqYAw6LgHv7yTMiJ6ASnNvghSeOcIvXFep3W2oaJc35SgSPf21Ugh0o777qQ==", + "dev": true, + "optional": true + }, + "esbuild-netbsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.13.13.tgz", + "integrity": "sha512-A/B7rwmzPdzF8c3mht5TukbnNwY5qMJqes09ou0RSzA5/jm7Jwl/8z853ofujTFOLhkNHUf002EAgokzSgEMpQ==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.13.13.tgz", + "integrity": "sha512-szwtuRA4rXKT3BbwoGpsff6G7nGxdKgUbW9LQo6nm0TVCCjDNDC/LXxT994duIW8Tyq04xZzzZSW7x7ttDiw1w==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.13.13.tgz", + "integrity": "sha512-ihyds9O48tVOYF48iaHYUK/boU5zRaLOXFS+OOL3ceD39AyHo46HVmsJLc7A2ez0AxNZCxuhu+P9OxfPfycTYQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.13.13.tgz", + "integrity": "sha512-h2RTYwpG4ldGVJlbmORObmilzL8EECy8BFiF8trWE1ZPHLpECE9//J3Bi+W3eDUuv/TqUbiNpGrq4t/odbayUw==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.13.13.tgz", + "integrity": "sha512-oMrgjP4CjONvDHe7IZXHrMk3wX5Lof/IwFEIbwbhgbXGBaN2dke9PkViTiXC3zGJSGpMvATXVplEhlInJ0drHA==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.13.13", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.13.13.tgz", + "integrity": "sha512-6fsDfTuTvltYB5k+QPah/x7LrI2+OLAJLE3bWLDiZI6E8wXMQU+wLqtEO/U/RvJgVY1loPs5eMpUBpVajczh1A==", + "dev": true, + "optional": true + }, "jest-preset-angular": { - "version": "9.0.7", + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-11.0.1.tgz", + "integrity": "sha512-7img58VmxvPtwOrkEEczDbV3cjdO/1qzB8Edbde8/e3GJIIk+6LcPnHOLw+dagJxZhcWagYGbqNbR7dxqntOBQ==", "dev": true, "requires": { + "bs-logger": "^0.2.6", + "esbuild": "0.13.13", "jest-environment-jsdom": "^27.0.0", "pretty-format": "^27.0.0", "ts-jest": "^27.0.0" } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true } } }, diff --git a/package.json b/package.json index ed04ee419..ce7d5e6a1 100644 --- a/package.json +++ b/package.json @@ -5,17 +5,13 @@ "ng": "ng", "start": "ng serve", "build": "ng build", - "dist": "ng build --configuration production --output-path=dist/mdm-ui-$npm_package_version && npm run dist-archive", + "test": "ng test", + "dist": "ng build mdm-ui --configuration production --output-path=dist/mdm-ui-$npm_package_version && npm run dist-archive", "dist-archive": "tar zcvf dist/mdm-ui-${npm_package_version}.tgz -C dist mdm-ui-$npm_package_version", - "test": "jest", - "test-with-coverage": "jest --coverage", - "test-watch": "jest --watch", - "test-clearCache": "jest --clearCache", - "lint": "ng lint", "eslint": "tsc --noEmit && eslint . --ext ts --fix", "eslint-nofix": "tsc --noEmit && eslint . --ext ts", - "eslint-report": "eslint . --ext ts --format checkstyle -o eslint_report.xml", - "e2e": "ng e2e", + "eslint-html": "eslint . --ext ts --format html -o test-report/eslint_report.html", + "eslint-xml": "eslint . --ext ts --format checkstyle -o test-report/eslint_report.xml", "postinstall": "ngcc", "sonar": "sonar-scanner -Dsonar.projectVersion=$npm_package_version", "license-check": "license-check-and-add -f license-check-and-add-config.json" @@ -88,7 +84,7 @@ }, "devDependencies": { "@angular-builders/custom-webpack": "^12.1.3", - "@angular-builders/jest": "^12.1.2", + "@angular-builders/jest": "^13.0.2", "@angular-devkit/build-angular": "12.2.13", "@angular-eslint/eslint-plugin": "12.6.1", "@angular-eslint/eslint-plugin-template": "12.6.1", diff --git a/browserslist b/projects/mdm-ui/browserslist similarity index 100% rename from browserslist rename to projects/mdm-ui/browserslist diff --git a/jest.config.js b/projects/mdm-ui/jest.config.js similarity index 62% rename from jest.config.js rename to projects/mdm-ui/jest.config.js index 5196f7478..f323b24cd 100644 --- a/jest.config.js +++ b/projects/mdm-ui/jest.config.js @@ -19,9 +19,7 @@ SPDX-License-Identifier: Apache-2.0 module.exports = { preset: 'jest-preset-angular', testEnvironment: 'jsdom', - setupFilesAfterEnv: [ - '/src/setupJest.ts' - ], + setupFilesAfterEnv: ['/projects/mdm-ui/src/setupJest.ts'], coveragePathIgnorePatterns: [ '/jestSetup.ts', '/node_modules/', @@ -33,26 +31,31 @@ module.exports = { }, globals: { 'ts - jest': { - tsconfig: 'tsconfig.spec.json', + tsconfig: '/projects/mdm-ui/tsconfig.spec.json', stringifyContentPathRegex: '\\.html' } }, moduleNameMapper: { - '^@mdm/(.*)$': '/src/app/$1', - '^@env/(.*)$': '/src/environments/$1' + '^@mdm/(.*)$': '/projects/mdm-ui/src/app/$1', + '^@env/(.*)$': '/projects/mdm-ui/src/environments/$1' }, reporters: [ 'default', - 'jest-junit', - ['jest-html-reporter', { pageTitle: 'Test Report' }], - ['jest-sonar',{outputDirectory: 'test-report'}] - ], - watchPathIgnorePatterns: [ - 'test-report/', - 'junit.xml' + ['jest-junit', { + outputDirectory: "test-report/mdm-ui" + }], + ['jest-html-reporter', { + pageTitle: "Mauro Data Mapper User Interface: Test Results", + outputPath: "test-report/mdm-ui/jest-report.html", + includeFailureMsg: true + }], + ['jest-sonar', { + outputDirectory: "test-report/mdm-ui" + }] ], + watchPathIgnorePatterns: ['test-report/', 'junit.xml'], transformIgnorePatterns: [ 'node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)' // Ignore files inside node_modules folder ], - cacheDirectory: '/tmp/jest_'+ (process.env.JOB_BASE_NAME || 'cache') + cacheDirectory: '/tmp/jest_' + (process.env.JOB_BASE_NAME || 'cache') }; diff --git a/src/app/about/about.component.html b/projects/mdm-ui/src/app/about/about.component.html similarity index 100% rename from src/app/about/about.component.html rename to projects/mdm-ui/src/app/about/about.component.html diff --git a/src/app/about/about.component.sass b/projects/mdm-ui/src/app/about/about.component.sass similarity index 100% rename from src/app/about/about.component.sass rename to projects/mdm-ui/src/app/about/about.component.sass diff --git a/src/app/about/about.component.ts b/projects/mdm-ui/src/app/about/about.component.ts similarity index 100% rename from src/app/about/about.component.ts rename to projects/mdm-ui/src/app/about/about.component.ts diff --git a/src/app/access/group-access-new/group-access-new.component.html b/projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.html similarity index 100% rename from src/app/access/group-access-new/group-access-new.component.html rename to projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.html diff --git a/src/app/access/group-access-new/group-access-new.component.sass b/projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.sass similarity index 100% rename from src/app/access/group-access-new/group-access-new.component.sass rename to projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.sass diff --git a/src/app/access/group-access-new/group-access-new.component.ts b/projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.ts similarity index 100% rename from src/app/access/group-access-new/group-access-new.component.ts rename to projects/mdm-ui/src/app/access/group-access-new/group-access-new.component.ts diff --git a/src/app/access/share-with/share-with.component.html b/projects/mdm-ui/src/app/access/share-with/share-with.component.html similarity index 100% rename from src/app/access/share-with/share-with.component.html rename to projects/mdm-ui/src/app/access/share-with/share-with.component.html diff --git a/src/app/access/share-with/share-with.component.sass b/projects/mdm-ui/src/app/access/share-with/share-with.component.sass similarity index 100% rename from src/app/access/share-with/share-with.component.sass rename to projects/mdm-ui/src/app/access/share-with/share-with.component.sass diff --git a/src/app/access/share-with/share-with.component.spec.ts b/projects/mdm-ui/src/app/access/share-with/share-with.component.spec.ts similarity index 100% rename from src/app/access/share-with/share-with.component.spec.ts rename to projects/mdm-ui/src/app/access/share-with/share-with.component.spec.ts diff --git a/src/app/access/share-with/share-with.component.ts b/projects/mdm-ui/src/app/access/share-with/share-with.component.ts similarity index 100% rename from src/app/access/share-with/share-with.component.ts rename to projects/mdm-ui/src/app/access/share-with/share-with.component.ts diff --git a/src/app/admin/api-property-table/api-property-table.component.html b/projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.html similarity index 100% rename from src/app/admin/api-property-table/api-property-table.component.html rename to projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.html diff --git a/src/app/admin/api-property-table/api-property-table.component.scss b/projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.scss similarity index 100% rename from src/app/admin/api-property-table/api-property-table.component.scss rename to projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.scss diff --git a/src/app/admin/api-property-table/api-property-table.component.spec.ts b/projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.spec.ts similarity index 100% rename from src/app/admin/api-property-table/api-property-table.component.spec.ts rename to projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.spec.ts diff --git a/src/app/admin/api-property-table/api-property-table.component.ts b/projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.ts similarity index 100% rename from src/app/admin/api-property-table/api-property-table.component.ts rename to projects/mdm-ui/src/app/admin/api-property-table/api-property-table.component.ts diff --git a/src/app/admin/api-property/api-property.component.html b/projects/mdm-ui/src/app/admin/api-property/api-property.component.html similarity index 100% rename from src/app/admin/api-property/api-property.component.html rename to projects/mdm-ui/src/app/admin/api-property/api-property.component.html diff --git a/src/app/admin/api-property/api-property.component.scss b/projects/mdm-ui/src/app/admin/api-property/api-property.component.scss similarity index 100% rename from src/app/admin/api-property/api-property.component.scss rename to projects/mdm-ui/src/app/admin/api-property/api-property.component.scss diff --git a/src/app/admin/api-property/api-property.component.spec.ts b/projects/mdm-ui/src/app/admin/api-property/api-property.component.spec.ts similarity index 100% rename from src/app/admin/api-property/api-property.component.spec.ts rename to projects/mdm-ui/src/app/admin/api-property/api-property.component.spec.ts diff --git a/src/app/admin/api-property/api-property.component.ts b/projects/mdm-ui/src/app/admin/api-property/api-property.component.ts similarity index 100% rename from src/app/admin/api-property/api-property.component.ts rename to projects/mdm-ui/src/app/admin/api-property/api-property.component.ts diff --git a/src/app/admin/app-container/app-container.component.html b/projects/mdm-ui/src/app/admin/app-container/app-container.component.html similarity index 100% rename from src/app/admin/app-container/app-container.component.html rename to projects/mdm-ui/src/app/admin/app-container/app-container.component.html diff --git a/src/app/admin/app-container/app-container.component.sass b/projects/mdm-ui/src/app/admin/app-container/app-container.component.sass similarity index 100% rename from src/app/admin/app-container/app-container.component.sass rename to projects/mdm-ui/src/app/admin/app-container/app-container.component.sass diff --git a/src/app/admin/app-container/app-container.component.ts b/projects/mdm-ui/src/app/admin/app-container/app-container.component.ts similarity index 100% rename from src/app/admin/app-container/app-container.component.ts rename to projects/mdm-ui/src/app/admin/app-container/app-container.component.ts diff --git a/src/app/admin/configuration/configuration.component.html b/projects/mdm-ui/src/app/admin/configuration/configuration.component.html similarity index 100% rename from src/app/admin/configuration/configuration.component.html rename to projects/mdm-ui/src/app/admin/configuration/configuration.component.html diff --git a/src/app/admin/configuration/configuration.component.scss b/projects/mdm-ui/src/app/admin/configuration/configuration.component.scss similarity index 100% rename from src/app/admin/configuration/configuration.component.scss rename to projects/mdm-ui/src/app/admin/configuration/configuration.component.scss diff --git a/src/app/admin/configuration/configuration.component.ts b/projects/mdm-ui/src/app/admin/configuration/configuration.component.ts similarity index 100% rename from src/app/admin/configuration/configuration.component.ts rename to projects/mdm-ui/src/app/admin/configuration/configuration.component.ts diff --git a/src/app/admin/emails/emails.component.html b/projects/mdm-ui/src/app/admin/emails/emails.component.html similarity index 100% rename from src/app/admin/emails/emails.component.html rename to projects/mdm-ui/src/app/admin/emails/emails.component.html diff --git a/src/app/admin/emails/emails.component.sass b/projects/mdm-ui/src/app/admin/emails/emails.component.sass similarity index 100% rename from src/app/admin/emails/emails.component.sass rename to projects/mdm-ui/src/app/admin/emails/emails.component.sass diff --git a/src/app/admin/emails/emails.component.ts b/projects/mdm-ui/src/app/admin/emails/emails.component.ts similarity index 100% rename from src/app/admin/emails/emails.component.ts rename to projects/mdm-ui/src/app/admin/emails/emails.component.ts diff --git a/src/app/admin/group-member-table/group-member-table.component.html b/projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.html similarity index 100% rename from src/app/admin/group-member-table/group-member-table.component.html rename to projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.html diff --git a/src/app/admin/group-member-table/group-member-table.component.scss b/projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.scss similarity index 100% rename from src/app/admin/group-member-table/group-member-table.component.scss rename to projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.scss diff --git a/src/app/admin/group-member-table/group-member-table.component.ts b/projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.ts similarity index 100% rename from src/app/admin/group-member-table/group-member-table.component.ts rename to projects/mdm-ui/src/app/admin/group-member-table/group-member-table.component.ts diff --git a/src/app/admin/group/group.component.html b/projects/mdm-ui/src/app/admin/group/group.component.html similarity index 100% rename from src/app/admin/group/group.component.html rename to projects/mdm-ui/src/app/admin/group/group.component.html diff --git a/src/app/admin/group/group.component.scss b/projects/mdm-ui/src/app/admin/group/group.component.scss similarity index 100% rename from src/app/admin/group/group.component.scss rename to projects/mdm-ui/src/app/admin/group/group.component.scss diff --git a/src/app/admin/group/group.component.ts b/projects/mdm-ui/src/app/admin/group/group.component.ts similarity index 100% rename from src/app/admin/group/group.component.ts rename to projects/mdm-ui/src/app/admin/group/group.component.ts diff --git a/src/app/admin/groups-table/groups-table.component.html b/projects/mdm-ui/src/app/admin/groups-table/groups-table.component.html similarity index 100% rename from src/app/admin/groups-table/groups-table.component.html rename to projects/mdm-ui/src/app/admin/groups-table/groups-table.component.html diff --git a/src/app/admin/groups-table/groups-table.component.sass b/projects/mdm-ui/src/app/admin/groups-table/groups-table.component.sass similarity index 100% rename from src/app/admin/groups-table/groups-table.component.sass rename to projects/mdm-ui/src/app/admin/groups-table/groups-table.component.sass diff --git a/src/app/admin/groups-table/groups-table.component.ts b/projects/mdm-ui/src/app/admin/groups-table/groups-table.component.ts similarity index 100% rename from src/app/admin/groups-table/groups-table.component.ts rename to projects/mdm-ui/src/app/admin/groups-table/groups-table.component.ts diff --git a/src/app/admin/groups/groups.component.html b/projects/mdm-ui/src/app/admin/groups/groups.component.html similarity index 100% rename from src/app/admin/groups/groups.component.html rename to projects/mdm-ui/src/app/admin/groups/groups.component.html diff --git a/src/app/admin/groups/groups.component.sass b/projects/mdm-ui/src/app/admin/groups/groups.component.sass similarity index 100% rename from src/app/admin/groups/groups.component.sass rename to projects/mdm-ui/src/app/admin/groups/groups.component.sass diff --git a/src/app/admin/groups/groups.component.ts b/projects/mdm-ui/src/app/admin/groups/groups.component.ts similarity index 100% rename from src/app/admin/groups/groups.component.ts rename to projects/mdm-ui/src/app/admin/groups/groups.component.ts diff --git a/src/app/admin/home/active-sessions/active-sessions.component.html b/projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.html similarity index 100% rename from src/app/admin/home/active-sessions/active-sessions.component.html rename to projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.html diff --git a/src/app/admin/home/active-sessions/active-sessions.component.sass b/projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.sass similarity index 100% rename from src/app/admin/home/active-sessions/active-sessions.component.sass rename to projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.sass diff --git a/src/app/admin/home/active-sessions/active-sessions.component.ts b/projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.ts similarity index 100% rename from src/app/admin/home/active-sessions/active-sessions.component.ts rename to projects/mdm-ui/src/app/admin/home/active-sessions/active-sessions.component.ts diff --git a/src/app/admin/home/home.component.html b/projects/mdm-ui/src/app/admin/home/home.component.html similarity index 100% rename from src/app/admin/home/home.component.html rename to projects/mdm-ui/src/app/admin/home/home.component.html diff --git a/src/app/admin/home/home.component.sass b/projects/mdm-ui/src/app/admin/home/home.component.sass similarity index 100% rename from src/app/admin/home/home.component.sass rename to projects/mdm-ui/src/app/admin/home/home.component.sass diff --git a/src/app/admin/home/home.component.ts b/projects/mdm-ui/src/app/admin/home/home.component.ts similarity index 100% rename from src/app/admin/home/home.component.ts rename to projects/mdm-ui/src/app/admin/home/home.component.ts diff --git a/src/app/admin/home/modules/modules.component.html b/projects/mdm-ui/src/app/admin/home/modules/modules.component.html similarity index 100% rename from src/app/admin/home/modules/modules.component.html rename to projects/mdm-ui/src/app/admin/home/modules/modules.component.html diff --git a/src/app/admin/home/modules/modules.component.sass b/projects/mdm-ui/src/app/admin/home/modules/modules.component.sass similarity index 100% rename from src/app/admin/home/modules/modules.component.sass rename to projects/mdm-ui/src/app/admin/home/modules/modules.component.sass diff --git a/src/app/admin/home/modules/modules.component.ts b/projects/mdm-ui/src/app/admin/home/modules/modules.component.ts similarity index 100% rename from src/app/admin/home/modules/modules.component.ts rename to projects/mdm-ui/src/app/admin/home/modules/modules.component.ts diff --git a/src/app/admin/home/plugins/plugins.component.html b/projects/mdm-ui/src/app/admin/home/plugins/plugins.component.html similarity index 100% rename from src/app/admin/home/plugins/plugins.component.html rename to projects/mdm-ui/src/app/admin/home/plugins/plugins.component.html diff --git a/src/app/admin/home/plugins/plugins.component.sass b/projects/mdm-ui/src/app/admin/home/plugins/plugins.component.sass similarity index 100% rename from src/app/admin/home/plugins/plugins.component.sass rename to projects/mdm-ui/src/app/admin/home/plugins/plugins.component.sass diff --git a/src/app/admin/home/plugins/plugins.component.ts b/projects/mdm-ui/src/app/admin/home/plugins/plugins.component.ts similarity index 100% rename from src/app/admin/home/plugins/plugins.component.ts rename to projects/mdm-ui/src/app/admin/home/plugins/plugins.component.ts diff --git a/src/app/admin/model-management/model-management.component.html b/projects/mdm-ui/src/app/admin/model-management/model-management.component.html similarity index 100% rename from src/app/admin/model-management/model-management.component.html rename to projects/mdm-ui/src/app/admin/model-management/model-management.component.html diff --git a/src/app/admin/model-management/model-management.component.sass b/projects/mdm-ui/src/app/admin/model-management/model-management.component.sass similarity index 100% rename from src/app/admin/model-management/model-management.component.sass rename to projects/mdm-ui/src/app/admin/model-management/model-management.component.sass diff --git a/src/app/admin/model-management/model-management.component.ts b/projects/mdm-ui/src/app/admin/model-management/model-management.component.ts similarity index 100% rename from src/app/admin/model-management/model-management.component.ts rename to projects/mdm-ui/src/app/admin/model-management/model-management.component.ts diff --git a/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.html b/projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.html similarity index 100% rename from src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.html rename to projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.html diff --git a/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.scss b/projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.scss similarity index 100% rename from src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.scss rename to projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.scss diff --git a/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.spec.ts b/projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.spec.ts similarity index 100% rename from src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.spec.ts rename to projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.spec.ts diff --git a/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.ts b/projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.ts similarity index 100% rename from src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.ts rename to projects/mdm-ui/src/app/admin/openid-connect-provider-table/openid-connect-provider-table.component.ts diff --git a/src/app/admin/openid-connect-provider/openid-connect-provider.component.html b/projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.html similarity index 100% rename from src/app/admin/openid-connect-provider/openid-connect-provider.component.html rename to projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.html diff --git a/src/app/admin/openid-connect-provider/openid-connect-provider.component.scss b/projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.scss similarity index 100% rename from src/app/admin/openid-connect-provider/openid-connect-provider.component.scss rename to projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.scss diff --git a/src/app/admin/openid-connect-provider/openid-connect-provider.component.spec.ts b/projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.spec.ts similarity index 100% rename from src/app/admin/openid-connect-provider/openid-connect-provider.component.spec.ts rename to projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.spec.ts diff --git a/src/app/admin/openid-connect-provider/openid-connect-provider.component.ts b/projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.ts similarity index 100% rename from src/app/admin/openid-connect-provider/openid-connect-provider.component.ts rename to projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.component.ts diff --git a/src/app/admin/openid-connect-provider/openid-connect-provider.model.ts b/projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.model.ts similarity index 100% rename from src/app/admin/openid-connect-provider/openid-connect-provider.model.ts rename to projects/mdm-ui/src/app/admin/openid-connect-provider/openid-connect-provider.model.ts diff --git a/src/app/admin/pending-users-table/pending-users-table.component.html b/projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.html similarity index 100% rename from src/app/admin/pending-users-table/pending-users-table.component.html rename to projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.html diff --git a/src/app/admin/pending-users-table/pending-users-table.component.sass b/projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.sass similarity index 100% rename from src/app/admin/pending-users-table/pending-users-table.component.sass rename to projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.sass diff --git a/src/app/admin/pending-users-table/pending-users-table.component.ts b/projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.ts similarity index 100% rename from src/app/admin/pending-users-table/pending-users-table.component.ts rename to projects/mdm-ui/src/app/admin/pending-users-table/pending-users-table.component.ts diff --git a/src/app/admin/pending-users/pending-users.component.html b/projects/mdm-ui/src/app/admin/pending-users/pending-users.component.html similarity index 100% rename from src/app/admin/pending-users/pending-users.component.html rename to projects/mdm-ui/src/app/admin/pending-users/pending-users.component.html diff --git a/src/app/admin/pending-users/pending-users.component.sass b/projects/mdm-ui/src/app/admin/pending-users/pending-users.component.sass similarity index 100% rename from src/app/admin/pending-users/pending-users.component.sass rename to projects/mdm-ui/src/app/admin/pending-users/pending-users.component.sass diff --git a/src/app/admin/pending-users/pending-users.component.ts b/projects/mdm-ui/src/app/admin/pending-users/pending-users.component.ts similarity index 100% rename from src/app/admin/pending-users/pending-users.component.ts rename to projects/mdm-ui/src/app/admin/pending-users/pending-users.component.ts diff --git a/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.html b/projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.html similarity index 100% rename from src/app/admin/subscribed-catalogue/subscribed-catalogue.component.html rename to projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.html diff --git a/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.scss b/projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.scss similarity index 100% rename from src/app/admin/subscribed-catalogue/subscribed-catalogue.component.scss rename to projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.scss diff --git a/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.ts b/projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.ts similarity index 100% rename from src/app/admin/subscribed-catalogue/subscribed-catalogue.component.ts rename to projects/mdm-ui/src/app/admin/subscribed-catalogue/subscribed-catalogue.component.ts diff --git a/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.html b/projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.html similarity index 100% rename from src/app/admin/subscribed-catalogues/subscribed-catalogues.component.html rename to projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.html diff --git a/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.scss b/projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.scss similarity index 100% rename from src/app/admin/subscribed-catalogues/subscribed-catalogues.component.scss rename to projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.scss diff --git a/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.ts b/projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.ts similarity index 100% rename from src/app/admin/subscribed-catalogues/subscribed-catalogues.component.ts rename to projects/mdm-ui/src/app/admin/subscribed-catalogues/subscribed-catalogues.component.ts diff --git a/src/app/admin/user/user.component.html b/projects/mdm-ui/src/app/admin/user/user.component.html similarity index 100% rename from src/app/admin/user/user.component.html rename to projects/mdm-ui/src/app/admin/user/user.component.html diff --git a/src/app/admin/user/user.component.scss b/projects/mdm-ui/src/app/admin/user/user.component.scss similarity index 100% rename from src/app/admin/user/user.component.scss rename to projects/mdm-ui/src/app/admin/user/user.component.scss diff --git a/src/app/admin/user/user.component.ts b/projects/mdm-ui/src/app/admin/user/user.component.ts similarity index 100% rename from src/app/admin/user/user.component.ts rename to projects/mdm-ui/src/app/admin/user/user.component.ts diff --git a/src/app/admin/users-table/users-table.component.html b/projects/mdm-ui/src/app/admin/users-table/users-table.component.html similarity index 100% rename from src/app/admin/users-table/users-table.component.html rename to projects/mdm-ui/src/app/admin/users-table/users-table.component.html diff --git a/src/app/admin/users-table/users-table.component.sass b/projects/mdm-ui/src/app/admin/users-table/users-table.component.sass similarity index 100% rename from src/app/admin/users-table/users-table.component.sass rename to projects/mdm-ui/src/app/admin/users-table/users-table.component.sass diff --git a/src/app/admin/users-table/users-table.component.ts b/projects/mdm-ui/src/app/admin/users-table/users-table.component.ts similarity index 100% rename from src/app/admin/users-table/users-table.component.ts rename to projects/mdm-ui/src/app/admin/users-table/users-table.component.ts diff --git a/src/app/admin/users/users.component.html b/projects/mdm-ui/src/app/admin/users/users.component.html similarity index 100% rename from src/app/admin/users/users.component.html rename to projects/mdm-ui/src/app/admin/users/users.component.html diff --git a/src/app/admin/users/users.component.sass b/projects/mdm-ui/src/app/admin/users/users.component.sass similarity index 100% rename from src/app/admin/users/users.component.sass rename to projects/mdm-ui/src/app/admin/users/users.component.sass diff --git a/src/app/admin/users/users.component.ts b/projects/mdm-ui/src/app/admin/users/users.component.ts similarity index 100% rename from src/app/admin/users/users.component.ts rename to projects/mdm-ui/src/app/admin/users/users.component.ts diff --git a/src/app/app-container/app-container.component.html b/projects/mdm-ui/src/app/app-container/app-container.component.html similarity index 100% rename from src/app/app-container/app-container.component.html rename to projects/mdm-ui/src/app/app-container/app-container.component.html diff --git a/src/app/app-container/app-container.component.sass b/projects/mdm-ui/src/app/app-container/app-container.component.sass similarity index 100% rename from src/app/app-container/app-container.component.sass rename to projects/mdm-ui/src/app/app-container/app-container.component.sass diff --git a/src/app/app-container/app-container.component.ts b/projects/mdm-ui/src/app/app-container/app-container.component.ts similarity index 100% rename from src/app/app-container/app-container.component.ts rename to projects/mdm-ui/src/app/app-container/app-container.component.ts diff --git a/src/app/app-routing.module.ts b/projects/mdm-ui/src/app/app-routing.module.ts similarity index 100% rename from src/app/app-routing.module.ts rename to projects/mdm-ui/src/app/app-routing.module.ts diff --git a/src/app/app.component.html b/projects/mdm-ui/src/app/app.component.html similarity index 100% rename from src/app/app.component.html rename to projects/mdm-ui/src/app/app.component.html diff --git a/src/app/app.component.scss b/projects/mdm-ui/src/app/app.component.scss similarity index 100% rename from src/app/app.component.scss rename to projects/mdm-ui/src/app/app.component.scss diff --git a/src/app/app.component.spec.ts b/projects/mdm-ui/src/app/app.component.spec.ts similarity index 100% rename from src/app/app.component.spec.ts rename to projects/mdm-ui/src/app/app.component.spec.ts diff --git a/src/app/app.component.ts b/projects/mdm-ui/src/app/app.component.ts similarity index 100% rename from src/app/app.component.ts rename to projects/mdm-ui/src/app/app.component.ts diff --git a/src/app/app.module.ts b/projects/mdm-ui/src/app/app.module.ts similarity index 100% rename from src/app/app.module.ts rename to projects/mdm-ui/src/app/app.module.ts diff --git a/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.html diff --git a/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.scss similarity index 100% rename from src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.scss diff --git a/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.spec.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.spec.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.spec.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.spec.ts diff --git a/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-container/bulk-edit-container.component.ts diff --git a/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.html diff --git a/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.scss similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.scss diff --git a/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.spec.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.spec.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.spec.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.spec.ts diff --git a/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor-group/bulk-edit-editor-group.component.ts diff --git a/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.html diff --git a/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss similarity index 95% rename from src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss index 683ce9a3f..24bb4df66 100644 --- a/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss +++ b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.scss @@ -16,7 +16,7 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ -@import "style/abstracts/variables"; +@import "../../../style/abstracts/variables"; .mdm-bulk-edit-editor { &__validation { diff --git a/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.spec.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.spec.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.spec.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.spec.ts diff --git a/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/bulk-edit-editor.component.ts diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.html diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.scss similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.scss diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-editors/date-cell-editor/date-cell-editor.component.ts diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.html diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.scss similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.scss diff --git a/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-editor/cell-renderers/checkbox-cell-renderer/checkbox-cell-renderer.component.ts diff --git a/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.html b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.html similarity index 100% rename from src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.html rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.html diff --git a/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.scss b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.scss similarity index 100% rename from src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.scss rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.scss diff --git a/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.spec.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.spec.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.spec.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.spec.ts diff --git a/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit-select/bulk-edit-select.component.ts diff --git a/src/app/bulk-edit/bulk-edit.module.ts b/projects/mdm-ui/src/app/bulk-edit/bulk-edit.module.ts similarity index 100% rename from src/app/bulk-edit/bulk-edit.module.ts rename to projects/mdm-ui/src/app/bulk-edit/bulk-edit.module.ts diff --git a/src/app/bulk-edit/types/bulk-edit-types.ts b/projects/mdm-ui/src/app/bulk-edit/types/bulk-edit-types.ts similarity index 100% rename from src/app/bulk-edit/types/bulk-edit-types.ts rename to projects/mdm-ui/src/app/bulk-edit/types/bulk-edit-types.ts diff --git a/src/app/classification/classification-details/classification-details.component.html b/projects/mdm-ui/src/app/classification/classification-details/classification-details.component.html similarity index 100% rename from src/app/classification/classification-details/classification-details.component.html rename to projects/mdm-ui/src/app/classification/classification-details/classification-details.component.html diff --git a/src/app/classification/classification-details/classification-details.component.sass b/projects/mdm-ui/src/app/classification/classification-details/classification-details.component.sass similarity index 100% rename from src/app/classification/classification-details/classification-details.component.sass rename to projects/mdm-ui/src/app/classification/classification-details/classification-details.component.sass diff --git a/src/app/classification/classification-details/classification-details.component.spec.ts b/projects/mdm-ui/src/app/classification/classification-details/classification-details.component.spec.ts similarity index 100% rename from src/app/classification/classification-details/classification-details.component.spec.ts rename to projects/mdm-ui/src/app/classification/classification-details/classification-details.component.spec.ts diff --git a/src/app/classification/classification-details/classification-details.component.ts b/projects/mdm-ui/src/app/classification/classification-details/classification-details.component.ts similarity index 100% rename from src/app/classification/classification-details/classification-details.component.ts rename to projects/mdm-ui/src/app/classification/classification-details/classification-details.component.ts diff --git a/src/app/classification/classification.component.html b/projects/mdm-ui/src/app/classification/classification.component.html similarity index 100% rename from src/app/classification/classification.component.html rename to projects/mdm-ui/src/app/classification/classification.component.html diff --git a/src/app/classification/classification.component.sass b/projects/mdm-ui/src/app/classification/classification.component.sass similarity index 100% rename from src/app/classification/classification.component.sass rename to projects/mdm-ui/src/app/classification/classification.component.sass diff --git a/src/app/classification/classification.component.ts b/projects/mdm-ui/src/app/classification/classification.component.ts similarity index 100% rename from src/app/classification/classification.component.ts rename to projects/mdm-ui/src/app/classification/classification.component.ts diff --git a/src/app/code-set/code-set-details/code-set-details.component.html b/projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.html similarity index 100% rename from src/app/code-set/code-set-details/code-set-details.component.html rename to projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.html diff --git a/src/app/code-set/code-set-details/code-set-details.component.scss b/projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.scss similarity index 100% rename from src/app/code-set/code-set-details/code-set-details.component.scss rename to projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.scss diff --git a/src/app/code-set/code-set-details/code-set-details.component.ts b/projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.ts similarity index 100% rename from src/app/code-set/code-set-details/code-set-details.component.ts rename to projects/mdm-ui/src/app/code-set/code-set-details/code-set-details.component.ts diff --git a/src/app/code-set/code-set/code-set.component.html b/projects/mdm-ui/src/app/code-set/code-set/code-set.component.html similarity index 100% rename from src/app/code-set/code-set/code-set.component.html rename to projects/mdm-ui/src/app/code-set/code-set/code-set.component.html diff --git a/src/app/code-set/code-set/code-set.component.scss b/projects/mdm-ui/src/app/code-set/code-set/code-set.component.scss similarity index 100% rename from src/app/code-set/code-set/code-set.component.scss rename to projects/mdm-ui/src/app/code-set/code-set/code-set.component.scss diff --git a/src/app/code-set/code-set/code-set.component.ts b/projects/mdm-ui/src/app/code-set/code-set/code-set.component.ts similarity index 100% rename from src/app/code-set/code-set/code-set.component.ts rename to projects/mdm-ui/src/app/code-set/code-set/code-set.component.ts diff --git a/src/app/constants/modal-dialog-status.ts b/projects/mdm-ui/src/app/constants/modal-dialog-status.ts similarity index 100% rename from src/app/constants/modal-dialog-status.ts rename to projects/mdm-ui/src/app/constants/modal-dialog-status.ts diff --git a/src/app/constants/roles.ts b/projects/mdm-ui/src/app/constants/roles.ts similarity index 100% rename from src/app/constants/roles.ts rename to projects/mdm-ui/src/app/constants/roles.ts diff --git a/src/app/constraints-rules/constraints-rules.component.html b/projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.html similarity index 100% rename from src/app/constraints-rules/constraints-rules.component.html rename to projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.html diff --git a/src/app/constraints-rules/constraints-rules.component.scss b/projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.scss similarity index 100% rename from src/app/constraints-rules/constraints-rules.component.scss rename to projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.scss diff --git a/src/app/constraints-rules/constraints-rules.component.ts b/projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.ts similarity index 100% rename from src/app/constraints-rules/constraints-rules.component.ts rename to projects/mdm-ui/src/app/constraints-rules/constraints-rules.component.ts diff --git a/src/app/data-type/data-type-detail/data-type-detail.component.html b/projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.html similarity index 100% rename from src/app/data-type/data-type-detail/data-type-detail.component.html rename to projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.html diff --git a/src/app/data-type/data-type-detail/data-type-detail.component.scss b/projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.scss similarity index 100% rename from src/app/data-type/data-type-detail/data-type-detail.component.scss rename to projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.scss diff --git a/src/app/data-type/data-type-detail/data-type-detail.component.ts b/projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.ts similarity index 100% rename from src/app/data-type/data-type-detail/data-type-detail.component.ts rename to projects/mdm-ui/src/app/data-type/data-type-detail/data-type-detail.component.ts diff --git a/src/app/data-type/data-type.component.html b/projects/mdm-ui/src/app/data-type/data-type.component.html similarity index 100% rename from src/app/data-type/data-type.component.html rename to projects/mdm-ui/src/app/data-type/data-type.component.html diff --git a/src/app/data-type/data-type.component.scss b/projects/mdm-ui/src/app/data-type/data-type.component.scss similarity index 100% rename from src/app/data-type/data-type.component.scss rename to projects/mdm-ui/src/app/data-type/data-type.component.scss diff --git a/src/app/data-type/data-type.component.ts b/projects/mdm-ui/src/app/data-type/data-type.component.ts similarity index 100% rename from src/app/data-type/data-type.component.ts rename to projects/mdm-ui/src/app/data-type/data-type.component.ts diff --git a/src/app/dataClass/data-class-details/data-class-details.component.html b/projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.html similarity index 100% rename from src/app/dataClass/data-class-details/data-class-details.component.html rename to projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.html diff --git a/src/app/dataClass/data-class-details/data-class-details.component.sass b/projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.sass similarity index 100% rename from src/app/dataClass/data-class-details/data-class-details.component.sass rename to projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.sass diff --git a/src/app/dataClass/data-class-details/data-class-details.component.ts b/projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.ts similarity index 100% rename from src/app/dataClass/data-class-details/data-class-details.component.ts rename to projects/mdm-ui/src/app/dataClass/data-class-details/data-class-details.component.ts diff --git a/src/app/dataClass/data-class/data-class.component.html b/projects/mdm-ui/src/app/dataClass/data-class/data-class.component.html similarity index 100% rename from src/app/dataClass/data-class/data-class.component.html rename to projects/mdm-ui/src/app/dataClass/data-class/data-class.component.html diff --git a/src/app/dataClass/data-class/data-class.component.sass b/projects/mdm-ui/src/app/dataClass/data-class/data-class.component.sass similarity index 100% rename from src/app/dataClass/data-class/data-class.component.sass rename to projects/mdm-ui/src/app/dataClass/data-class/data-class.component.sass diff --git a/src/app/dataClass/data-class/data-class.component.ts b/projects/mdm-ui/src/app/dataClass/data-class/data-class.component.ts similarity index 100% rename from src/app/dataClass/data-class/data-class.component.ts rename to projects/mdm-ui/src/app/dataClass/data-class/data-class.component.ts diff --git a/src/app/dataElement/data-element-details/data-element-details.component.html b/projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.html similarity index 100% rename from src/app/dataElement/data-element-details/data-element-details.component.html rename to projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.html diff --git a/src/app/dataElement/data-element-details/data-element-details.component.sass b/projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.sass similarity index 100% rename from src/app/dataElement/data-element-details/data-element-details.component.sass rename to projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.sass diff --git a/src/app/dataElement/data-element-details/data-element-details.component.spec.ts b/projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.spec.ts similarity index 100% rename from src/app/dataElement/data-element-details/data-element-details.component.spec.ts rename to projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.spec.ts diff --git a/src/app/dataElement/data-element-details/data-element-details.component.ts b/projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.ts similarity index 100% rename from src/app/dataElement/data-element-details/data-element-details.component.ts rename to projects/mdm-ui/src/app/dataElement/data-element-details/data-element-details.component.ts diff --git a/src/app/dataElement/data-element/data-element.component.html b/projects/mdm-ui/src/app/dataElement/data-element/data-element.component.html similarity index 100% rename from src/app/dataElement/data-element/data-element.component.html rename to projects/mdm-ui/src/app/dataElement/data-element/data-element.component.html diff --git a/src/app/dataElement/data-element/data-element.component.sass b/projects/mdm-ui/src/app/dataElement/data-element/data-element.component.sass similarity index 100% rename from src/app/dataElement/data-element/data-element.component.sass rename to projects/mdm-ui/src/app/dataElement/data-element/data-element.component.sass diff --git a/src/app/dataElement/data-element/data-element.component.ts b/projects/mdm-ui/src/app/dataElement/data-element/data-element.component.ts similarity index 100% rename from src/app/dataElement/data-element/data-element.component.ts rename to projects/mdm-ui/src/app/dataElement/data-element/data-element.component.ts diff --git a/src/app/dataModel/data-model-detail.component.html b/projects/mdm-ui/src/app/dataModel/data-model-detail.component.html similarity index 100% rename from src/app/dataModel/data-model-detail.component.html rename to projects/mdm-ui/src/app/dataModel/data-model-detail.component.html diff --git a/src/app/dataModel/data-model-detail.component.sass b/projects/mdm-ui/src/app/dataModel/data-model-detail.component.sass similarity index 100% rename from src/app/dataModel/data-model-detail.component.sass rename to projects/mdm-ui/src/app/dataModel/data-model-detail.component.sass diff --git a/src/app/dataModel/data-model-detail.component.ts b/projects/mdm-ui/src/app/dataModel/data-model-detail.component.ts similarity index 100% rename from src/app/dataModel/data-model-detail.component.ts rename to projects/mdm-ui/src/app/dataModel/data-model-detail.component.ts diff --git a/src/app/dataModel/data-model.component.html b/projects/mdm-ui/src/app/dataModel/data-model.component.html similarity index 100% rename from src/app/dataModel/data-model.component.html rename to projects/mdm-ui/src/app/dataModel/data-model.component.html diff --git a/src/app/dataModel/data-model.component.scss b/projects/mdm-ui/src/app/dataModel/data-model.component.scss similarity index 100% rename from src/app/dataModel/data-model.component.scss rename to projects/mdm-ui/src/app/dataModel/data-model.component.scss diff --git a/src/app/dataModel/data-model.component.ts b/projects/mdm-ui/src/app/dataModel/data-model.component.ts similarity index 100% rename from src/app/dataModel/data-model.component.ts rename to projects/mdm-ui/src/app/dataModel/data-model.component.ts diff --git a/src/app/diagram/diagram-popup/diagram-popup.component.html b/projects/mdm-ui/src/app/diagram/diagram-popup/diagram-popup.component.html similarity index 100% rename from src/app/diagram/diagram-popup/diagram-popup.component.html rename to projects/mdm-ui/src/app/diagram/diagram-popup/diagram-popup.component.html diff --git a/src/app/diagram/diagram-popup/diagram-popup.component.ts b/projects/mdm-ui/src/app/diagram/diagram-popup/diagram-popup.component.ts similarity index 100% rename from src/app/diagram/diagram-popup/diagram-popup.component.ts rename to projects/mdm-ui/src/app/diagram/diagram-popup/diagram-popup.component.ts diff --git a/src/app/diagram/diagram-tab/diagram-tab.component.html b/projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.html similarity index 100% rename from src/app/diagram/diagram-tab/diagram-tab.component.html rename to projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.html diff --git a/src/app/diagram/diagram-tab/diagram-tab.component.scss b/projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.scss similarity index 100% rename from src/app/diagram/diagram-tab/diagram-tab.component.scss rename to projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.scss diff --git a/src/app/diagram/diagram-tab/diagram-tab.component.ts b/projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.ts similarity index 100% rename from src/app/diagram/diagram-tab/diagram-tab.component.ts rename to projects/mdm-ui/src/app/diagram/diagram-tab/diagram-tab.component.ts diff --git a/src/app/diagram/diagram-toolbar/diagram-toolbar.component.html b/projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.html similarity index 100% rename from src/app/diagram/diagram-toolbar/diagram-toolbar.component.html rename to projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.html diff --git a/src/app/diagram/diagram-toolbar/diagram-toolbar.component.scss b/projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.scss similarity index 100% rename from src/app/diagram/diagram-toolbar/diagram-toolbar.component.scss rename to projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.scss diff --git a/src/app/diagram/diagram-toolbar/diagram-toolbar.component.ts b/projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.ts similarity index 100% rename from src/app/diagram/diagram-toolbar/diagram-toolbar.component.ts rename to projects/mdm-ui/src/app/diagram/diagram-toolbar/diagram-toolbar.component.ts diff --git a/src/app/diagram/diagram/diagram.component.html b/projects/mdm-ui/src/app/diagram/diagram/diagram.component.html similarity index 100% rename from src/app/diagram/diagram/diagram.component.html rename to projects/mdm-ui/src/app/diagram/diagram/diagram.component.html diff --git a/src/app/diagram/diagram/diagram.component.scss b/projects/mdm-ui/src/app/diagram/diagram/diagram.component.scss similarity index 100% rename from src/app/diagram/diagram/diagram.component.scss rename to projects/mdm-ui/src/app/diagram/diagram/diagram.component.scss diff --git a/src/app/diagram/diagram/diagram.component.ts b/projects/mdm-ui/src/app/diagram/diagram/diagram.component.ts similarity index 100% rename from src/app/diagram/diagram/diagram.component.ts rename to projects/mdm-ui/src/app/diagram/diagram/diagram.component.ts diff --git a/src/app/diagram/diagram/diagram.model.ts b/projects/mdm-ui/src/app/diagram/diagram/diagram.model.ts similarity index 100% rename from src/app/diagram/diagram/diagram.model.ts rename to projects/mdm-ui/src/app/diagram/diagram/diagram.model.ts diff --git a/src/app/diagram/services/basic-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/basic-diagram.service.ts similarity index 100% rename from src/app/diagram/services/basic-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/basic-diagram.service.ts diff --git a/src/app/diagram/services/dataflow-dataclass-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/dataflow-dataclass-diagram.service.ts similarity index 100% rename from src/app/diagram/services/dataflow-dataclass-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/dataflow-dataclass-diagram.service.ts diff --git a/src/app/diagram/services/dataflow-dataelement-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/dataflow-dataelement-diagram.service.ts similarity index 100% rename from src/app/diagram/services/dataflow-dataelement-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/dataflow-dataelement-diagram.service.ts diff --git a/src/app/diagram/services/dataflow-datamodel-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/dataflow-datamodel-diagram.service.ts similarity index 100% rename from src/app/diagram/services/dataflow-datamodel-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/dataflow-datamodel-diagram.service.ts diff --git a/src/app/diagram/services/models-merging-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/models-merging-diagram.service.ts similarity index 100% rename from src/app/diagram/services/models-merging-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/models-merging-diagram.service.ts diff --git a/src/app/diagram/services/umlclass-diagram.service.ts b/projects/mdm-ui/src/app/diagram/services/umlclass-diagram.service.ts similarity index 100% rename from src/app/diagram/services/umlclass-diagram.service.ts rename to projects/mdm-ui/src/app/diagram/services/umlclass-diagram.service.ts diff --git a/src/app/directives/file-size.pipe.ts b/projects/mdm-ui/src/app/directives/file-size.pipe.ts similarity index 100% rename from src/app/directives/file-size.pipe.ts rename to projects/mdm-ui/src/app/directives/file-size.pipe.ts diff --git a/src/app/directives/filter-pipe.directive.spec.ts b/projects/mdm-ui/src/app/directives/filter-pipe.directive.spec.ts similarity index 100% rename from src/app/directives/filter-pipe.directive.spec.ts rename to projects/mdm-ui/src/app/directives/filter-pipe.directive.spec.ts diff --git a/src/app/directives/filter-pipe.directive.ts b/projects/mdm-ui/src/app/directives/filter-pipe.directive.ts similarity index 100% rename from src/app/directives/filter-pipe.directive.ts rename to projects/mdm-ui/src/app/directives/filter-pipe.directive.ts diff --git a/src/app/directives/markdown.directive.spec.ts b/projects/mdm-ui/src/app/directives/markdown.directive.spec.ts similarity index 100% rename from src/app/directives/markdown.directive.spec.ts rename to projects/mdm-ui/src/app/directives/markdown.directive.spec.ts diff --git a/src/app/directives/markdown.directive.ts b/projects/mdm-ui/src/app/directives/markdown.directive.ts similarity index 100% rename from src/app/directives/markdown.directive.ts rename to projects/mdm-ui/src/app/directives/markdown.directive.ts diff --git a/src/app/directives/properties.directive.spec.ts b/projects/mdm-ui/src/app/directives/properties.directive.spec.ts similarity index 100% rename from src/app/directives/properties.directive.spec.ts rename to projects/mdm-ui/src/app/directives/properties.directive.spec.ts diff --git a/src/app/directives/properties.directive.ts b/projects/mdm-ui/src/app/directives/properties.directive.ts similarity index 100% rename from src/app/directives/properties.directive.ts rename to projects/mdm-ui/src/app/directives/properties.directive.ts diff --git a/src/app/directives/resizable.directive.ts b/projects/mdm-ui/src/app/directives/resizable.directive.ts similarity index 100% rename from src/app/directives/resizable.directive.ts rename to projects/mdm-ui/src/app/directives/resizable.directive.ts diff --git a/src/app/directives/show-if-role-is-writable.directive.ts b/projects/mdm-ui/src/app/directives/show-if-role-is-writable.directive.ts similarity index 100% rename from src/app/directives/show-if-role-is-writable.directive.ts rename to projects/mdm-ui/src/app/directives/show-if-role-is-writable.directive.ts diff --git a/src/app/directives/show-if-roles-writable.directive.spec.ts b/projects/mdm-ui/src/app/directives/show-if-roles-writable.directive.spec.ts similarity index 100% rename from src/app/directives/show-if-roles-writable.directive.spec.ts rename to projects/mdm-ui/src/app/directives/show-if-roles-writable.directive.spec.ts diff --git a/src/app/directives/show-if-roles-writable.directive.ts b/projects/mdm-ui/src/app/directives/show-if-roles-writable.directive.ts similarity index 100% rename from src/app/directives/show-if-roles-writable.directive.ts rename to projects/mdm-ui/src/app/directives/show-if-roles-writable.directive.ts diff --git a/src/app/doi-redirect/doi-redirect.component.html b/projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.html similarity index 100% rename from src/app/doi-redirect/doi-redirect.component.html rename to projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.html diff --git a/src/app/doi-redirect/doi-redirect.component.scss b/projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.scss similarity index 100% rename from src/app/doi-redirect/doi-redirect.component.scss rename to projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.scss diff --git a/src/app/doi-redirect/doi-redirect.component.ts b/projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.ts similarity index 100% rename from src/app/doi-redirect/doi-redirect.component.ts rename to projects/mdm-ui/src/app/doi-redirect/doi-redirect.component.ts diff --git a/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.html b/projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.html similarity index 100% rename from src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.html rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.html diff --git a/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.scss b/projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.scss similarity index 100% rename from src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.scss rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.scss diff --git a/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.spec.ts b/projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.spec.ts similarity index 100% rename from src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.spec.ts rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.spec.ts diff --git a/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.ts b/projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.ts similarity index 100% rename from src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.ts rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values-details/enumeration-values-details.component.ts diff --git a/src/app/enumerationValues/enumeration-values/enumeration-values.component.html b/projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.html similarity index 100% rename from src/app/enumerationValues/enumeration-values/enumeration-values.component.html rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.html diff --git a/src/app/enumerationValues/enumeration-values/enumeration-values.component.scss b/projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.scss similarity index 100% rename from src/app/enumerationValues/enumeration-values/enumeration-values.component.scss rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.scss diff --git a/src/app/enumerationValues/enumeration-values/enumeration-values.component.spec.ts b/projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.spec.ts similarity index 100% rename from src/app/enumerationValues/enumeration-values/enumeration-values.component.spec.ts rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.spec.ts diff --git a/src/app/enumerationValues/enumeration-values/enumeration-values.component.ts b/projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.ts similarity index 100% rename from src/app/enumerationValues/enumeration-values/enumeration-values.component.ts rename to projects/mdm-ui/src/app/enumerationValues/enumeration-values/enumeration-values.component.ts diff --git a/src/app/errors/error.component.html b/projects/mdm-ui/src/app/errors/error.component.html similarity index 100% rename from src/app/errors/error.component.html rename to projects/mdm-ui/src/app/errors/error.component.html diff --git a/src/app/errors/error.component.scss b/projects/mdm-ui/src/app/errors/error.component.scss similarity index 100% rename from src/app/errors/error.component.scss rename to projects/mdm-ui/src/app/errors/error.component.scss diff --git a/src/app/errors/error.component.ts b/projects/mdm-ui/src/app/errors/error.component.ts similarity index 100% rename from src/app/errors/error.component.ts rename to projects/mdm-ui/src/app/errors/error.component.ts diff --git a/src/app/errors/not-authorized/not-authorized.component.ts b/projects/mdm-ui/src/app/errors/not-authorized/not-authorized.component.ts similarity index 100% rename from src/app/errors/not-authorized/not-authorized.component.ts rename to projects/mdm-ui/src/app/errors/not-authorized/not-authorized.component.ts diff --git a/src/app/errors/not-found/not-found.component.ts b/projects/mdm-ui/src/app/errors/not-found/not-found.component.ts similarity index 100% rename from src/app/errors/not-found/not-found.component.ts rename to projects/mdm-ui/src/app/errors/not-found/not-found.component.ts diff --git a/src/app/errors/not-implemented/not-implemented.component.ts b/projects/mdm-ui/src/app/errors/not-implemented/not-implemented.component.ts similarity index 100% rename from src/app/errors/not-implemented/not-implemented.component.ts rename to projects/mdm-ui/src/app/errors/not-implemented/not-implemented.component.ts diff --git a/src/app/errors/server-error/server-error.component.ts b/projects/mdm-ui/src/app/errors/server-error/server-error.component.ts similarity index 100% rename from src/app/errors/server-error/server-error.component.ts rename to projects/mdm-ui/src/app/errors/server-error/server-error.component.ts diff --git a/src/app/errors/server-timeout/server-timeout.component.ts b/projects/mdm-ui/src/app/errors/server-timeout/server-timeout.component.ts similarity index 100% rename from src/app/errors/server-timeout/server-timeout.component.ts rename to projects/mdm-ui/src/app/errors/server-timeout/server-timeout.component.ts diff --git a/src/app/export-models/export-models.component.html b/projects/mdm-ui/src/app/export-models/export-models.component.html similarity index 100% rename from src/app/export-models/export-models.component.html rename to projects/mdm-ui/src/app/export-models/export-models.component.html diff --git a/src/app/export-models/export-models.component.scss b/projects/mdm-ui/src/app/export-models/export-models.component.scss similarity index 100% rename from src/app/export-models/export-models.component.scss rename to projects/mdm-ui/src/app/export-models/export-models.component.scss diff --git a/src/app/export-models/export-models.component.ts b/projects/mdm-ui/src/app/export-models/export-models.component.ts similarity index 100% rename from src/app/export-models/export-models.component.ts rename to projects/mdm-ui/src/app/export-models/export-models.component.ts diff --git a/src/app/folder/folder-detail.component.html b/projects/mdm-ui/src/app/folder/folder-detail.component.html similarity index 100% rename from src/app/folder/folder-detail.component.html rename to projects/mdm-ui/src/app/folder/folder-detail.component.html diff --git a/src/app/folder/folder-detail.component.scss b/projects/mdm-ui/src/app/folder/folder-detail.component.scss similarity index 100% rename from src/app/folder/folder-detail.component.scss rename to projects/mdm-ui/src/app/folder/folder-detail.component.scss diff --git a/src/app/folder/folder-detail.component.ts b/projects/mdm-ui/src/app/folder/folder-detail.component.ts similarity index 100% rename from src/app/folder/folder-detail.component.ts rename to projects/mdm-ui/src/app/folder/folder-detail.component.ts diff --git a/src/app/folder/folder.component.css b/projects/mdm-ui/src/app/folder/folder.component.css similarity index 100% rename from src/app/folder/folder.component.css rename to projects/mdm-ui/src/app/folder/folder.component.css diff --git a/src/app/folder/folder.component.html b/projects/mdm-ui/src/app/folder/folder.component.html similarity index 100% rename from src/app/folder/folder.component.html rename to projects/mdm-ui/src/app/folder/folder.component.html diff --git a/src/app/folder/folder.component.ts b/projects/mdm-ui/src/app/folder/folder.component.ts similarity index 100% rename from src/app/folder/folder.component.ts rename to projects/mdm-ui/src/app/folder/folder.component.ts diff --git a/src/app/folders-tree/flat-node.ts b/projects/mdm-ui/src/app/folders-tree/flat-node.ts similarity index 100% rename from src/app/folders-tree/flat-node.ts rename to projects/mdm-ui/src/app/folders-tree/flat-node.ts diff --git a/src/app/folders-tree/folder.service.ts b/projects/mdm-ui/src/app/folders-tree/folder.service.ts similarity index 100% rename from src/app/folders-tree/folder.service.ts rename to projects/mdm-ui/src/app/folders-tree/folder.service.ts diff --git a/src/app/folders-tree/folders-tree.component.html b/projects/mdm-ui/src/app/folders-tree/folders-tree.component.html similarity index 100% rename from src/app/folders-tree/folders-tree.component.html rename to projects/mdm-ui/src/app/folders-tree/folders-tree.component.html diff --git a/src/app/folders-tree/folders-tree.component.scss b/projects/mdm-ui/src/app/folders-tree/folders-tree.component.scss similarity index 100% rename from src/app/folders-tree/folders-tree.component.scss rename to projects/mdm-ui/src/app/folders-tree/folders-tree.component.scss diff --git a/src/app/folders-tree/folders-tree.component.spec.ts b/projects/mdm-ui/src/app/folders-tree/folders-tree.component.spec.ts similarity index 100% rename from src/app/folders-tree/folders-tree.component.spec.ts rename to projects/mdm-ui/src/app/folders-tree/folders-tree.component.spec.ts diff --git a/src/app/folders-tree/folders-tree.component.ts b/projects/mdm-ui/src/app/folders-tree/folders-tree.component.ts similarity index 100% rename from src/app/folders-tree/folders-tree.component.ts rename to projects/mdm-ui/src/app/folders-tree/folders-tree.component.ts diff --git a/src/app/folders-tree/folders-tree.module.ts b/projects/mdm-ui/src/app/folders-tree/folders-tree.module.ts similarity index 100% rename from src/app/folders-tree/folders-tree.module.ts rename to projects/mdm-ui/src/app/folders-tree/folders-tree.module.ts diff --git a/src/app/home/home.component.html b/projects/mdm-ui/src/app/home/home.component.html similarity index 100% rename from src/app/home/home.component.html rename to projects/mdm-ui/src/app/home/home.component.html diff --git a/src/app/home/home.component.sass b/projects/mdm-ui/src/app/home/home.component.sass similarity index 100% rename from src/app/home/home.component.sass rename to projects/mdm-ui/src/app/home/home.component.sass diff --git a/src/app/home/home.component.ts b/projects/mdm-ui/src/app/home/home.component.ts similarity index 100% rename from src/app/home/home.component.ts rename to projects/mdm-ui/src/app/home/home.component.ts diff --git a/src/app/import-models/import-models.component.html b/projects/mdm-ui/src/app/import-models/import-models.component.html similarity index 100% rename from src/app/import-models/import-models.component.html rename to projects/mdm-ui/src/app/import-models/import-models.component.html diff --git a/src/app/import-models/import-models.component.sass b/projects/mdm-ui/src/app/import-models/import-models.component.sass similarity index 100% rename from src/app/import-models/import-models.component.sass rename to projects/mdm-ui/src/app/import-models/import-models.component.sass diff --git a/src/app/import-models/import-models.component.ts b/projects/mdm-ui/src/app/import-models/import-models.component.ts similarity index 100% rename from src/app/import-models/import-models.component.ts rename to projects/mdm-ui/src/app/import-models/import-models.component.ts diff --git a/src/app/link-suggestion/link-suggestion.component.html b/projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.html similarity index 100% rename from src/app/link-suggestion/link-suggestion.component.html rename to projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.html diff --git a/src/app/link-suggestion/link-suggestion.component.scss b/projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.scss similarity index 100% rename from src/app/link-suggestion/link-suggestion.component.scss rename to projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.scss diff --git a/src/app/link-suggestion/link-suggestion.component.ts b/projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.ts similarity index 100% rename from src/app/link-suggestion/link-suggestion.component.ts rename to projects/mdm-ui/src/app/link-suggestion/link-suggestion.component.ts diff --git a/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.html b/projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.html similarity index 100% rename from src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.html rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.html diff --git a/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.scss b/projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.scss similarity index 100% rename from src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.scss rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.scss diff --git a/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.spec.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.spec.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.spec.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.spec.ts diff --git a/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.component.ts diff --git a/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.model.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.model.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.model.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/conflict-editor-modal/conflict-editor-modal.model.ts diff --git a/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.html b/projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.html similarity index 100% rename from src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.html rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.html diff --git a/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.scss b/projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.scss similarity index 100% rename from src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.scss rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.scss diff --git a/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.spec.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.spec.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.spec.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.spec.ts diff --git a/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/number-conflict-editor/number-conflict-editor.component.ts diff --git a/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.html b/projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.html similarity index 100% rename from src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.html rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.html diff --git a/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.scss b/projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.scss similarity index 100% rename from src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.scss rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.scss diff --git a/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.spec.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.spec.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.spec.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.spec.ts diff --git a/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.ts b/projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.ts similarity index 100% rename from src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.ts rename to projects/mdm-ui/src/app/merge-diff/conflict-editor/string-conflict-editor/string-conflict-editor.component.ts diff --git a/src/app/merge-diff/merge-comparsion/merge-comparison.component.html b/projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparison.component.html similarity index 100% rename from src/app/merge-diff/merge-comparsion/merge-comparison.component.html rename to projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparison.component.html diff --git a/src/app/merge-diff/merge-comparsion/merge-comparison.component.scss b/projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparison.component.scss similarity index 100% rename from src/app/merge-diff/merge-comparsion/merge-comparison.component.scss rename to projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparison.component.scss diff --git a/src/app/merge-diff/merge-comparsion/merge-comparsion.component.ts b/projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparsion.component.ts similarity index 100% rename from src/app/merge-diff/merge-comparsion/merge-comparsion.component.ts rename to projects/mdm-ui/src/app/merge-diff/merge-comparsion/merge-comparsion.component.ts diff --git a/src/app/merge-diff/merge-diff-adapter/merge-diff-adapter.service.ts b/projects/mdm-ui/src/app/merge-diff/merge-diff-adapter/merge-diff-adapter.service.ts similarity index 100% rename from src/app/merge-diff/merge-diff-adapter/merge-diff-adapter.service.ts rename to projects/mdm-ui/src/app/merge-diff/merge-diff-adapter/merge-diff-adapter.service.ts diff --git a/src/app/merge-diff/merge-diff-container/merge-diff-container.component.html b/projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.html similarity index 100% rename from src/app/merge-diff/merge-diff-container/merge-diff-container.component.html rename to projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.html diff --git a/src/app/merge-diff/merge-diff-container/merge-diff-container.component.scss b/projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.scss similarity index 100% rename from src/app/merge-diff/merge-diff-container/merge-diff-container.component.scss rename to projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.scss diff --git a/src/app/merge-diff/merge-diff-container/merge-diff-container.component.ts b/projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.ts similarity index 100% rename from src/app/merge-diff/merge-diff-container/merge-diff-container.component.ts rename to projects/mdm-ui/src/app/merge-diff/merge-diff-container/merge-diff-container.component.ts diff --git a/src/app/merge-diff/merge-diff.module.ts b/projects/mdm-ui/src/app/merge-diff/merge-diff.module.ts similarity index 100% rename from src/app/merge-diff/merge-diff.module.ts rename to projects/mdm-ui/src/app/merge-diff/merge-diff.module.ts diff --git a/src/app/merge-diff/merge-item-selector/merge-item-selector.component.html b/projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.html similarity index 100% rename from src/app/merge-diff/merge-item-selector/merge-item-selector.component.html rename to projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.html diff --git a/src/app/merge-diff/merge-item-selector/merge-item-selector.component.scss b/projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.scss similarity index 100% rename from src/app/merge-diff/merge-item-selector/merge-item-selector.component.scss rename to projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.scss diff --git a/src/app/merge-diff/merge-item-selector/merge-item-selector.component.ts b/projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.ts similarity index 100% rename from src/app/merge-diff/merge-item-selector/merge-item-selector.component.ts rename to projects/mdm-ui/src/app/merge-diff/merge-item-selector/merge-item-selector.component.ts diff --git a/src/app/merge-diff/pipes/merge-filter.pipe.ts b/projects/mdm-ui/src/app/merge-diff/pipes/merge-filter.pipe.ts similarity index 100% rename from src/app/merge-diff/pipes/merge-filter.pipe.ts rename to projects/mdm-ui/src/app/merge-diff/pipes/merge-filter.pipe.ts diff --git a/src/app/merge-diff/services/string-conflict.service.ts b/projects/mdm-ui/src/app/merge-diff/services/string-conflict.service.ts similarity index 100% rename from src/app/merge-diff/services/string-conflict.service.ts rename to projects/mdm-ui/src/app/merge-diff/services/string-conflict.service.ts diff --git a/src/app/merge-diff/types/merge-item-type.ts b/projects/mdm-ui/src/app/merge-diff/types/merge-item-type.ts similarity index 100% rename from src/app/merge-diff/types/merge-item-type.ts rename to projects/mdm-ui/src/app/merge-diff/types/merge-item-type.ts diff --git a/src/app/modals/add-profile-modal/add-profile-modal.component.html b/projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.html similarity index 100% rename from src/app/modals/add-profile-modal/add-profile-modal.component.html rename to projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.html diff --git a/src/app/modals/add-profile-modal/add-profile-modal.component.scss b/projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.scss similarity index 100% rename from src/app/modals/add-profile-modal/add-profile-modal.component.scss rename to projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.scss diff --git a/src/app/modals/add-profile-modal/add-profile-modal.component.ts b/projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.ts similarity index 100% rename from src/app/modals/add-profile-modal/add-profile-modal.component.ts rename to projects/mdm-ui/src/app/modals/add-profile-modal/add-profile-modal.component.ts diff --git a/src/app/modals/add-rule-modal/add-rule-modal.component.html b/projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.html similarity index 100% rename from src/app/modals/add-rule-modal/add-rule-modal.component.html rename to projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.html diff --git a/src/app/modals/add-rule-modal/add-rule-modal.component.scss b/projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.scss similarity index 100% rename from src/app/modals/add-rule-modal/add-rule-modal.component.scss rename to projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.scss diff --git a/src/app/modals/add-rule-modal/add-rule-modal.component.ts b/projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.ts similarity index 100% rename from src/app/modals/add-rule-modal/add-rule-modal.component.ts rename to projects/mdm-ui/src/app/modals/add-rule-modal/add-rule-modal.component.ts diff --git a/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.html b/projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.html similarity index 100% rename from src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.html rename to projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.html diff --git a/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.scss b/projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.scss similarity index 100% rename from src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.scss rename to projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.scss diff --git a/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.ts b/projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.ts similarity index 100% rename from src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.ts rename to projects/mdm-ui/src/app/modals/add-rule-representation-modal/add-rule-representation-modal.component.ts diff --git a/src/app/modals/api-keys-modal/api-keys-modal.component.html b/projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.html similarity index 100% rename from src/app/modals/api-keys-modal/api-keys-modal.component.html rename to projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.html diff --git a/src/app/modals/api-keys-modal/api-keys-modal.component.scss b/projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.scss similarity index 100% rename from src/app/modals/api-keys-modal/api-keys-modal.component.scss rename to projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.scss diff --git a/src/app/modals/api-keys-modal/api-keys-modal.component.spec.ts b/projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.spec.ts similarity index 100% rename from src/app/modals/api-keys-modal/api-keys-modal.component.spec.ts rename to projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.spec.ts diff --git a/src/app/modals/api-keys-modal/api-keys-modal.component.ts b/projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.ts similarity index 100% rename from src/app/modals/api-keys-modal/api-keys-modal.component.ts rename to projects/mdm-ui/src/app/modals/api-keys-modal/api-keys-modal.component.ts diff --git a/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.html b/projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.html similarity index 100% rename from src/app/modals/bulk-delete-modal/bulk-delete-modal.component.html rename to projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.html diff --git a/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.scss b/projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.scss similarity index 100% rename from src/app/modals/bulk-delete-modal/bulk-delete-modal.component.scss rename to projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.scss diff --git a/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.ts b/projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.ts similarity index 100% rename from src/app/modals/bulk-delete-modal/bulk-delete-modal.component.ts rename to projects/mdm-ui/src/app/modals/bulk-delete-modal/bulk-delete-modal.component.ts diff --git a/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.html b/projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.html similarity index 100% rename from src/app/modals/bulk-edit-modal/bulk-edit-modal.component.html rename to projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.html diff --git a/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.scss b/projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.scss similarity index 100% rename from src/app/modals/bulk-edit-modal/bulk-edit-modal.component.scss rename to projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.scss diff --git a/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.ts b/projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.ts similarity index 100% rename from src/app/modals/bulk-edit-modal/bulk-edit-modal.component.ts rename to projects/mdm-ui/src/app/modals/bulk-edit-modal/bulk-edit-modal.component.ts diff --git a/src/app/modals/check-in-modal/check-in-modal-payload.ts b/projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal-payload.ts similarity index 100% rename from src/app/modals/check-in-modal/check-in-modal-payload.ts rename to projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal-payload.ts diff --git a/src/app/modals/check-in-modal/check-in-modal.component.html b/projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.html similarity index 100% rename from src/app/modals/check-in-modal/check-in-modal.component.html rename to projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.html diff --git a/src/app/modals/check-in-modal/check-in-modal.component.scss b/projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.scss similarity index 100% rename from src/app/modals/check-in-modal/check-in-modal.component.scss rename to projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.scss diff --git a/src/app/modals/check-in-modal/check-in-modal.component.ts b/projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.ts similarity index 100% rename from src/app/modals/check-in-modal/check-in-modal.component.ts rename to projects/mdm-ui/src/app/modals/check-in-modal/check-in-modal.component.ts diff --git a/src/app/modals/confirmation-modal/confirmation-modal.component.html b/projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.html similarity index 100% rename from src/app/modals/confirmation-modal/confirmation-modal.component.html rename to projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.html diff --git a/src/app/modals/confirmation-modal/confirmation-modal.component.sass b/projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.sass similarity index 100% rename from src/app/modals/confirmation-modal/confirmation-modal.component.sass rename to projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.sass diff --git a/src/app/modals/confirmation-modal/confirmation-modal.component.ts b/projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.ts similarity index 100% rename from src/app/modals/confirmation-modal/confirmation-modal.component.ts rename to projects/mdm-ui/src/app/modals/confirmation-modal/confirmation-modal.component.ts diff --git a/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.html b/projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.html similarity index 100% rename from src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.html rename to projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.html diff --git a/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.sass b/projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.sass similarity index 100% rename from src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.sass rename to projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.sass diff --git a/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.ts b/projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.ts similarity index 100% rename from src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.ts rename to projects/mdm-ui/src/app/modals/default-profile-editor-modal/default-profile-editor-modal.component.ts diff --git a/src/app/modals/edit-profile-modal/edit-profile-modal.component.html b/projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.html similarity index 100% rename from src/app/modals/edit-profile-modal/edit-profile-modal.component.html rename to projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.html diff --git a/src/app/modals/edit-profile-modal/edit-profile-modal.component.scss b/projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.scss similarity index 100% rename from src/app/modals/edit-profile-modal/edit-profile-modal.component.scss rename to projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.scss diff --git a/src/app/modals/edit-profile-modal/edit-profile-modal.component.ts b/projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.ts similarity index 100% rename from src/app/modals/edit-profile-modal/edit-profile-modal.component.ts rename to projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.component.ts diff --git a/src/app/modals/edit-profile-modal/edit-profile-modal.model.ts b/projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.model.ts similarity index 100% rename from src/app/modals/edit-profile-modal/edit-profile-modal.model.ts rename to projects/mdm-ui/src/app/modals/edit-profile-modal/edit-profile-modal.model.ts diff --git a/src/app/modals/finalise-modal/finalise-modal.component.html b/projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.html similarity index 100% rename from src/app/modals/finalise-modal/finalise-modal.component.html rename to projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.html diff --git a/src/app/modals/finalise-modal/finalise-modal.component.scss b/projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.scss similarity index 100% rename from src/app/modals/finalise-modal/finalise-modal.component.scss rename to projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.scss diff --git a/src/app/modals/finalise-modal/finalise-modal.component.spec.ts b/projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.spec.ts similarity index 100% rename from src/app/modals/finalise-modal/finalise-modal.component.spec.ts rename to projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.spec.ts diff --git a/src/app/modals/finalise-modal/finalise-modal.component.ts b/projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.ts similarity index 100% rename from src/app/modals/finalise-modal/finalise-modal.component.ts rename to projects/mdm-ui/src/app/modals/finalise-modal/finalise-modal.component.ts diff --git a/src/app/modals/forgot-password-modal/forgot-password-modal.component.html b/projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.html similarity index 100% rename from src/app/modals/forgot-password-modal/forgot-password-modal.component.html rename to projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.html diff --git a/src/app/modals/forgot-password-modal/forgot-password-modal.component.sass b/projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.sass similarity index 100% rename from src/app/modals/forgot-password-modal/forgot-password-modal.component.sass rename to projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.sass diff --git a/src/app/modals/forgot-password-modal/forgot-password-modal.component.ts b/projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.ts similarity index 100% rename from src/app/modals/forgot-password-modal/forgot-password-modal.component.ts rename to projects/mdm-ui/src/app/modals/forgot-password-modal/forgot-password-modal.component.ts diff --git a/src/app/modals/input-modal/input-modal.component.html b/projects/mdm-ui/src/app/modals/input-modal/input-modal.component.html similarity index 100% rename from src/app/modals/input-modal/input-modal.component.html rename to projects/mdm-ui/src/app/modals/input-modal/input-modal.component.html diff --git a/src/app/modals/input-modal/input-modal.component.scss b/projects/mdm-ui/src/app/modals/input-modal/input-modal.component.scss similarity index 100% rename from src/app/modals/input-modal/input-modal.component.scss rename to projects/mdm-ui/src/app/modals/input-modal/input-modal.component.scss diff --git a/src/app/modals/input-modal/input-modal.component.spec.ts b/projects/mdm-ui/src/app/modals/input-modal/input-modal.component.spec.ts similarity index 100% rename from src/app/modals/input-modal/input-modal.component.spec.ts rename to projects/mdm-ui/src/app/modals/input-modal/input-modal.component.spec.ts diff --git a/src/app/modals/input-modal/input-modal.component.ts b/projects/mdm-ui/src/app/modals/input-modal/input-modal.component.ts similarity index 100% rename from src/app/modals/input-modal/input-modal.component.ts rename to projects/mdm-ui/src/app/modals/input-modal/input-modal.component.ts diff --git a/src/app/modals/login-modal/login-modal.component.html b/projects/mdm-ui/src/app/modals/login-modal/login-modal.component.html similarity index 100% rename from src/app/modals/login-modal/login-modal.component.html rename to projects/mdm-ui/src/app/modals/login-modal/login-modal.component.html diff --git a/src/app/modals/login-modal/login-modal.component.scss b/projects/mdm-ui/src/app/modals/login-modal/login-modal.component.scss similarity index 100% rename from src/app/modals/login-modal/login-modal.component.scss rename to projects/mdm-ui/src/app/modals/login-modal/login-modal.component.scss diff --git a/src/app/modals/login-modal/login-modal.component.spec.ts b/projects/mdm-ui/src/app/modals/login-modal/login-modal.component.spec.ts similarity index 100% rename from src/app/modals/login-modal/login-modal.component.spec.ts rename to projects/mdm-ui/src/app/modals/login-modal/login-modal.component.spec.ts diff --git a/src/app/modals/login-modal/login-modal.component.ts b/projects/mdm-ui/src/app/modals/login-modal/login-modal.component.ts similarity index 100% rename from src/app/modals/login-modal/login-modal.component.ts rename to projects/mdm-ui/src/app/modals/login-modal/login-modal.component.ts diff --git a/src/app/modals/markup-display-modal/markup-display-modal.component.html b/projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.html similarity index 100% rename from src/app/modals/markup-display-modal/markup-display-modal.component.html rename to projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.html diff --git a/src/app/modals/markup-display-modal/markup-display-modal.component.scss b/projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.scss similarity index 100% rename from src/app/modals/markup-display-modal/markup-display-modal.component.scss rename to projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.scss diff --git a/src/app/modals/markup-display-modal/markup-display-modal.component.ts b/projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.ts similarity index 100% rename from src/app/modals/markup-display-modal/markup-display-modal.component.ts rename to projects/mdm-ui/src/app/modals/markup-display-modal/markup-display-modal.component.ts diff --git a/src/app/modals/modal.module.ts b/projects/mdm-ui/src/app/modals/modal.module.ts similarity index 100% rename from src/app/modals/modal.module.ts rename to projects/mdm-ui/src/app/modals/modal.module.ts diff --git a/src/app/modals/modal.service.ts b/projects/mdm-ui/src/app/modals/modal.service.ts similarity index 100% rename from src/app/modals/modal.service.ts rename to projects/mdm-ui/src/app/modals/modal.service.ts diff --git a/src/app/modals/new-folder-modal/new-folder-modal.component.html b/projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.html similarity index 100% rename from src/app/modals/new-folder-modal/new-folder-modal.component.html rename to projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.html diff --git a/src/app/modals/new-folder-modal/new-folder-modal.component.scss b/projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.scss similarity index 100% rename from src/app/modals/new-folder-modal/new-folder-modal.component.scss rename to projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.scss diff --git a/src/app/modals/new-folder-modal/new-folder-modal.component.ts b/projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.ts similarity index 100% rename from src/app/modals/new-folder-modal/new-folder-modal.component.ts rename to projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.component.ts diff --git a/src/app/modals/new-folder-modal/new-folder-modal.model.ts b/projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.model.ts similarity index 100% rename from src/app/modals/new-folder-modal/new-folder-modal.model.ts rename to projects/mdm-ui/src/app/modals/new-folder-modal/new-folder-modal.model.ts diff --git a/src/app/modals/register-modal/register-modal.component.html b/projects/mdm-ui/src/app/modals/register-modal/register-modal.component.html similarity index 100% rename from src/app/modals/register-modal/register-modal.component.html rename to projects/mdm-ui/src/app/modals/register-modal/register-modal.component.html diff --git a/src/app/modals/register-modal/register-modal.component.sass b/projects/mdm-ui/src/app/modals/register-modal/register-modal.component.sass similarity index 100% rename from src/app/modals/register-modal/register-modal.component.sass rename to projects/mdm-ui/src/app/modals/register-modal/register-modal.component.sass diff --git a/src/app/modals/register-modal/register-modal.component.spec.ts b/projects/mdm-ui/src/app/modals/register-modal/register-modal.component.spec.ts similarity index 100% rename from src/app/modals/register-modal/register-modal.component.spec.ts rename to projects/mdm-ui/src/app/modals/register-modal/register-modal.component.spec.ts diff --git a/src/app/modals/register-modal/register-modal.component.ts b/projects/mdm-ui/src/app/modals/register-modal/register-modal.component.ts similarity index 100% rename from src/app/modals/register-modal/register-modal.component.ts rename to projects/mdm-ui/src/app/modals/register-modal/register-modal.component.ts diff --git a/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.html b/projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.html similarity index 100% rename from src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.html rename to projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.html diff --git a/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.scss b/projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.scss similarity index 100% rename from src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.scss rename to projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.scss diff --git a/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.ts b/projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.ts similarity index 100% rename from src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.ts rename to projects/mdm-ui/src/app/modals/resolve-merge-conflict-modal/resolve-merge-conflict-modal.component.ts diff --git a/src/app/modals/security-modal/security-modal.component.html b/projects/mdm-ui/src/app/modals/security-modal/security-modal.component.html similarity index 100% rename from src/app/modals/security-modal/security-modal.component.html rename to projects/mdm-ui/src/app/modals/security-modal/security-modal.component.html diff --git a/src/app/modals/security-modal/security-modal.component.scss b/projects/mdm-ui/src/app/modals/security-modal/security-modal.component.scss similarity index 100% rename from src/app/modals/security-modal/security-modal.component.scss rename to projects/mdm-ui/src/app/modals/security-modal/security-modal.component.scss diff --git a/src/app/modals/security-modal/security-modal.component.ts b/projects/mdm-ui/src/app/modals/security-modal/security-modal.component.ts similarity index 100% rename from src/app/modals/security-modal/security-modal.component.ts rename to projects/mdm-ui/src/app/modals/security-modal/security-modal.component.ts diff --git a/src/app/modals/security-modal/security-modal.model.ts b/projects/mdm-ui/src/app/modals/security-modal/security-modal.model.ts similarity index 100% rename from src/app/modals/security-modal/security-modal.model.ts rename to projects/mdm-ui/src/app/modals/security-modal/security-modal.model.ts diff --git a/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.html b/projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.html similarity index 100% rename from src/app/modals/versioning-graph-modal/versioning-graph-modal.component.html rename to projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.html diff --git a/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.scss b/projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.scss similarity index 100% rename from src/app/modals/versioning-graph-modal/versioning-graph-modal.component.scss rename to projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.scss diff --git a/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.ts b/projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.ts similarity index 100% rename from src/app/modals/versioning-graph-modal/versioning-graph-modal.component.ts rename to projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.component.ts diff --git a/src/app/modals/versioning-graph-modal/versioning-graph-modal.model.ts b/projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.model.ts similarity index 100% rename from src/app/modals/versioning-graph-modal/versioning-graph-modal.model.ts rename to projects/mdm-ui/src/app/modals/versioning-graph-modal/versioning-graph-modal.model.ts diff --git a/src/app/model-comparison/model-comparison.component.html b/projects/mdm-ui/src/app/model-comparison/model-comparison.component.html similarity index 100% rename from src/app/model-comparison/model-comparison.component.html rename to projects/mdm-ui/src/app/model-comparison/model-comparison.component.html diff --git a/src/app/model-comparison/model-comparison.component.scss b/projects/mdm-ui/src/app/model-comparison/model-comparison.component.scss similarity index 100% rename from src/app/model-comparison/model-comparison.component.scss rename to projects/mdm-ui/src/app/model-comparison/model-comparison.component.scss diff --git a/src/app/model-comparison/model-comparison.component.ts b/projects/mdm-ui/src/app/model-comparison/model-comparison.component.ts similarity index 100% rename from src/app/model-comparison/model-comparison.component.ts rename to projects/mdm-ui/src/app/model-comparison/model-comparison.component.ts diff --git a/src/app/model-merging/model-merging.component.html b/projects/mdm-ui/src/app/model-merging/model-merging.component.html similarity index 100% rename from src/app/model-merging/model-merging.component.html rename to projects/mdm-ui/src/app/model-merging/model-merging.component.html diff --git a/src/app/model-merging/model-merging.component.scss b/projects/mdm-ui/src/app/model-merging/model-merging.component.scss similarity index 100% rename from src/app/model-merging/model-merging.component.scss rename to projects/mdm-ui/src/app/model-merging/model-merging.component.scss diff --git a/src/app/model-merging/model-merging.component.ts b/projects/mdm-ui/src/app/model-merging/model-merging.component.ts similarity index 100% rename from src/app/model-merging/model-merging.component.ts rename to projects/mdm-ui/src/app/model-merging/model-merging.component.ts diff --git a/src/app/model-selector-tree/model-selector-tree.component.html b/projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.html similarity index 100% rename from src/app/model-selector-tree/model-selector-tree.component.html rename to projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.html diff --git a/src/app/model-selector-tree/model-selector-tree.component.sass b/projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.sass similarity index 100% rename from src/app/model-selector-tree/model-selector-tree.component.sass rename to projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.sass diff --git a/src/app/model-selector-tree/model-selector-tree.component.spec.ts b/projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.spec.ts similarity index 100% rename from src/app/model-selector-tree/model-selector-tree.component.spec.ts rename to projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.spec.ts diff --git a/src/app/model-selector-tree/model-selector-tree.component.ts b/projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.ts similarity index 100% rename from src/app/model-selector-tree/model-selector-tree.component.ts rename to projects/mdm-ui/src/app/model-selector-tree/model-selector-tree.component.ts diff --git a/src/app/model/access.ts b/projects/mdm-ui/src/app/model/access.ts similarity index 100% rename from src/app/model/access.ts rename to projects/mdm-ui/src/app/model/access.ts diff --git a/src/app/model/api-properties.ts b/projects/mdm-ui/src/app/model/api-properties.ts similarity index 100% rename from src/app/model/api-properties.ts rename to projects/mdm-ui/src/app/model/api-properties.ts diff --git a/src/app/model/defaultProfileModel.ts b/projects/mdm-ui/src/app/model/defaultProfileModel.ts similarity index 100% rename from src/app/model/defaultProfileModel.ts rename to projects/mdm-ui/src/app/model/defaultProfileModel.ts diff --git a/src/app/model/editable-forms.ts b/projects/mdm-ui/src/app/model/editable-forms.ts similarity index 100% rename from src/app/model/editable-forms.ts rename to projects/mdm-ui/src/app/model/editable-forms.ts diff --git a/src/app/model/federated-data-model.ts b/projects/mdm-ui/src/app/model/federated-data-model.ts similarity index 100% rename from src/app/model/federated-data-model.ts rename to projects/mdm-ui/src/app/model/federated-data-model.ts diff --git a/src/app/model/folderModel.ts b/projects/mdm-ui/src/app/model/folderModel.ts similarity index 100% rename from src/app/model/folderModel.ts rename to projects/mdm-ui/src/app/model/folderModel.ts diff --git a/src/app/model/model-domain-type.ts b/projects/mdm-ui/src/app/model/model-domain-type.ts similarity index 100% rename from src/app/model/model-domain-type.ts rename to projects/mdm-ui/src/app/model/model-domain-type.ts diff --git a/src/app/model/model-merging-model.ts b/projects/mdm-ui/src/app/model/model-merging-model.ts similarity index 100% rename from src/app/model/model-merging-model.ts rename to projects/mdm-ui/src/app/model/model-merging-model.ts diff --git a/src/app/model/model-types.model.ts b/projects/mdm-ui/src/app/model/model-types.model.ts similarity index 100% rename from src/app/model/model-types.model.ts rename to projects/mdm-ui/src/app/model/model-types.model.ts diff --git a/src/app/model/openid-connect.model.ts b/projects/mdm-ui/src/app/model/openid-connect.model.ts similarity index 100% rename from src/app/model/openid-connect.model.ts rename to projects/mdm-ui/src/app/model/openid-connect.model.ts diff --git a/src/app/model/stepModel.ts b/projects/mdm-ui/src/app/model/stepModel.ts similarity index 100% rename from src/app/model/stepModel.ts rename to projects/mdm-ui/src/app/model/stepModel.ts diff --git a/src/app/model/ui.model.ts b/projects/mdm-ui/src/app/model/ui.model.ts similarity index 100% rename from src/app/model/ui.model.ts rename to projects/mdm-ui/src/app/model/ui.model.ts diff --git a/src/app/model/userDetailsModel.ts b/projects/mdm-ui/src/app/model/userDetailsModel.ts similarity index 100% rename from src/app/model/userDetailsModel.ts rename to projects/mdm-ui/src/app/model/userDetailsModel.ts diff --git a/src/app/models-merging-graph/models-merging-graph.component.html b/projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.html similarity index 100% rename from src/app/models-merging-graph/models-merging-graph.component.html rename to projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.html diff --git a/src/app/models-merging-graph/models-merging-graph.component.scss b/projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.scss similarity index 100% rename from src/app/models-merging-graph/models-merging-graph.component.scss rename to projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.scss diff --git a/src/app/models-merging-graph/models-merging-graph.component.ts b/projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.ts similarity index 100% rename from src/app/models-merging-graph/models-merging-graph.component.ts rename to projects/mdm-ui/src/app/models-merging-graph/models-merging-graph.component.ts diff --git a/src/app/modules/admin-routes/admin-routes.module.ts b/projects/mdm-ui/src/app/modules/admin-routes/admin-routes.module.ts similarity index 100% rename from src/app/modules/admin-routes/admin-routes.module.ts rename to projects/mdm-ui/src/app/modules/admin-routes/admin-routes.module.ts diff --git a/src/app/modules/admin/admin.module.ts b/projects/mdm-ui/src/app/modules/admin/admin.module.ts similarity index 100% rename from src/app/modules/admin/admin.module.ts rename to projects/mdm-ui/src/app/modules/admin/admin.module.ts diff --git a/src/app/modules/catalogue/catalogue.module.ts b/projects/mdm-ui/src/app/modules/catalogue/catalogue.module.ts similarity index 100% rename from src/app/modules/catalogue/catalogue.module.ts rename to projects/mdm-ui/src/app/modules/catalogue/catalogue.module.ts diff --git a/src/app/modules/material/material.module.ts b/projects/mdm-ui/src/app/modules/material/material.module.ts similarity index 100% rename from src/app/modules/material/material.module.ts rename to projects/mdm-ui/src/app/modules/material/material.module.ts diff --git a/src/app/modules/pipes/pipes.module.ts b/projects/mdm-ui/src/app/modules/pipes/pipes.module.ts similarity index 100% rename from src/app/modules/pipes/pipes.module.ts rename to projects/mdm-ui/src/app/modules/pipes/pipes.module.ts diff --git a/src/app/modules/resources/index.ts b/projects/mdm-ui/src/app/modules/resources/index.ts similarity index 100% rename from src/app/modules/resources/index.ts rename to projects/mdm-ui/src/app/modules/resources/index.ts diff --git a/src/app/modules/resources/mdm-resources.models.ts b/projects/mdm-ui/src/app/modules/resources/mdm-resources.models.ts similarity index 100% rename from src/app/modules/resources/mdm-resources.models.ts rename to projects/mdm-ui/src/app/modules/resources/mdm-resources.models.ts diff --git a/src/app/modules/resources/mdm-resources.module.ts b/projects/mdm-ui/src/app/modules/resources/mdm-resources.module.ts similarity index 100% rename from src/app/modules/resources/mdm-resources.module.ts rename to projects/mdm-ui/src/app/modules/resources/mdm-resources.module.ts diff --git a/src/app/modules/resources/mdm-resources.service.ts b/projects/mdm-ui/src/app/modules/resources/mdm-resources.service.ts similarity index 100% rename from src/app/modules/resources/mdm-resources.service.ts rename to projects/mdm-ui/src/app/modules/resources/mdm-resources.service.ts diff --git a/src/app/modules/resources/mdm-rest-handler.service.ts b/projects/mdm-ui/src/app/modules/resources/mdm-rest-handler.service.ts similarity index 100% rename from src/app/modules/resources/mdm-rest-handler.service.ts rename to projects/mdm-ui/src/app/modules/resources/mdm-rest-handler.service.ts diff --git a/src/app/modules/shared/shared.module.ts b/projects/mdm-ui/src/app/modules/shared/shared.module.ts similarity index 100% rename from src/app/modules/shared/shared.module.ts rename to projects/mdm-ui/src/app/modules/shared/shared.module.ts diff --git a/src/app/modules/users-routes/users-routes.module.ts b/projects/mdm-ui/src/app/modules/users-routes/users-routes.module.ts similarity index 100% rename from src/app/modules/users-routes/users-routes.module.ts rename to projects/mdm-ui/src/app/modules/users-routes/users-routes.module.ts diff --git a/src/app/modules/users/users.module.ts b/projects/mdm-ui/src/app/modules/users/users.module.ts similarity index 100% rename from src/app/modules/users/users.module.ts rename to projects/mdm-ui/src/app/modules/users/users.module.ts diff --git a/src/app/navbar/navbar.component.html b/projects/mdm-ui/src/app/navbar/navbar.component.html similarity index 100% rename from src/app/navbar/navbar.component.html rename to projects/mdm-ui/src/app/navbar/navbar.component.html diff --git a/src/app/navbar/navbar.component.scss b/projects/mdm-ui/src/app/navbar/navbar.component.scss similarity index 100% rename from src/app/navbar/navbar.component.scss rename to projects/mdm-ui/src/app/navbar/navbar.component.scss diff --git a/src/app/navbar/navbar.component.ts b/projects/mdm-ui/src/app/navbar/navbar.component.ts similarity index 100% rename from src/app/navbar/navbar.component.ts rename to projects/mdm-ui/src/app/navbar/navbar.component.ts diff --git a/src/app/pipes/byte-array-to-base64.pipe.ts b/projects/mdm-ui/src/app/pipes/byte-array-to-base64.pipe.ts similarity index 100% rename from src/app/pipes/byte-array-to-base64.pipe.ts rename to projects/mdm-ui/src/app/pipes/byte-array-to-base64.pipe.ts diff --git a/src/app/pipes/capitalize.pipe.ts b/projects/mdm-ui/src/app/pipes/capitalize.pipe.ts similarity index 100% rename from src/app/pipes/capitalize.pipe.ts rename to projects/mdm-ui/src/app/pipes/capitalize.pipe.ts diff --git a/src/app/pipes/highlighter.pipe.ts b/projects/mdm-ui/src/app/pipes/highlighter.pipe.ts similarity index 100% rename from src/app/pipes/highlighter.pipe.ts rename to projects/mdm-ui/src/app/pipes/highlighter.pipe.ts diff --git a/src/app/pipes/join-array.pipe.ts b/projects/mdm-ui/src/app/pipes/join-array.pipe.ts similarity index 100% rename from src/app/pipes/join-array.pipe.ts rename to projects/mdm-ui/src/app/pipes/join-array.pipe.ts diff --git a/src/app/pipes/marked.pipe.ts b/projects/mdm-ui/src/app/pipes/marked.pipe.ts similarity index 100% rename from src/app/pipes/marked.pipe.ts rename to projects/mdm-ui/src/app/pipes/marked.pipe.ts diff --git a/src/app/pipes/safe.pipe.ts b/projects/mdm-ui/src/app/pipes/safe.pipe.ts similarity index 100% rename from src/app/pipes/safe.pipe.ts rename to projects/mdm-ui/src/app/pipes/safe.pipe.ts diff --git a/src/app/pipes/stringify.pipe.ts b/projects/mdm-ui/src/app/pipes/stringify.pipe.ts similarity index 100% rename from src/app/pipes/stringify.pipe.ts rename to projects/mdm-ui/src/app/pipes/stringify.pipe.ts diff --git a/src/app/profiles-dashboard/profiles-dashboard.component.html b/projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.html similarity index 100% rename from src/app/profiles-dashboard/profiles-dashboard.component.html rename to projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.html diff --git a/src/app/profiles-dashboard/profiles-dashboard.component.scss b/projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.scss similarity index 100% rename from src/app/profiles-dashboard/profiles-dashboard.component.scss rename to projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.scss diff --git a/src/app/profiles-dashboard/profiles-dashboard.component.ts b/projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.ts similarity index 100% rename from src/app/profiles-dashboard/profiles-dashboard.component.ts rename to projects/mdm-ui/src/app/profiles-dashboard/profiles-dashboard.component.ts diff --git a/src/app/referenceData/reference-data-details/reference-data-details.component.html b/projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.html similarity index 100% rename from src/app/referenceData/reference-data-details/reference-data-details.component.html rename to projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.html diff --git a/src/app/referenceData/reference-data-details/reference-data-details.component.scss b/projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.scss similarity index 100% rename from src/app/referenceData/reference-data-details/reference-data-details.component.scss rename to projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.scss diff --git a/src/app/referenceData/reference-data-details/reference-data-details.component.ts b/projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.ts similarity index 100% rename from src/app/referenceData/reference-data-details/reference-data-details.component.ts rename to projects/mdm-ui/src/app/referenceData/reference-data-details/reference-data-details.component.ts diff --git a/src/app/referenceData/reference-data.component.html b/projects/mdm-ui/src/app/referenceData/reference-data.component.html similarity index 100% rename from src/app/referenceData/reference-data.component.html rename to projects/mdm-ui/src/app/referenceData/reference-data.component.html diff --git a/src/app/referenceData/reference-data.component.scss b/projects/mdm-ui/src/app/referenceData/reference-data.component.scss similarity index 100% rename from src/app/referenceData/reference-data.component.scss rename to projects/mdm-ui/src/app/referenceData/reference-data.component.scss diff --git a/src/app/referenceData/reference-data.component.ts b/projects/mdm-ui/src/app/referenceData/reference-data.component.ts similarity index 100% rename from src/app/referenceData/reference-data.component.ts rename to projects/mdm-ui/src/app/referenceData/reference-data.component.ts diff --git a/src/app/reset-password/reset-password.component.html b/projects/mdm-ui/src/app/reset-password/reset-password.component.html similarity index 100% rename from src/app/reset-password/reset-password.component.html rename to projects/mdm-ui/src/app/reset-password/reset-password.component.html diff --git a/src/app/reset-password/reset-password.component.scss b/projects/mdm-ui/src/app/reset-password/reset-password.component.scss similarity index 100% rename from src/app/reset-password/reset-password.component.scss rename to projects/mdm-ui/src/app/reset-password/reset-password.component.scss diff --git a/src/app/reset-password/reset-password.component.ts b/projects/mdm-ui/src/app/reset-password/reset-password.component.ts similarity index 100% rename from src/app/reset-password/reset-password.component.ts rename to projects/mdm-ui/src/app/reset-password/reset-password.component.ts diff --git a/src/app/search/advanced-search-bar/advanced-search-bar.component.html b/projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.html similarity index 100% rename from src/app/search/advanced-search-bar/advanced-search-bar.component.html rename to projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.html diff --git a/src/app/search/advanced-search-bar/advanced-search-bar.component.sass b/projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.sass similarity index 100% rename from src/app/search/advanced-search-bar/advanced-search-bar.component.sass rename to projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.sass diff --git a/src/app/search/advanced-search-bar/advanced-search-bar.component.ts b/projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.ts similarity index 100% rename from src/app/search/advanced-search-bar/advanced-search-bar.component.ts rename to projects/mdm-ui/src/app/search/advanced-search-bar/advanced-search-bar.component.ts diff --git a/src/app/search/date-from-to/date-from-to.component.html b/projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.html similarity index 100% rename from src/app/search/date-from-to/date-from-to.component.html rename to projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.html diff --git a/src/app/search/date-from-to/date-from-to.component.spec.ts b/projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.spec.ts similarity index 100% rename from src/app/search/date-from-to/date-from-to.component.spec.ts rename to projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.spec.ts diff --git a/src/app/search/date-from-to/date-from-to.component.ts b/projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.ts similarity index 100% rename from src/app/search/date-from-to/date-from-to.component.ts rename to projects/mdm-ui/src/app/search/date-from-to/date-from-to.component.ts diff --git a/src/app/search/date-from-to/format-datepicker.ts b/projects/mdm-ui/src/app/search/date-from-to/format-datepicker.ts similarity index 100% rename from src/app/search/date-from-to/format-datepicker.ts rename to projects/mdm-ui/src/app/search/date-from-to/format-datepicker.ts diff --git a/src/app/search/search.component.html b/projects/mdm-ui/src/app/search/search.component.html similarity index 100% rename from src/app/search/search.component.html rename to projects/mdm-ui/src/app/search/search.component.html diff --git a/src/app/search/search.component.sass b/projects/mdm-ui/src/app/search/search.component.sass similarity index 100% rename from src/app/search/search.component.sass rename to projects/mdm-ui/src/app/search/search.component.sass diff --git a/src/app/search/search.component.ts b/projects/mdm-ui/src/app/search/search.component.ts similarity index 100% rename from src/app/search/search.component.ts rename to projects/mdm-ui/src/app/search/search.component.ts diff --git a/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.html b/projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.html similarity index 100% rename from src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.html rename to projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.html diff --git a/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.scss b/projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.scss similarity index 100% rename from src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.scss rename to projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.scss diff --git a/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.spec.ts b/projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.spec.ts similarity index 100% rename from src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.spec.ts rename to projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.spec.ts diff --git a/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.ts b/projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.ts similarity index 100% rename from src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.ts rename to projects/mdm-ui/src/app/security/open-id-connect-authorize/open-id-connect-authorize.component.ts diff --git a/src/app/services/auth.interceptor.ts b/projects/mdm-ui/src/app/services/auth.interceptor.ts similarity index 100% rename from src/app/services/auth.interceptor.ts rename to projects/mdm-ui/src/app/services/auth.interceptor.ts diff --git a/src/app/services/broadcast.model.ts b/projects/mdm-ui/src/app/services/broadcast.model.ts similarity index 100% rename from src/app/services/broadcast.model.ts rename to projects/mdm-ui/src/app/services/broadcast.model.ts diff --git a/src/app/services/broadcast.service.ts b/projects/mdm-ui/src/app/services/broadcast.service.ts similarity index 100% rename from src/app/services/broadcast.service.ts rename to projects/mdm-ui/src/app/services/broadcast.service.ts diff --git a/src/app/services/content-search.handler.service.ts b/projects/mdm-ui/src/app/services/content-search.handler.service.ts similarity index 100% rename from src/app/services/content-search.handler.service.ts rename to projects/mdm-ui/src/app/services/content-search.handler.service.ts diff --git a/src/app/services/data-element-bulk-edit-dialog.service.spec.ts b/projects/mdm-ui/src/app/services/data-element-bulk-edit-dialog.service.spec.ts similarity index 100% rename from src/app/services/data-element-bulk-edit-dialog.service.spec.ts rename to projects/mdm-ui/src/app/services/data-element-bulk-edit-dialog.service.spec.ts diff --git a/src/app/services/data-element-bulk-edit-dialog.service.ts b/projects/mdm-ui/src/app/services/data-element-bulk-edit-dialog.service.ts similarity index 100% rename from src/app/services/data-element-bulk-edit-dialog.service.ts rename to projects/mdm-ui/src/app/services/data-element-bulk-edit-dialog.service.ts diff --git a/src/app/services/editing.service.spec.ts b/projects/mdm-ui/src/app/services/editing.service.spec.ts similarity index 100% rename from src/app/services/editing.service.spec.ts rename to projects/mdm-ui/src/app/services/editing.service.spec.ts diff --git a/src/app/services/editing.service.ts b/projects/mdm-ui/src/app/services/editing.service.ts similarity index 100% rename from src/app/services/editing.service.ts rename to projects/mdm-ui/src/app/services/editing.service.ts diff --git a/src/app/services/element-selector-dialogue.service.spec.ts b/projects/mdm-ui/src/app/services/element-selector-dialogue.service.spec.ts similarity index 100% rename from src/app/services/element-selector-dialogue.service.spec.ts rename to projects/mdm-ui/src/app/services/element-selector-dialogue.service.spec.ts diff --git a/src/app/services/element-selector-dialogue.service.ts b/projects/mdm-ui/src/app/services/element-selector-dialogue.service.ts similarity index 100% rename from src/app/services/element-selector-dialogue.service.ts rename to projects/mdm-ui/src/app/services/element-selector-dialogue.service.ts diff --git a/src/app/services/element-types.service.spec.ts b/projects/mdm-ui/src/app/services/element-types.service.spec.ts similarity index 100% rename from src/app/services/element-types.service.spec.ts rename to projects/mdm-ui/src/app/services/element-types.service.spec.ts diff --git a/src/app/services/element-types.service.ts b/projects/mdm-ui/src/app/services/element-types.service.ts similarity index 100% rename from src/app/services/element-types.service.ts rename to projects/mdm-ui/src/app/services/element-types.service.ts diff --git a/src/app/services/environment.service.spec.ts b/projects/mdm-ui/src/app/services/environment.service.spec.ts similarity index 100% rename from src/app/services/environment.service.spec.ts rename to projects/mdm-ui/src/app/services/environment.service.spec.ts diff --git a/src/app/services/environment.service.ts b/projects/mdm-ui/src/app/services/environment.service.ts similarity index 100% rename from src/app/services/environment.service.ts rename to projects/mdm-ui/src/app/services/environment.service.ts diff --git a/src/app/services/features.service.spec.ts b/projects/mdm-ui/src/app/services/features.service.spec.ts similarity index 100% rename from src/app/services/features.service.spec.ts rename to projects/mdm-ui/src/app/services/features.service.spec.ts diff --git a/src/app/services/features.service.ts b/projects/mdm-ui/src/app/services/features.service.ts similarity index 100% rename from src/app/services/features.service.ts rename to projects/mdm-ui/src/app/services/features.service.ts diff --git a/src/app/services/grid.service.ts b/projects/mdm-ui/src/app/services/grid.service.ts similarity index 100% rename from src/app/services/grid.service.ts rename to projects/mdm-ui/src/app/services/grid.service.ts diff --git a/src/app/services/handlers/export-handler.service.spec.ts b/projects/mdm-ui/src/app/services/handlers/export-handler.service.spec.ts similarity index 100% rename from src/app/services/handlers/export-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/handlers/export-handler.service.spec.ts diff --git a/src/app/services/handlers/export-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/export-handler.service.ts similarity index 100% rename from src/app/services/handlers/export-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/export-handler.service.ts diff --git a/src/app/services/handlers/favourite-handler.service.spec.ts b/projects/mdm-ui/src/app/services/handlers/favourite-handler.service.spec.ts similarity index 100% rename from src/app/services/handlers/favourite-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/handlers/favourite-handler.service.spec.ts diff --git a/src/app/services/handlers/favourite-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/favourite-handler.service.ts similarity index 100% rename from src/app/services/handlers/favourite-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/favourite-handler.service.ts diff --git a/src/app/services/handlers/folder-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/folder-handler.service.ts similarity index 100% rename from src/app/services/handlers/folder-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/folder-handler.service.ts diff --git a/src/app/services/handlers/security-handler.model.ts b/projects/mdm-ui/src/app/services/handlers/security-handler.model.ts similarity index 100% rename from src/app/services/handlers/security-handler.model.ts rename to projects/mdm-ui/src/app/services/handlers/security-handler.model.ts diff --git a/src/app/services/handlers/security-handler.service.spec.ts b/projects/mdm-ui/src/app/services/handlers/security-handler.service.spec.ts similarity index 100% rename from src/app/services/handlers/security-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/handlers/security-handler.service.spec.ts diff --git a/src/app/services/handlers/security-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/security-handler.service.ts similarity index 100% rename from src/app/services/handlers/security-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/security-handler.service.ts diff --git a/src/app/services/handlers/semantic-link-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/semantic-link-handler.service.ts similarity index 100% rename from src/app/services/handlers/semantic-link-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/semantic-link-handler.service.ts diff --git a/src/app/services/handlers/state-handler.service.spec.ts b/projects/mdm-ui/src/app/services/handlers/state-handler.service.spec.ts similarity index 100% rename from src/app/services/handlers/state-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/handlers/state-handler.service.spec.ts diff --git a/src/app/services/handlers/state-handler.service.ts b/projects/mdm-ui/src/app/services/handlers/state-handler.service.ts similarity index 100% rename from src/app/services/handlers/state-handler.service.ts rename to projects/mdm-ui/src/app/services/handlers/state-handler.service.ts diff --git a/src/app/services/helpDialogue.service.ts b/projects/mdm-ui/src/app/services/helpDialogue.service.ts similarity index 100% rename from src/app/services/helpDialogue.service.ts rename to projects/mdm-ui/src/app/services/helpDialogue.service.ts diff --git a/src/app/services/highlight.service.ts b/projects/mdm-ui/src/app/services/highlight.service.ts similarity index 100% rename from src/app/services/highlight.service.ts rename to projects/mdm-ui/src/app/services/highlight.service.ts diff --git a/src/app/services/http-request-progress.interceptor.ts b/projects/mdm-ui/src/app/services/http-request-progress.interceptor.ts similarity index 100% rename from src/app/services/http-request-progress.interceptor.ts rename to projects/mdm-ui/src/app/services/http-request-progress.interceptor.ts diff --git a/src/app/services/index.ts b/projects/mdm-ui/src/app/services/index.ts similarity index 100% rename from src/app/services/index.ts rename to projects/mdm-ui/src/app/services/index.ts diff --git a/src/app/services/loading.service.spec.ts b/projects/mdm-ui/src/app/services/loading.service.spec.ts similarity index 100% rename from src/app/services/loading.service.spec.ts rename to projects/mdm-ui/src/app/services/loading.service.spec.ts diff --git a/src/app/services/loading.service.ts b/projects/mdm-ui/src/app/services/loading.service.ts similarity index 100% rename from src/app/services/loading.service.ts rename to projects/mdm-ui/src/app/services/loading.service.ts diff --git a/src/app/services/message.service.spec.ts b/projects/mdm-ui/src/app/services/message.service.spec.ts similarity index 100% rename from src/app/services/message.service.spec.ts rename to projects/mdm-ui/src/app/services/message.service.spec.ts diff --git a/src/app/services/message.service.ts b/projects/mdm-ui/src/app/services/message.service.ts similarity index 100% rename from src/app/services/message.service.ts rename to projects/mdm-ui/src/app/services/message.service.ts diff --git a/src/app/services/model-tree.service.ts b/projects/mdm-ui/src/app/services/model-tree.service.ts similarity index 100% rename from src/app/services/model-tree.service.ts rename to projects/mdm-ui/src/app/services/model-tree.service.ts diff --git a/src/app/services/shared.service.ts b/projects/mdm-ui/src/app/services/shared.service.ts similarity index 100% rename from src/app/services/shared.service.ts rename to projects/mdm-ui/src/app/services/shared.service.ts diff --git a/src/app/services/theming.service.spec.ts b/projects/mdm-ui/src/app/services/theming.service.spec.ts similarity index 100% rename from src/app/services/theming.service.spec.ts rename to projects/mdm-ui/src/app/services/theming.service.spec.ts diff --git a/src/app/services/theming.service.ts b/projects/mdm-ui/src/app/services/theming.service.ts similarity index 100% rename from src/app/services/theming.service.ts rename to projects/mdm-ui/src/app/services/theming.service.ts diff --git a/src/app/services/utility/message-handler.service.spec.ts b/projects/mdm-ui/src/app/services/utility/message-handler.service.spec.ts similarity index 100% rename from src/app/services/utility/message-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/utility/message-handler.service.spec.ts diff --git a/src/app/services/utility/message-handler.service.ts b/projects/mdm-ui/src/app/services/utility/message-handler.service.ts similarity index 100% rename from src/app/services/utility/message-handler.service.ts rename to projects/mdm-ui/src/app/services/utility/message-handler.service.ts diff --git a/src/app/services/utility/user-settings-handler.service.spec.ts b/projects/mdm-ui/src/app/services/utility/user-settings-handler.service.spec.ts similarity index 100% rename from src/app/services/utility/user-settings-handler.service.spec.ts rename to projects/mdm-ui/src/app/services/utility/user-settings-handler.service.spec.ts diff --git a/src/app/services/utility/user-settings-handler.service.ts b/projects/mdm-ui/src/app/services/utility/user-settings-handler.service.ts similarity index 100% rename from src/app/services/utility/user-settings-handler.service.ts rename to projects/mdm-ui/src/app/services/utility/user-settings-handler.service.ts diff --git a/src/app/services/validator.service.spec.ts b/projects/mdm-ui/src/app/services/validator.service.spec.ts similarity index 100% rename from src/app/services/validator.service.spec.ts rename to projects/mdm-ui/src/app/services/validator.service.spec.ts diff --git a/src/app/services/validator.service.ts b/projects/mdm-ui/src/app/services/validator.service.ts similarity index 100% rename from src/app/services/validator.service.ts rename to projects/mdm-ui/src/app/services/validator.service.ts diff --git a/src/app/shared/alert/alert.component.html b/projects/mdm-ui/src/app/shared/alert/alert.component.html similarity index 100% rename from src/app/shared/alert/alert.component.html rename to projects/mdm-ui/src/app/shared/alert/alert.component.html diff --git a/src/app/shared/alert/alert.component.scss b/projects/mdm-ui/src/app/shared/alert/alert.component.scss similarity index 100% rename from src/app/shared/alert/alert.component.scss rename to projects/mdm-ui/src/app/shared/alert/alert.component.scss diff --git a/src/app/shared/alert/alert.component.spec.ts b/projects/mdm-ui/src/app/shared/alert/alert.component.spec.ts similarity index 100% rename from src/app/shared/alert/alert.component.spec.ts rename to projects/mdm-ui/src/app/shared/alert/alert.component.spec.ts diff --git a/src/app/shared/alert/alert.component.ts b/projects/mdm-ui/src/app/shared/alert/alert.component.ts similarity index 100% rename from src/app/shared/alert/alert.component.ts rename to projects/mdm-ui/src/app/shared/alert/alert.component.ts diff --git a/src/app/shared/alert/alert.model.ts b/projects/mdm-ui/src/app/shared/alert/alert.model.ts similarity index 100% rename from src/app/shared/alert/alert.model.ts rename to projects/mdm-ui/src/app/shared/alert/alert.model.ts diff --git a/src/app/shared/annotation-list/annotation-list.component.html b/projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.html similarity index 100% rename from src/app/shared/annotation-list/annotation-list.component.html rename to projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.html diff --git a/src/app/shared/annotation-list/annotation-list.component.sass b/projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.sass similarity index 100% rename from src/app/shared/annotation-list/annotation-list.component.sass rename to projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.sass diff --git a/src/app/shared/annotation-list/annotation-list.component.ts b/projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.ts similarity index 100% rename from src/app/shared/annotation-list/annotation-list.component.ts rename to projects/mdm-ui/src/app/shared/annotation-list/annotation-list.component.ts diff --git a/src/app/shared/attachment-list/attachment-list.component.html b/projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.html similarity index 100% rename from src/app/shared/attachment-list/attachment-list.component.html rename to projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.html diff --git a/src/app/shared/attachment-list/attachment-list.component.sass b/projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.sass similarity index 100% rename from src/app/shared/attachment-list/attachment-list.component.sass rename to projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.sass diff --git a/src/app/shared/attachment-list/attachment-list.component.ts b/projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.ts similarity index 100% rename from src/app/shared/attachment-list/attachment-list.component.ts rename to projects/mdm-ui/src/app/shared/attachment-list/attachment-list.component.ts diff --git a/src/app/shared/base/base.component.html b/projects/mdm-ui/src/app/shared/base/base.component.html similarity index 100% rename from src/app/shared/base/base.component.html rename to projects/mdm-ui/src/app/shared/base/base.component.html diff --git a/src/app/shared/base/base.component.scss b/projects/mdm-ui/src/app/shared/base/base.component.scss similarity index 100% rename from src/app/shared/base/base.component.scss rename to projects/mdm-ui/src/app/shared/base/base.component.scss diff --git a/src/app/shared/base/base.component.ts b/projects/mdm-ui/src/app/shared/base/base.component.ts similarity index 100% rename from src/app/shared/base/base.component.ts rename to projects/mdm-ui/src/app/shared/base/base.component.ts diff --git a/src/app/shared/branch-selector/branch-selector.component.html b/projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.html similarity index 100% rename from src/app/shared/branch-selector/branch-selector.component.html rename to projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.html diff --git a/src/app/shared/branch-selector/branch-selector.component.scss b/projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.scss similarity index 100% rename from src/app/shared/branch-selector/branch-selector.component.scss rename to projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.scss diff --git a/src/app/shared/branch-selector/branch-selector.component.spec.ts b/projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.spec.ts similarity index 100% rename from src/app/shared/branch-selector/branch-selector.component.spec.ts rename to projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.spec.ts diff --git a/src/app/shared/branch-selector/branch-selector.component.ts b/projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.ts similarity index 100% rename from src/app/shared/branch-selector/branch-selector.component.ts rename to projects/mdm-ui/src/app/shared/branch-selector/branch-selector.component.ts diff --git a/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.html b/projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.html similarity index 100% rename from src/app/shared/catalogue-item-properties/catalogue-item-properties.component.html rename to projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.html diff --git a/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.scss b/projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.scss similarity index 100% rename from src/app/shared/catalogue-item-properties/catalogue-item-properties.component.scss rename to projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.scss diff --git a/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.spec.ts b/projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.spec.ts similarity index 100% rename from src/app/shared/catalogue-item-properties/catalogue-item-properties.component.spec.ts rename to projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.spec.ts diff --git a/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.ts b/projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.ts similarity index 100% rename from src/app/shared/catalogue-item-properties/catalogue-item-properties.component.ts rename to projects/mdm-ui/src/app/shared/catalogue-item-properties/catalogue-item-properties.component.ts diff --git a/src/app/shared/classified-elements-list/classified-elements-list.component.html b/projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.html similarity index 100% rename from src/app/shared/classified-elements-list/classified-elements-list.component.html rename to projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.html diff --git a/src/app/shared/classified-elements-list/classified-elements-list.component.sass b/projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.sass similarity index 100% rename from src/app/shared/classified-elements-list/classified-elements-list.component.sass rename to projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.sass diff --git a/src/app/shared/classified-elements-list/classified-elements-list.component.spec.ts b/projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.spec.ts similarity index 100% rename from src/app/shared/classified-elements-list/classified-elements-list.component.spec.ts rename to projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.spec.ts diff --git a/src/app/shared/classified-elements-list/classified-elements-list.component.ts b/projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.ts similarity index 100% rename from src/app/shared/classified-elements-list/classified-elements-list.component.ts rename to projects/mdm-ui/src/app/shared/classified-elements-list/classified-elements-list.component.ts diff --git a/src/app/shared/code-set-terms-table/code-set-terms-table.component.html b/projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.html similarity index 100% rename from src/app/shared/code-set-terms-table/code-set-terms-table.component.html rename to projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.html diff --git a/src/app/shared/code-set-terms-table/code-set-terms-table.component.scss b/projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.scss similarity index 100% rename from src/app/shared/code-set-terms-table/code-set-terms-table.component.scss rename to projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.scss diff --git a/src/app/shared/code-set-terms-table/code-set-terms-table.component.spec.ts b/projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.spec.ts similarity index 100% rename from src/app/shared/code-set-terms-table/code-set-terms-table.component.spec.ts rename to projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.spec.ts diff --git a/src/app/shared/code-set-terms-table/code-set-terms-table.component.ts b/projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.ts similarity index 100% rename from src/app/shared/code-set-terms-table/code-set-terms-table.component.ts rename to projects/mdm-ui/src/app/shared/code-set-terms-table/code-set-terms-table.component.ts diff --git a/src/app/shared/data-classes-list/data-classes-list.component.html b/projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.html similarity index 100% rename from src/app/shared/data-classes-list/data-classes-list.component.html rename to projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.html diff --git a/src/app/shared/data-classes-list/data-classes-list.component.scss b/projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.scss similarity index 100% rename from src/app/shared/data-classes-list/data-classes-list.component.scss rename to projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.scss diff --git a/src/app/shared/data-classes-list/data-classes-list.component.spec.ts b/projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.spec.ts similarity index 100% rename from src/app/shared/data-classes-list/data-classes-list.component.spec.ts rename to projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.spec.ts diff --git a/src/app/shared/data-classes-list/data-classes-list.component.ts b/projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.ts similarity index 100% rename from src/app/shared/data-classes-list/data-classes-list.component.ts rename to projects/mdm-ui/src/app/shared/data-classes-list/data-classes-list.component.ts diff --git a/src/app/shared/data-elements-list/data-elements-list.component.html b/projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.html similarity index 100% rename from src/app/shared/data-elements-list/data-elements-list.component.html rename to projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.html diff --git a/src/app/shared/data-elements-list/data-elements-list.component.scss b/projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.scss similarity index 100% rename from src/app/shared/data-elements-list/data-elements-list.component.scss rename to projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.scss diff --git a/src/app/shared/data-elements-list/data-elements-list.component.spec.ts b/projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.spec.ts similarity index 100% rename from src/app/shared/data-elements-list/data-elements-list.component.spec.ts rename to projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.spec.ts diff --git a/src/app/shared/data-elements-list/data-elements-list.component.ts b/projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.ts similarity index 100% rename from src/app/shared/data-elements-list/data-elements-list.component.ts rename to projects/mdm-ui/src/app/shared/data-elements-list/data-elements-list.component.ts diff --git a/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.html b/projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.html similarity index 100% rename from src/app/shared/data-type-list-buttons/data-type-list-buttons.component.html rename to projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.html diff --git a/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.sass b/projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.sass similarity index 100% rename from src/app/shared/data-type-list-buttons/data-type-list-buttons.component.sass rename to projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.sass diff --git a/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.ts b/projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.ts similarity index 100% rename from src/app/shared/data-type-list-buttons/data-type-list-buttons.component.ts rename to projects/mdm-ui/src/app/shared/data-type-list-buttons/data-type-list-buttons.component.ts diff --git a/src/app/shared/default-profile/default-profile.component.html b/projects/mdm-ui/src/app/shared/default-profile/default-profile.component.html similarity index 100% rename from src/app/shared/default-profile/default-profile.component.html rename to projects/mdm-ui/src/app/shared/default-profile/default-profile.component.html diff --git a/src/app/shared/default-profile/default-profile.component.ts b/projects/mdm-ui/src/app/shared/default-profile/default-profile.component.ts similarity index 100% rename from src/app/shared/default-profile/default-profile.component.ts rename to projects/mdm-ui/src/app/shared/default-profile/default-profile.component.ts diff --git a/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.html b/projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.html similarity index 100% rename from src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.html rename to projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.html diff --git a/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.sass b/projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.sass similarity index 100% rename from src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.sass rename to projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.sass diff --git a/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.ts b/projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.ts similarity index 100% rename from src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.ts rename to projects/mdm-ui/src/app/shared/element-child-data-classes-list/element-child-data-classes-list.component.ts diff --git a/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.html b/projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.html similarity index 100% rename from src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.html rename to projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.html diff --git a/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.scss b/projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.scss similarity index 100% rename from src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.scss rename to projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.scss diff --git a/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.ts b/projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.ts similarity index 100% rename from src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.ts rename to projects/mdm-ui/src/app/shared/element-child-data-elements-list/element-child-data-elements-list.component.ts diff --git a/src/app/shared/element-data-type/element-data-type.component.html b/projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.html similarity index 100% rename from src/app/shared/element-data-type/element-data-type.component.html rename to projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.html diff --git a/src/app/shared/element-data-type/element-data-type.component.sass b/projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.sass similarity index 100% rename from src/app/shared/element-data-type/element-data-type.component.sass rename to projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.sass diff --git a/src/app/shared/element-data-type/element-data-type.component.ts b/projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.ts similarity index 100% rename from src/app/shared/element-data-type/element-data-type.component.ts rename to projects/mdm-ui/src/app/shared/element-data-type/element-data-type.component.ts diff --git a/src/app/shared/element-icon/element-icon.component.html b/projects/mdm-ui/src/app/shared/element-icon/element-icon.component.html similarity index 100% rename from src/app/shared/element-icon/element-icon.component.html rename to projects/mdm-ui/src/app/shared/element-icon/element-icon.component.html diff --git a/src/app/shared/element-icon/element-icon.component.sass b/projects/mdm-ui/src/app/shared/element-icon/element-icon.component.sass similarity index 100% rename from src/app/shared/element-icon/element-icon.component.sass rename to projects/mdm-ui/src/app/shared/element-icon/element-icon.component.sass diff --git a/src/app/shared/element-icon/element-icon.component.ts b/projects/mdm-ui/src/app/shared/element-icon/element-icon.component.ts similarity index 100% rename from src/app/shared/element-icon/element-icon.component.ts rename to projects/mdm-ui/src/app/shared/element-icon/element-icon.component.ts diff --git a/src/app/shared/element-link-list/element-link-list.component.html b/projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.html similarity index 100% rename from src/app/shared/element-link-list/element-link-list.component.html rename to projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.html diff --git a/src/app/shared/element-link-list/element-link-list.component.sass b/projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.sass similarity index 100% rename from src/app/shared/element-link-list/element-link-list.component.sass rename to projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.sass diff --git a/src/app/shared/element-link-list/element-link-list.component.ts b/projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.ts similarity index 100% rename from src/app/shared/element-link-list/element-link-list.component.ts rename to projects/mdm-ui/src/app/shared/element-link-list/element-link-list.component.ts diff --git a/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.html b/projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.html similarity index 100% rename from src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.html rename to projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.html diff --git a/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.sass b/projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.sass similarity index 100% rename from src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.sass rename to projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.sass diff --git a/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.ts b/projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.ts similarity index 100% rename from src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.ts rename to projects/mdm-ui/src/app/shared/element-owned-data-type-list/element-owned-data-type-list.component.ts diff --git a/src/app/shared/elements-table/elements-table.component.html b/projects/mdm-ui/src/app/shared/elements-table/elements-table.component.html similarity index 100% rename from src/app/shared/elements-table/elements-table.component.html rename to projects/mdm-ui/src/app/shared/elements-table/elements-table.component.html diff --git a/src/app/shared/elements-table/elements-table.component.sass b/projects/mdm-ui/src/app/shared/elements-table/elements-table.component.sass similarity index 100% rename from src/app/shared/elements-table/elements-table.component.sass rename to projects/mdm-ui/src/app/shared/elements-table/elements-table.component.sass diff --git a/src/app/shared/elements-table/elements-table.component.spec.ts b/projects/mdm-ui/src/app/shared/elements-table/elements-table.component.spec.ts similarity index 100% rename from src/app/shared/elements-table/elements-table.component.spec.ts rename to projects/mdm-ui/src/app/shared/elements-table/elements-table.component.spec.ts diff --git a/src/app/shared/elements-table/elements-table.component.ts b/projects/mdm-ui/src/app/shared/elements-table/elements-table.component.ts similarity index 100% rename from src/app/shared/elements-table/elements-table.component.ts rename to projects/mdm-ui/src/app/shared/elements-table/elements-table.component.ts diff --git a/src/app/shared/enumeration-compare/enumeration-compare.component.html b/projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.html similarity index 100% rename from src/app/shared/enumeration-compare/enumeration-compare.component.html rename to projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.html diff --git a/src/app/shared/enumeration-compare/enumeration-compare.component.scss b/projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.scss similarity index 100% rename from src/app/shared/enumeration-compare/enumeration-compare.component.scss rename to projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.scss diff --git a/src/app/shared/enumeration-compare/enumeration-compare.component.ts b/projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.ts similarity index 100% rename from src/app/shared/enumeration-compare/enumeration-compare.component.ts rename to projects/mdm-ui/src/app/shared/enumeration-compare/enumeration-compare.component.ts diff --git a/src/app/shared/favorite-button/favorite-button.component.html b/projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.html similarity index 100% rename from src/app/shared/favorite-button/favorite-button.component.html rename to projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.html diff --git a/src/app/shared/favorite-button/favorite-button.component.scss b/projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.scss similarity index 100% rename from src/app/shared/favorite-button/favorite-button.component.scss rename to projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.scss diff --git a/src/app/shared/favorite-button/favorite-button.component.spec.ts b/projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.spec.ts similarity index 100% rename from src/app/shared/favorite-button/favorite-button.component.spec.ts rename to projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.spec.ts diff --git a/src/app/shared/favorite-button/favorite-button.component.ts b/projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.ts similarity index 100% rename from src/app/shared/favorite-button/favorite-button.component.ts rename to projects/mdm-ui/src/app/shared/favorite-button/favorite-button.component.ts diff --git a/src/app/shared/favourites/favourites.component.html b/projects/mdm-ui/src/app/shared/favourites/favourites.component.html similarity index 100% rename from src/app/shared/favourites/favourites.component.html rename to projects/mdm-ui/src/app/shared/favourites/favourites.component.html diff --git a/src/app/shared/favourites/favourites.component.sass b/projects/mdm-ui/src/app/shared/favourites/favourites.component.sass similarity index 100% rename from src/app/shared/favourites/favourites.component.sass rename to projects/mdm-ui/src/app/shared/favourites/favourites.component.sass diff --git a/src/app/shared/favourites/favourites.component.ts b/projects/mdm-ui/src/app/shared/favourites/favourites.component.ts similarity index 100% rename from src/app/shared/favourites/favourites.component.ts rename to projects/mdm-ui/src/app/shared/favourites/favourites.component.ts diff --git a/src/app/shared/footer/footer.component.html b/projects/mdm-ui/src/app/shared/footer/footer.component.html similarity index 100% rename from src/app/shared/footer/footer.component.html rename to projects/mdm-ui/src/app/shared/footer/footer.component.html diff --git a/src/app/shared/footer/footer.component.scss b/projects/mdm-ui/src/app/shared/footer/footer.component.scss similarity index 100% rename from src/app/shared/footer/footer.component.scss rename to projects/mdm-ui/src/app/shared/footer/footer.component.scss diff --git a/src/app/shared/footer/footer.component.spec.ts b/projects/mdm-ui/src/app/shared/footer/footer.component.spec.ts similarity index 100% rename from src/app/shared/footer/footer.component.spec.ts rename to projects/mdm-ui/src/app/shared/footer/footer.component.spec.ts diff --git a/src/app/shared/footer/footer.component.ts b/projects/mdm-ui/src/app/shared/footer/footer.component.ts similarity index 100% rename from src/app/shared/footer/footer.component.ts rename to projects/mdm-ui/src/app/shared/footer/footer.component.ts diff --git a/src/app/shared/history/history.component.html b/projects/mdm-ui/src/app/shared/history/history.component.html similarity index 100% rename from src/app/shared/history/history.component.html rename to projects/mdm-ui/src/app/shared/history/history.component.html diff --git a/src/app/shared/history/history.component.scss b/projects/mdm-ui/src/app/shared/history/history.component.scss similarity index 100% rename from src/app/shared/history/history.component.scss rename to projects/mdm-ui/src/app/shared/history/history.component.scss diff --git a/src/app/shared/history/history.component.spec.ts b/projects/mdm-ui/src/app/shared/history/history.component.spec.ts similarity index 100% rename from src/app/shared/history/history.component.spec.ts rename to projects/mdm-ui/src/app/shared/history/history.component.spec.ts diff --git a/src/app/shared/history/history.component.ts b/projects/mdm-ui/src/app/shared/history/history.component.ts similarity index 100% rename from src/app/shared/history/history.component.ts rename to projects/mdm-ui/src/app/shared/history/history.component.ts diff --git a/src/app/shared/img-croppie/img-croppie.component.html b/projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.html similarity index 100% rename from src/app/shared/img-croppie/img-croppie.component.html rename to projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.html diff --git a/src/app/shared/img-croppie/img-croppie.component.scss b/projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.scss similarity index 100% rename from src/app/shared/img-croppie/img-croppie.component.scss rename to projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.scss diff --git a/src/app/shared/img-croppie/img-croppie.component.ts b/projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.ts similarity index 100% rename from src/app/shared/img-croppie/img-croppie.component.ts rename to projects/mdm-ui/src/app/shared/img-croppie/img-croppie.component.ts diff --git a/src/app/shared/inline-text-edit/inline-text-edit.component.html b/projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.html similarity index 100% rename from src/app/shared/inline-text-edit/inline-text-edit.component.html rename to projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.html diff --git a/src/app/shared/inline-text-edit/inline-text-edit.component.scss b/projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.scss similarity index 100% rename from src/app/shared/inline-text-edit/inline-text-edit.component.scss rename to projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.scss diff --git a/src/app/shared/inline-text-edit/inline-text-edit.component.spec.ts b/projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.spec.ts similarity index 100% rename from src/app/shared/inline-text-edit/inline-text-edit.component.spec.ts rename to projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.spec.ts diff --git a/src/app/shared/inline-text-edit/inline-text-edit.component.ts b/projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.ts similarity index 100% rename from src/app/shared/inline-text-edit/inline-text-edit.component.ts rename to projects/mdm-ui/src/app/shared/inline-text-edit/inline-text-edit.component.ts diff --git a/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.html b/projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.html similarity index 100% rename from src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.html rename to projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.html diff --git a/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.scss b/projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.scss similarity index 100% rename from src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.scss rename to projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.scss diff --git a/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.spec.ts b/projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.spec.ts similarity index 100% rename from src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.spec.ts rename to projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.spec.ts diff --git a/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.ts b/projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.ts similarity index 100% rename from src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.ts rename to projects/mdm-ui/src/app/shared/mc-data-set-metadata/mc-data-set-metadata.component.ts diff --git a/src/app/shared/mdm-paginator/mdm-paginator.ts b/projects/mdm-ui/src/app/shared/mdm-paginator/mdm-paginator.ts similarity index 100% rename from src/app/shared/mdm-paginator/mdm-paginator.ts rename to projects/mdm-ui/src/app/shared/mdm-paginator/mdm-paginator.ts diff --git a/src/app/shared/metadata-compare/metadata-compare.component.html b/projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.html similarity index 100% rename from src/app/shared/metadata-compare/metadata-compare.component.html rename to projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.html diff --git a/src/app/shared/metadata-compare/metadata-compare.component.scss b/projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.scss similarity index 100% rename from src/app/shared/metadata-compare/metadata-compare.component.scss rename to projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.scss diff --git a/src/app/shared/metadata-compare/metadata-compare.component.ts b/projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.ts similarity index 100% rename from src/app/shared/metadata-compare/metadata-compare.component.ts rename to projects/mdm-ui/src/app/shared/metadata-compare/metadata-compare.component.ts diff --git a/src/app/shared/model-icon/model-icon.component.html b/projects/mdm-ui/src/app/shared/model-icon/model-icon.component.html similarity index 100% rename from src/app/shared/model-icon/model-icon.component.html rename to projects/mdm-ui/src/app/shared/model-icon/model-icon.component.html diff --git a/src/app/shared/model-icon/model-icon.component.scss b/projects/mdm-ui/src/app/shared/model-icon/model-icon.component.scss similarity index 100% rename from src/app/shared/model-icon/model-icon.component.scss rename to projects/mdm-ui/src/app/shared/model-icon/model-icon.component.scss diff --git a/src/app/shared/model-icon/model-icon.component.ts b/projects/mdm-ui/src/app/shared/model-icon/model-icon.component.ts similarity index 100% rename from src/app/shared/model-icon/model-icon.component.ts rename to projects/mdm-ui/src/app/shared/model-icon/model-icon.component.ts diff --git a/src/app/shared/models/models.component.html b/projects/mdm-ui/src/app/shared/models/models.component.html similarity index 100% rename from src/app/shared/models/models.component.html rename to projects/mdm-ui/src/app/shared/models/models.component.html diff --git a/src/app/shared/models/models.component.scss b/projects/mdm-ui/src/app/shared/models/models.component.scss similarity index 100% rename from src/app/shared/models/models.component.scss rename to projects/mdm-ui/src/app/shared/models/models.component.scss diff --git a/src/app/shared/models/models.component.ts b/projects/mdm-ui/src/app/shared/models/models.component.ts similarity index 100% rename from src/app/shared/models/models.component.ts rename to projects/mdm-ui/src/app/shared/models/models.component.ts diff --git a/src/app/shared/models/models.model.ts b/projects/mdm-ui/src/app/shared/models/models.model.ts similarity index 100% rename from src/app/shared/models/models.model.ts rename to projects/mdm-ui/src/app/shared/models/models.model.ts diff --git a/src/app/shared/more-description/more-description.component.html b/projects/mdm-ui/src/app/shared/more-description/more-description.component.html similarity index 100% rename from src/app/shared/more-description/more-description.component.html rename to projects/mdm-ui/src/app/shared/more-description/more-description.component.html diff --git a/src/app/shared/more-description/more-description.component.sass b/projects/mdm-ui/src/app/shared/more-description/more-description.component.sass similarity index 100% rename from src/app/shared/more-description/more-description.component.sass rename to projects/mdm-ui/src/app/shared/more-description/more-description.component.sass diff --git a/src/app/shared/more-description/more-description.component.ts b/projects/mdm-ui/src/app/shared/more-description/more-description.component.ts similarity index 100% rename from src/app/shared/more-description/more-description.component.ts rename to projects/mdm-ui/src/app/shared/more-description/more-description.component.ts diff --git a/src/app/shared/multiplicity/multiplicity.component.html b/projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.html similarity index 100% rename from src/app/shared/multiplicity/multiplicity.component.html rename to projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.html diff --git a/src/app/shared/multiplicity/multiplicity.component.sass b/projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.sass similarity index 100% rename from src/app/shared/multiplicity/multiplicity.component.sass rename to projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.sass diff --git a/src/app/shared/multiplicity/multiplicity.component.ts b/projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.ts similarity index 100% rename from src/app/shared/multiplicity/multiplicity.component.ts rename to projects/mdm-ui/src/app/shared/multiplicity/multiplicity.component.ts diff --git a/src/app/shared/new-version/new-version.component.html b/projects/mdm-ui/src/app/shared/new-version/new-version.component.html similarity index 100% rename from src/app/shared/new-version/new-version.component.html rename to projects/mdm-ui/src/app/shared/new-version/new-version.component.html diff --git a/src/app/shared/new-version/new-version.component.scss b/projects/mdm-ui/src/app/shared/new-version/new-version.component.scss similarity index 100% rename from src/app/shared/new-version/new-version.component.scss rename to projects/mdm-ui/src/app/shared/new-version/new-version.component.scss diff --git a/src/app/shared/new-version/new-version.component.ts b/projects/mdm-ui/src/app/shared/new-version/new-version.component.ts similarity index 100% rename from src/app/shared/new-version/new-version.component.ts rename to projects/mdm-ui/src/app/shared/new-version/new-version.component.ts diff --git a/src/app/shared/path-name/path-name.component.html b/projects/mdm-ui/src/app/shared/path-name/path-name.component.html similarity index 100% rename from src/app/shared/path-name/path-name.component.html rename to projects/mdm-ui/src/app/shared/path-name/path-name.component.html diff --git a/src/app/shared/path-name/path-name.component.scss b/projects/mdm-ui/src/app/shared/path-name/path-name.component.scss similarity index 100% rename from src/app/shared/path-name/path-name.component.scss rename to projects/mdm-ui/src/app/shared/path-name/path-name.component.scss diff --git a/src/app/shared/path-name/path-name.component.spec.ts b/projects/mdm-ui/src/app/shared/path-name/path-name.component.spec.ts similarity index 100% rename from src/app/shared/path-name/path-name.component.spec.ts rename to projects/mdm-ui/src/app/shared/path-name/path-name.component.spec.ts diff --git a/src/app/shared/path-name/path-name.component.ts b/projects/mdm-ui/src/app/shared/path-name/path-name.component.ts similarity index 100% rename from src/app/shared/path-name/path-name.component.ts rename to projects/mdm-ui/src/app/shared/path-name/path-name.component.ts diff --git a/src/app/shared/path-name/path-name.model.ts b/projects/mdm-ui/src/app/shared/path-name/path-name.model.ts similarity index 100% rename from src/app/shared/path-name/path-name.model.ts rename to projects/mdm-ui/src/app/shared/path-name/path-name.model.ts diff --git a/src/app/shared/path-name/path-name.service.spec.ts b/projects/mdm-ui/src/app/shared/path-name/path-name.service.spec.ts similarity index 100% rename from src/app/shared/path-name/path-name.service.spec.ts rename to projects/mdm-ui/src/app/shared/path-name/path-name.service.spec.ts diff --git a/src/app/shared/path-name/path-name.service.ts b/projects/mdm-ui/src/app/shared/path-name/path-name.service.ts similarity index 100% rename from src/app/shared/path-name/path-name.service.ts rename to projects/mdm-ui/src/app/shared/path-name/path-name.service.ts diff --git a/src/app/shared/profile-data-view/profile-data-view.component.html b/projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.html similarity index 100% rename from src/app/shared/profile-data-view/profile-data-view.component.html rename to projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.html diff --git a/src/app/shared/profile-data-view/profile-data-view.component.scss b/projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.scss similarity index 100% rename from src/app/shared/profile-data-view/profile-data-view.component.scss rename to projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.scss diff --git a/src/app/shared/profile-data-view/profile-data-view.component.ts b/projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.ts similarity index 100% rename from src/app/shared/profile-data-view/profile-data-view.component.ts rename to projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.component.ts diff --git a/src/app/shared/profile-data-view/profile-data-view.model.ts b/projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.model.ts similarity index 100% rename from src/app/shared/profile-data-view/profile-data-view.model.ts rename to projects/mdm-ui/src/app/shared/profile-data-view/profile-data-view.model.ts diff --git a/src/app/shared/profile-details/profile-details.component.html b/projects/mdm-ui/src/app/shared/profile-details/profile-details.component.html similarity index 100% rename from src/app/shared/profile-details/profile-details.component.html rename to projects/mdm-ui/src/app/shared/profile-details/profile-details.component.html diff --git a/src/app/shared/profile-details/profile-details.component.scss b/projects/mdm-ui/src/app/shared/profile-details/profile-details.component.scss similarity index 100% rename from src/app/shared/profile-details/profile-details.component.scss rename to projects/mdm-ui/src/app/shared/profile-details/profile-details.component.scss diff --git a/src/app/shared/profile-details/profile-details.component.ts b/projects/mdm-ui/src/app/shared/profile-details/profile-details.component.ts similarity index 100% rename from src/app/shared/profile-details/profile-details.component.ts rename to projects/mdm-ui/src/app/shared/profile-details/profile-details.component.ts diff --git a/src/app/shared/profile-picture/profile-picture.component.html b/projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.html similarity index 100% rename from src/app/shared/profile-picture/profile-picture.component.html rename to projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.html diff --git a/src/app/shared/profile-picture/profile-picture.component.sass b/projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.sass similarity index 100% rename from src/app/shared/profile-picture/profile-picture.component.sass rename to projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.sass diff --git a/src/app/shared/profile-picture/profile-picture.component.ts b/projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.ts similarity index 100% rename from src/app/shared/profile-picture/profile-picture.component.ts rename to projects/mdm-ui/src/app/shared/profile-picture/profile-picture.component.ts diff --git a/src/app/shared/reference-data-element/reference-data-element.component.html b/projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.html similarity index 100% rename from src/app/shared/reference-data-element/reference-data-element.component.html rename to projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.html diff --git a/src/app/shared/reference-data-element/reference-data-element.component.scss b/projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.scss similarity index 100% rename from src/app/shared/reference-data-element/reference-data-element.component.scss rename to projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.scss diff --git a/src/app/shared/reference-data-element/reference-data-element.component.spec.ts b/projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.spec.ts similarity index 100% rename from src/app/shared/reference-data-element/reference-data-element.component.spec.ts rename to projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.spec.ts diff --git a/src/app/shared/reference-data-element/reference-data-element.component.ts b/projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.ts similarity index 100% rename from src/app/shared/reference-data-element/reference-data-element.component.ts rename to projects/mdm-ui/src/app/shared/reference-data-element/reference-data-element.component.ts diff --git a/src/app/shared/reference-data-type/reference-data-type.component.html b/projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.html similarity index 100% rename from src/app/shared/reference-data-type/reference-data-type.component.html rename to projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.html diff --git a/src/app/shared/reference-data-type/reference-data-type.component.scss b/projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.scss similarity index 100% rename from src/app/shared/reference-data-type/reference-data-type.component.scss rename to projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.scss diff --git a/src/app/shared/reference-data-type/reference-data-type.component.spec.ts b/projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.spec.ts similarity index 100% rename from src/app/shared/reference-data-type/reference-data-type.component.spec.ts rename to projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.spec.ts diff --git a/src/app/shared/reference-data-type/reference-data-type.component.ts b/projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.ts similarity index 100% rename from src/app/shared/reference-data-type/reference-data-type.component.ts rename to projects/mdm-ui/src/app/shared/reference-data-type/reference-data-type.component.ts diff --git a/src/app/shared/reference-data-values/reference-data-values.component.html b/projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.html similarity index 100% rename from src/app/shared/reference-data-values/reference-data-values.component.html rename to projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.html diff --git a/src/app/shared/reference-data-values/reference-data-values.component.scss b/projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.scss similarity index 100% rename from src/app/shared/reference-data-values/reference-data-values.component.scss rename to projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.scss diff --git a/src/app/shared/reference-data-values/reference-data-values.component.spec.ts b/projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.spec.ts similarity index 100% rename from src/app/shared/reference-data-values/reference-data-values.component.spec.ts rename to projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.spec.ts diff --git a/src/app/shared/reference-data-values/reference-data-values.component.ts b/projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.ts similarity index 100% rename from src/app/shared/reference-data-values/reference-data-values.component.ts rename to projects/mdm-ui/src/app/shared/reference-data-values/reference-data-values.component.ts diff --git a/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.html b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.html similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.html rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.html diff --git a/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.scss b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.scss similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.scss rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.scss diff --git a/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.ts b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.ts similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.ts rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-chart/summary-metadata-chart.component.ts diff --git a/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.html b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.html similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.html rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.html diff --git a/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.scss b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.scss similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.scss rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.scss diff --git a/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.ts b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.ts similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.ts rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-popup/summary-metadata-popup.component.ts diff --git a/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.html b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.html similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.html rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.html diff --git a/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.sass b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.sass similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.sass rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.sass diff --git a/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.ts b/projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.ts similarity index 100% rename from src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.ts rename to projects/mdm-ui/src/app/shared/summary-metadata/summary-metadata-table/summary-metadata-table.component.ts diff --git a/src/app/shared/table-buttons/table-buttons.component.html b/projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.html similarity index 100% rename from src/app/shared/table-buttons/table-buttons.component.html rename to projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.html diff --git a/src/app/shared/table-buttons/table-buttons.component.sass b/projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.sass similarity index 100% rename from src/app/shared/table-buttons/table-buttons.component.sass rename to projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.sass diff --git a/src/app/shared/table-buttons/table-buttons.component.ts b/projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.ts similarity index 100% rename from src/app/shared/table-buttons/table-buttons.component.ts rename to projects/mdm-ui/src/app/shared/table-buttons/table-buttons.component.ts diff --git a/src/app/shared/text-diff/text-diff.component.html b/projects/mdm-ui/src/app/shared/text-diff/text-diff.component.html similarity index 100% rename from src/app/shared/text-diff/text-diff.component.html rename to projects/mdm-ui/src/app/shared/text-diff/text-diff.component.html diff --git a/src/app/shared/text-diff/text-diff.component.scss b/projects/mdm-ui/src/app/shared/text-diff/text-diff.component.scss similarity index 100% rename from src/app/shared/text-diff/text-diff.component.scss rename to projects/mdm-ui/src/app/shared/text-diff/text-diff.component.scss diff --git a/src/app/shared/text-diff/text-diff.component.spec.ts b/projects/mdm-ui/src/app/shared/text-diff/text-diff.component.spec.ts similarity index 100% rename from src/app/shared/text-diff/text-diff.component.spec.ts rename to projects/mdm-ui/src/app/shared/text-diff/text-diff.component.spec.ts diff --git a/src/app/shared/text-diff/text-diff.component.ts b/projects/mdm-ui/src/app/shared/text-diff/text-diff.component.ts similarity index 100% rename from src/app/shared/text-diff/text-diff.component.ts rename to projects/mdm-ui/src/app/shared/text-diff/text-diff.component.ts diff --git a/src/app/shared/ui-view/ui-view.component.ts b/projects/mdm-ui/src/app/shared/ui-view/ui-view.component.ts similarity index 100% rename from src/app/shared/ui-view/ui-view.component.ts rename to projects/mdm-ui/src/app/shared/ui-view/ui-view.component.ts diff --git a/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.html similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.html diff --git a/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.scss similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.scss diff --git a/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.spec.ts diff --git a/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.ts similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-detail/federated-data-model-detail.component.ts diff --git a/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.html similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.html diff --git a/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.scss similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.scss diff --git a/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.spec.ts diff --git a/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.ts similarity index 100% rename from src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/federated-data-model-main/federated-data-model-main.component.ts diff --git a/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.html similarity index 100% rename from src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.html diff --git a/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.scss similarity index 100% rename from src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.scss diff --git a/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.spec.ts diff --git a/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.ts similarity index 100% rename from src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/new-federated-subscription-modal/new-federated-subscription-modal.component.ts diff --git a/src/app/subscribed-catalogues/newer-versions/newer-versions.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.html similarity index 100% rename from src/app/subscribed-catalogues/newer-versions/newer-versions.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.html diff --git a/src/app/subscribed-catalogues/newer-versions/newer-versions.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.scss similarity index 100% rename from src/app/subscribed-catalogues/newer-versions/newer-versions.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.scss diff --git a/src/app/subscribed-catalogues/newer-versions/newer-versions.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.ts similarity index 100% rename from src/app/subscribed-catalogues/newer-versions/newer-versions.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/newer-versions/newer-versions.component.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.html similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.html diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.scss similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.scss diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.spec.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-detail/subscribed-catalogue-detail.component.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.html b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.html similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.html rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.html diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.scss b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.scss similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.scss rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.scss diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.spec.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogue-main/subscribed-catalogue-main.component.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogues.service.spec.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogues.service.spec.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogues.service.spec.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogues.service.spec.ts diff --git a/src/app/subscribed-catalogues/subscribed-catalogues.service.ts b/projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogues.service.ts similarity index 100% rename from src/app/subscribed-catalogues/subscribed-catalogues.service.ts rename to projects/mdm-ui/src/app/subscribed-catalogues/subscribed-catalogues.service.ts diff --git a/src/app/term/codeset-list/term-codeset-list.component.html b/projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.html similarity index 100% rename from src/app/term/codeset-list/term-codeset-list.component.html rename to projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.html diff --git a/src/app/term/codeset-list/term-codeset-list.component.scss b/projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.scss similarity index 100% rename from src/app/term/codeset-list/term-codeset-list.component.scss rename to projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.scss diff --git a/src/app/term/codeset-list/term-codeset-list.component.ts b/projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.ts similarity index 100% rename from src/app/term/codeset-list/term-codeset-list.component.ts rename to projects/mdm-ui/src/app/term/codeset-list/term-codeset-list.component.ts diff --git a/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.html b/projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.html similarity index 100% rename from src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.html rename to projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.html diff --git a/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.scss b/projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.scss similarity index 100% rename from src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.scss rename to projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.scss diff --git a/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.ts b/projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.ts similarity index 100% rename from src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.ts rename to projects/mdm-ui/src/app/term/create-term-relationship-dialog/create-term-relationship-dialog.component.ts diff --git a/src/app/term/relationship-list/term-relationship-list.component.html b/projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.html similarity index 100% rename from src/app/term/relationship-list/term-relationship-list.component.html rename to projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.html diff --git a/src/app/term/relationship-list/term-relationship-list.component.scss b/projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.scss similarity index 100% rename from src/app/term/relationship-list/term-relationship-list.component.scss rename to projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.scss diff --git a/src/app/term/relationship-list/term-relationship-list.component.ts b/projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.ts similarity index 100% rename from src/app/term/relationship-list/term-relationship-list.component.ts rename to projects/mdm-ui/src/app/term/relationship-list/term-relationship-list.component.ts diff --git a/src/app/term/term-details/term-details.component.html b/projects/mdm-ui/src/app/term/term-details/term-details.component.html similarity index 100% rename from src/app/term/term-details/term-details.component.html rename to projects/mdm-ui/src/app/term/term-details/term-details.component.html diff --git a/src/app/term/term-details/term-details.component.scss b/projects/mdm-ui/src/app/term/term-details/term-details.component.scss similarity index 100% rename from src/app/term/term-details/term-details.component.scss rename to projects/mdm-ui/src/app/term/term-details/term-details.component.scss diff --git a/src/app/term/term-details/term-details.component.ts b/projects/mdm-ui/src/app/term/term-details/term-details.component.ts similarity index 100% rename from src/app/term/term-details/term-details.component.ts rename to projects/mdm-ui/src/app/term/term-details/term-details.component.ts diff --git a/src/app/term/term/term.component.html b/projects/mdm-ui/src/app/term/term/term.component.html similarity index 100% rename from src/app/term/term/term.component.html rename to projects/mdm-ui/src/app/term/term/term.component.html diff --git a/src/app/term/term/term.component.scss b/projects/mdm-ui/src/app/term/term/term.component.scss similarity index 100% rename from src/app/term/term/term.component.scss rename to projects/mdm-ui/src/app/term/term/term.component.scss diff --git a/src/app/term/term/term.component.ts b/projects/mdm-ui/src/app/term/term/term.component.ts similarity index 100% rename from src/app/term/term/term.component.ts rename to projects/mdm-ui/src/app/term/term/term.component.ts diff --git a/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.html b/projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.html similarity index 100% rename from src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.html rename to projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.html diff --git a/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.scss b/projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.scss similarity index 100% rename from src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.scss rename to projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.scss diff --git a/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.ts b/projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.ts similarity index 100% rename from src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.ts rename to projects/mdm-ui/src/app/terminology/term-list/create-term-dialog/create-term-dialog.component.ts diff --git a/src/app/terminology/term-list/term-list.component.html b/projects/mdm-ui/src/app/terminology/term-list/term-list.component.html similarity index 100% rename from src/app/terminology/term-list/term-list.component.html rename to projects/mdm-ui/src/app/terminology/term-list/term-list.component.html diff --git a/src/app/terminology/term-list/term-list.component.scss b/projects/mdm-ui/src/app/terminology/term-list/term-list.component.scss similarity index 100% rename from src/app/terminology/term-list/term-list.component.scss rename to projects/mdm-ui/src/app/terminology/term-list/term-list.component.scss diff --git a/src/app/terminology/term-list/term-list.component.ts b/projects/mdm-ui/src/app/terminology/term-list/term-list.component.ts similarity index 100% rename from src/app/terminology/term-list/term-list.component.ts rename to projects/mdm-ui/src/app/terminology/term-list/term-list.component.ts diff --git a/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.html b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.html similarity index 100% rename from src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.html rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.html diff --git a/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.scss b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.scss similarity index 100% rename from src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.scss rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.scss diff --git a/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.ts b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.ts similarity index 100% rename from src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.ts rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/create-term-relationship-type-dialog/create-term-relationship-type-dialog.component.ts diff --git a/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.html b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.html similarity index 100% rename from src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.html rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.html diff --git a/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.scss b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.scss similarity index 100% rename from src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.scss rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.scss diff --git a/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.ts b/projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.ts similarity index 100% rename from src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.ts rename to projects/mdm-ui/src/app/terminology/term-relationship-type-list/term-relationship-type-list.component.ts diff --git a/src/app/terminology/terminology-details/terminology-details.component.html b/projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.html similarity index 100% rename from src/app/terminology/terminology-details/terminology-details.component.html rename to projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.html diff --git a/src/app/terminology/terminology-details/terminology-details.component.sass b/projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.sass similarity index 100% rename from src/app/terminology/terminology-details/terminology-details.component.sass rename to projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.sass diff --git a/src/app/terminology/terminology-details/terminology-details.component.ts b/projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.ts similarity index 100% rename from src/app/terminology/terminology-details/terminology-details.component.ts rename to projects/mdm-ui/src/app/terminology/terminology-details/terminology-details.component.ts diff --git a/src/app/terminology/terminology.component.html b/projects/mdm-ui/src/app/terminology/terminology.component.html similarity index 100% rename from src/app/terminology/terminology.component.html rename to projects/mdm-ui/src/app/terminology/terminology.component.html diff --git a/src/app/terminology/terminology.component.sass b/projects/mdm-ui/src/app/terminology/terminology.component.sass similarity index 100% rename from src/app/terminology/terminology.component.sass rename to projects/mdm-ui/src/app/terminology/terminology.component.sass diff --git a/src/app/terminology/terminology.component.ts b/projects/mdm-ui/src/app/terminology/terminology.component.ts similarity index 100% rename from src/app/terminology/terminology.component.ts rename to projects/mdm-ui/src/app/terminology/terminology.component.ts diff --git a/src/app/testing/testing.helpers.ts b/projects/mdm-ui/src/app/testing/testing.helpers.ts similarity index 100% rename from src/app/testing/testing.helpers.ts rename to projects/mdm-ui/src/app/testing/testing.helpers.ts diff --git a/src/app/testing/testing.module.ts b/projects/mdm-ui/src/app/testing/testing.module.ts similarity index 100% rename from src/app/testing/testing.module.ts rename to projects/mdm-ui/src/app/testing/testing.module.ts diff --git a/src/app/two-side-panel/two-side-panel.component.html b/projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.html similarity index 100% rename from src/app/two-side-panel/two-side-panel.component.html rename to projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.html diff --git a/src/app/two-side-panel/two-side-panel.component.sass b/projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.sass similarity index 100% rename from src/app/two-side-panel/two-side-panel.component.sass rename to projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.sass diff --git a/src/app/two-side-panel/two-side-panel.component.ts b/projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.ts similarity index 100% rename from src/app/two-side-panel/two-side-panel.component.ts rename to projects/mdm-ui/src/app/two-side-panel/two-side-panel.component.ts diff --git a/src/app/userArea/api-keys/api-keys.component.html b/projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.html similarity index 100% rename from src/app/userArea/api-keys/api-keys.component.html rename to projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.html diff --git a/src/app/userArea/api-keys/api-keys.component.scss b/projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.scss similarity index 100% rename from src/app/userArea/api-keys/api-keys.component.scss rename to projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.scss diff --git a/src/app/userArea/api-keys/api-keys.component.spec.ts b/projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.spec.ts similarity index 100% rename from src/app/userArea/api-keys/api-keys.component.spec.ts rename to projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.spec.ts diff --git a/src/app/userArea/api-keys/api-keys.component.ts b/projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.ts similarity index 100% rename from src/app/userArea/api-keys/api-keys.component.ts rename to projects/mdm-ui/src/app/userArea/api-keys/api-keys.component.ts diff --git a/src/app/userArea/change-password/change-password.component.html b/projects/mdm-ui/src/app/userArea/change-password/change-password.component.html similarity index 100% rename from src/app/userArea/change-password/change-password.component.html rename to projects/mdm-ui/src/app/userArea/change-password/change-password.component.html diff --git a/src/app/userArea/change-password/change-password.component.sass b/projects/mdm-ui/src/app/userArea/change-password/change-password.component.sass similarity index 100% rename from src/app/userArea/change-password/change-password.component.sass rename to projects/mdm-ui/src/app/userArea/change-password/change-password.component.sass diff --git a/src/app/userArea/change-password/change-password.component.ts b/projects/mdm-ui/src/app/userArea/change-password/change-password.component.ts similarity index 100% rename from src/app/userArea/change-password/change-password.component.ts rename to projects/mdm-ui/src/app/userArea/change-password/change-password.component.ts diff --git a/src/app/userArea/profile/profile.component.html b/projects/mdm-ui/src/app/userArea/profile/profile.component.html similarity index 100% rename from src/app/userArea/profile/profile.component.html rename to projects/mdm-ui/src/app/userArea/profile/profile.component.html diff --git a/src/app/userArea/profile/profile.component.scss b/projects/mdm-ui/src/app/userArea/profile/profile.component.scss similarity index 100% rename from src/app/userArea/profile/profile.component.scss rename to projects/mdm-ui/src/app/userArea/profile/profile.component.scss diff --git a/src/app/userArea/profile/profile.component.ts b/projects/mdm-ui/src/app/userArea/profile/profile.component.ts similarity index 100% rename from src/app/userArea/profile/profile.component.ts rename to projects/mdm-ui/src/app/userArea/profile/profile.component.ts diff --git a/src/app/userArea/settings/settings.component.html b/projects/mdm-ui/src/app/userArea/settings/settings.component.html similarity index 100% rename from src/app/userArea/settings/settings.component.html rename to projects/mdm-ui/src/app/userArea/settings/settings.component.html diff --git a/src/app/userArea/settings/settings.component.scss b/projects/mdm-ui/src/app/userArea/settings/settings.component.scss similarity index 100% rename from src/app/userArea/settings/settings.component.scss rename to projects/mdm-ui/src/app/userArea/settings/settings.component.scss diff --git a/src/app/userArea/settings/settings.component.ts b/projects/mdm-ui/src/app/userArea/settings/settings.component.ts similarity index 100% rename from src/app/userArea/settings/settings.component.ts rename to projects/mdm-ui/src/app/userArea/settings/settings.component.ts diff --git a/src/app/userArea/user-details/user-details.component.html b/projects/mdm-ui/src/app/userArea/user-details/user-details.component.html similarity index 100% rename from src/app/userArea/user-details/user-details.component.html rename to projects/mdm-ui/src/app/userArea/user-details/user-details.component.html diff --git a/src/app/userArea/user-details/user-details.component.sass b/projects/mdm-ui/src/app/userArea/user-details/user-details.component.sass similarity index 100% rename from src/app/userArea/user-details/user-details.component.sass rename to projects/mdm-ui/src/app/userArea/user-details/user-details.component.sass diff --git a/src/app/userArea/user-details/user-details.component.ts b/projects/mdm-ui/src/app/userArea/user-details/user-details.component.ts similarity index 100% rename from src/app/userArea/user-details/user-details.component.ts rename to projects/mdm-ui/src/app/userArea/user-details/user-details.component.ts diff --git a/src/app/users/users-app-container/users-app-container.component.html b/projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.html similarity index 100% rename from src/app/users/users-app-container/users-app-container.component.html rename to projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.html diff --git a/src/app/users/users-app-container/users-app-container.component.sass b/projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.sass similarity index 100% rename from src/app/users/users-app-container/users-app-container.component.sass rename to projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.sass diff --git a/src/app/users/users-app-container/users-app-container.component.ts b/projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.ts similarity index 100% rename from src/app/users/users-app-container/users-app-container.component.ts rename to projects/mdm-ui/src/app/users/users-app-container/users-app-container.component.ts diff --git a/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.html b/projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.html similarity index 100% rename from src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.html rename to projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.html diff --git a/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.sass b/projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.sass similarity index 100% rename from src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.sass rename to projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.sass diff --git a/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.spec.ts b/projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.spec.ts similarity index 100% rename from src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.spec.ts rename to projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.spec.ts diff --git a/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.ts b/projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.ts similarity index 100% rename from src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.ts rename to projects/mdm-ui/src/app/utility/all-links-in-paged-list/all-links-in-paged-list.component.ts diff --git a/src/app/utility/content-editor/content-editor.component.html b/projects/mdm-ui/src/app/utility/content-editor/content-editor.component.html similarity index 100% rename from src/app/utility/content-editor/content-editor.component.html rename to projects/mdm-ui/src/app/utility/content-editor/content-editor.component.html diff --git a/src/app/utility/content-editor/content-editor.component.scss b/projects/mdm-ui/src/app/utility/content-editor/content-editor.component.scss similarity index 100% rename from src/app/utility/content-editor/content-editor.component.scss rename to projects/mdm-ui/src/app/utility/content-editor/content-editor.component.scss diff --git a/src/app/utility/content-editor/content-editor.component.spec.ts b/projects/mdm-ui/src/app/utility/content-editor/content-editor.component.spec.ts similarity index 100% rename from src/app/utility/content-editor/content-editor.component.spec.ts rename to projects/mdm-ui/src/app/utility/content-editor/content-editor.component.spec.ts diff --git a/src/app/utility/content-editor/content-editor.component.ts b/projects/mdm-ui/src/app/utility/content-editor/content-editor.component.ts similarity index 100% rename from src/app/utility/content-editor/content-editor.component.ts rename to projects/mdm-ui/src/app/utility/content-editor/content-editor.component.ts diff --git a/src/app/utility/data-model-default.component.html b/projects/mdm-ui/src/app/utility/data-model-default.component.html similarity index 100% rename from src/app/utility/data-model-default.component.html rename to projects/mdm-ui/src/app/utility/data-model-default.component.html diff --git a/src/app/utility/data-model-default.component.sass b/projects/mdm-ui/src/app/utility/data-model-default.component.sass similarity index 100% rename from src/app/utility/data-model-default.component.sass rename to projects/mdm-ui/src/app/utility/data-model-default.component.sass diff --git a/src/app/utility/data-model-default.component.spec.ts b/projects/mdm-ui/src/app/utility/data-model-default.component.spec.ts similarity index 100% rename from src/app/utility/data-model-default.component.spec.ts rename to projects/mdm-ui/src/app/utility/data-model-default.component.spec.ts diff --git a/src/app/utility/data-model-default.component.ts b/projects/mdm-ui/src/app/utility/data-model-default.component.ts similarity index 100% rename from src/app/utility/data-model-default.component.ts rename to projects/mdm-ui/src/app/utility/data-model-default.component.ts diff --git a/src/app/utility/download-link/download-link.component.html b/projects/mdm-ui/src/app/utility/download-link/download-link.component.html similarity index 100% rename from src/app/utility/download-link/download-link.component.html rename to projects/mdm-ui/src/app/utility/download-link/download-link.component.html diff --git a/src/app/utility/download-link/download-link.component.scss b/projects/mdm-ui/src/app/utility/download-link/download-link.component.scss similarity index 100% rename from src/app/utility/download-link/download-link.component.scss rename to projects/mdm-ui/src/app/utility/download-link/download-link.component.scss diff --git a/src/app/utility/download-link/download-link.component.ts b/projects/mdm-ui/src/app/utility/download-link/download-link.component.ts similarity index 100% rename from src/app/utility/download-link/download-link.component.ts rename to projects/mdm-ui/src/app/utility/download-link/download-link.component.ts diff --git a/src/app/utility/download.service.ts b/projects/mdm-ui/src/app/utility/download.service.ts similarity index 100% rename from src/app/utility/download.service.ts rename to projects/mdm-ui/src/app/utility/download.service.ts diff --git a/src/app/utility/editable-form-buttons/editable-form-buttons.component.html b/projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.html similarity index 100% rename from src/app/utility/editable-form-buttons/editable-form-buttons.component.html rename to projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.html diff --git a/src/app/utility/editable-form-buttons/editable-form-buttons.component.scss b/projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.scss similarity index 100% rename from src/app/utility/editable-form-buttons/editable-form-buttons.component.scss rename to projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.scss diff --git a/src/app/utility/editable-form-buttons/editable-form-buttons.component.ts b/projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.ts similarity index 100% rename from src/app/utility/editable-form-buttons/editable-form-buttons.component.ts rename to projects/mdm-ui/src/app/utility/editable-form-buttons/editable-form-buttons.component.ts diff --git a/src/app/utility/element-alias/element-alias.component.html b/projects/mdm-ui/src/app/utility/element-alias/element-alias.component.html similarity index 100% rename from src/app/utility/element-alias/element-alias.component.html rename to projects/mdm-ui/src/app/utility/element-alias/element-alias.component.html diff --git a/src/app/utility/element-alias/element-alias.component.sass b/projects/mdm-ui/src/app/utility/element-alias/element-alias.component.sass similarity index 100% rename from src/app/utility/element-alias/element-alias.component.sass rename to projects/mdm-ui/src/app/utility/element-alias/element-alias.component.sass diff --git a/src/app/utility/element-alias/element-alias.component.spec.ts b/projects/mdm-ui/src/app/utility/element-alias/element-alias.component.spec.ts similarity index 100% rename from src/app/utility/element-alias/element-alias.component.spec.ts rename to projects/mdm-ui/src/app/utility/element-alias/element-alias.component.spec.ts diff --git a/src/app/utility/element-alias/element-alias.component.ts b/projects/mdm-ui/src/app/utility/element-alias/element-alias.component.ts similarity index 100% rename from src/app/utility/element-alias/element-alias.component.ts rename to projects/mdm-ui/src/app/utility/element-alias/element-alias.component.ts diff --git a/src/app/utility/element-classifications/element-classifications.component.html b/projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.html similarity index 100% rename from src/app/utility/element-classifications/element-classifications.component.html rename to projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.html diff --git a/src/app/utility/element-classifications/element-classifications.component.sass b/projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.sass similarity index 100% rename from src/app/utility/element-classifications/element-classifications.component.sass rename to projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.sass diff --git a/src/app/utility/element-classifications/element-classifications.component.spec.ts b/projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.spec.ts similarity index 100% rename from src/app/utility/element-classifications/element-classifications.component.spec.ts rename to projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.spec.ts diff --git a/src/app/utility/element-classifications/element-classifications.component.ts b/projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.ts similarity index 100% rename from src/app/utility/element-classifications/element-classifications.component.ts rename to projects/mdm-ui/src/app/utility/element-classifications/element-classifications.component.ts diff --git a/src/app/utility/element-link/element-link.component.html b/projects/mdm-ui/src/app/utility/element-link/element-link.component.html similarity index 100% rename from src/app/utility/element-link/element-link.component.html rename to projects/mdm-ui/src/app/utility/element-link/element-link.component.html diff --git a/src/app/utility/element-link/element-link.component.sass b/projects/mdm-ui/src/app/utility/element-link/element-link.component.sass similarity index 100% rename from src/app/utility/element-link/element-link.component.sass rename to projects/mdm-ui/src/app/utility/element-link/element-link.component.sass diff --git a/src/app/utility/element-link/element-link.component.ts b/projects/mdm-ui/src/app/utility/element-link/element-link.component.ts similarity index 100% rename from src/app/utility/element-link/element-link.component.ts rename to projects/mdm-ui/src/app/utility/element-link/element-link.component.ts diff --git a/src/app/utility/element-selector.component.html b/projects/mdm-ui/src/app/utility/element-selector.component.html similarity index 100% rename from src/app/utility/element-selector.component.html rename to projects/mdm-ui/src/app/utility/element-selector.component.html diff --git a/src/app/utility/element-selector.component.sass b/projects/mdm-ui/src/app/utility/element-selector.component.sass similarity index 100% rename from src/app/utility/element-selector.component.sass rename to projects/mdm-ui/src/app/utility/element-selector.component.sass diff --git a/src/app/utility/element-selector.component.spec.ts b/projects/mdm-ui/src/app/utility/element-selector.component.spec.ts similarity index 100% rename from src/app/utility/element-selector.component.spec.ts rename to projects/mdm-ui/src/app/utility/element-selector.component.spec.ts diff --git a/src/app/utility/element-selector.component.ts b/projects/mdm-ui/src/app/utility/element-selector.component.ts similarity index 100% rename from src/app/utility/element-selector.component.ts rename to projects/mdm-ui/src/app/utility/element-selector.component.ts diff --git a/src/app/utility/element-status/element-status.component.html b/projects/mdm-ui/src/app/utility/element-status/element-status.component.html similarity index 100% rename from src/app/utility/element-status/element-status.component.html rename to projects/mdm-ui/src/app/utility/element-status/element-status.component.html diff --git a/src/app/utility/element-status/element-status.component.sass b/projects/mdm-ui/src/app/utility/element-status/element-status.component.sass similarity index 100% rename from src/app/utility/element-status/element-status.component.sass rename to projects/mdm-ui/src/app/utility/element-status/element-status.component.sass diff --git a/src/app/utility/element-status/element-status.component.spec.ts b/projects/mdm-ui/src/app/utility/element-status/element-status.component.spec.ts similarity index 100% rename from src/app/utility/element-status/element-status.component.spec.ts rename to projects/mdm-ui/src/app/utility/element-status/element-status.component.spec.ts diff --git a/src/app/utility/element-status/element-status.component.ts b/projects/mdm-ui/src/app/utility/element-status/element-status.component.ts similarity index 100% rename from src/app/utility/element-status/element-status.component.ts rename to projects/mdm-ui/src/app/utility/element-status/element-status.component.ts diff --git a/src/app/utility/extensions/mat-dialog.extensions.ts b/projects/mdm-ui/src/app/utility/extensions/mat-dialog.extensions.ts similarity index 100% rename from src/app/utility/extensions/mat-dialog.extensions.ts rename to projects/mdm-ui/src/app/utility/extensions/mat-dialog.extensions.ts diff --git a/src/app/utility/html-editor/html-editor.component.html b/projects/mdm-ui/src/app/utility/html-editor/html-editor.component.html similarity index 100% rename from src/app/utility/html-editor/html-editor.component.html rename to projects/mdm-ui/src/app/utility/html-editor/html-editor.component.html diff --git a/src/app/utility/html-editor/html-editor.component.scss b/projects/mdm-ui/src/app/utility/html-editor/html-editor.component.scss similarity index 100% rename from src/app/utility/html-editor/html-editor.component.scss rename to projects/mdm-ui/src/app/utility/html-editor/html-editor.component.scss diff --git a/src/app/utility/html-editor/html-editor.component.ts b/projects/mdm-ui/src/app/utility/html-editor/html-editor.component.ts similarity index 100% rename from src/app/utility/html-editor/html-editor.component.ts rename to projects/mdm-ui/src/app/utility/html-editor/html-editor.component.ts diff --git a/src/app/utility/loading-indicator/loading-indicator.component.html b/projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.html similarity index 100% rename from src/app/utility/loading-indicator/loading-indicator.component.html rename to projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.html diff --git a/src/app/utility/loading-indicator/loading-indicator.component.scss b/projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.scss similarity index 100% rename from src/app/utility/loading-indicator/loading-indicator.component.scss rename to projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.scss diff --git a/src/app/utility/loading-indicator/loading-indicator.component.spec.ts b/projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.spec.ts similarity index 100% rename from src/app/utility/loading-indicator/loading-indicator.component.spec.ts rename to projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.spec.ts diff --git a/src/app/utility/loading-indicator/loading-indicator.component.ts b/projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.ts similarity index 100% rename from src/app/utility/loading-indicator/loading-indicator.component.ts rename to projects/mdm-ui/src/app/utility/loading-indicator/loading-indicator.component.ts diff --git a/src/app/utility/markdown/markdown-parser/custom-html-renderer.service.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-html-renderer.service.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/custom-html-renderer.service.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-html-renderer.service.ts diff --git a/src/app/utility/markdown/markdown-parser/custom-text-renderer.service.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-text-renderer.service.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/custom-text-renderer.service.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-text-renderer.service.ts diff --git a/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.spec.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.spec.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/custom-tokenizer.service.spec.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.spec.ts diff --git a/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/custom-tokenizer.service.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/custom-tokenizer.service.ts diff --git a/src/app/utility/markdown/markdown-parser/link-creator.service.spec.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/link-creator.service.spec.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/link-creator.service.spec.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/link-creator.service.spec.ts diff --git a/src/app/utility/markdown/markdown-parser/link-creator.service.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/link-creator.service.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/link-creator.service.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/link-creator.service.ts diff --git a/src/app/utility/markdown/markdown-parser/markdown-parser.service.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-parser/markdown-parser.service.ts similarity index 100% rename from src/app/utility/markdown/markdown-parser/markdown-parser.service.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-parser/markdown-parser.service.ts diff --git a/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.html b/projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.html similarity index 100% rename from src/app/utility/markdown/markdown-text-area/markdown-text-area.component.html rename to projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.html diff --git a/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.scss b/projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.scss similarity index 100% rename from src/app/utility/markdown/markdown-text-area/markdown-text-area.component.scss rename to projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.scss diff --git a/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.ts b/projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.ts similarity index 100% rename from src/app/utility/markdown/markdown-text-area/markdown-text-area.component.ts rename to projects/mdm-ui/src/app/utility/markdown/markdown-text-area/markdown-text-area.component.ts diff --git a/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.html b/projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.html similarity index 100% rename from src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.html rename to projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.html diff --git a/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.sass b/projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.sass similarity index 100% rename from src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.sass rename to projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.sass diff --git a/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.ts b/projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.ts similarity index 100% rename from src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.ts rename to projects/mdm-ui/src/app/utility/mc-enumeration-list-with-category/mc-enumeration-list-with-category.component.ts diff --git a/src/app/utility/mc-paged-list/mc-paged-list.component.html b/projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.html similarity index 100% rename from src/app/utility/mc-paged-list/mc-paged-list.component.html rename to projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.html diff --git a/src/app/utility/mc-paged-list/mc-paged-list.component.sass b/projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.sass similarity index 100% rename from src/app/utility/mc-paged-list/mc-paged-list.component.sass rename to projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.sass diff --git a/src/app/utility/mc-paged-list/mc-paged-list.component.spec.ts b/projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.spec.ts similarity index 100% rename from src/app/utility/mc-paged-list/mc-paged-list.component.spec.ts rename to projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.spec.ts diff --git a/src/app/utility/mc-paged-list/mc-paged-list.component.ts b/projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.ts similarity index 100% rename from src/app/utility/mc-paged-list/mc-paged-list.component.ts rename to projects/mdm-ui/src/app/utility/mc-paged-list/mc-paged-list.component.ts diff --git a/src/app/utility/mc-select/mc-select.component.html b/projects/mdm-ui/src/app/utility/mc-select/mc-select.component.html similarity index 100% rename from src/app/utility/mc-select/mc-select.component.html rename to projects/mdm-ui/src/app/utility/mc-select/mc-select.component.html diff --git a/src/app/utility/mc-select/mc-select.component.sass b/projects/mdm-ui/src/app/utility/mc-select/mc-select.component.sass similarity index 100% rename from src/app/utility/mc-select/mc-select.component.sass rename to projects/mdm-ui/src/app/utility/mc-select/mc-select.component.sass diff --git a/src/app/utility/mc-select/mc-select.component.ts b/projects/mdm-ui/src/app/utility/mc-select/mc-select.component.ts similarity index 100% rename from src/app/utility/mc-select/mc-select.component.ts rename to projects/mdm-ui/src/app/utility/mc-select/mc-select.component.ts diff --git a/src/app/utility/mdm-validators.ts b/projects/mdm-ui/src/app/utility/mdm-validators.ts similarity index 100% rename from src/app/utility/mdm-validators.ts rename to projects/mdm-ui/src/app/utility/mdm-validators.ts diff --git a/src/app/utility/model-path/model-path.component.html b/projects/mdm-ui/src/app/utility/model-path/model-path.component.html similarity index 100% rename from src/app/utility/model-path/model-path.component.html rename to projects/mdm-ui/src/app/utility/model-path/model-path.component.html diff --git a/src/app/utility/model-path/model-path.component.sass b/projects/mdm-ui/src/app/utility/model-path/model-path.component.sass similarity index 100% rename from src/app/utility/model-path/model-path.component.sass rename to projects/mdm-ui/src/app/utility/model-path/model-path.component.sass diff --git a/src/app/utility/model-path/model-path.component.ts b/projects/mdm-ui/src/app/utility/model-path/model-path.component.ts similarity index 100% rename from src/app/utility/model-path/model-path.component.ts rename to projects/mdm-ui/src/app/utility/model-path/model-path.component.ts diff --git a/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.html b/projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.html similarity index 100% rename from src/app/utility/multiple-terms-selector/multiple-terms-selector.component.html rename to projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.html diff --git a/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.scss b/projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.scss similarity index 100% rename from src/app/utility/multiple-terms-selector/multiple-terms-selector.component.scss rename to projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.scss diff --git a/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.spec.ts b/projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.spec.ts similarity index 100% rename from src/app/utility/multiple-terms-selector/multiple-terms-selector.component.spec.ts rename to projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.spec.ts diff --git a/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.ts b/projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.ts similarity index 100% rename from src/app/utility/multiple-terms-selector/multiple-terms-selector.component.ts rename to projects/mdm-ui/src/app/utility/multiple-terms-selector/multiple-terms-selector.component.ts diff --git a/src/app/utility/new-data-type-inline/new-data-type-inline.component.html b/projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.html similarity index 100% rename from src/app/utility/new-data-type-inline/new-data-type-inline.component.html rename to projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.html diff --git a/src/app/utility/new-data-type-inline/new-data-type-inline.component.sass b/projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.sass similarity index 100% rename from src/app/utility/new-data-type-inline/new-data-type-inline.component.sass rename to projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.sass diff --git a/src/app/utility/new-data-type-inline/new-data-type-inline.component.spec.ts b/projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.spec.ts similarity index 100% rename from src/app/utility/new-data-type-inline/new-data-type-inline.component.spec.ts rename to projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.spec.ts diff --git a/src/app/utility/new-data-type-inline/new-data-type-inline.component.ts b/projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.ts similarity index 100% rename from src/app/utility/new-data-type-inline/new-data-type-inline.component.ts rename to projects/mdm-ui/src/app/utility/new-data-type-inline/new-data-type-inline.component.ts diff --git a/src/app/utility/table-data-source.ts b/projects/mdm-ui/src/app/utility/table-data-source.ts similarity index 100% rename from src/app/utility/table-data-source.ts rename to projects/mdm-ui/src/app/utility/table-data-source.ts diff --git a/src/app/utility/term-relationships/term-relationships.component.html b/projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.html similarity index 100% rename from src/app/utility/term-relationships/term-relationships.component.html rename to projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.html diff --git a/src/app/utility/term-relationships/term-relationships.component.scss b/projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.scss similarity index 100% rename from src/app/utility/term-relationships/term-relationships.component.scss rename to projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.scss diff --git a/src/app/utility/term-relationships/term-relationships.component.spec.ts b/projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.spec.ts similarity index 100% rename from src/app/utility/term-relationships/term-relationships.component.spec.ts rename to projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.spec.ts diff --git a/src/app/utility/term-relationships/term-relationships.component.ts b/projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.ts similarity index 100% rename from src/app/utility/term-relationships/term-relationships.component.ts rename to projects/mdm-ui/src/app/utility/term-relationships/term-relationships.component.ts diff --git a/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.html b/projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.html similarity index 100% rename from src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.html rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.html diff --git a/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.scss b/projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.scss similarity index 100% rename from src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.scss rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.scss diff --git a/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.ts b/projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.ts similarity index 100% rename from src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.ts rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder-detail/versioned-folder-detail.component.ts diff --git a/src/app/versioned-folder/versioned-folder/versioned-folder.component.html b/projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.html similarity index 100% rename from src/app/versioned-folder/versioned-folder/versioned-folder.component.html rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.html diff --git a/src/app/versioned-folder/versioned-folder/versioned-folder.component.scss b/projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.scss similarity index 100% rename from src/app/versioned-folder/versioned-folder/versioned-folder.component.scss rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.scss diff --git a/src/app/versioned-folder/versioned-folder/versioned-folder.component.ts b/projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.ts similarity index 100% rename from src/app/versioned-folder/versioned-folder/versioned-folder.component.ts rename to projects/mdm-ui/src/app/versioned-folder/versioned-folder/versioned-folder.component.ts diff --git a/src/app/wizards/codeSet/code-set-main/code-set-main.component.html b/projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.html similarity index 100% rename from src/app/wizards/codeSet/code-set-main/code-set-main.component.html rename to projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.html diff --git a/src/app/wizards/codeSet/code-set-main/code-set-main.component.scss b/projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.scss similarity index 100% rename from src/app/wizards/codeSet/code-set-main/code-set-main.component.scss rename to projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.scss diff --git a/src/app/wizards/codeSet/code-set-main/code-set-main.component.ts b/projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.ts similarity index 100% rename from src/app/wizards/codeSet/code-set-main/code-set-main.component.ts rename to projects/mdm-ui/src/app/wizards/codeSet/code-set-main/code-set-main.component.ts diff --git a/src/app/wizards/dataClass/data-class-main/data-class-main.component.html b/projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.html similarity index 100% rename from src/app/wizards/dataClass/data-class-main/data-class-main.component.html rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.html diff --git a/src/app/wizards/dataClass/data-class-main/data-class-main.component.sass b/projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.sass similarity index 100% rename from src/app/wizards/dataClass/data-class-main/data-class-main.component.sass rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.sass diff --git a/src/app/wizards/dataClass/data-class-main/data-class-main.component.ts b/projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.ts similarity index 100% rename from src/app/wizards/dataClass/data-class-main/data-class-main.component.ts rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-main/data-class-main.component.ts diff --git a/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.html b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.html similarity index 100% rename from src/app/wizards/dataClass/data-class-step1/data-class-step1.component.html rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.html diff --git a/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.sass b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.sass similarity index 100% rename from src/app/wizards/dataClass/data-class-step1/data-class-step1.component.sass rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.sass diff --git a/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.ts b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.ts similarity index 100% rename from src/app/wizards/dataClass/data-class-step1/data-class-step1.component.ts rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step1/data-class-step1.component.ts diff --git a/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.html b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.html similarity index 100% rename from src/app/wizards/dataClass/data-class-step2/data-class-step2.component.html rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.html diff --git a/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.sass b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.sass similarity index 100% rename from src/app/wizards/dataClass/data-class-step2/data-class-step2.component.sass rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.sass diff --git a/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.ts b/projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.ts similarity index 100% rename from src/app/wizards/dataClass/data-class-step2/data-class-step2.component.ts rename to projects/mdm-ui/src/app/wizards/dataClass/data-class-step2/data-class-step2.component.ts diff --git a/src/app/wizards/dataElement/data-element-main/data-element-main.component.html b/projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.html similarity index 100% rename from src/app/wizards/dataElement/data-element-main/data-element-main.component.html rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.html diff --git a/src/app/wizards/dataElement/data-element-main/data-element-main.component.sass b/projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.sass similarity index 100% rename from src/app/wizards/dataElement/data-element-main/data-element-main.component.sass rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.sass diff --git a/src/app/wizards/dataElement/data-element-main/data-element-main.component.spec.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.spec.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-main/data-element-main.component.spec.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.spec.ts diff --git a/src/app/wizards/dataElement/data-element-main/data-element-main.component.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-main/data-element-main.component.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-main/data-element-main.component.ts diff --git a/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.html b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.html similarity index 100% rename from src/app/wizards/dataElement/data-element-step1/data-element-step1.component.html rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.html diff --git a/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.sass b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.sass similarity index 100% rename from src/app/wizards/dataElement/data-element-step1/data-element-step1.component.sass rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.sass diff --git a/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.spec.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.spec.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-step1/data-element-step1.component.spec.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.spec.ts diff --git a/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-step1/data-element-step1.component.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step1/data-element-step1.component.ts diff --git a/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.html b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.html similarity index 100% rename from src/app/wizards/dataElement/data-element-step2/data-element-step2.component.html rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.html diff --git a/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.sass b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.sass similarity index 100% rename from src/app/wizards/dataElement/data-element-step2/data-element-step2.component.sass rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.sass diff --git a/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.spec.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.spec.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-step2/data-element-step2.component.spec.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.spec.ts diff --git a/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.ts b/projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.ts similarity index 100% rename from src/app/wizards/dataElement/data-element-step2/data-element-step2.component.ts rename to projects/mdm-ui/src/app/wizards/dataElement/data-element-step2/data-element-step2.component.ts diff --git a/src/app/wizards/dataModel/data-model-main/data-model-main.component.html b/projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.html similarity index 100% rename from src/app/wizards/dataModel/data-model-main/data-model-main.component.html rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.html diff --git a/src/app/wizards/dataModel/data-model-main/data-model-main.component.sass b/projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.sass similarity index 100% rename from src/app/wizards/dataModel/data-model-main/data-model-main.component.sass rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.sass diff --git a/src/app/wizards/dataModel/data-model-main/data-model-main.component.ts b/projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.ts similarity index 100% rename from src/app/wizards/dataModel/data-model-main/data-model-main.component.ts rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-main/data-model-main.component.ts diff --git a/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.html b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.html similarity index 100% rename from src/app/wizards/dataModel/data-model-step1/data-model-step1.component.html rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.html diff --git a/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.sass b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.sass similarity index 100% rename from src/app/wizards/dataModel/data-model-step1/data-model-step1.component.sass rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.sass diff --git a/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.ts b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.ts similarity index 100% rename from src/app/wizards/dataModel/data-model-step1/data-model-step1.component.ts rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step1/data-model-step1.component.ts diff --git a/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.html b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.html similarity index 100% rename from src/app/wizards/dataModel/data-model-step2/data-model-step2.component.html rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.html diff --git a/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.sass b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.sass similarity index 100% rename from src/app/wizards/dataModel/data-model-step2/data-model-step2.component.sass rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.sass diff --git a/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.ts b/projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.ts similarity index 100% rename from src/app/wizards/dataModel/data-model-step2/data-model-step2.component.ts rename to projects/mdm-ui/src/app/wizards/dataModel/data-model-step2/data-model-step2.component.ts diff --git a/src/app/wizards/dataType/data-type-main/data-type-main.component.html b/projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.html similarity index 100% rename from src/app/wizards/dataType/data-type-main/data-type-main.component.html rename to projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.html diff --git a/src/app/wizards/dataType/data-type-main/data-type-main.component.sass b/projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.sass similarity index 100% rename from src/app/wizards/dataType/data-type-main/data-type-main.component.sass rename to projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.sass diff --git a/src/app/wizards/dataType/data-type-main/data-type-main.component.ts b/projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.ts similarity index 100% rename from src/app/wizards/dataType/data-type-main/data-type-main.component.ts rename to projects/mdm-ui/src/app/wizards/dataType/data-type-main/data-type-main.component.ts diff --git a/src/app/wizards/dataType/data-type-step1/data-type-step1.component.html b/projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.html similarity index 100% rename from src/app/wizards/dataType/data-type-step1/data-type-step1.component.html rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.html diff --git a/src/app/wizards/dataType/data-type-step1/data-type-step1.component.sass b/projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.sass similarity index 100% rename from src/app/wizards/dataType/data-type-step1/data-type-step1.component.sass rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.sass diff --git a/src/app/wizards/dataType/data-type-step1/data-type-step1.component.ts b/projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.ts similarity index 100% rename from src/app/wizards/dataType/data-type-step1/data-type-step1.component.ts rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step1/data-type-step1.component.ts diff --git a/src/app/wizards/dataType/data-type-step2/data-type-step2.component.html b/projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.html similarity index 100% rename from src/app/wizards/dataType/data-type-step2/data-type-step2.component.html rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.html diff --git a/src/app/wizards/dataType/data-type-step2/data-type-step2.component.sass b/projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.sass similarity index 100% rename from src/app/wizards/dataType/data-type-step2/data-type-step2.component.sass rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.sass diff --git a/src/app/wizards/dataType/data-type-step2/data-type-step2.component.ts b/projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.ts similarity index 100% rename from src/app/wizards/dataType/data-type-step2/data-type-step2.component.ts rename to projects/mdm-ui/src/app/wizards/dataType/data-type-step2/data-type-step2.component.ts diff --git a/src/app/wizards/dcl-wrapper.component.ts b/projects/mdm-ui/src/app/wizards/dcl-wrapper.component.ts similarity index 100% rename from src/app/wizards/dcl-wrapper.component.ts rename to projects/mdm-ui/src/app/wizards/dcl-wrapper.component.ts diff --git a/src/app/wizards/terminology/terminology-main/terminology-main.component.html b/projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.html similarity index 100% rename from src/app/wizards/terminology/terminology-main/terminology-main.component.html rename to projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.html diff --git a/src/app/wizards/terminology/terminology-main/terminology-main.component.scss b/projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.scss similarity index 100% rename from src/app/wizards/terminology/terminology-main/terminology-main.component.scss rename to projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.scss diff --git a/src/app/wizards/terminology/terminology-main/terminology-main.component.spec.ts b/projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.spec.ts similarity index 100% rename from src/app/wizards/terminology/terminology-main/terminology-main.component.spec.ts rename to projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.spec.ts diff --git a/src/app/wizards/terminology/terminology-main/terminology-main.component.ts b/projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.ts similarity index 100% rename from src/app/wizards/terminology/terminology-main/terminology-main.component.ts rename to projects/mdm-ui/src/app/wizards/terminology/terminology-main/terminology-main.component.ts diff --git a/src/app/wizards/wizards.model.ts b/projects/mdm-ui/src/app/wizards/wizards.model.ts similarity index 100% rename from src/app/wizards/wizards.model.ts rename to projects/mdm-ui/src/app/wizards/wizards.model.ts diff --git a/src/assets/favicon.ico b/projects/mdm-ui/src/assets/favicon.ico similarity index 100% rename from src/assets/favicon.ico rename to projects/mdm-ui/src/assets/favicon.ico diff --git a/src/assets/favicon.png b/projects/mdm-ui/src/assets/favicon.png similarity index 100% rename from src/assets/favicon.png rename to projects/mdm-ui/src/assets/favicon.png diff --git a/src/assets/images/SummaryMetadata.png b/projects/mdm-ui/src/assets/images/SummaryMetadata.png similarity index 100% rename from src/assets/images/SummaryMetadata.png rename to projects/mdm-ui/src/assets/images/SummaryMetadata.png diff --git a/src/assets/images/UMLChart.png b/projects/mdm-ui/src/assets/images/UMLChart.png similarity index 100% rename from src/assets/images/UMLChart.png rename to projects/mdm-ui/src/assets/images/UMLChart.png diff --git a/src/assets/images/grips/horizontal.png b/projects/mdm-ui/src/assets/images/grips/horizontal.png similarity index 100% rename from src/assets/images/grips/horizontal.png rename to projects/mdm-ui/src/assets/images/grips/horizontal.png diff --git a/src/assets/images/grips/vertical.png b/projects/mdm-ui/src/assets/images/grips/vertical.png similarity index 100% rename from src/assets/images/grips/vertical.png rename to projects/mdm-ui/src/assets/images/grips/vertical.png diff --git a/src/assets/images/img.svg b/projects/mdm-ui/src/assets/images/img.svg similarity index 100% rename from src/assets/images/img.svg rename to projects/mdm-ui/src/assets/images/img.svg diff --git a/src/assets/images/logo.svg b/projects/mdm-ui/src/assets/images/logo.svg similarity index 100% rename from src/assets/images/logo.svg rename to projects/mdm-ui/src/assets/images/logo.svg diff --git a/src/assets/images/mdm-logo.png b/projects/mdm-ui/src/assets/images/mdm-logo.png similarity index 100% rename from src/assets/images/mdm-logo.png rename to projects/mdm-ui/src/assets/images/mdm-logo.png diff --git a/src/assets/images/simpleView/elementHierarchy/lastnode.png b/projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/lastnode.png similarity index 100% rename from src/assets/images/simpleView/elementHierarchy/lastnode.png rename to projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/lastnode.png diff --git a/src/assets/images/simpleView/elementHierarchy/node.png b/projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/node.png similarity index 100% rename from src/assets/images/simpleView/elementHierarchy/node.png rename to projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/node.png diff --git a/src/assets/images/simpleView/elementHierarchy/pixel-black.png b/projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/pixel-black.png similarity index 100% rename from src/assets/images/simpleView/elementHierarchy/pixel-black.png rename to projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/pixel-black.png diff --git a/src/assets/images/simpleView/elementHierarchy/vline.png b/projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/vline.png similarity index 100% rename from src/assets/images/simpleView/elementHierarchy/vline.png rename to projects/mdm-ui/src/assets/images/simpleView/elementHierarchy/vline.png diff --git a/src/assets/images/simpleView/orgs/0.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/0.png similarity index 100% rename from src/assets/images/simpleView/orgs/0.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/0.png diff --git a/src/assets/images/simpleView/orgs/1.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/1.png similarity index 100% rename from src/assets/images/simpleView/orgs/1.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/1.png diff --git a/src/assets/images/simpleView/orgs/2.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/2.png similarity index 100% rename from src/assets/images/simpleView/orgs/2.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/2.png diff --git a/src/assets/images/simpleView/orgs/3.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/3.png similarity index 100% rename from src/assets/images/simpleView/orgs/3.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/3.png diff --git a/src/assets/images/simpleView/orgs/4.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/4.png similarity index 100% rename from src/assets/images/simpleView/orgs/4.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/4.png diff --git a/src/assets/images/simpleView/orgs/5.png b/projects/mdm-ui/src/assets/images/simpleView/orgs/5.png similarity index 100% rename from src/assets/images/simpleView/orgs/5.png rename to projects/mdm-ui/src/assets/images/simpleView/orgs/5.png diff --git a/src/assets/newStyle.json b/projects/mdm-ui/src/assets/newStyle.json similarity index 100% rename from src/assets/newStyle.json rename to projects/mdm-ui/src/assets/newStyle.json diff --git a/src/assets/themes/default/logo.png b/projects/mdm-ui/src/assets/themes/default/logo.png similarity index 100% rename from src/assets/themes/default/logo.png rename to projects/mdm-ui/src/assets/themes/default/logo.png diff --git a/src/assets/themes/nhs-digital/logo.png b/projects/mdm-ui/src/assets/themes/nhs-digital/logo.png similarity index 100% rename from src/assets/themes/nhs-digital/logo.png rename to projects/mdm-ui/src/assets/themes/nhs-digital/logo.png diff --git a/src/assets/webfonts/fa-brands-400.eot b/projects/mdm-ui/src/assets/webfonts/fa-brands-400.eot similarity index 100% rename from src/assets/webfonts/fa-brands-400.eot rename to projects/mdm-ui/src/assets/webfonts/fa-brands-400.eot diff --git a/src/assets/webfonts/fa-brands-400.svg b/projects/mdm-ui/src/assets/webfonts/fa-brands-400.svg similarity index 100% rename from src/assets/webfonts/fa-brands-400.svg rename to projects/mdm-ui/src/assets/webfonts/fa-brands-400.svg diff --git a/src/assets/webfonts/fa-brands-400.ttf b/projects/mdm-ui/src/assets/webfonts/fa-brands-400.ttf similarity index 100% rename from src/assets/webfonts/fa-brands-400.ttf rename to projects/mdm-ui/src/assets/webfonts/fa-brands-400.ttf diff --git a/src/assets/webfonts/fa-brands-400.woff b/projects/mdm-ui/src/assets/webfonts/fa-brands-400.woff similarity index 100% rename from src/assets/webfonts/fa-brands-400.woff rename to projects/mdm-ui/src/assets/webfonts/fa-brands-400.woff diff --git a/src/assets/webfonts/fa-brands-400.woff2 b/projects/mdm-ui/src/assets/webfonts/fa-brands-400.woff2 similarity index 100% rename from src/assets/webfonts/fa-brands-400.woff2 rename to projects/mdm-ui/src/assets/webfonts/fa-brands-400.woff2 diff --git a/src/assets/webfonts/fa-regular-400.eot b/projects/mdm-ui/src/assets/webfonts/fa-regular-400.eot similarity index 100% rename from src/assets/webfonts/fa-regular-400.eot rename to projects/mdm-ui/src/assets/webfonts/fa-regular-400.eot diff --git a/src/assets/webfonts/fa-regular-400.svg b/projects/mdm-ui/src/assets/webfonts/fa-regular-400.svg similarity index 100% rename from src/assets/webfonts/fa-regular-400.svg rename to projects/mdm-ui/src/assets/webfonts/fa-regular-400.svg diff --git a/src/assets/webfonts/fa-regular-400.ttf b/projects/mdm-ui/src/assets/webfonts/fa-regular-400.ttf similarity index 100% rename from src/assets/webfonts/fa-regular-400.ttf rename to projects/mdm-ui/src/assets/webfonts/fa-regular-400.ttf diff --git a/src/assets/webfonts/fa-regular-400.woff b/projects/mdm-ui/src/assets/webfonts/fa-regular-400.woff similarity index 100% rename from src/assets/webfonts/fa-regular-400.woff rename to projects/mdm-ui/src/assets/webfonts/fa-regular-400.woff diff --git a/src/assets/webfonts/fa-regular-400.woff2 b/projects/mdm-ui/src/assets/webfonts/fa-regular-400.woff2 similarity index 100% rename from src/assets/webfonts/fa-regular-400.woff2 rename to projects/mdm-ui/src/assets/webfonts/fa-regular-400.woff2 diff --git a/src/assets/webfonts/fa-solid-900.eot b/projects/mdm-ui/src/assets/webfonts/fa-solid-900.eot similarity index 100% rename from src/assets/webfonts/fa-solid-900.eot rename to projects/mdm-ui/src/assets/webfonts/fa-solid-900.eot diff --git a/src/assets/webfonts/fa-solid-900.svg b/projects/mdm-ui/src/assets/webfonts/fa-solid-900.svg similarity index 100% rename from src/assets/webfonts/fa-solid-900.svg rename to projects/mdm-ui/src/assets/webfonts/fa-solid-900.svg diff --git a/src/assets/webfonts/fa-solid-900.ttf b/projects/mdm-ui/src/assets/webfonts/fa-solid-900.ttf similarity index 100% rename from src/assets/webfonts/fa-solid-900.ttf rename to projects/mdm-ui/src/assets/webfonts/fa-solid-900.ttf diff --git a/src/assets/webfonts/fa-solid-900.woff b/projects/mdm-ui/src/assets/webfonts/fa-solid-900.woff similarity index 100% rename from src/assets/webfonts/fa-solid-900.woff rename to projects/mdm-ui/src/assets/webfonts/fa-solid-900.woff diff --git a/src/assets/webfonts/fa-solid-900.woff2 b/projects/mdm-ui/src/assets/webfonts/fa-solid-900.woff2 similarity index 100% rename from src/assets/webfonts/fa-solid-900.woff2 rename to projects/mdm-ui/src/assets/webfonts/fa-solid-900.woff2 diff --git a/src/environments/env.d.ts b/projects/mdm-ui/src/environments/env.d.ts similarity index 100% rename from src/environments/env.d.ts rename to projects/mdm-ui/src/environments/env.d.ts diff --git a/src/environments/environment.prod.ts b/projects/mdm-ui/src/environments/environment.prod.ts similarity index 97% rename from src/environments/environment.prod.ts rename to projects/mdm-ui/src/environments/environment.prod.ts index 7ef919b9b..6815b385f 100644 --- a/src/environments/environment.prod.ts +++ b/projects/mdm-ui/src/environments/environment.prod.ts @@ -16,7 +16,7 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ -const packageFile = require('../../package.json'); +const packageFile = require('../../../../package.json'); export const environment = { production: true, diff --git a/src/environments/environment.ts b/projects/mdm-ui/src/environments/environment.ts similarity index 98% rename from src/environments/environment.ts rename to projects/mdm-ui/src/environments/environment.ts index 64983f41c..fba91d11a 100644 --- a/src/environments/environment.ts +++ b/projects/mdm-ui/src/environments/environment.ts @@ -20,7 +20,7 @@ SPDX-License-Identifier: Apache-2.0 // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. // The list of file replacements can be found in `angular.json`. -const packageFile = require('../../package.json'); +const packageFile = require('../../../../package.json'); export const environment = { production: false, diff --git a/src/index.html b/projects/mdm-ui/src/index.html similarity index 100% rename from src/index.html rename to projects/mdm-ui/src/index.html diff --git a/src/main.ts b/projects/mdm-ui/src/main.ts similarity index 100% rename from src/main.ts rename to projects/mdm-ui/src/main.ts diff --git a/src/polyfills.ts b/projects/mdm-ui/src/polyfills.ts similarity index 100% rename from src/polyfills.ts rename to projects/mdm-ui/src/polyfills.ts diff --git a/src/setupJest.ts b/projects/mdm-ui/src/setupJest.ts similarity index 71% rename from src/setupJest.ts rename to projects/mdm-ui/src/setupJest.ts index 6bff84253..131cadc46 100644 --- a/src/setupJest.ts +++ b/projects/mdm-ui/src/setupJest.ts @@ -16,5 +16,12 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ -import 'jest-preset-angular/setup-jest'; + +/** + * Note: Do *not* import this again. The npm command `npm run test` will actually call `ng test` and go through + * the @angular-builders/jest facade, this internally calls 'jest-preset-angular/setup-jest' for you. Calling it + * twice will produce an error. + */ +// import 'jest-preset-angular/setup-jest'; + // import './jestGlobalMocks'; // browser mocks globally available for every test diff --git a/src/static-pages/open-id-connect-redirect.html b/projects/mdm-ui/src/static-pages/open-id-connect-redirect.html similarity index 100% rename from src/static-pages/open-id-connect-redirect.html rename to projects/mdm-ui/src/static-pages/open-id-connect-redirect.html diff --git a/src/style/_default.scss b/projects/mdm-ui/src/style/_default.scss similarity index 100% rename from src/style/_default.scss rename to projects/mdm-ui/src/style/_default.scss diff --git a/src/style/_main.scss b/projects/mdm-ui/src/style/_main.scss similarity index 100% rename from src/style/_main.scss rename to projects/mdm-ui/src/style/_main.scss diff --git a/src/style/abstracts/_helpers.scss b/projects/mdm-ui/src/style/abstracts/_helpers.scss similarity index 100% rename from src/style/abstracts/_helpers.scss rename to projects/mdm-ui/src/style/abstracts/_helpers.scss diff --git a/src/style/abstracts/_mixins.scss b/projects/mdm-ui/src/style/abstracts/_mixins.scss similarity index 100% rename from src/style/abstracts/_mixins.scss rename to projects/mdm-ui/src/style/abstracts/_mixins.scss diff --git a/src/style/abstracts/_variables.scss b/projects/mdm-ui/src/style/abstracts/_variables.scss similarity index 100% rename from src/style/abstracts/_variables.scss rename to projects/mdm-ui/src/style/abstracts/_variables.scss diff --git a/src/style/components/_custom.scss b/projects/mdm-ui/src/style/components/_custom.scss similarity index 100% rename from src/style/components/_custom.scss rename to projects/mdm-ui/src/style/components/_custom.scss diff --git a/src/style/components/_footer.scss b/projects/mdm-ui/src/style/components/_footer.scss similarity index 100% rename from src/style/components/_footer.scss rename to projects/mdm-ui/src/style/components/_footer.scss diff --git a/src/style/components/_forms.scss b/projects/mdm-ui/src/style/components/_forms.scss similarity index 98% rename from src/style/components/_forms.scss rename to projects/mdm-ui/src/style/components/_forms.scss index 59b1a13f2..f9b31a351 100644 --- a/src/style/components/_forms.scss +++ b/projects/mdm-ui/src/style/components/_forms.scss @@ -17,7 +17,7 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ -@import "style/abstracts/variables"; +@import "abstracts/variables"; /* Form specific style */ form.mdm--form { diff --git a/src/style/components/_header.scss b/projects/mdm-ui/src/style/components/_header.scss similarity index 100% rename from src/style/components/_header.scss rename to projects/mdm-ui/src/style/components/_header.scss diff --git a/src/style/components/_modal.scss b/projects/mdm-ui/src/style/components/_modal.scss similarity index 100% rename from src/style/components/_modal.scss rename to projects/mdm-ui/src/style/components/_modal.scss diff --git a/src/style/components/_table.scss b/projects/mdm-ui/src/style/components/_table.scss similarity index 100% rename from src/style/components/_table.scss rename to projects/mdm-ui/src/style/components/_table.scss diff --git a/src/style/layout/_admin.scss b/projects/mdm-ui/src/style/layout/_admin.scss similarity index 98% rename from src/style/layout/_admin.scss rename to projects/mdm-ui/src/style/layout/_admin.scss index b796d6e25..4e15e9493 100644 --- a/src/style/layout/_admin.scss +++ b/projects/mdm-ui/src/style/layout/_admin.scss @@ -16,7 +16,7 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ -@import "style/abstracts/variables"; +@import "abstracts/variables"; .heading-container { // padding: 14px 24px; diff --git a/src/style/layout/_browse.scss b/projects/mdm-ui/src/style/layout/_browse.scss similarity index 100% rename from src/style/layout/_browse.scss rename to projects/mdm-ui/src/style/layout/_browse.scss diff --git a/src/style/layout/_home.scss b/projects/mdm-ui/src/style/layout/_home.scss similarity index 100% rename from src/style/layout/_home.scss rename to projects/mdm-ui/src/style/layout/_home.scss diff --git a/src/style/layout/_tree.scss b/projects/mdm-ui/src/style/layout/_tree.scss similarity index 100% rename from src/style/layout/_tree.scss rename to projects/mdm-ui/src/style/layout/_tree.scss diff --git a/src/style/themes/default.scss b/projects/mdm-ui/src/style/themes/default.scss similarity index 100% rename from src/style/themes/default.scss rename to projects/mdm-ui/src/style/themes/default.scss diff --git a/src/style/themes/nhs-digital.scss b/projects/mdm-ui/src/style/themes/nhs-digital.scss similarity index 100% rename from src/style/themes/nhs-digital.scss rename to projects/mdm-ui/src/style/themes/nhs-digital.scss diff --git a/src/styles.scss b/projects/mdm-ui/src/styles.scss similarity index 100% rename from src/styles.scss rename to projects/mdm-ui/src/styles.scss diff --git a/tsconfig.app.json b/projects/mdm-ui/tsconfig.app.json similarity index 58% rename from tsconfig.app.json rename to projects/mdm-ui/tsconfig.app.json index 9defa55f5..f22cb0b59 100644 --- a/tsconfig.app.json +++ b/projects/mdm-ui/tsconfig.app.json @@ -1,8 +1,8 @@ { - "extends": "./tsconfig.json", + "extends": "../../tsconfig.json", "compilerOptions": { - "outDir": "./out-tsc/app", - "types": ["node"] + "outDir": "../../out-tsc/app", + "types": ["node"], }, "files": [ "src/main.ts", diff --git a/tsconfig.spec.json b/projects/mdm-ui/tsconfig.spec.json similarity index 74% rename from tsconfig.spec.json rename to projects/mdm-ui/tsconfig.spec.json index 35892f1e8..8dc7c19e5 100644 --- a/tsconfig.spec.json +++ b/projects/mdm-ui/tsconfig.spec.json @@ -1,7 +1,7 @@ { - "extends": "./tsconfig.json", + "extends": "../../tsconfig.json", "compilerOptions": { - "outDir": "./out-tsc/spec", + "outDir": "../../out-tsc/spec", "types": [ "jest", "node" diff --git a/webpack.config.js b/projects/mdm-ui/webpack.config.js similarity index 94% rename from webpack.config.js rename to projects/mdm-ui/webpack.config.js index 2e8a329f3..1d0a179cd 100644 --- a/webpack.config.js +++ b/projects/mdm-ui/webpack.config.js @@ -17,7 +17,6 @@ limitations under the License. SPDX-License-Identifier: Apache-2.0 */ const webpack = require('webpack'); -const MiniCssExtractPlugin = require('./node_modules/mini-css-extract-plugin'); module.exports = { module: { diff --git a/tsconfig.json b/tsconfig.json index 1bdde1a45..22094ba99 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,9 @@ { "compileOnSave": false, "compilerOptions": { - "baseUrl": "./src", - "paths": { - "@mdm/*": ["./app/*"], - "@env/*": ["./environments/*"] - }, + "baseUrl": "./", "emitDecoratorMetadata" : true, - "outDir": "./dist/", + "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "downlevelIteration": true, @@ -20,6 +16,10 @@ "types": [ "jest" ], + "paths": { + "@mdm/*": ["projects/mdm-ui/src/app/*"], + "@env/*": ["projects/mdm-ui/src/environments/*"] + }, "typeRoots": [ "node_modules/@types" ],