diff --git a/.travis.yml b/.travis.yml index ef31148ae1..2d12b518fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ sudo: required node_js: # Use the explicit NodeJS LTS version 8.9.4 to avoid any automatic upgrade of the version. - '8.9.4' - + addons: chrome: stable before_script: @@ -17,84 +17,74 @@ before_install: - sh -e /etc/init.d/xvfb start - sleep 3 # give xvfb some time to start -env: - matrix: - - MODULE=core - - MODULE=insights - - MODULE=process-services - - MODULE=content-services - - MODULE=demo-shell - - MODULE=packaging - -install: - - if ([ "$MODULE" != "demo-shell" ]); then - if ([ "$TRAVIS_BRANCH" = "master" ]); then - (./scripts/npm-build-all.sh || exit 1;); - else - (./scripts/npm-build-all.sh -vjsapi alpha -sb || exit 1;); - fi - fi - -script: - - if ([ "$MODULE" == "core" ]); then - (./scripts/npm-build-all.sh -si -sb -t "core" || exit 1;); - fi - - - if ([ "$MODULE" == "process-services" ]); then - (./scripts/npm-build-all.sh -si -sb -t "process-services" || exit 1;); - fi - - - if ([ "$MODULE" == "insights" ]); then - (./scripts/npm-build-all.sh -si -sb -t "insights" || exit 1;); - fi - - - if ([ "$MODULE" == "content-services" ]); then - (./scripts/npm-build-all.sh -si -sb -t "content-services" || exit 1;); - fi - - - if ([ "$MODULE" == "packaging" ]); then - (npm run build-lib || exit 1;); - fi - - - if ([ "$MODULE" == "demo-shell" ]); then - if ([ "$TRAVIS_BRANCH" = "master" ]); then - (./scripts/start.sh -t -ss || exit 1;); - else - (./scripts/start.sh -dev -t -ss -vjsapi alpha || exit 1;); - fi - fi - jobs: include: + - stage: Warm Up Cache + script: if ([ "$TRAVIS_BRANCH" = "master" ]); then + (./scripts/npm-build-all.sh || exit 1;); + else + (./scripts/npm-build-all.sh -vjsapi alpha -sb --skip-lint || exit 1;); + fi + - stage: Lint + script: (./scripts/lint.sh) + - stage: Unit test + env: STAGE=core + script: (./scripts/npm-build-all.sh -si -sb -t "core" --skip-lint || exit 1;); + - stage: Unit test + env: STAGE=process-services + script: (./scripts/npm-build-all.sh -si -sb -t "process-services" --skip-lint|| exit 1;); + - stage: Unit test + env: STAGE=insights + script: (./scripts/npm-build-all.sh -si -sb -t "insights" --skip-lint || exit 1;); + - stage: Unit test + env: STAGE=content-services + script: (./scripts/npm-build-all.sh -si -sb -t "content-services" --skip-lint|| exit 1;); + - stage: Unit test + env: STAGE=demo-shell + script: if ([ "$TRAVIS_BRANCH" = "master" ]); then + (./scripts/start.sh -t -ss || exit 1;); + else + (./scripts/start.sh -dev -t -ss -vjsapi alpha || exit 1;); + fi + - stage: Packaging test + script: (npm run build-lib || exit 1;); - stage: Test Update version 2.0.0 + env: STAGE=test-BC script: ./scripts/test-e2e-bc.sh - - # Test expors + - stage: Test Update version 2.0.0 + env: STAGE=test-export script: npm run test-export - - # Test Update generator-ng2-alfresco-app + - stage: Update children projects dependency #Update generator-ng2-alfresco-app if: tag =~ .*beta.* script: ./scripts/update-project.sh -gnu -t $GITHUB_TOKEN -n generator-ng2-alfresco-app - - # Test Update alfresco-content-app + - stage: Update children projects dependency # Test Update alfresco-content-app if: tag =~ .*beta.* script: ./scripts/update-project.sh -gnu -t $GITHUB_TOKEN -n alfresco-content-app - - # Test Update adf-app-manager-ui + - stage: Update children projects dependency # Test Update adf-app-manager-ui if: tag =~ .*beta.* script: ./scripts/update-project.sh -gnu -t $GITHUB_TOKEN -n adf-app-manager-ui - - # Test Update aalfresco-ng2-components + - stage: Update children projects dependency # Test Update aalfresco-ng2-components if: tag =~ .*beta.* script: ./scripts/update-project.sh -gnu -t $GITHUB_TOKEN -n alfresco-ng2-components - - # Test Update alfresco-modeler-app + - stage: Update children projects dependency # Test Update alfresco-modeler-app if: tag =~ .*beta.* script: ./scripts/update-project.sh -gnu -t $GITHUB_TOKEN -n alfresco-modeler-app - - stage: e2e Test - script: ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save -dev -timeout 40000 --folder core - - # Test process-services - script: ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save -dev -timeout 40000 --folder process-services - - # Test content-services - script: ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save -dev -timeout 40000 --folder content-services - - # Test insights - script: ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save -dev -timeout 40000 --folder insights + - stage: Create Shell dist + script: ./copy-dist-node.sh; npm run build:dist; node ./scripts/upload-build-in-cs.js -u $E2E_USERNAME -p $E2E_PASSWORD --host $E2E_HOST -f $TRAVIS_BUILD_NUMBER + - stage: e2e Test # Test core + env: STAGE=core + script: node ./scripts/download-build-in-cs.js --username $E2E_USERNAME --password $E2E_USERNAME --host $E2E_HOST --folder $TRAVIS_BUILD_NUMBER; ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save --folder core --skip-lint --use-dist + - stage: e2e Test # Test process-services + env: STAGE=process-services + script: node ./scripts/download-build-in-cs.js --username $E2E_USERNAME --password $E2E_USERNAME --host $E2E_HOST --folder $TRAVIS_BUILD_NUMBER; ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save --folder process-services --skip-lint --use-dist + - stage: e2e Test # Test content-services + env: STAGE=content-services + script: node ./scripts/download-build-in-cs.js --username $E2E_USERNAME --password $E2E_USERNAME --host $E2E_HOST --folder $TRAVIS_BUILD_NUMBER; ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save --folder content-services --skip-lint --use-dist + - stage: e2e Test # Test insights + env: STAGE=insights + script: node ./scripts/download-build-in-cs.js --username $E2E_USERNAME --password $E2E_USERNAME --host $E2E_HOST --folder $TRAVIS_BUILD_NUMBER; ./scripts/test-e2e-lib.sh -host localhost:4200 -proxy $E2E_HOST -u $E2E_USERNAME -p $E2E_PASSWORD -e $E2E_EMAIL -b -save -folder insights --skip-lint --use-dist - stage: Create Docker PR - script: ./scripts/test-dist.sh -n $TRAVIS_BUILD_NUMBER && (./scripts/pr-publish.sh -n $TRAVIS_BUILD_NUMBER -r $REPO_DOCKER -u $USERNAME_DOCKER -p $PASSWORD_DOCKER || exit 1) + script: node ./scripts/download-build-in-cs.js --username $E2E_USERNAME --password $E2E_USERNAME --host $E2E_HOST --folder $TRAVIS_BUILD_NUMBER --base-href $TRAVIS_BUILD_NUMBER; -n $TRAVIS_BUILD_NUMBER && (./scripts/pr-publish.sh -n $TRAVIS_BUILD_NUMBER -r $REPO_DOCKER -u $USERNAME_DOCKER -p $PASSWORD_DOCKER || exit 1) - stage: Deploy Docker PR script: node ./scripts/pr-deploy.js -n $TRAVIS_BUILD_NUMBER -u $RANCHER_TOKEN -p $RANCHER_SECRET -s $REPO_RANCHER --image "docker:$REPO_DOCKER/adf/demo-shell:$TRAVIS_BUILD_NUMBER" --env $ENVIRONMENT_NAME -r $ENVIRONMENT_URL || exit 1 @@ -129,3 +119,5 @@ after_success: cache: directories: - node_modules + - lib/dist + - demo-shell/dist diff --git a/angular.json b/angular.json index 3efbd4cb0d..528f305468 100644 --- a/angular.json +++ b/angular.json @@ -94,7 +94,7 @@ "extractLicenses": true, "vendorChunk": true, "buildOptimizer": true, - "verbose": true, + "verbose": false, "fileReplacements": [ { "replace": "demo-shell/src/environments/environment.ts", @@ -325,7 +325,7 @@ "extractLicenses": true, "vendorChunk": true, "buildOptimizer": true, - "verbose": true, + "verbose": false, "fileReplacements": [ { "replace": "demo-shell/src/environments/environment.ts", @@ -465,29 +465,6 @@ } } }, - "demo-shell-e2e": { - "root": "demo-shell", - "sourceRoot": "demo-shell/e2e", - "projectType": "application", - "architect": { - "e2e": { - "builder": "@angular-devkit/build-angular:protractor", - "options": { - "protractorConfig": "./protractor.conf.js", - "devServerTarget": "dist:serve" - } - }, - "lint": { - "builder": "@angular-devkit/build-angular:tslint", - "options": { - "tsConfig": [], - "exclude": [ - "**/node_modules/**/*" - ] - } - } - } - }, "lib-e2e": { "root": "demo-shell", "sourceRoot": "./demo-shell", diff --git a/demo-shell/e2e/app.e2e-spec.ts b/demo-shell/e2e/app.e2e-spec.e2e.ts similarity index 100% rename from demo-shell/e2e/app.e2e-spec.ts rename to demo-shell/e2e/app.e2e-spec.e2e.ts diff --git a/demo-shell/src/app/app.module.ts b/demo-shell/src/app/app.module.ts index ad4127be32..e89cb748d0 100644 --- a/demo-shell/src/app/app.module.ts +++ b/demo-shell/src/app/app.module.ts @@ -96,7 +96,7 @@ import { ProcessModule } from '@alfresco/adf-process-services'; ProcessModule.forRoot(), ThemePickerModule, ChartsModule, - MonacoEditorModule.forRoot(), + MonacoEditorModule.forRoot() ], declarations: [ AppComponent, diff --git a/demo-shell/src/app/components/app-layout/app-layout.component.ts b/demo-shell/src/app/components/app-layout/app-layout.component.ts index 2f718ed669..62d83089d3 100644 --- a/demo-shell/src/app/components/app-layout/app-layout.component.ts +++ b/demo-shell/src/app/components/app-layout/app-layout.component.ts @@ -19,7 +19,6 @@ import { Component, ViewEncapsulation, OnInit } from '@angular/core'; import { UserPreferencesService, AppConfigService, AlfrescoApiService } from '@alfresco/adf-core'; import { HeaderDataService } from '../header-data/header-data.service'; - @Component({ templateUrl: 'app-layout.component.html', styleUrls: ['app-layout.component.scss'], diff --git a/demo-shell/src/app/components/files/files.component.ts b/demo-shell/src/app/components/files/files.component.ts index 27d4177fc7..96007d32a1 100644 --- a/demo-shell/src/app/components/files/files.component.ts +++ b/demo-shell/src/app/components/files/files.component.ts @@ -227,7 +227,7 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy { ngOnInit() { if (!this.pagination) { - this.pagination = { + this.pagination = { maxItems: this.preference.paginationSize, skipCount: 0 }; @@ -265,7 +265,7 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy { ngOnChanges(changes: SimpleChanges) { if (changes.nodeResult && changes.nodeResult.currentValue) { - this.nodeResult = changes.nodeResult.currentValue; + this.nodeResult = changes.nodeResult.currentValue; this.pagination = this.nodeResult.list.pagination; } if (!this.pagination) { @@ -558,7 +558,7 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy { } runCustomAction(event) { - console.log(event); + this.logService.log(event); } getFileFiltering() { diff --git a/demo-shell/src/app/components/form/fake-form.service.ts b/demo-shell/src/app/components/form/fake-form.service.ts index 9afa3fbd8e..17c7de8f90 100644 --- a/demo-shell/src/app/components/form/fake-form.service.ts +++ b/demo-shell/src/app/components/form/fake-form.service.ts @@ -28,9 +28,9 @@ export class FakeFormService extends FormService { executeOutcome = new Subject(); constructor(appConfig: AppConfigService, - ecmModelService: EcmModelService, - apiService: AlfrescoApiService, - protected logService: LogService) { + ecmModelService: EcmModelService, + apiService: AlfrescoApiService, + protected logService: LogService) { super(ecmModelService, apiService, logService); } diff --git a/demo-shell/src/app/components/form/form-loading.component.ts b/demo-shell/src/app/components/form/form-loading.component.ts index 0d6d9deb72..70e688e0b3 100644 --- a/demo-shell/src/app/components/form/form-loading.component.ts +++ b/demo-shell/src/app/components/form/form-loading.component.ts @@ -26,7 +26,7 @@ import { FakeFormService } from './fake-form.service'; templateUrl: 'form-loading.component.html', styleUrls: ['form-loading.component.scss'], providers: [ - { provide: FormService, useClass: FakeFormService }, + { provide: FormService, useClass: FakeFormService } ] }) export class FormLoadingComponent implements OnInit { diff --git a/demo-shell/src/app/components/header-data/header-data.service.ts b/demo-shell/src/app/components/header-data/header-data.service.ts index dd22005510..d320e15c1b 100644 --- a/demo-shell/src/app/components/header-data/header-data.service.ts +++ b/demo-shell/src/app/components/header-data/header-data.service.ts @@ -17,7 +17,6 @@ import { Injectable, Output, EventEmitter } from '@angular/core'; - @Injectable() export class HeaderDataService { diff --git a/demo-shell/src/app/components/permissions/demo-permissions.component.ts b/demo-shell/src/app/components/permissions/demo-permissions.component.ts index 87576ec947..6e8c5752d5 100644 --- a/demo-shell/src/app/components/permissions/demo-permissions.component.ts +++ b/demo-shell/src/app/components/permissions/demo-permissions.component.ts @@ -16,7 +16,7 @@ */ import { Component, Optional, OnInit, ViewChild } from '@angular/core'; -import { ActivatedRoute, Params} from '@angular/router'; +import { ActivatedRoute, Params } from '@angular/router'; import { PermissionListComponent, NodePermissionDialogService } from '@alfresco/adf-content-services'; import { MinimalNodeEntryEntity } from 'alfresco-js-api'; import { NodesApiService, NotificationService } from '@alfresco/adf-core'; diff --git a/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts b/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts index e7cc7958d3..a4f9392f8d 100644 --- a/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts +++ b/demo-shell/src/app/components/process-list-demo/process-list-demo.component.ts @@ -22,7 +22,7 @@ import { debounceTime } from 'rxjs/operators'; @Component({ templateUrl: './process-list-demo.component.html', - styleUrls: [`./process-list-demo.component.scss`], + styleUrls: [`./process-list-demo.component.scss`] }) export class ProcessListDemoComponent implements OnInit { diff --git a/demo-shell/src/app/components/report-issue/report-issue.component.ts b/demo-shell/src/app/components/report-issue/report-issue.component.ts index 5ed1436682..9c7fa31a63 100644 --- a/demo-shell/src/app/components/report-issue/report-issue.component.ts +++ b/demo-shell/src/app/components/report-issue/report-issue.component.ts @@ -19,7 +19,7 @@ import { Component } from '@angular/core'; @Component({ templateUrl: './report-issue.component.html', - styleUrls: [`./report-issue.component.scss`], + styleUrls: [`./report-issue.component.scss`] }) export class ReportIssueComponent { diff --git a/demo-shell/src/app/components/settings/settings.component.ts b/demo-shell/src/app/components/settings/settings.component.ts index 464bcd0eab..d0ee1ce25f 100644 --- a/demo-shell/src/app/components/settings/settings.component.ts +++ b/demo-shell/src/app/components/settings/settings.component.ts @@ -16,7 +16,7 @@ */ import { Component } from '@angular/core'; -import { LogService, } from '@alfresco/adf-core'; +import { LogService } from '@alfresco/adf-core'; import { Router } from '@angular/router'; @Component({ diff --git a/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts b/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts index 2b76ecb000..70d47b871b 100644 --- a/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts +++ b/demo-shell/src/app/components/task-list-demo/task-list-demo.component.ts @@ -22,7 +22,7 @@ import { debounceTime } from 'rxjs/operators'; @Component({ templateUrl: './task-list-demo.component.html', - styleUrls: [`./task-list-demo.component.scss`], + styleUrls: [`./task-list-demo.component.scss`] }) export class TaskListDemoComponent implements OnInit { diff --git a/demo-shell/src/polyfills.ts b/demo-shell/src/polyfills.ts index 6ec409f285..dbac04718a 100644 --- a/demo-shell/src/polyfills.ts +++ b/demo-shell/src/polyfills.ts @@ -67,23 +67,9 @@ import 'core-js/es7/array'; */ import 'zone.js/dist/zone'; // Included with Angular CLI. -/*************************************************************************************************** - * APPLICATION IMPORTS - */ - -/** - * Date, currency, decimal and percent pipes. - * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10 - */ -import 'intl'; // Run `npm install --save intl`. -/** - * Need to import at least one locale-data with intl. - */ -import 'intl/locale-data/jsonp/en'; - /** * Support custom event in IE11 * - * */ + */ import 'custom-event-polyfill/custom-event-polyfill'; // Run `npm install --save custom-event-polyfill`. diff --git a/demo-shell/src/tsconfig.dev.json b/demo-shell/src/tsconfig.dev.json index c1fdbe8b55..e043c48316 100644 --- a/demo-shell/src/tsconfig.dev.json +++ b/demo-shell/src/tsconfig.dev.json @@ -36,6 +36,8 @@ "**/*.spec.ts" ], "angularCompilerOptions": { - "skipTemplateCodegen": false + "skipTemplateCodegen": false, + "entryModule": "./app/app.module#AppModule", + "genDir": "../ngfactory" } } diff --git a/demo-shell/tslint.json b/demo-shell/tslint.json index 3d218ba58a..2a2ae4d21f 100644 --- a/demo-shell/tslint.json +++ b/demo-shell/tslint.json @@ -6,10 +6,18 @@ "rules": { "adf-license-banner": [ true, - "**/*.ts" + "e2e/**/*.ts" + ], + "align": [ + true, + "parameters", + "statements" + ], + "ban": [ + true, + "eval", + "fdescribe" ], - "arrow-return-shorthand": true, - "callable-types": true, "class-name": true, "comment-format": [ true, @@ -18,18 +26,17 @@ "curly": true, "eofline": true, "forin": true, - "import-spacing": true, "indent": [ true, "spaces" ], - "interface-over-type-literal": true, + "interface-name": false, + "jsdoc-format": true, "label-position": true, "max-line-length": [ true, 180 ], - "member-access": false, "member-ordering": [ true, { @@ -41,10 +48,14 @@ ] } ], + "no-any": false, "no-arg": true, - "no-bitwise": true, + "no-bitwise": false, + "no-conditional-assignment": true, + "no-consecutive-blank-lines": true, "no-console": [ true, + "log", "debug", "info", "time", @@ -52,20 +63,21 @@ "trace" ], "no-construct": true, + "no-constructor-vars": false, "no-debugger": true, "no-duplicate-super": true, + "no-duplicate-variable": true, "no-empty": false, - "no-empty-interface": true, "no-eval": true, - "no-inferrable-types": [true, "ignore-params"], + "no-inferrable-types": false, + "no-internal-module": true, + "no-require-imports": false, "no-shadowed-variable": true, - "no-string-literal": false, - "no-string-throw": true, "no-switch-case-fall-through": true, "no-trailing-whitespace": true, "no-unused-expression": true, - "no-use-before-declare": true, "no-var-keyword": true, + "no-var-requires": true, "object-literal-sort-keys": false, "one-line": [ true, @@ -74,20 +86,29 @@ "check-else", "check-whitespace" ], - "prefer-const": true, "quotemark": [ true, - "single" + "single", + "avoid-escape" ], "radix": true, "semicolon": [ true, "always" ], + "switch-default": true, + "trailing-comma": [ + true, + { + "multiline": "never", + "singleline": "never" + } + ], "triple-equals": [ true, "allow-null-check" ], + "typedef": false, "typedef-whitespace": [ true, { @@ -98,26 +119,53 @@ "variable-declaration": "nospace" } ], + "use-strict": false, + "variable-name": [ + true, + "check-format", + "allow-leading-underscore", + "ban-keywords" + ], + "callable-types": true, + "import-spacing": true, + "interface-over-type-literal": true, + "member-access": false, + "no-empty-interface": true, + "no-string-literal": false, + "no-string-throw": true, + "prefer-const": false, "unified-signatures": true, - "variable-name": false, "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-separator", - "check-type" + "check-typecast", + "check-type", + "check-typecast", + "check-module" ], - "directive-selector": [true, "attribute", "app", "camelCase"], "component-selector": [true, "element", "app", "kebab-case"], + "naming-convention": [ + { + "type": "enumMember", + "format": "PascalCase" + } + ], + "ordered-imports": false, "use-input-property-decorator": true, "use-output-property-decorator": true, - "no-input-rename": true, - "no-output-rename": true, + "use-host-property-decorator": false, "use-life-cycle-interface": true, "use-pipe-transform-interface": true, "component-class-suffix": true, - "directive-class-suffix": true + "directive-class-suffix": true, + "adf-file-name": true, + "adf-class-name": true, + "adf-prefix-name": true, + "no-input-rename": true, + "no-output-rename": true } } diff --git a/demo-shell/zip/demo.zip b/demo-shell/zip/demo.zip new file mode 100644 index 0000000000..771d323c30 Binary files /dev/null and b/demo-shell/zip/demo.zip differ diff --git a/docs/content-services/document-list.component.md b/docs/content-services/document-list.component.md index d6f15c0002..dfe47d0c76 100644 --- a/docs/content-services/document-list.component.md +++ b/docs/content-services/document-list.component.md @@ -366,6 +366,13 @@ export class FilesComponent implements OnInit { } ``` +```html + + +``` + + The `console.log(node)` for the `getNodeInfo` callback is just for study and debug purposes. It is useful for examining other information that you can access if necessary: diff --git a/e2e/lite-server-proxy.js b/e2e/lite-server-proxy.js new file mode 100644 index 0000000000..4f9d06edd4 --- /dev/null +++ b/e2e/lite-server-proxy.js @@ -0,0 +1,33 @@ +var PROXY_HOST_ADF = process.env.PROXY_HOST_ADF; +var HOST = process.env.URL_HOST_ADF; + +let proxy = require('http-proxy-middleware'); + +let targetProxy = 'http://' + (PROXY_HOST_ADF || HOST); +let fallback = require('connect-history-api-fallback'); + +console.log('targetProxy'); + +module.exports = { + 'port': 4200, + open: false, + server: { + middleware: { + 1: proxy('/alfresco', { + target: targetProxy, + changeOrigin: true, + pathRewrite: { + "^/alfresco/alfresco": "" + } + }), + 2: proxy('/activiti-app', { + target: targetProxy, + changeOrigin: true, + "pathRewrite": { + "^/activiti-app/activiti-app": "" + } + }), + 3: fallback({index: '/index.html', verbose: true}) + } + } +}; diff --git a/e2e/process-services/comment_component_processes.e2e.ts b/e2e/process-services/comment_component_processes.e2e.ts index a988e184a6..ea39d289df 100644 --- a/e2e/process-services/comment_component_processes.e2e.ts +++ b/e2e/process-services/comment_component_processes.e2e.ts @@ -44,35 +44,29 @@ describe('Comment component for Processes', () => { hostBpm: TestConfig.adf.url }); + let apps = new AppsActions(); + let users = new UsersActions(); + + await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword); + + user = await users.createTenantAndUser(this.alfrescoJsApi); + + tenantId = user.tenantId; + + await this.alfrescoJsApi.login(user.email, user.password); + + let importedApp = await apps.importPublishDeployApp(this.alfrescoJsApi, app.file_location); + appId = importedApp.id; + + let processWithComment = await apps.startProcess(this.alfrescoJsApi, 'Task App', 'Comment APS'); + processInstanceId = processWithComment.id; + + await loginPage.loginToProcessServicesUsingUserModel(user); + done(); }); - beforeEach(async(done) => { - let apps = new AppsActions(); - let users = new UsersActions(); - - await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword); - - user = await users.createTenantAndUser(this.alfrescoJsApi); - - tenantId = user.tenantId; - - await this.alfrescoJsApi.login(user.email, user.password); - - let importedApp = await apps.importPublishDeployApp(this.alfrescoJsApi, app.file_location); - appId = importedApp.id; - - let processWithComment = await apps.startProcess(this.alfrescoJsApi, 'Task App', 'Comment APS'); - processInstanceId = processWithComment.id; - - await loginPage.loginToProcessServicesUsingUserModel(user); - - done(); - }); - - afterEach(async(done) => { - await loginPage.loginToProcessServicesUsingUserModel(user); - + afterAll(async(done) => { await this.alfrescoJsApi.activiti.modelsApi.deleteModel(appId); await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword); diff --git a/e2e/process-services/comment_component_tasks.e2e.ts b/e2e/process-services/comment_component_tasks.e2e.ts index d28a340d9f..e5004fdcb6 100644 --- a/e2e/process-services/comment_component_tasks.e2e.ts +++ b/e2e/process-services/comment_component_tasks.e2e.ts @@ -53,10 +53,6 @@ describe('Comment component for Processes', () => { hostBpm: TestConfig.adf.url }); - done(); - }); - - beforeEach(async(done) => { let apps = new AppsActions(); let users = new UsersActions(); @@ -78,9 +74,7 @@ describe('Comment component for Processes', () => { done(); }); - afterEach(async(done) => { - await loginPage.loginToProcessServicesUsingUserModel(user); - + afterAll(async(done) => { await this.alfrescoJsApi.activiti.modelsApi.deleteModel(appId); await this.alfrescoJsApi.login(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword); diff --git a/lib/core/datatable/components/datatable/datatable.component.html b/lib/core/datatable/components/datatable/datatable.component.html index f2e339a702..337d83a034 100644 --- a/lib/core/datatable/components/datatable/datatable.component.html +++ b/lib/core/datatable/components/datatable/datatable.component.html @@ -49,7 +49,6 @@
-
-
+
{{ asIconValue(row, col) }} @@ -104,7 +100,6 @@ {{ iconAltTextKey(data.getValue(row, col)) | translate }} @@ -183,6 +178,7 @@
+
=2.6.2 <2.10" } } @@ -641,13 +641,13 @@ } }, "@schematics/update": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/@schematics/update/-/update-0.7.3.tgz", - "integrity": "sha512-3nERgcu/fy2WG4U8wkYT7GbXzQsKSJUahXFRC6t0DIt5xNYhFzFyA91+QbSLLlRTJsHi3AqZ2GTufHuHKsCG6w==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@schematics/update/-/update-0.7.5.tgz", + "integrity": "sha512-pwNkXGtlzyCV6tsTPe8AgUuMCkmubcz94zgL6pSMdEe122yXBcKnr/PKqG9QzD/gGwmOcHUE9EWcuRtU5kdFpA==", "dev": true, "requires": { - "@angular-devkit/core": "0.7.3", - "@angular-devkit/schematics": "0.7.3", + "@angular-devkit/core": "0.7.5", + "@angular-devkit/schematics": "0.7.5", "npm-registry-client": "^8.5.1", "rxjs": "^6.0.0", "semver": "^5.3.0", @@ -655,9 +655,9 @@ }, "dependencies": { "@angular-devkit/core": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-0.7.3.tgz", - "integrity": "sha512-2fKNmv4sJ6EEONp6QJ2VcHlR0O2TAXWm6jQsWxJjfVvROhAY7eJkzhqi0pUoWhUiamxCk5ssl8p9KkhtOiTa4Q==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-0.7.5.tgz", + "integrity": "sha512-r99BZvvuNAqSRm05jXfx0sb3Ip0zvHPtAM6NReXzWPoqaVFpjVUdj/CKA+9HWG/Zt9meG9pEQt/HKK8UXaZDVA==", "dev": true, "requires": { "ajv": "~6.4.0", @@ -667,12 +667,12 @@ } }, "@angular-devkit/schematics": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-0.7.3.tgz", - "integrity": "sha512-OqZ9qzxDxEqAxV8n4uoq8IeSU+a2GN82z2N3a7z5nNxV6zfJo6K/33SLDuagGFSZfOUuP+35qaR+rHzSzByRig==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-0.7.5.tgz", + "integrity": "sha512-E7HkQeJawUskf2gPnogMc+cTdjJ2Iv3QEZOgprh/ExEmBYByWkGDRX5fQOuy8wME8VZqUBvQACZaVkEredn5EA==", "dev": true, "requires": { - "@angular-devkit/core": "0.7.3", + "@angular-devkit/core": "0.7.5", "rxjs": "^6.0.0" } } @@ -1188,9 +1188,9 @@ } }, "alfresco-js-api": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/alfresco-js-api/-/alfresco-js-api-2.5.0.tgz", - "integrity": "sha512-0DwSpofMsyLHs3kyPwl+2JvIOUmTpPeJkBF5cIXO/T6+hst9ZYKQRQLxcoCnuk6Ng43MN14NHawtKJH6jE2wyg==", + "version": "2.6.0-c87428564306f710159976b0d740a07a94326cf1", + "resolved": "https://registry.npmjs.org/alfresco-js-api/-/alfresco-js-api-2.6.0-c87428564306f710159976b0d740a07a94326cf1.tgz", + "integrity": "sha512-OPt75wllx+vjI0RgwbVdvUa4gs+UthJUS4iVaS8PhyXhXNxEHMuv2bKGH48cSolQbNH7kaurxqi80yl8b9kw3A==", "requires": { "event-emitter": "0.3.4", "superagent": "3.8.2" @@ -1395,6 +1395,60 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, + "archiver": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-3.0.0.tgz", + "integrity": "sha512-5QeR6Xc5hSA9X1rbQfcuQ6VZuUXOaEdB65Dhmk9duuRJHYif/ZyJfuyJqsQrj34PFjU5emv5/MmfgA8un06onw==", + "dev": true, + "requires": { + "archiver-utils": "^2.0.0", + "async": "^2.0.0", + "buffer-crc32": "^0.2.1", + "glob": "^7.0.0", + "readable-stream": "^2.0.0", + "tar-stream": "^1.5.0", + "zip-stream": "^2.0.1" + }, + "dependencies": { + "async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "dev": true, + "requires": { + "lodash": "^4.17.10" + } + } + } + }, + "archiver-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.0.0.tgz", + "integrity": "sha512-JRBgcVvDX4Mwu2RBF8bBaHcQCSxab7afsxAPYDQ5W+19quIPP5CfKE7Ql+UHs9wYvwsaNR8oDuhtf5iqrKmzww==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "graceful-fs": "^4.1.0", + "lazystream": "^1.0.0", + "lodash.assign": "^4.2.0", + "lodash.defaults": "^4.2.0", + "lodash.difference": "^4.5.0", + "lodash.flatten": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.toarray": "^4.4.0", + "lodash.union": "^4.6.0", + "normalize-path": "^3.0.0", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + } + } + }, "archy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", @@ -1614,6 +1668,12 @@ "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" }, + "async-each-series": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", + "integrity": "sha1-dhfBkXQB/Yykooqtzj266Yr+tDI=", + "dev": true + }, "async-foreach": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", @@ -2163,11 +2223,27 @@ "tryer": "^1.0.0" } }, + "big-integer": { + "version": "1.6.35", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.35.tgz", + "integrity": "sha512-jqLsX6dzmPHOhApAUyGwrpzqn3DXpdTqbOM6baPys7A423ys7IsTpcucDVGP0PmzxGsPYbW3xVOJ4SxAzI0vqQ==", + "dev": true + }, "big.js": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==" }, + "binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", + "dev": true, + "requires": { + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" + } + }, "binary-extensions": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", @@ -2188,7 +2264,6 @@ "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", "dev": true, - "optional": true, "requires": { "readable-stream": "~2.0.5" }, @@ -2197,15 +2272,13 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true, - "optional": true + "dev": true }, "readable-stream": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", "dev": true, - "optional": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.1", @@ -2219,8 +2292,7 @@ "version": "0.10.31", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true, - "optional": true + "dev": true } } }, @@ -2380,6 +2452,423 @@ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", "dev": true }, + "browser-sync": { + "version": "2.24.7", + "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.24.7.tgz", + "integrity": "sha512-NqXek0cPNEayQm77VGnD+qrwcVBTKMIQ9bdP6IWDRUTU1Bk7tZeq5QR3OG5Rr36Rao1t+Vx1QnfolHvvr5qsTA==", + "dev": true, + "requires": { + "browser-sync-ui": "v1.0.1", + "bs-recipes": "1.3.4", + "chokidar": "1.7.0", + "connect": "3.6.6", + "connect-history-api-fallback": "^1.5.0", + "dev-ip": "^1.0.1", + "easy-extender": "^2.3.4", + "eazy-logger": "3.0.2", + "etag": "^1.8.1", + "fresh": "^0.5.2", + "fs-extra": "3.0.1", + "http-proxy": "1.15.2", + "immutable": "3.8.2", + "localtunnel": "1.9.0", + "micromatch": "2.3.11", + "opn": "5.3.0", + "portscanner": "2.1.1", + "qs": "6.2.3", + "raw-body": "^2.3.2", + "resp-modifier": "6.0.2", + "rx": "4.1.0", + "serve-index": "1.9.1", + "serve-static": "1.13.2", + "server-destroy": "1.0.1", + "socket.io": "2.1.1", + "ua-parser-js": "0.7.17", + "yargs": "6.4.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "anymatch": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", + "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", + "dev": true, + "requires": { + "micromatch": "^2.1.5", + "normalize-path": "^2.0.0" + } + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1" + } + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true, + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + } + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "dev": true, + "requires": { + "anymatch": "^1.3.0", + "async-each": "^1.0.0", + "fsevents": "^1.0.0", + "glob-parent": "^2.0.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^2.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0" + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "engine.io": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz", + "integrity": "sha512-mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "base64id": "1.0.0", + "cookie": "0.3.1", + "debug": "~3.1.0", + "engine.io-parser": "~2.1.0", + "ws": "~3.3.1" + } + }, + "engine.io-client": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", + "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", + "dev": true, + "requires": { + "component-emitter": "1.2.1", + "component-inherit": "0.0.3", + "debug": "~3.1.0", + "engine.io-parser": "~2.1.1", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "ws": "~3.3.1", + "xmlhttprequest-ssl": "~1.5.4", + "yeast": "0.1.2" + } + }, + "eventemitter3": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", + "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=", + "dev": true + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true, + "requires": { + "is-posix-bracket": "^0.1.0" + } + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + }, + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^3.0.0", + "universalify": "^0.1.0" + } + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true, + "requires": { + "is-glob": "^2.0.0" + } + }, + "http-proxy": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz", + "integrity": "sha1-ZC/cr/5S00SNK9o7AHnpQJBk2jE=", + "dev": true, + "requires": { + "eventemitter3": "1.x.x", + "requires-port": "1.x.x" + } + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + }, + "isarray": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", + "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", + "dev": true + }, + "jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true, + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "qs": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", + "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", + "dev": true + }, + "socket.io": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", + "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", + "dev": true, + "requires": { + "debug": "~3.1.0", + "engine.io": "~3.2.0", + "has-binary2": "~1.0.2", + "socket.io-adapter": "~1.1.0", + "socket.io-client": "2.1.1", + "socket.io-parser": "~3.2.0" + } + }, + "socket.io-client": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", + "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", + "dev": true, + "requires": { + "backo2": "1.0.2", + "base64-arraybuffer": "0.1.5", + "component-bind": "1.0.0", + "component-emitter": "1.2.1", + "debug": "~3.1.0", + "engine.io-client": "~3.2.0", + "has-binary2": "~1.0.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "object-component": "0.0.3", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "socket.io-parser": "~3.2.0", + "to-array": "0.1.4" + } + }, + "socket.io-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", + "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", + "dev": true, + "requires": { + "component-emitter": "1.2.1", + "debug": "~3.1.0", + "isarray": "2.0.1" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "window-size": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", + "integrity": "sha1-tDFbtCFKPXBY6+7okuE/ok2YsHU=", + "dev": true + }, + "yargs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz", + "integrity": "sha1-gW4ahm1VmMzzTlWW3c4i2S2kkNQ=", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "window-size": "^0.2.0", + "y18n": "^3.2.1", + "yargs-parser": "^4.1.0" + } + }, + "yargs-parser": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", + "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "dev": true, + "requires": { + "camelcase": "^3.0.0" + } + } + } + }, + "browser-sync-ui": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-1.0.1.tgz", + "integrity": "sha512-RIxmwVVcUFhRd1zxp7m2FfLnXHf59x4Gtj8HFwTA//3VgYI3AKkaQAuDL8KDJnE59XqCshxZa13JYuIWtZlKQg==", + "dev": true, + "requires": { + "async-each-series": "0.1.1", + "connect-history-api-fallback": "^1.1.0", + "immutable": "^3.7.6", + "server-destroy": "1.0.1", + "socket.io-client": "2.0.4", + "stream-throttle": "^0.1.3" + } + }, "browserify-aes": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", @@ -2470,6 +2959,12 @@ "https-proxy-agent": "^2.2.1" } }, + "bs-recipes": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", + "integrity": "sha1-DS1NSKcYyMBEdp/cT4lZLci2lYU=", + "dev": true + }, "buffer": { "version": "4.9.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", @@ -2497,6 +2992,12 @@ "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", "dev": true }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, "buffer-fill": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", @@ -2515,6 +3016,12 @@ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, + "buffer-indexof-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.1.tgz", + "integrity": "sha1-qfuAbOgUXVQoUQznLyeLs2OmOL8=", + "dev": true + }, "buffer-more-ints": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz", @@ -2527,6 +3034,12 @@ "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", "dev": true }, + "buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", + "dev": true + }, "buildmail": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz", @@ -2776,6 +3289,15 @@ "lazy-cache": "^1.0.3" } }, + "chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", + "dev": true, + "requires": { + "traverse": ">=0.3.0 <0.4" + } + }, "chalk": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", @@ -3142,6 +3664,18 @@ "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", "dev": true }, + "compress-commons": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz", + "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", + "dev": true, + "requires": { + "buffer-crc32": "^0.2.1", + "crc32-stream": "^2.0.0", + "normalize-path": "^2.0.0", + "readable-stream": "^2.0.0" + } + }, "compressible": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz", @@ -3294,6 +3828,15 @@ "integrity": "sha1-sGhzk0vF40T+9hGhlqb6rgruAVo=", "dev": true }, + "connect-logger": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/connect-logger/-/connect-logger-0.0.1.tgz", + "integrity": "sha1-TZmZeKHSC7RgjnzUNNdBZSJVF0s=", + "dev": true, + "requires": { + "moment": "*" + } + }, "console-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", @@ -3407,6 +3950,37 @@ "require-from-string": "^2.0.1" } }, + "crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, + "requires": { + "buffer": "^5.1.0" + }, + "dependencies": { + "buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz", + "integrity": "sha512-nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + } + } + }, + "crc32-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", + "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", + "dev": true, + "requires": { + "crc": "^3.4.4", + "readable-stream": "^2.0.0" + } + }, "create-ecdh": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", @@ -3825,6 +4399,12 @@ "integrity": "sha1-ogM8CcyOFY03dI+951B4Mr1s4Sc=", "dev": true }, + "dev-ip": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", + "integrity": "sha1-p2o+0YVb56ASu4rBbLgPPADcKPA=", + "dev": true + }, "di": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", @@ -4047,6 +4627,24 @@ "stream-shift": "^1.0.0" } }, + "easy-extender": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz", + "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==", + "dev": true, + "requires": { + "lodash": "^4.17.10" + } + }, + "eazy-logger": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz", + "integrity": "sha1-oyWqXlPROiIliJsqxBE7K5Y29Pw=", + "dev": true, + "requires": { + "tfunk": "^3.0.1" + } + }, "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -5174,6 +5772,12 @@ "null-check": "^1.0.0" } }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "fs-extra": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", @@ -6750,15 +7354,15 @@ } }, "http-proxy-middleware": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz", - "integrity": "sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.0.tgz", + "integrity": "sha512-Ab/zKDy2B0404mz83bgki0HHv/xqpYKAyFXhopAiJaVAUSJfLYrpBYynTl4ZSUJ7TqrAgjarTsxdX5yBb4unRQ==", "dev": true, "requires": { - "http-proxy": "^1.16.2", + "http-proxy": "^1.17.0", "is-glob": "^4.0.0", - "lodash": "^4.17.5", - "micromatch": "^3.1.9" + "lodash": "^4.17.10", + "micromatch": "^3.1.10" } }, "http-signature": { @@ -6860,6 +7464,12 @@ "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=", "dev": true }, + "immutable": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", + "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=", + "dev": true + }, "import-cwd": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", @@ -7033,11 +7643,6 @@ "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", "dev": true }, - "intl": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/intl/-/intl-1.2.5.tgz", - "integrity": "sha1-giRKIZDE5Bn4Nx9ao02qNCDiq94=" - }, "invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -7310,6 +7915,15 @@ } } }, + "is-number-like": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz", + "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==", + "dev": true, + "requires": { + "lodash.isfinite": "^3.3.2" + } + }, "is-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", @@ -8188,6 +8802,15 @@ "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", "dev": true }, + "lazystream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", + "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", + "dev": true, + "requires": { + "readable-stream": "^2.0.5" + } + }, "lcid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", @@ -8298,6 +8921,12 @@ "immediate": "~3.0.5" } }, + "limiter": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.3.tgz", + "integrity": "sha512-zrycnIMsLw/3ZxTbW7HCez56rcFGecWTx5OZNplzcXUUmJLmoYArC6qdJzmAN5BWiNXGcpjhF9RQ1HSv5zebEw==", + "dev": true + }, "linkify-it": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.0.3.tgz", @@ -8348,6 +8977,33 @@ } } }, + "listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=", + "dev": true + }, + "lite-server": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/lite-server/-/lite-server-2.4.0.tgz", + "integrity": "sha512-Vo06tHpXrqm37i6T7tVdq5PSbrFmvQRw64+dlFXdh1tltv6KCvpE+xzXz2+x6KWJ8ja+GgwSy4P13GUWyhaDHQ==", + "dev": true, + "requires": { + "browser-sync": "^2.24.4", + "connect-history-api-fallback": "^1.2.0", + "connect-logger": "0.0.1", + "lodash": "^4.11.1", + "minimist": "1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } + } + }, "load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", @@ -8375,6 +9031,136 @@ "json5": "^0.5.0" } }, + "localtunnel": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.0.tgz", + "integrity": "sha512-wCIiIHJ8kKIcWkTQE3m1VRABvsH2ZuOkiOpZUofUCf6Q42v3VIZ+Q0YfX1Z4sYDRj0muiKL1bLvz1FeoxsPO0w==", + "dev": true, + "requires": { + "axios": "0.17.1", + "debug": "2.6.8", + "openurl": "1.1.1", + "yargs": "6.6.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "axios": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz", + "integrity": "sha1-LY4+XQvb1zJ/kbyBT1xXZg+Bgk0=", + "dev": true, + "requires": { + "follow-redirects": "^1.2.5", + "is-buffer": "^1.1.5" + } + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", + "dev": true + }, + "yargs": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", + "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^4.2.0" + } + }, + "yargs-parser": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", + "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "dev": true, + "requires": { + "camelcase": "^3.0.0" + } + } + } + }, "locate-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", @@ -8461,6 +9247,18 @@ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" }, + "lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=", + "dev": true + }, + "lodash.difference": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", + "integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=", + "dev": true + }, "lodash.differencewith": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz", @@ -8494,6 +9292,18 @@ "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", "dev": true }, + "lodash.isfinite": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz", + "integrity": "sha1-+4m2WpqAKBgz8LdHizpRBPiY67M=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, "lodash.keys": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", @@ -8550,6 +9360,18 @@ "lodash.escape": "^3.0.0" } }, + "lodash.toarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", + "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=", + "dev": true + }, + "lodash.union": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", + "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=", + "dev": true + }, "log-symbols": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", @@ -10233,9 +11055,9 @@ }, "dependencies": { "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", + "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==", "dev": true } } @@ -10373,6 +11195,12 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==" }, + "object-path": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", + "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=", + "dev": true + }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", @@ -10549,6 +11377,12 @@ "integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg=", "dev": true }, + "openurl": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz", + "integrity": "sha1-OHW0sO96UsFW8NtB1GCduw+Us4c=", + "dev": true + }, "opn": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", @@ -11058,6 +11892,16 @@ "mkdirp": "0.5.x" } }, + "portscanner": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz", + "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=", + "dev": true, + "requires": { + "async": "1.5.2", + "is-number-like": "^1.0.3" + } + }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -12238,6 +13082,16 @@ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" }, + "resp-modifier": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz", + "integrity": "sha1-sSTeXE+6/LpUH0j/pzlw9KpFa08=", + "dev": true, + "requires": { + "debug": "^2.2.0", + "minimatch": "^3.0.2" + } + }, "restore-cursor": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", @@ -12942,6 +13796,12 @@ "send": "0.16.2" } }, + "server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=", + "dev": true + }, "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -13664,6 +14524,16 @@ "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", "dev": true }, + "stream-throttle": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", + "integrity": "sha1-rdV8jXzHOoFjDTHNVdOWHPr7qcM=", + "dev": true, + "requires": { + "commander": "^2.2.0", + "limiter": "^1.0.5" + } + }, "streamroller": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", @@ -14070,6 +14940,21 @@ "inherits": "2" } }, + "tar-stream": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz", + "integrity": "sha512-IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==", + "dev": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.1.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.0", + "xtend": "^4.0.0" + } + }, "temp": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/temp/-/temp-0.4.0.tgz", @@ -14090,6 +14975,58 @@ "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, + "tfunk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz", + "integrity": "sha1-OORBT8ZJd9h6/apy+sttKfgve1s=", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "object-path": "^0.9.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -14166,6 +15103,12 @@ "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", "dev": true }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, "to-fast-properties": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", @@ -14300,6 +15243,12 @@ } } }, + "traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", + "dev": true + }, "tree-kill": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz", @@ -14586,6 +15535,12 @@ "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==", "dev": true }, + "ua-parser-js": { + "version": "0.7.17", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", + "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", + "dev": true + }, "uc.micro": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.5.tgz", @@ -14866,6 +15821,40 @@ "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", "dev": true }, + "unzipper": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.9.3.tgz", + "integrity": "sha512-lDnqm89o0UUN/4v1V5SFe9iwMnm0oa8t+f6c0QhH6DeqnUe2CImuiz/oyugDp5xGHu/jQN3l9Dt5gC/DqOkZCg==", + "dev": true, + "requires": { + "big-integer": "^1.6.17", + "binary": "~0.3.0", + "bluebird": "~3.4.1", + "buffer-indexof-polyfill": "~1.0.0", + "duplexer2": "~0.1.4", + "fstream": "~1.0.10", + "listenercount": "~1.0.1", + "readable-stream": "~2.3.6", + "setimmediate": "~1.0.4" + }, + "dependencies": { + "bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=", + "dev": true + }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "dev": true, + "requires": { + "readable-stream": "^2.0.2" + } + } + } + }, "upath": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", @@ -15564,6 +16553,18 @@ "ms": "2.0.0" } }, + "http-proxy-middleware": { + "version": "0.18.0", + "resolved": "http://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz", + "integrity": "sha512-Fs25KVMPAIIcgjMZkVHJoKg9VcXcC1C8yb9JUgeDvVXY0S/zgVIhMb+qVswDIgtJe2DfckMSY2d6TuTEutlk6Q==", + "dev": true, + "requires": { + "http-proxy": "^1.16.2", + "is-glob": "^4.0.0", + "lodash": "^4.17.5", + "micromatch": "^3.1.9" + } + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -15940,6 +16941,17 @@ "integrity": "sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=", "dev": true }, + "zip-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-2.0.1.tgz", + "integrity": "sha512-c+eUhhkDpaK87G/py74wvWLtz2kzMPNCCkUApkun50ssE0oQliIQzWpTnwjB+MTKVIf2tGzIgHyqW/Y+W77ecQ==", + "dev": true, + "requires": { + "archiver-utils": "^2.0.0", + "compress-commons": "^1.2.0", + "readable-stream": "^2.0.0" + } + }, "zone.js": { "version": "0.8.26", "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.8.26.tgz", diff --git a/package.json b/package.json index f0e80e2508..8672275d3f 100644 --- a/package.json +++ b/package.json @@ -18,19 +18,20 @@ "start": "ng lint dist && npm run validate-config && npm run server-versions && ng serve dist --host 0.0.0.0 --proxy-config ./demo-shell/proxy.conf.js --open", "start:dev": "ng lint dev && npm run validate-config && npm run server-versions && concurrently \"ng serve dev --host 0.0.0.0 --disable-host-check --proxy-config ./demo-shell/proxy.conf.js --open\" \"npm run style:dev --watch\" ", "start:dist": "ng lint dist && npm run validate-config && npm run server-versions && ng serve dist --prod --host 0.0.0.0 --disable-host-check --proxy-config ./demo-shell/proxy.conf.js --open", - "build": "ng lint dev && npm run validate-config && npm run server-versions && ng build dist", + "build": "npm run validate-config && npm run server-versions && ng build dist", "build:dev": "npm run validate-config && npm run style:dev && npm run server-versions && ng build dev", - "build:dist": "npm run validate-config && npm run server-versions && ng build dist --prod --stats-json ", + "build:dist": "npm run validate-config && npm run server-versions && node --max-old-space-size=8192 node_modules/@angular/cli/bin/ng build dist --prod --stats-json ", "style:dev": "npm run webpack -- --config ./lib/config/webpack.style.js --progress --profile --bail", "webpack-bundle-analyzer": "webpack-bundle-analyzer demo-shell/dist/stats.json", "test": "npm run validate-config && ng test dev --watch=false", - "e2e": "ng e2e demo-shell-e2e", - "e2e-lib": "ng e2e lib-e2e --port=4200 ", + "e2e": "./scripts/test-e2e-lib.sh -host 'localhost:4200' -dev --folder demo-shell", + "e2e-lib": "ng e2e lib-e2e --port=4200", "server-versions": "rimraf ./demo-shell/src/versions.json && npm list --depth=0 --json=true --prod=true > ./demo-shell/src/versions.json || exit 0", "clean": "rimraf dist ./node_modules typings", "clean-lock": "rimraf package-lock.json", "webpack": "node ./node_modules/webpack/bin/webpack.js", - "ng-packagr": "node ./node_modules/ng-packagr/cli/main.js" + "ng-packagr": "node ./node_modules/ng-packagr/cli/main.js", + "lite-server-e2e": "lite-server --baseDir='demo-shell/dist/' -c ./e2e/lite-server-proxy.js" }, "config": { "ghooks": { @@ -78,14 +79,13 @@ "@nrwl/schematics": "^1.0.3", "@schematics/angular": "^0.6.8", "adf-tslint-rules": "0.0.4", - "alfresco-js-api": "2.5.0", + "alfresco-js-api": "^2.6.0-c87428564306f710159976b0d740a07a94326cf1", "alfresco-js-api-node": "2.5.0", "chart.js": "2.5.0", "classlist.js": "1.1.20150312", "core-js": "^2.5.4", "custom-event-polyfill": "0.3.0", "hammerjs": "2.0.8", - "intl": "1.2.5", "minimatch-browser": "1.0.0", "moment": "2.22.2", "moment-es6": "^1.0.0", @@ -111,6 +111,7 @@ "@types/node": "6.0.90", "ajv-cli": "^3.0.0", "angular2-template-loader": "0.6.2", + "archiver": "^3.0.0", "astrolabe": "^0.3.6", "autoprefixer": "6.5.4", "bundlesize": "^0.15.3", @@ -118,9 +119,11 @@ "codelyzer": "4.3.0", "commander": "^2.15.1", "concurrently": "^3.5.1", + "connect-history-api-fallback": "^1.5.0", "ejs": "^2.6.1", "extract-text-webpack-plugin": "^4.0.0-beta.0", "fs-extra": "^4.0.2", + "http-proxy-middleware": "^0.19.0", "jasmine-ajax": "3.2.0", "jasmine-core": "~2.8.0", "jasmine-reporters": "^2.3.1", @@ -138,6 +141,7 @@ "karma-mocha-reporter": "2.2.5", "karma-remap-istanbul": "0.6.0", "karma-systemjs": "0.16.0", + "lite-server": "^2.4.0", "markdown-toc": "1.1.0", "markdownlint-cli": "^0.12.0", "mdast-util-compact": "^1.0.1", @@ -164,6 +168,7 @@ "tslint": "5.9.1", "typedoc": "^0.11.1", "typescript": "2.9.2", + "unzipper": "^0.9.3", "url-join": "^4.0.0", "webpack-bundle-analyzer": "^2.13.1", "webpack-cli": "^3.1.0", diff --git a/protractor.conf.js b/protractor.conf.js index 4640f375ee..75d946d060 100644 --- a/protractor.conf.js +++ b/protractor.conf.js @@ -18,7 +18,7 @@ var SELENIUM_SERVER = process.env.SELENIUM_SERVER || ''; var DIRECT_CONNECCT = SELENIUM_SERVER ? false : true; var NAME_TEST = process.env.NAME_TEST ? true : false -var specsToRun = './e2e/' + FOLDER + '**/*.e2e.ts'; +var specsToRun = './**/' + FOLDER + '**/*.e2e.ts'; if (process.env.NAME_TEST) { specsToRun = './e2e/**/' + process.env.NAME_TEST; diff --git a/scripts/copy-dist-node.sh b/scripts/copy-dist-node.sh new file mode 100644 index 0000000000..1e24119b92 --- /dev/null +++ b/scripts/copy-dist-node.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +cd $DIR/../ + +echo "====== COPY new build in node_modules ===== " + +rm -rf ../node_modules/@alfresco + +mkdir -p $DIR/../node_modules/@alfresco/adf-core +mkdir -p $DIR/../node_modules/@alfresco/adf-content-services +mkdir -p $DIR/../node_modules/@alfresco/adf-process-services +mkdir -p $DIR/../node_modules/@alfresco/adf-insights + +cp -R $DIR/../lib/dist/core/* $DIR/../node_modules/@alfresco/adf-core +cp -R $DIR/../lib/dist/content-services/* $DIR/../node_modules/@alfresco/adf-content-services +cp -R $DIR/../lib/dist/process-services/* $DIR/../node_modules/@alfresco/adf-process-services +cp -R $DIR/../lib/dist/insights/* $DIR/../node_modules/@alfresco/adf-insights diff --git a/scripts/download-build-in-cs.js b/scripts/download-build-in-cs.js new file mode 100755 index 0000000000..7de12f9adb --- /dev/null +++ b/scripts/download-build-in-cs.js @@ -0,0 +1,84 @@ +var program = require('commander'); +var AlfrescoApi = require('alfresco-js-api-node'); +var http = require('http'); + +var fs = require('fs'); +var path = require('path'); +var archiver = require('archiver'); +var unzipper = require('unzipper'); + +var exec = require('child_process').exec; + +replaceHrefInIndex = (folder) => { + fs.readFile(`demo-shell/${folder}/index.html`, 'utf8', function (err, data) { + if (err) { + return console.log(err); + } + + var result = data.replace(`base href="/"`, `base href=\"/${folder}/\"`); + + fs.writeFile(`demo-shell/${folder}/index.html`, result, 'utf8', function (err) { + if (err) return console.log(err); + }); + }); +} + +async function main() { + + program + .version('0.1.0') + .option('-p, --password [type]', 'password') + .option('-u, --username [type]', 'username') + .option('--base-href [type]', '') + .option('-f, --folder [type]', 'Name of the folder') + .option('-host, --host [type]', 'URL of the CS') + .parse(process.argv); + + let alfrescoJsApi = new AlfrescoApi({ + provider: 'ECM', + hostEcm: program.host + }); + + alfrescoJsApi.login(program.username, program.password); + + let zipDemoNode; + + try { + zipDemoNode = await alfrescoJsApi.nodes.getNode('-my-', { + 'relativePath': `Builds/${program.folder}/demo.zip` + }); + } catch (error) { + console.log('error: ' + error); + } + + const url = await alfrescoJsApi.content.getContentUrl(zipDemoNode.entry.id, true); + + console.log('Download zip'); + + let outputFolder = program.baseHref ? program.baseHref : 'dist'; + + var file = fs.createWriteStream('demo.zip'); + http.get(`http://${url}`, (response) => { + response.pipe(file); + file.on('finish', async () => { + console.log('Unzip Demo ' + path.join(__dirname, '../demo.zip')); + fs.createReadStream(path.join(__dirname, '../demo.zip')) + .pipe(unzipper.Extract({path: path.join(__dirname, '../demo-shell')})) + .on('finish', () => { + exec(`mv demo-shell/demo.zip demo-shell/${outputFolder}`, (err, stdout, stderr) => { + if (err) { + console.log(`err: ${err}`); + return; + } + + if(program.baseHref) { + replaceHrefInIndex(outputFolder); + } + }); + }) + }); + }); + +} + +main(); diff --git a/scripts/lint.sh b/scripts/lint.sh new file mode 100755 index 0000000000..0c163c6ca0 --- /dev/null +++ b/scripts/lint.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +cd "$DIR/../" + +echo "====== lint Lib =====" + +npm run lint-lib || exit 1 + +echo "====== lint E2E =====" + +npm run lint-e2e + +echo "====== lint Demo shell =====" + +ng lint dev --fix diff --git a/scripts/ng-packagr.sh b/scripts/ng-packagr.sh index 97f1018517..f8b508eae2 100755 --- a/scripts/ng-packagr.sh +++ b/scripts/ng-packagr.sh @@ -3,10 +3,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR/.. -echo "====== lint =====" - -npm run lint-lib || exit 1 - echo "====== clean =====" rm -rf node_modules/@alfresco diff --git a/scripts/npm-build-all.sh b/scripts/npm-build-all.sh index 7b94f036db..6eda5775b9 100755 --- a/scripts/npm-build-all.sh +++ b/scripts/npm-build-all.sh @@ -13,6 +13,7 @@ eval GIT_ISH="" eval SINGLE_TEST="" eval EXEC_VERSION_JSAPI=false eval JSAPI_VERSION="" +eval EXECLINT=true eval projects=( "core" "content-services" @@ -53,13 +54,11 @@ enable_testbrowser(){ test_project() { echo "====== test project: $1 =====" - ng lint $1 || exit 1 ng test $1 --watch=false || exit 1 } debug_project() { echo "====== debug project: $1 =====" - ng lint $1 || exit 1 ng test $1 || exit 1 } @@ -92,6 +91,10 @@ exec_install(){ EXEC_INSTALL=false } +skip_lint(){ + EXECLINT=false +} + while [[ $1 == -* ]]; do case "$1" in -h|--help|-\?) show_help; exit 0;; @@ -107,12 +110,17 @@ while [[ $1 == -* ]]; do -c|--clean) clean; shift;; -si|--skipinstall) exec_install; shift;; -sb|--skipbuild) exclude_build; shift;; + -sl|--skip-lint) skip_lint; shift;; -*) echo "invalid option: $1" 1>&2; show_help; exit 1;; esac done cd "$DIR/../" +if [[ EXECLINT == "true" ]]; then + npm run lint-lib || exit 1 +fi + if $EXEC_CLEAN == true; then echo "====== Clean components =====" npm install rimraf -g diff --git a/scripts/test-e2e-lib.sh b/scripts/test-e2e-lib.sh index 138ae2b98a..aec3b8ffb2 100755 --- a/scripts/test-e2e-lib.sh +++ b/scripts/test-e2e-lib.sh @@ -4,6 +4,8 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd "$DIR/../" BROWSER_RUN=false DEVELOPMENT=false +EXECLINT=true +LITESERVER=false show_help() { echo "Usage: ./scripts/test-e2e-lib.sh -host adf.domain.com -u admin -p admin -e admin" @@ -20,6 +22,7 @@ show_help() { echo "-host or --host URL of the Front end to test" echo "-save save the error screenshot in the remote env" echo "-timeout or --timeout override the timeout foe the wait utils" + echo "-sl --skip-lint skip lint" echo "-h or --help" } @@ -70,6 +73,14 @@ set_selenium(){ SELENIUM_SERVER=$1 } +skip_lint(){ + EXECLINT=false +} + +lite_server(){ + LITESERVER=true +} + while [[ $1 == -* ]]; do case "$1" in -h|--help|-\?) show_help; exit 0;; @@ -81,10 +92,12 @@ while [[ $1 == -* ]]; do -b|--browser) set_browser; shift;; -dev|--dev) set_development; shift;; -s|--spec) set_test $2; shift 2;; + -ud|--use-dist) lite_server; shift;; -save) set_save_screenshot; shift;; -proxy|--proxy) set_proxy $2; shift 2;; -s|--seleniumServer) set_selenium $2; shift 2;; -host|--host) set_host $2; shift 2;; + -sl|--skip-lint) skip_lint; shift;; -*) echo "invalid option: $1" 1>&2; show_help; exit 1;; esac done @@ -104,14 +117,22 @@ export FOLDER=$FOLDER'/' export SELENIUM_SERVER=$SELENIUM_SERVER export NAME_TEST=$NAME_TEST -npm run lint-e2e || exit 1 +if [[ EXECLINT == "true" ]]; then + npm run lint-e2e || exit 1 +fi if [[ $DEVELOPMENT == "true" ]]; then - echo "====== Run against local development =====" + echo "====== Run against local development =====" npm run e2e-lib || exit 1 else - webdriver-manager update --gecko=false --versions.chrome=2.38 - ./node_modules/protractor/bin/protractor protractor.conf.js || exit 1 + webdriver-manager update --gecko=false --versions.chrome=2.38 + if [[ $LITESERVER == "true" ]]; then + echo "====== Run dist in lite-server =====" + ls demo-shell/dist + npm run lite-server-e2e>/dev/null & ./node_modules/protractor/bin/protractor protractor.conf.js || exit 1 + else + ./node_modules/protractor/bin/protractor protractor.conf.js || exit 1 + fi fi diff --git a/scripts/upload-build-in-cs.js b/scripts/upload-build-in-cs.js new file mode 100755 index 0000000000..0d3ed00192 --- /dev/null +++ b/scripts/upload-build-in-cs.js @@ -0,0 +1,93 @@ +var program = require('commander'); +var AlfrescoApi = require('alfresco-js-api-node'); + +var fs = require('fs'); +var path = require('path'); +var archiver = require('archiver'); + +writeZipLib = async function (zipFolder) { + + if (!fs.existsSync(zipFolder)) { + fs.mkdirSync(zipFolder); + } + + // create a file to stream archive data to. + let output = fs.createWriteStream(path.join(zipFolder, `demo.zip`)); + let archive = archiver('zip', { + zlib: {level: 9} // Sets the compression level. + }); + + archive.pipe(output); + archive.directory(path.join(__dirname, `../demo-shell/dist/`), `demo.zip`); + + return archive.finalize(); +}; + +async function main() { + + program + .version('0.1.0') + .option('-p, --password [type]', 'password') + .option('-u, --username [type]', 'username') + .option('-f, --folder [type]', 'Name of the folder') + .option('-host, --host [type]', 'URL of the CS') + .parse(process.argv); + + let alfrescoJsApi = new AlfrescoApi({ + provider: 'ECM', + hostEcm: program.host + }); + + let zipFolder = path.join(__dirname, '../demo-shell/zip/'); + + await this.writeZipLib(zipFolder); + + let files = fs.readdirSync(path.join(__dirname, '../demo-shell/zip')); + + if (files && files.length > 0) { + + alfrescoJsApi.login(program.username, program.password); + let folder; + + if (!program.folder) { + program.folder = Date.now(); + } + + try { + folder = await alfrescoJsApi.nodes.addNode('-my-', { + 'name': program.folder, + 'relativePath': `Builds`, + 'nodeType': 'cm:folder' + }, {}, { + 'overwrite': true + }); + } catch (error) { + console.log('error' + error); + } + + for (const fileName of files) { + + let pathFile = path.join(__dirname, '../demo-shell/zip/demo.zip'); + + console.log('Upload ' + pathFile); + let file = fs.createReadStream(pathFile); + + try { + await alfrescoJsApi.upload.uploadFile( + file, + '', + folder.entry.id, + null, + { + 'name': file.name, + 'nodeType': 'cm:content' + }); + + } catch (error) { + console.log('error' + error); + } + } + } +} + +main(); diff --git a/tools/export-check/export-2.5.0.json b/tools/export-check/export-2.5.0.json new file mode 100644 index 0000000000..a9865dcbf0 --- /dev/null +++ b/tools/export-check/export-2.5.0.json @@ -0,0 +1,7138 @@ +[ + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/about/about.component.ts" + }, + "name": "AboutComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/about/about.module.ts" + }, + "name": "AboutComponent" + }, + { + "position": { + "line": 266, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AboutModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/about/about.module.ts" + }, + "name": "AboutModule" + }, + { + "position": { + "line": 193, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AboutModule" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/collapsable/collapsable.module.ts" + }, + "name": "AccordionComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/collapsable/accordion.component.ts" + }, + "name": "AccordionComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/collapsable/collapsable.module.ts" + }, + "name": "AccordionGroupComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/collapsable/accordion-group.component.ts" + }, + "name": "AccordionGroupComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/form/services/activiti-alfresco.service.ts" + }, + "name": "ActivitiContentService" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/add-permission/add-permission.component.ts" + }, + "name": "AddPermissionComponent" + }, + { + "position": { + "line": 57, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "AddPermissionComponent" + }, + { + "position": { + "line": 58, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "AddPermissionDialogComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/add-permission/add-permission-dialog.component.ts" + }, + "name": "AddPermissionDialogComponent" + }, + { + "position": { + "line": 55, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "AddPermissionPanelComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/add-permission/add-permission-panel.component.ts" + }, + "name": "AddPermissionPanelComponent" + }, + { + "position": { + "line": 18, + "character": 0, + "fileName": "lib/core/mock/AlfrescoApi.mock.ts" + }, + "name": "AlfrescoApiMock" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/core/services/alfresco-api.service.ts" + }, + "name": "AlfrescoApiService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/mock/alfresco-api.service.mock.ts" + }, + "name": "AlfrescoApiServiceMock" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/amount/amount.widget.ts" + }, + "name": "AmountWidgetComponent" + }, + { + "position": { + "line": 64, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/insights/analytics-process/components/analytics.component.ts" + }, + "name": "AnalyticsComponent" + }, + { + "position": { + "line": 67, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsGeneratorComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/insights/analytics-process/components/analytics-generator.component.ts" + }, + "name": "AnalyticsGeneratorComponent" + }, + { + "position": { + "line": 40, + "character": 0, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsProcessModule" + }, + { + "position": { + "line": 111, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "AnalyticsProcessModule" + }, + { + "position": { + "line": 67, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "AnalyticsProcessModule" + }, + { + "position": { + "line": 68, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsReportHeatMapComponent" + }, + { + "position": { + "line": 65, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsReportListComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/insights/analytics-process/components/analytics-report-list.component.ts" + }, + "name": "AnalyticsReportListComponent" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/insights/analytics-process/components/analytics-report-parameters.component.ts" + }, + "name": "AnalyticsReportParametersComponent" + }, + { + "position": { + "line": 66, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsReportParametersComponent" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/insights/analytics-process/services/analytics.service.ts" + }, + "name": "AnalyticsService" + }, + { + "position": { + "line": 278, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AppConfigModule" + }, + { + "position": { + "line": 205, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AppConfigModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/app-config/app-config.module.ts" + }, + "name": "AppConfigModule" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/app-config/app-config.pipe.ts" + }, + "name": "AppConfigPipe" + }, + { + "position": { + "line": 29, + "character": 8, + "fileName": "lib/core/app-config/app-config.module.ts" + }, + "name": "AppConfigPipe" + }, + { + "position": { + "line": 38, + "character": 0, + "fileName": "lib/core/app-config/app-config.service.ts" + }, + "name": "AppConfigService" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/mock/app-config.service.mock.ts" + }, + "name": "AppConfigServiceMock" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/task-list/models/filter.model.ts" + }, + "name": "AppDefinitionRepresentationModel" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/process-services/app-list/apps-list.component.ts" + }, + "name": "AppsListComponent" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/process-services/app-list/apps-list.module.ts" + }, + "name": "AppsListComponent" + }, + { + "position": { + "line": 131, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AppsListModule" + }, + { + "position": { + "line": 80, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AppsListModule" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/app-list/apps-list.module.ts" + }, + "name": "AppsListModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/apps-process.service.ts" + }, + "name": "AppsProcessService" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/config/aspect-oriented-config.service.ts" + }, + "name": "AspectOrientedConfigService" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/process-services/content-widget/content-widget.module.ts" + }, + "name": "AttachFileWidgetComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/process-services/content-widget/attach-file-widget.component.ts" + }, + "name": "AttachFileWidgetComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/process-services/content-widget/attach-folder-widget.component.ts" + }, + "name": "AttachFolderWidgetComponent" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/process-services/content-widget/content-widget.module.ts" + }, + "name": "AttachFolderWidgetComponent" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "AttachFormComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/task-list/components/attach-form.component.ts" + }, + "name": "AttachFormComponent" + }, + { + "position": { + "line": 43, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "AttachmentComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/process-services/attachment/create-task-attachment.component.ts" + }, + "name": "AttachmentComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "AttachmentModule" + }, + { + "position": { + "line": 132, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AttachmentModule" + }, + { + "position": { + "line": 81, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AttachmentModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/mock/authentication.service.mock.ts" + }, + "name": "AuthenticationMock" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/services/authentication.service.ts" + }, + "name": "AuthenticationService" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/services/auth-guard.service.ts" + }, + "name": "AuthGuard" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/services/auth-guard-bpm.service.ts" + }, + "name": "AuthGuardBpm" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/services/auth-guard-ecm.service.ts" + }, + "name": "AuthGuardEcm" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/barChart.model.ts" + }, + "name": "BarChart" + }, + { + "position": { + "line": 18, + "character": 0, + "fileName": "lib/core/events/base.event.ts" + }, + "name": "BaseEvent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/events/base-ui.event.ts" + }, + "name": "BaseUIEvent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/basic-properties.service.ts" + }, + "name": "BasicPropertiesService" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/boolean/boolean.editor.ts" + }, + "name": "BooleanEditorComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "BpmProductVersionModel" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/userinfo/services/bpm-user.service.ts" + }, + "name": "BpmUserService" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/breadcrumb/breadcrumb.component.ts" + }, + "name": "BreadcrumbComponent" + }, + { + "position": { + "line": 32, + "character": 8, + "fileName": "lib/content-services/breadcrumb/breadcrumb.module.ts" + }, + "name": "BreadcrumbComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/breadcrumb/breadcrumb.module.ts" + }, + "name": "BreadcrumbModule" + }, + { + "position": { + "line": 112, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "BreadcrumbModule" + }, + { + "position": { + "line": 166, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "BreadcrumbModule" + }, + { + "position": { + "line": 35, + "character": 8, + "fileName": "lib/core/buttons-menu/buttons-menu.module.ts" + }, + "name": "ButtonsMenuComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/buttons-menu/buttons-menu.component.ts" + }, + "name": "ButtonsMenuComponent" + }, + { + "position": { + "line": 292, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ButtonsMenuModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/buttons-menu/buttons-menu.module.ts" + }, + "name": "ButtonsMenuModule" + }, + { + "position": { + "line": 219, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ButtonsMenuModule" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/card-view/services/card-item-types.service.ts" + }, + "name": "CardItemTypeService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-baseitem.model.ts" + }, + "name": "CardViewBaseItemModel" + }, + { + "position": { + "line": 19, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewBoolItemComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-boolitem/card-view-boolitem.component.ts" + }, + "name": "CardViewBoolItemComponent" + }, + { + "position": { + "line": 82, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewBoolItemComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-boolitem.model.ts" + }, + "name": "CardViewBoolItemModel" + }, + { + "position": { + "line": 18, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewComponent" + }, + { + "position": { + "line": 81, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/card-view/components/card-view/card-view.component.ts" + }, + "name": "CardViewComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/card-view/directives/card-view-content-proxy.directive.ts" + }, + "name": "CardViewContentProxyDirective" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-dateitem/card-view-dateitem.component.ts" + }, + "name": "CardViewDateItemComponent" + }, + { + "position": { + "line": 83, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewDateItemComponent" + }, + { + "position": { + "line": 20, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewDateItemComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-dateitem.model.ts" + }, + "name": "CardViewDateItemModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-datetimeitem.model.ts" + }, + "name": "CardViewDatetimeItemModel" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-floatitem.model.ts" + }, + "name": "CardViewFloatItemModel" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-intitem.model.ts" + }, + "name": "CardViewIntItemModel" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.ts" + }, + "name": "CardViewItemDispatcherComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/card-view/validators/card-view-item-float.validator.ts" + }, + "name": "CardViewItemFloatValidator" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/card-view/validators/card-view-item-int.validator.ts" + }, + "name": "CardViewItemIntValidator" + }, + { + "position": { + "line": 24, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 87, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts" + }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-keyvaluepairs.model.ts" + }, + "name": "CardViewKeyValuePairsItemModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-mapitem/card-view-mapitem.component.ts" + }, + "name": "CardViewMapItemComponent" + }, + { + "position": { + "line": 84, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewMapItemComponent" + }, + { + "position": { + "line": 21, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewMapItemComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-mapitem.model.ts" + }, + "name": "CardViewMapItemModel" + }, + { + "position": { + "line": 282, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CardViewModule" + }, + { + "position": { + "line": 44, + "character": 0, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewModule" + }, + { + "position": { + "line": 209, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CardViewModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-selectitem/card-view-selectitem.component.ts" + }, + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 23, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 86, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-selectitem.model.ts" + }, + "name": "CardViewSelectItemModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-textitem/card-view-textitem.component.ts" + }, + "name": "CardViewTextItemComponent" + }, + { + "position": { + "line": 85, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewTextItemComponent" + }, + { + "position": { + "line": 22, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewTextItemComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-textitem.model.ts" + }, + "name": "CardViewTextItemModel" + }, + { + "position": { + "line": 38, + "character": 0, + "fileName": "lib/core/card-view/services/card-view-update.service.ts" + }, + "name": "CardViewUpdateService" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/chart.model.ts" + }, + "name": "Chart" + }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "CheckboxWidgetAanalyticsComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/checkbox/checkbox.widget.ts" + }, + "name": "CheckboxWidgetComponent" + }, + { + "position": { + "line": 69, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "ChecklistComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/process-services/task-list/components/checklist.component.ts" + }, + "name": "ChecklistComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/collapsable/collapsable.module.ts" + }, + "name": "CollapsableModule" + }, + { + "position": { + "line": 210, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CollapsableModule" + }, + { + "position": { + "line": 283, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CollapsableModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/comment-content.service.ts" + }, + "name": "CommentContentService" + }, + { + "position": { + "line": 45, + "character": 8, + "fileName": "lib/core/comments/comments.module.ts" + }, + "name": "CommentListComponent" + }, + { + "position": { + "line": 20, + "character": 9, + "fileName": "lib/process-services/index.ts" + }, + "name": "CommentListComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/comments/comment-list.component.ts" + }, + "name": "CommentListComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/models/comment.model.ts" + }, + "name": "CommentModel" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/models/comment-process.model.ts" + }, + "name": "CommentProcessModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/services/comment-process.service.ts" + }, + "name": "CommentProcessService" + }, + { + "position": { + "line": 22, + "character": 9, + "fileName": "lib/process-services/index.ts" + }, + "name": "CommentsComponent" + }, + { + "position": { + "line": 46, + "character": 8, + "fileName": "lib/core/comments/comments.module.ts" + }, + "name": "CommentsComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/comments/comments.component.ts" + }, + "name": "CommentsComponent" + }, + { + "position": { + "line": 18, + "character": 9, + "fileName": "lib/process-services/index.ts" + }, + "name": "CommentsModule" + }, + { + "position": { + "line": 212, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommentsModule" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/comments/comments.module.ts" + }, + "name": "CommentsModule" + }, + { + "position": { + "line": 285, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommentsModule" + }, + { + "position": { + "line": 74, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 125, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 270, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 62, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 197, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 106, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/dialogs/confirm.dialog.ts" + }, + "name": "ConfirmDialogComponent" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "ConfirmDialogComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/container-column.model.ts" + }, + "name": "ContainerColumnModel" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/container.model.ts" + }, + "name": "ContainerModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/container/container.widget.ts" + }, + "name": "ContainerWidgetComponent" + }, + { + "position": { + "line": 55, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "ContentActionComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/document-list/components/content-action/content-action.component.ts" + }, + "name": "ContentActionComponent" + }, + { + "position": { + "line": 56, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "ContentActionListComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/document-list/components/content-action/content-action-list.component.ts" + }, + "name": "ContentActionListComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/content-services/document-list/models/content-action.model.ts" + }, + "name": "ContentActionModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/document-list/components/content-column/content-column.component.ts" + }, + "name": "ContentColumnComponent" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "ContentColumnComponent" + }, + { + "position": { + "line": 54, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "ContentColumnListComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/document-list/components/content-column/content-column-list.component.ts" + }, + "name": "ContentColumnListComponent" + }, + { + "position": { + "line": 117, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentDirectiveModule" + }, + { + "position": { + "line": 171, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentDirectiveModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/directives/content-directive.module.ts" + }, + "name": "ContentDirectiveModule" + }, + { + "position": { + "line": 63, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "ContentInfo" + }, + { + "position": { + "line": 21, + "character": 1, + "fileName": "lib/core/form/components/widgets/core/content-link.model.ts" + }, + "name": "ContentLinkModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/content-metadata/components/content-metadata-card/content-metadata-card.component.ts" + }, + "name": "ContentMetadataCardComponent" + }, + { + "position": { + "line": 34, + "character": 8, + "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" + }, + "name": "ContentMetadataCardComponent" + }, + { + "position": { + "line": 33, + "character": 8, + "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" + }, + "name": "ContentMetadataComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/config/content-metadata-config.factory.ts" + }, + "name": "ContentMetadataConfigFactory" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" + }, + "name": "ContentMetadataModule" + }, + { + "position": { + "line": 168, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentMetadataModule" + }, + { + "position": { + "line": 114, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentMetadataModule" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/content-metadata.service.ts" + }, + "name": "ContentMetadataService" + }, + { + "position": { + "line": 124, + "character": 0, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentModule" + }, + { + "position": { + "line": 81, + "character": 0, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentModuleLazy" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-dialog.service.ts" + }, + "name": "ContentNodeDialogService" + }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + }, + "name": "ContentNodeSelectorComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-selector.component.ts" + }, + "name": "ContentNodeSelectorComponent" + }, + { + "position": { + "line": 113, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentNodeSelectorModule" + }, + { + "position": { + "line": 167, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentNodeSelectorModule" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + }, + "name": "ContentNodeSelectorModule" + }, + { + "position": { + "line": 36, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-selector-panel.component.ts" + }, + "name": "ContentNodeSelectorPanelComponent" + }, + { + "position": { + "line": 42, + "character": 8, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + }, + "name": "ContentNodeSelectorPanelComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-selector.service.ts" + }, + "name": "ContentNodeSelectorService" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/services/content.service.ts" + }, + "name": "ContentService" + }, + { + "position": { + "line": 69, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "ContentWidgetComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/content/content.widget.ts" + }, + "name": "ContentWidgetComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/process-services/content-widget/content-widget.module.ts" + }, + "name": "ContentWidgetModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/context-menu/context-menu.directive.ts" + }, + "name": "ContextMenuDirective" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/core/context-menu/context-menu.module.ts" + }, + "name": "ContextMenuDirective" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/core/context-menu/context-menu.module.ts" + }, + "name": "ContextMenuHolderComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/context-menu/context-menu-holder.component.ts" + }, + "name": "ContextMenuHolderComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/context-menu/context-menu.module.ts" + }, + "name": "ContextMenuModule" + }, + { + "position": { + "line": 281, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ContextMenuModule" + }, + { + "position": { + "line": 208, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ContextMenuModule" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/context-menu/context-menu.service.ts" + }, + "name": "ContextMenuService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/services/cookie.service.ts" + }, + "name": "CookieService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/mock/cookie.service.mock.ts" + }, + "name": "CookieServiceMock" + }, + { + "position": { + "line": 227, + "character": 0, + "fileName": "lib/core/core.module.ts" + }, + "name": "CoreModule" + }, + { + "position": { + "line": 154, + "character": 0, + "fileName": "lib/core/core.module.ts" + }, + "name": "CoreModuleLazy" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/process-services/attachment/create-process-attachment.component.ts" + }, + "name": "CreateProcessAttachmentComponent" + }, + { + "position": { + "line": 42, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "CreateProcessAttachmentComponent" + }, + { + "position": { + "line": 41, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "CreateProcessAttachmentComponent" + }, + { + "position": { + "line": 34, + "character": 0, + "fileName": "lib/content-services/document-list/services/custom-resources.service.ts" + }, + "name": "CustomResourcesService" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/data-cell.event.ts" + }, + "name": "DataCellEvent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/data-cell.event.ts" + }, + "name": "DataCellEventModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/data-column/data-column.component.ts" + }, + "name": "DataColumnComponent" + }, + { + "position": { + "line": 32, + "character": 8, + "fileName": "lib/core/data-column/data-column.module.ts" + }, + "name": "DataColumnComponent" + }, + { + "position": { + "line": 33, + "character": 8, + "fileName": "lib/core/data-column/data-column.module.ts" + }, + "name": "DataColumnListComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/data-column/data-column-list.component.ts" + }, + "name": "DataColumnListComponent" + }, + { + "position": { + "line": 289, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataColumnModule" + }, + { + "position": { + "line": 216, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataColumnModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/data-column/data-column.module.ts" + }, + "name": "DataColumnModule" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/data-row-action.event.ts" + }, + "name": "DataRowActionEvent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/data-row-action.event.ts" + }, + "name": "DataRowActionModel" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/data/data-row-event.model.ts" + }, + "name": "DataRowEvent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/datatable/data/data-sorting.model.ts" + }, + "name": "DataSorting" + }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "DataTableCellComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/datatable-cell.component.ts" + }, + "name": "DataTableCellComponent" + }, + { + "position": { + "line": 67, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "DataTableComponent" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/datatable.component.ts" + }, + "name": "DataTableComponent" + }, + { + "position": { + "line": 217, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataTableModule" + }, + { + "position": { + "line": 290, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataTableModule" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "DataTableModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/datatable/data/data-table.schema.ts" + }, + "name": "DataTableSchema" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/date-cell.component.ts" + }, + "name": "DateCellComponent" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "DateCellComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/date/date.editor.ts" + }, + "name": "DateEditorComponent" + }, + { + "position": { + "line": 133, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "DateFieldValidator" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "DateRangeWidgetComponent" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/datetime/datetime.editor.ts" + }, + "name": "DateTimeEditorComponent" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/core/form/components/widgets/date-time/date-time.widget.ts" + }, + "name": "DateTimeWidgetComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/form/components/widgets/date/date.widget.ts" + }, + "name": "DateWidgetComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/app-config/debug-app-config.service.ts" + }, + "name": "DebugAppConfigService" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/services/deleted-nodes-api.service.ts" + }, + "name": "DeletedNodesApiService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/detailsTableChart.model.ts" + }, + "name": "DetailsTableChart" + }, + { + "position": { + "line": 212, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramAlfrescoPublishTaskComponent" + }, + { + "position": { + "line": 243, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramBoundaryEventComponent" + }, + { + "position": { + "line": 215, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramBoxPublishTaskComponent" + }, + { + "position": { + "line": 218, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramBusinessRuleTaskComponent" + }, + { + "position": { + "line": 210, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramCamelTaskComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/services/diagram-color.service.ts" + }, + "name": "DiagramColorService" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/insights/diagram/components/diagram.component.ts" + }, + "name": "DiagramComponent" + }, + { + "position": { + "line": 200, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramComponent" + }, + { + "position": { + "line": 238, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramContainerIconEventTaskComponent" + }, + { + "position": { + "line": 204, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramContainerServiceTaskComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramElement.model.ts" + }, + "name": "DiagramElementModel" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramElementProperty.model.ts" + }, + "name": "DiagramElementPropertyModel" + }, + { + "position": { + "line": 203, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramEndEventComponent" + }, + { + "position": { + "line": 201, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramEventComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramEventDefinition.model.ts" + }, + "name": "DiagramEventDefinitionModel" + }, + { + "position": { + "line": 224, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramEventGatewayComponent" + }, + { + "position": { + "line": 247, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramEventSubprocessComponent" + }, + { + "position": { + "line": 221, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramExclusiveGatewayComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramFlowElement.model.ts" + }, + "name": "DiagramFlowElementModel" + }, + { + "position": { + "line": 220, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramGatewayComponent" + }, + { + "position": { + "line": 214, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramGoogleDrivePublishTaskComponent" + }, + { + "position": { + "line": 231, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconAlfrescoPublishTaskComponent" + }, + { + "position": { + "line": 234, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconBoxPublishTaskComponent" + }, + { + "position": { + "line": 237, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconBusinessRuleTaskComponent" + }, + { + "position": { + "line": 229, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconCamelTaskComponent" + }, + { + "position": { + "line": 240, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconErrorComponent" + }, + { + "position": { + "line": 233, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconGoogleDrivePublishTaskComponent" + }, + { + "position": { + "line": 228, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconManualTaskComponent" + }, + { + "position": { + "line": 242, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconMessageComponent" + }, + { + "position": { + "line": 230, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconMuleTaskComponent" + }, + { + "position": { + "line": 235, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconReceiveTaskComponent" + }, + { + "position": { + "line": 232, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconRestCallTaskComponent" + }, + { + "position": { + "line": 236, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconScriptTaskComponent" + }, + { + "position": { + "line": 226, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconSendTaskComponent" + }, + { + "position": { + "line": 225, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconServiceTaskComponent" + }, + { + "position": { + "line": 241, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconSignalComponent" + }, + { + "position": { + "line": 239, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconTimerComponent" + }, + { + "position": { + "line": 227, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIconUserTaskComponent" + }, + { + "position": { + "line": 222, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramInclusiveGatewayComponent" + }, + { + "position": { + "line": 245, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramIntermediateCatchingEventComponent" + }, + { + "position": { + "line": 251, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramLaneComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramLaneElement.model.ts" + }, + "name": "DiagramLaneElementModel" + }, + { + "position": { + "line": 250, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramLanesComponent" + }, + { + "position": { + "line": 209, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramManualTaskComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagram.model.ts" + }, + "name": "DiagramModel" + }, + { + "position": { + "line": 211, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramMuleTaskComponent" + }, + { + "position": { + "line": 223, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramParallelGatewayComponent" + }, + { + "position": { + "line": 249, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramPoolComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramPoolElement.model.ts" + }, + "name": "DiagramPoolElementModel" + }, + { + "position": { + "line": 248, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramPoolsComponent" + }, + { + "position": { + "line": 216, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramReceiveTaskComponent" + }, + { + "position": { + "line": 213, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramRestCallTaskComponent" + }, + { + "position": { + "line": 217, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramScriptTaskComponent" + }, + { + "position": { + "line": 207, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramSendTaskComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/insights/diagram/components/diagram-sequence-flow.component.ts" + }, + "name": "DiagramSequenceFlowComponent" + }, + { + "position": { + "line": 219, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramSequenceFlowComponent" + }, + { + "position": { + "line": 206, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramServiceTaskComponent" + }, + { + "position": { + "line": 110, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "DiagramsModule" + }, + { + "position": { + "line": 66, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "DiagramsModule" + }, + { + "position": { + "line": 113, + "character": 0, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramsModule" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/insights/diagram/services/diagrams.service.ts" + }, + "name": "DiagramsService" + }, + { + "position": { + "line": 202, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramStartEventComponent" + }, + { + "position": { + "line": 246, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramSubprocessComponent" + }, + { + "position": { + "line": 205, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramTaskComponent" + }, + { + "position": { + "line": 244, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramThrowEventComponent" + }, + { + "position": { + "line": 252, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramTooltipComponent" + }, + { + "position": { + "line": 208, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "DiagramUserTaskComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/diagram/diagramWayPoint.model.ts" + }, + "name": "DiagramWayPointModel" + }, + { + "position": { + "line": 169, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "DialogModule" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "DialogModule" + }, + { + "position": { + "line": 115, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "DialogModule" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "DirectiveModule" + }, + { + "position": { + "line": 271, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DirectiveModule" + }, + { + "position": { + "line": 198, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DirectiveModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/discovery-api.service.ts" + }, + "name": "DiscoveryApiService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/display-text/display-text.widget.ts" + }, + "name": "DisplayTextWidgetComponentComponent" + }, + { + "position": { + "line": 57, + "character": 0, + "fileName": "lib/content-services/document-list/models/content-action.model.ts" + }, + "name": "DocumentActionModel" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/document-list/services/document-actions.service.ts" + }, + "name": "DocumentActionsService" + }, + { + "position": { + "line": 45, + "character": 0, + "fileName": "lib/content-services/document-list/components/document-list.component.ts" + }, + "name": "DocumentListComponent" + }, + { + "position": { + "line": 52, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "DocumentListComponent" + }, + { + "position": { + "line": 162, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "DocumentListModule" + }, + { + "position": { + "line": 108, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "DocumentListModule" + }, + { + "position": { + "line": 34, + "character": 0, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "DocumentListModule" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/document-list/services/document-list.service.ts" + }, + "name": "DocumentListService" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/form/components/widgets/document/document.widget.ts" + }, + "name": "DocumentWidgetComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/dialogs/download-zip.dialog.ts" + }, + "name": "DownloadZipDialogComponent" + }, + { + "position": { + "line": 49, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "DownloadZipDialogComponent" + }, + { + "position": { + "line": 33, + "character": 8, + "fileName": "lib/content-services/breadcrumb/breadcrumb.module.ts" + }, + "name": "DropdownBreadcrumbComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/breadcrumb/dropdown-breadcrumb.component.ts" + }, + "name": "DropdownBreadcrumbComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/dropdown/dropdown.editor.ts" + }, + "name": "DropdownEditorComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/content-services/site-dropdown/sites-dropdown.component.ts" + }, + "name": "DropdownSitesComponent" + }, + { + "position": { + "line": 34, + "character": 8, + "fileName": "lib/content-services/site-dropdown/sites-dropdown.module.ts" + }, + "name": "DropdownSitesComponent" + }, + { + "position": { + "line": 69, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "DropdownWidgetAanalyticsComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/dropdown/dropdown.widget.ts" + }, + "name": "DropdownWidgetComponent" + }, + { + "position": { + "line": 71, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "DurationWidgetComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/services/dynamic-component-mapper.service.ts" + }, + "name": "DynamicComponentMapper" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/dynamic-component-mapper.service.ts" + }, + "name": "DynamicComponentResolver" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/dynamic-table.widget.model.ts" + }, + "name": "DynamicTableModel" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/dynamic-table.widget.ts" + }, + "name": "DynamicTableWidgetComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/models/ecm-company.model.ts" + }, + "name": "EcmCompanyModel" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/form/services/ecm-model.service.ts" + }, + "name": "EcmModelService" + }, + { + "position": { + "line": 119, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "EcmProductVersionModel" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/userinfo/services/ecm-user.service.ts" + }, + "name": "EcmUserService" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "EmptyContentComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/templates/empty-content/empty-content.component.ts" + }, + "name": "EmptyContentComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/datatable/directives/empty-custom-content.directive.ts" + }, + "name": "EmptyCustomContentDirective" + }, + { + "position": { + "line": 79, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyCustomContentDirective" + }, + { + "position": { + "line": 57, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "EmptyFolderContentDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/document-list/components/empty-folder/empty-folder-content.directive.ts" + }, + "name": "EmptyFolderContentDirective" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" + }, + "name": "EmptyListBodyDirective" + }, + { + "position": { + "line": 70, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyListBodyDirective" + }, + { + "position": { + "line": 68, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyListComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" + }, + "name": "EmptyListComponent" + }, + { + "position": { + "line": 71, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyListFooterDirective" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" + }, + "name": "EmptyListFooterDirective" + }, + { + "position": { + "line": 69, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyListHeaderDirective" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" + }, + "name": "EmptyListHeaderDirective" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/content-services/search/components/empty-search-result.component.ts" + }, + "name": "EmptySearchResultComponent" + }, + { + "position": { + "line": 35, + "character": 8, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "ErrorContentComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/templates/error-content/error-content.component.ts" + }, + "name": "ErrorContentComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/error-message.model.ts" + }, + "name": "ErrorMessageModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/error/error.component.ts" + }, + "name": "ErrorWidgetComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/mock/event.mock.ts" + }, + "name": "EventMock" + }, + { + "position": { + "line": 18, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "FacetField" + }, + { + "position": { + "line": 17, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "FacetFieldBucket" + }, + { + "position": { + "line": 19, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "FacetQuery" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/favorites-api.service.ts" + }, + "name": "FavoritesApiService" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/upload/directives/file-draggable.directive.ts" + }, + "name": "FileDraggableDirective" + }, + { + "position": { + "line": 47, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileDraggableDirective" + }, + { + "position": { + "line": 49, + "character": 0, + "fileName": "lib/core/models/file.model.ts" + }, + "name": "FileModel" + }, + { + "position": { + "line": 74, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "FileSizeCellComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/filesize-cell.component.ts" + }, + "name": "FileSizeCellComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/file-size.pipe.ts" + }, + "name": "FileSizePipe" + }, + { + "position": { + "line": 48, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "FileSizePipe" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/events/file.event.ts" + }, + "name": "FileUploadCompleteEvent" + }, + { + "position": { + "line": 37, + "character": 0, + "fileName": "lib/core/events/file.event.ts" + }, + "name": "FileUploadDeleteEvent" + }, + { + "position": { + "line": 45, + "character": 0, + "fileName": "lib/core/events/file.event.ts" + }, + "name": "FileUploadErrorEvent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/events/file.event.ts" + }, + "name": "FileUploadEvent" + }, + { + "position": { + "line": 51, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileUploadingDialogComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/content-services/upload/components/file-uploading-dialog.component.ts" + }, + "name": "FileUploadingDialogComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/upload/components/file-uploading-list.component.ts" + }, + "name": "FileUploadingListComponent" + }, + { + "position": { + "line": 52, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileUploadingListComponent" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileUploadingListRowComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/upload/components/file-uploading-list-row.component.ts" + }, + "name": "FileUploadingListRowComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/utils/file-utils.ts" + }, + "name": "FileUtils" + }, + { + "position": { + "line": 59, + "character": 0, + "fileName": "lib/process-services/task-list/models/filter.model.ts" + }, + "name": "FilterParamRepresentationModel" + }, + { + "position": { + "line": 45, + "character": 0, + "fileName": "lib/process-services/task-list/models/filter.model.ts" + }, + "name": "FilterParamsModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/process-list/models/filter-process.model.ts" + }, + "name": "FilterProcessRepresentationModel" + }, + { + "position": { + "line": 20, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "FilterQuery" + }, + { + "position": { + "line": 83, + "character": 0, + "fileName": "lib/process-services/task-list/models/filter.model.ts" + }, + "name": "FilterRepresentationModel" + }, + { + "position": { + "line": 483, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "FixedValueFieldValidator" + }, + { + "position": { + "line": 64, + "character": 0, + "fileName": "lib/content-services/document-list/models/content-action.model.ts" + }, + "name": "FolderActionModel" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/content-services/document-list/services/folder-actions.service.ts" + }, + "name": "FolderActionsService" + }, + { + "position": { + "line": 34, + "character": 8, + "fileName": "lib/content-services/folder-directive/folder-directive.module.ts" + }, + "name": "FolderCreateDirective" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/folder-directive/folder-create.directive.ts" + }, + "name": "FolderCreateDirective" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/dialogs/folder.dialog.ts" + }, + "name": "FolderDialogComponent" + }, + { + "position": { + "line": 50, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "FolderDialogComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/folder-directive/folder-directive.module.ts" + }, + "name": "FolderDirectiveModule" + }, + { + "position": { + "line": 170, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "FolderDirectiveModule" + }, + { + "position": { + "line": 116, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "FolderDirectiveModule" + }, + { + "position": { + "line": 35, + "character": 8, + "fileName": "lib/content-services/folder-directive/folder-directive.module.ts" + }, + "name": "FolderEditDirective" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/folder-directive/folder-edit.directive.ts" + }, + "name": "FolderEditDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/process-services/task-list/models/form.model.ts" + }, + "name": "Form" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/form/components/form.component.ts" + }, + "name": "FormComponent" + }, + { + "position": { + "line": 71, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "FormComponent" + }, + { + "position": { + "line": 18, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "FormErrorEvent" + }, + { + "position": { + "line": 17, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "FormEvent" + }, + { + "position": { + "line": 70, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "FormFieldComponent" + }, + { + "position": { + "line": 19, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "FormFieldEvent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field.model.ts" + }, + "name": "FormFieldModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-types.ts" + }, + "name": "FormFieldTypes" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/form/components/form-list.component.ts" + }, + "name": "FormListComponent" + }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "FormListComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form.model.ts" + }, + "name": "FormModel" + }, + { + "position": { + "line": 211, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "FormModule" + }, + { + "position": { + "line": 40, + "character": 0, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "FormModule" + }, + { + "position": { + "line": 284, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "FormModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-outcome-event.model.ts" + }, + "name": "FormOutcomeEvent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-outcome.model.ts" + }, + "name": "FormOutcomeModel" + }, + { + "position": { + "line": 42, + "character": 0, + "fileName": "lib/core/form/services/form-rendering.service.ts" + }, + "name": "FormRenderingService" + }, + { + "position": { + "line": 33, + "character": 0, + "fileName": "lib/core/form/services/form.service.ts" + }, + "name": "FormService" + }, + { + "position": { + "line": 63, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 107, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 127, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 199, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 40, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 272, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 76, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-widget.model.ts" + }, + "name": "FormWidgetModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/functional-group/functional-group.widget.ts" + }, + "name": "FunctionalGroupWidgetComponent" + }, + { + "position": { + "line": 45, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "HeaderLayoutComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/heatMapChart.model.ts" + }, + "name": "HeatMapChart" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/directives/highlight.directive.ts" + }, + "name": "HighlightDirective" + }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "HighlightDirective" + }, + { + "position": { + "line": 49, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "HighlightPipe" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/text-highlight.pipe.ts" + }, + "name": "HighlightPipe" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/highlight-transform.service.ts" + }, + "name": "HighlightTransformService" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/settings/host-settings.module.ts" + }, + "name": "HostSettingsComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/settings/host-settings.component.ts" + }, + "name": "HostSettingsComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/settings/host-settings.module.ts" + }, + "name": "HostSettingsModule" + }, + { + "position": { + "line": 202, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HostSettingsModule" + }, + { + "position": { + "line": 275, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HostSettingsModule" + }, + { + "position": { + "line": 201, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HttpClientModule" + }, + { + "position": { + "line": 274, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HttpClientModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/hyperlink/hyperlink.widget.ts" + }, + "name": "HyperlinkWidgetComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/viewer/components/imgViewer.component.ts" + }, + "name": "ImgViewerComponent" + }, + { + "position": { + "line": 79, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ImgViewerComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/config/indifferent-config.service.ts" + }, + "name": "IndifferentConfigService" + }, + { + "position": { + "line": 35, + "character": 8, + "fileName": "lib/core/pagination/pagination.module.ts" + }, + "name": "InfinitePaginationComponent" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/core/pagination/infinite-pagination.component.ts" + }, + "name": "InfinitePaginationComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer-layout.component.ts" + }, + "name": "InfoDrawerButtonsDirective" + }, + { + "position": { + "line": 36, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer.component.ts" + }, + "name": "InfoDrawerComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer-layout.component.ts" + }, + "name": "InfoDrawerContentDirective" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer-layout.component.ts" + }, + "name": "InfoDrawerLayoutComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer.module.ts" + }, + "name": "InfoDrawerModule" + }, + { + "position": { + "line": 288, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "InfoDrawerModule" + }, + { + "position": { + "line": 215, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "InfoDrawerModule" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer.component.ts" + }, + "name": "InfoDrawerTabComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/info-drawer/info-drawer-layout.component.ts" + }, + "name": "InfoDrawerTitleDirective" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/inherited-button.directive.ts" + }, + "name": "InheritPermissionDirective" + }, + { + "position": { + "line": 56, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "InheritPermissionDirective" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/pipes/user-initial.pipe.ts" + }, + "name": "InitialUsernamePipe" + }, + { + "position": { + "line": 52, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "InitialUsernamePipe" + }, + { + "position": { + "line": 37, + "character": 0, + "fileName": "lib/core/form/components/widgets/text/text-mask.component.ts" + }, + "name": "InputMaskDirective" + }, + { + "position": { + "line": 40, + "character": 0, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "InsightsModule" + }, + { + "position": { + "line": 95, + "character": 0, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "InsightsModuleLazy" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/language-menu/language-menu.component.ts" + }, + "name": "LanguageMenuComponent" + }, + { + "position": { + "line": 32, + "character": 8, + "fileName": "lib/core/language-menu/language-menu.module.ts" + }, + "name": "LanguageMenuComponent" + }, + { + "position": { + "line": 287, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LanguageMenuModule" + }, + { + "position": { + "line": 214, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LanguageMenuModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/language-menu/language-menu.module.ts" + }, + "name": "LanguageMenuModule" + }, + { + "position": { + "line": 40, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "LayoutContainerComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "LayoutModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/config/layout-oriented-config.service.ts" + }, + "name": "LayoutOrientedConfigService" + }, + { + "position": { + "line": 57, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "LicenseModel" + }, + { + "position": { + "line": 31, + "character": 8, + "fileName": "lib/content-services/social/social.module.ts" + }, + "name": "LikeComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/social/like.component.ts" + }, + "name": "LikeComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/lineChart.model.ts" + }, + "name": "LineChart" + }, + { + "position": { + "line": 78, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "LoadingContentTemplateDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/directives/loading-template.directive.ts" + }, + "name": "LoadingContentTemplateDirective" + }, + { + "position": { + "line": 75, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "LocationCellComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/location-cell.component.ts" + }, + "name": "LocationCellComponent" + }, + { + "position": { + "line": 43, + "character": 8, + "fileName": "lib/core/login/login.module.ts" + }, + "name": "LoginComponent" + }, + { + "position": { + "line": 44, + "character": 0, + "fileName": "lib/core/login/components/login.component.ts" + }, + "name": "LoginComponent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/login/models/login-error.event.ts" + }, + "name": "LoginErrorEvent" + }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/core/login/login.module.ts" + }, + "name": "LoginFooterDirective" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/login/directives/login-footer.directive.ts" + }, + "name": "LoginFooterDirective" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/login/directives/login-header.directive.ts" + }, + "name": "LoginHeaderDirective" + }, + { + "position": { + "line": 45, + "character": 8, + "fileName": "lib/core/login/login.module.ts" + }, + "name": "LoginHeaderDirective" + }, + { + "position": { + "line": 213, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LoginModule" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/login/login.module.ts" + }, + "name": "LoginModule" + }, + { + "position": { + "line": 286, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LoginModule" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/login/models/login-submit.event.ts" + }, + "name": "LoginSubmitEvent" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/login/models/login-success.event.ts" + }, + "name": "LoginSuccessEvent" + }, + { + "position": { + "line": 45, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "LogoutDirective" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/directives/logout.directive.ts" + }, + "name": "LogoutDirective" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/log.service.ts" + }, + "name": "LogService" + }, + { + "position": { + "line": 277, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 204, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 65, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 109, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 212, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MaxDateFieldValidator" + }, + { + "position": { + "line": 299, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MaxDateTimeFieldValidator" + }, + { + "position": { + "line": 372, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MaxLengthFieldValidator" + }, + { + "position": { + "line": 428, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MaxValueFieldValidator" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/viewer/components/mediaPlayer.component.ts" + }, + "name": "MediaPlayerComponent" + }, + { + "position": { + "line": 81, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "MediaPlayerComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/mime-type-icon.pipe.ts" + }, + "name": "MimeTypeIconPipe" + }, + { + "position": { + "line": 51, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "MimeTypeIconPipe" + }, + { + "position": { + "line": 165, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MinDateFieldValidator" + }, + { + "position": { + "line": 253, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MinDateTimeFieldValidator" + }, + { + "position": { + "line": 346, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MinLengthFieldValidator" + }, + { + "position": { + "line": 398, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "MinValueFieldValidator" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/utils/momentDateAdapter.ts" + }, + "name": "MomentDateAdapter" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/multiBarChart.model.ts" + }, + "name": "MultiBarChart" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/multiline-text/multiline-text.widget.ts" + }, + "name": "MultilineTextWidgetComponentComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/content-node-selector/name-location-cell/name-location-cell.component.ts" + }, + "name": "NameLocationCellComponent" + }, + { + "position": { + "line": 43, + "character": 8, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + }, + "name": "NameLocationCellComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/directives/no-content-template.directive.ts" + }, + "name": "NoContentTemplateDirective" + }, + { + "position": { + "line": 76, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "NoContentTemplateDirective" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/document-list/services/node-actions.service.ts" + }, + "name": "NodeActionsService" + }, + { + "position": { + "line": 46, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "NodeDeleteDirective" + }, + { + "position": { + "line": 48, + "character": 0, + "fileName": "lib/core/directives/node-delete.directive.ts" + }, + "name": "NodeDeleteDirective" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/directives/node-download.directive.ts" + }, + "name": "NodeDownloadDirective" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/content-services/directives/content-directive.module.ts" + }, + "name": "NodeDownloadDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/document-list/components/node.event.ts" + }, + "name": "NodeEntityEvent" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/content-services/document-list/components/node.event.ts" + }, + "name": "NodeEntryEvent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/directives/node-favorite.directive.ts" + }, + "name": "NodeFavoriteDirective" + }, + { + "position": { + "line": 47, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "NodeFavoriteDirective" + }, + { + "position": { + "line": 51, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "NodeLockDialogComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/content-services/dialogs/node-lock.dialog.ts" + }, + "name": "NodeLockDialogComponent" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/content-services/directives/content-directive.module.ts" + }, + "name": "NodeLockDirective" + }, + { + "position": { + "line": 42, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "NodeMinimal" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "NodeMinimalEntry" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/node-name-tooltip.pipe.ts" + }, + "name": "NodeNameTooltipPipe" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "NodeNameTooltipPipe" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "NodePaging" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "NodePagingList" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/permission-manager/services/node-permission-dialog.service.ts" + }, + "name": "NodePermissionDialogService" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/directives/node-permission.directive.ts" + }, + "name": "NodePermissionDirective" + }, + { + "position": { + "line": 48, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "NodePermissionDirective" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/permission-manager/services/node-permission.service.ts" + }, + "name": "NodePermissionService" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/core/directives/node-restore.directive.ts" + }, + "name": "NodeRestoreDirective" + }, + { + "position": { + "line": 49, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "NodeRestoreDirective" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/nodes-api.service.ts" + }, + "name": "NodesApiService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/services/node.service.ts" + }, + "name": "NodeService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/directives/node-share.directive.ts" + }, + "name": "NodeSharedDirective" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/content-services/directives/content-directive.module.ts" + }, + "name": "NodeSharedDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/document-list/components/no-permission/no-permission-content.directive.ts" + }, + "name": "NoPermissionContentDirective" + }, + { + "position": { + "line": 58, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "NoPermissionContentDirective" + }, + { + "position": { + "line": 54, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "NoPermissionTemplateComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/permission-list/no-permission.component.ts" + }, + "name": "NoPermissionTemplateComponent" + }, + { + "position": { + "line": 77, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "NoPermissionTemplateDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/directives/no-permission-template.directive.ts" + }, + "name": "NoPermissionTemplateDirective" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/process-services/task-list/components/no-task-detail-template.directive.ts" + }, + "name": "NoTaskDetailsTemplateDirective" + }, + { + "position": { + "line": 64, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "NoTaskDetailsTemplateDirective" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/services/notification.service.ts" + }, + "name": "NotificationService" + }, + { + "position": { + "line": 92, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "NumberFieldValidator" + }, + { + "position": { + "line": 70, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "NumberWidgetAanlyticsComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/number/number.widget.ts" + }, + "name": "NumberWidgetComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/data/object-datacolumn.model.ts" + }, + "name": "ObjectDataColumn" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/data/object-datarow.model.ts" + }, + "name": "ObjectDataRow" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/datatable/data/object-datatable-adapter.ts" + }, + "name": "ObjectDataTableAdapter" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/utils/object-utils.ts" + }, + "name": "ObjectUtils" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/page-title.service.ts" + }, + "name": "PageTitleService" + }, + { + "position": { + "line": 34, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "Pagination" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/pagination/pagination.module.ts" + }, + "name": "PaginationComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/pagination/pagination.component.ts" + }, + "name": "PaginationComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/models/pagination.model.ts" + }, + "name": "PaginationModel" + }, + { + "position": { + "line": 279, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "PaginationModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/pagination/pagination.module.ts" + }, + "name": "PaginationModule" + }, + { + "position": { + "line": 206, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "PaginationModule" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/report/parameterValue.model.ts" + }, + "name": "ParameterValueModel" + }, + { + "position": { + "line": 76, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "PathElementEntity" + }, + { + "position": { + "line": 70, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "PathInfoEntity" + }, + { + "position": { + "line": 83, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "PdfPasswordDialogComponent" + }, + { + "position": { + "line": 84, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "PdfThumbComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/viewer/components/pdfViewer-thumb.component.ts" + }, + "name": "PdfThumbComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/viewer/components/pdfViewer-thumbnails.component.ts" + }, + "name": "PdfThumbListComponent" + }, + { + "position": { + "line": 85, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "PdfThumbListComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/viewer/components/pdfViewer.component.ts" + }, + "name": "PdfViewerComponent" + }, + { + "position": { + "line": 82, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "PdfViewerComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/process-services/people/components/people/people.component.ts" + }, + "name": "PeopleComponent" + }, + { + "position": { + "line": 50, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/people-content.service.ts" + }, + "name": "PeopleContentService" + }, + { + "position": { + "line": 56, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleListComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/process-services/people/components/people-list/people-list.component.ts" + }, + "name": "PeopleListComponent" + }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleModule" + }, + { + "position": { + "line": 133, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "PeopleModule" + }, + { + "position": { + "line": 82, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "PeopleModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/services/people-process.service.ts" + }, + "name": "PeopleProcessService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/people/directives/people-search-action-label.directive.ts" + }, + "name": "PeopleSearchActionLabelDirective" + }, + { + "position": { + "line": 55, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSearchActionLabelDirective" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/people/components/people-search/people-search.component.ts" + }, + "name": "PeopleSearchComponent" + }, + { + "position": { + "line": 51, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSearchComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/process-services/people/components/people-search-field/people-search-field.component.ts" + }, + "name": "PeopleSearchFieldComponent" + }, + { + "position": { + "line": 52, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSearchFieldComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/people/directives/people-search-title.directive.ts" + }, + "name": "PeopleSearchTitleDirective" + }, + { + "position": { + "line": 54, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSearchTitleDirective" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/process-services/people/components/people-selector/people-selector.component.ts" + }, + "name": "PeopleSelectorComponent" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSelectorComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/form/components/widgets/people/people.widget.ts" + }, + "name": "PeopleWidgetComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/content-services/permission-manager/models/permission.model.ts" + }, + "name": "PermissionDisplayModel" + }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "PermissionListComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/permission-list/permission-list.component.ts" + }, + "name": "PermissionListComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "PermissionManagerModule" + }, + { + "position": { + "line": 172, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "PermissionManagerModule" + }, + { + "position": { + "line": 118, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "PermissionManagerModule" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/content-services/document-list/models/permissions.model.ts" + }, + "name": "PermissionModel" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/core/models/permissions.enum.ts" + }, + "name": "PermissionsEnum" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/content-services/document-list/models/permissions-style.model.ts" + }, + "name": "PermissionStyleModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/pieChart.model.ts" + }, + "name": "PieChart" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "PipeModule" + }, + { + "position": { + "line": 196, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "PipeModule" + }, + { + "position": { + "line": 269, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "PipeModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/attachment/process-attachment-list.component.ts" + }, + "name": "ProcessAttachmentListComponent" + }, + { + "position": { + "line": 40, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "ProcessAttachmentListComponent" + }, + { + "position": { + "line": 62, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessAuditDirective" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-audit.directive.ts" + }, + "name": "ProcessAuditDirective" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/process-services/process-comments/process-comments.module.ts" + }, + "name": "ProcessCommentsComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/process-services/process-comments/process-comments.component.ts" + }, + "name": "ProcessCommentsComponent" + }, + { + "position": { + "line": 126, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessCommentsModule" + }, + { + "position": { + "line": 75, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessCommentsModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/process-services/process-comments/process-comments.module.ts" + }, + "name": "ProcessCommentsModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/form/services/process-content.service.ts" + }, + "name": "ProcessContentService" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/process-services/process-list/models/process-definition.model.ts" + }, + "name": "ProcessDefinitionRepresentation" + }, + { + "position": { + "line": 48, + "character": 0, + "fileName": "lib/process-services/process-list/models/filter-process.model.ts" + }, + "name": "ProcessFilterParamRepresentationModel" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/process-services/process-list/models/process-instance-filter.model.ts" + }, + "name": "ProcessFilterRequestRepresentation" + }, + { + "position": { + "line": 60, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessFiltersComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-filters.component.ts" + }, + "name": "ProcessFiltersComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/process-list/services/process-filter.service.ts" + }, + "name": "ProcessFilterService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/process-list/models/process-instance.model.ts" + }, + "name": "ProcessInstance" + }, + { + "position": { + "line": 61, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessInstanceDetailsComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-instance-details.component.ts" + }, + "name": "ProcessInstanceDetailsComponent" + }, + { + "position": { + "line": 63, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessInstanceHeaderComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-instance-header.component.ts" + }, + "name": "ProcessInstanceHeaderComponent" + }, + { + "position": { + "line": 47, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-list.component.ts" + }, + "name": "ProcessInstanceListComponent" + }, + { + "position": { + "line": 59, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessInstanceListComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-instance-tasks.component.ts" + }, + "name": "ProcessInstanceTasksComponent" + }, + { + "position": { + "line": 64, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessInstanceTasksComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/process-list/models/process-instance-variable.model.ts" + }, + "name": "ProcessInstanceVariable" + }, + { + "position": { + "line": 36, + "character": 0, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "ProcessListModule" + }, + { + "position": { + "line": 129, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessListModule" + }, + { + "position": { + "line": 78, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessListModule" + }, + { + "position": { + "line": 48, + "character": 0, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessModule" + }, + { + "position": { + "line": 110, + "character": 0, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessModuleLazy" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/process-services/process-list/services/process.service.ts" + }, + "name": "ProcessService" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/task-list/services/process-upload.service.ts" + }, + "name": "ProcessUploadService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/property-descriptors.service.ts" + }, + "name": "PropertyDescriptorsService" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/content-services/content-metadata/services/property-groups-translator.service.ts" + }, + "name": "PropertyGroupTranslatorService" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/radio-buttons/radio-buttons.widget.ts" + }, + "name": "RadioButtonsWidgetComponent" + }, + { + "position": { + "line": 253, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelCircleDirective" + }, + { + "position": { + "line": 258, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelCrossDirective" + }, + { + "position": { + "line": 257, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelFlowArrowDirective" + }, + { + "position": { + "line": 268, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconAlfrescoPublishDirective" + }, + { + "position": { + "line": 271, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconBoxPublishDirective" + }, + { + "position": { + "line": 274, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconBusinessRuleDirective" + }, + { + "position": { + "line": 266, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconCamelDirective" + }, + { + "position": { + "line": 276, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconErrorDirective" + }, + { + "position": { + "line": 270, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconGoogleDrivePublishDirective" + }, + { + "position": { + "line": 265, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconManualDirective" + }, + { + "position": { + "line": 278, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconMessageDirective" + }, + { + "position": { + "line": 267, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconMuleDirective" + }, + { + "position": { + "line": 272, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconReceiveDirective" + }, + { + "position": { + "line": 269, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconRestCallDirective" + }, + { + "position": { + "line": 273, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconScriptDirective" + }, + { + "position": { + "line": 263, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconSendDirective" + }, + { + "position": { + "line": 262, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconServiceDirective" + }, + { + "position": { + "line": 277, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconSignalDirective" + }, + { + "position": { + "line": 275, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconTimerDirective" + }, + { + "position": { + "line": 264, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelIconUserDirective" + }, + { + "position": { + "line": 256, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelMultilineTextDirective" + }, + { + "position": { + "line": 261, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelPentagonDirective" + }, + { + "position": { + "line": 259, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelPlusDirective" + }, + { + "position": { + "line": 254, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelRectDirective" + }, + { + "position": { + "line": 260, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelRhombusDirective" + }, + { + "position": { + "line": 255, + "character": 8, + "fileName": "lib/insights/diagram/diagram.module.ts" + }, + "name": "RaphaelTextDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/social/rating.component.ts" + }, + "name": "RatingComponent" + }, + { + "position": { + "line": 30, + "character": 8, + "fileName": "lib/content-services/social/social.module.ts" + }, + "name": "RatingComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/social/services/rating.service.ts" + }, + "name": "RatingService" + }, + { + "position": { + "line": 64, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 108, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 273, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 77, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 128, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 200, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/models/redirection.model.ts" + }, + "name": "RedirectionModel" + }, + { + "position": { + "line": 458, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "RegExFieldValidator" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/services/renditions.service.ts" + }, + "name": "RenditionsService" + }, + { + "position": { + "line": 17, + "character": 0, + "fileName": "lib/insights/diagram/models/report/reportDateRange.model.ts" + }, + "name": "ReportDateRange" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/report/reportDefinition.model.ts" + }, + "name": "ReportDefinitionModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/report/reportParameterDetails.model.ts" + }, + "name": "ReportParameterDetailsModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/report/reportParameters.model.ts" + }, + "name": "ReportParametersModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/report/reportQuery.model.ts" + }, + "name": "ReportQuery" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" + }, + "name": "RequiredFieldValidator" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/directives/node-restore.directive.ts" + }, + "name": "RestoreMessageModel" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/row.editor.ts" + }, + "name": "RowEditorComponent" + }, + { + "position": { + "line": 21, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchCategory" + }, + { + "position": { + "line": 75, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchCheckListComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/content-services/search/components/search-chip-list/search-chip-list.component.ts" + }, + "name": "SearchChipListComponent" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/content-services/search/components/search.component.ts" + }, + "name": "SearchComponent" + }, + { + "position": { + "line": 24, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchConfiguration" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/services/search-configuration.service.ts" + }, + "name": "SearchConfigurationService" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/search/components/search-control.component.ts" + }, + "name": "SearchControlComponent" + }, + { + "position": { + "line": 76, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchDateRangeComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/search/components/search-filter/search-filter.component.ts" + }, + "name": "SearchFilterComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/search/components/search-filter/search-filter.service.ts" + }, + "name": "SearchFilterService" + }, + { + "position": { + "line": 49, + "character": 0, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchModule" + }, + { + "position": { + "line": 164, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SearchModule" + }, + { + "position": { + "line": 110, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SearchModule" + }, + { + "position": { + "line": 74, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchNumberRangeComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/search/search-query-builder.service.ts" + }, + "name": "SearchQueryBuilderService" + }, + { + "position": { + "line": 25, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchQueryBuilderService" + }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchRadioComponent" + }, + { + "position": { + "line": 26, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchRange" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/search.service.ts" + }, + "name": "SearchService" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchSliderComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/search/components/search-sorting-picker/search-sorting-picker.component.ts" + }, + "name": "SearchSortingPickerComponent" + }, + { + "position": { + "line": 77, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchSortingPickerComponent" + }, + { + "position": { + "line": 71, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchTextComponent" + }, + { + "position": { + "line": 43, + "character": 0, + "fileName": "lib/content-services/search/components/search-trigger.directive.ts" + }, + "name": "SearchTriggerDirective" + }, + { + "position": { + "line": 23, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchWidget" + }, + { + "position": { + "line": 70, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchWidgetContainerComponent" + }, + { + "position": { + "line": 22, + "character": 9, + "fileName": "lib/content-services/search/public-api.ts" + }, + "name": "SearchWidgetSettings" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/app-list/select-apps-dialog-component.ts" + }, + "name": "SelectAppsDialogComponent" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/process-services/app-list/apps-list.module.ts" + }, + "name": "SelectAppsDialogComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/settings.service.ts" + }, + "name": "SettingsService" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/document-list/data/share-data-row.model.ts" + }, + "name": "ShareDataRow" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/document-list/data/share-datatable-adapter.ts" + }, + "name": "ShareDataTableAdapter" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/content-services/dialogs/share.dialog.ts" + }, + "name": "ShareDialogComponent" + }, + { + "position": { + "line": 52, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "ShareDialogComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/shared-links-api.service.ts" + }, + "name": "SharedLinksApiService" + }, + { + "position": { + "line": 41, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidebarActionMenuComponent" + }, + { + "position": { + "line": 42, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidebarMenuDirective" + }, + { + "position": { + "line": 43, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidebarMenuExpandIconDirective" + }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidebarMenuTitleIconDirective" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/layout/components/sidenav-layout/sidenav-layout.component.ts" + }, + "name": "SidenavLayoutComponent" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutContentDirective" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutHeaderDirective" + }, + { + "position": { + "line": 61, + "character": 9, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutModule" + }, + { + "position": { + "line": 268, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SidenavLayoutModule" + }, + { + "position": { + "line": 195, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SidenavLayoutModule" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutNavigationDirective" + }, + { + "position": { + "line": 111, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SitesDropdownModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/site-dropdown/sites-dropdown.module.ts" + }, + "name": "SitesDropdownModule" + }, + { + "position": { + "line": 165, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SitesDropdownModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/services/sites.service.ts" + }, + "name": "SitesService" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/social/social.module.ts" + }, + "name": "SocialModule" + }, + { + "position": { + "line": 159, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SocialModule" + }, + { + "position": { + "line": 105, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SocialModule" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/sorting-picker/sorting-picker.component.ts" + }, + "name": "SortingPickerComponent" + }, + { + "position": { + "line": 33, + "character": 8, + "fileName": "lib/core/sorting-picker/sorting-picker.module.ts" + }, + "name": "SortingPickerComponent" + }, + { + "position": { + "line": 221, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SortingPickerModule" + }, + { + "position": { + "line": 294, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SortingPickerModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/sorting-picker/sorting-picker.module.ts" + }, + "name": "SortingPickerModule" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/core/form/components/start-form.component.ts" + }, + "name": "StartFormComponent" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "StartFormComponent" + }, + { + "position": { + "line": 74, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "StartFormCustomButtonDirective" + }, + { + "position": { + "line": 65, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" + }, + "name": "StartProcessInstanceComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/process-services/process-list/components/start-process.component.ts" + }, + "name": "StartProcessInstanceComponent" + }, + { + "position": { + "line": 71, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "StartTaskComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/process-services/task-list/components/start-task.component.ts" + }, + "name": "StartTaskComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/process-services/task-list/models/start-task.model.ts" + }, + "name": "StartTaskModel" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/services/storage.service.ts" + }, + "name": "StorageService" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/insights/diagram/models/chart/tableChart.model.ts" + }, + "name": "TableChart" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/core/tab.model.ts" + }, + "name": "TabModel" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/form/components/widgets/tabs/tabs.widget.ts" + }, + "name": "TabsWidgetComponent" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/content-services/tag/tag.module.ts" + }, + "name": "TagActionsComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/tag/tag-actions.component.ts" + }, + "name": "TagActionsComponent" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/tag/tag-list.component.ts" + }, + "name": "TagListComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/content-services/tag/tag.module.ts" + }, + "name": "TagListComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/tag/tag.module.ts" + }, + "name": "TagModule" + }, + { + "position": { + "line": 106, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "TagModule" + }, + { + "position": { + "line": 160, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "TagModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/tag/tag-node-list.component.ts" + }, + "name": "TagNodeListComponent" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/content-services/tag/tag.module.ts" + }, + "name": "TagNodeListComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/tag/services/tag.service.ts" + }, + "name": "TagService" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "TaskAttachmentListComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/attachment/task-attachment-list.component.ts" + }, + "name": "TaskAttachmentListComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-audit.directive.ts" + }, + "name": "TaskAuditDirective" + }, + { + "position": { + "line": 68, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskAuditDirective" + }, + { + "position": { + "line": 67, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskDetailsComponent" + }, + { + "position": { + "line": 48, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-details.component.ts" + }, + "name": "TaskDetailsComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/task-list/models/task-details.event.ts" + }, + "name": "TaskDetailsEvent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/process-services/task-list/models/task-details.model.ts" + }, + "name": "TaskDetailsModel" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-filters.component.ts" + }, + "name": "TaskFiltersComponent" + }, + { + "position": { + "line": 65, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskFiltersComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/task-list/services/task-filter.service.ts" + }, + "name": "TaskFilterService" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-header.component.ts" + }, + "name": "TaskHeaderComponent" + }, + { + "position": { + "line": 70, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskHeaderComponent" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-list.component.ts" + }, + "name": "TaskListComponent" + }, + { + "position": { + "line": 66, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskListComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/task-list/models/task-list.model.ts" + }, + "name": "TaskListModel" + }, + { + "position": { + "line": 39, + "character": 0, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskListModule" + }, + { + "position": { + "line": 130, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "TaskListModule" + }, + { + "position": { + "line": 79, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "TaskListModule" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/task-list/services/tasklist.service.ts" + }, + "name": "TaskListService" + }, + { + "position": { + "line": 109, + "character": 0, + "fileName": "lib/process-services/task-list/models/filter.model.ts" + }, + "name": "TaskQueryRequestRepresentationModel" + }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskStandaloneComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-standalone.component.ts" + }, + "name": "TaskStandaloneComponent" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/task-list/services/task-upload.service.ts" + }, + "name": "TaskUploadService" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "TemplateModule" + }, + { + "position": { + "line": 220, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TemplateModule" + }, + { + "position": { + "line": 293, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TemplateModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/text/text.editor.ts" + }, + "name": "TextEditorComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/text/text.widget.ts" + }, + "name": "TextWidgetComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/services/thumbnail.service.ts" + }, + "name": "ThumbnailService" + }, + { + "position": { + "line": 50, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" + }, + "name": "TimeAgoPipe" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/time-ago.pipe.ts" + }, + "name": "TimeAgoPipe" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/toolbar/toolbar.module.ts" + }, + "name": "ToolbarComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/toolbar/toolbar.component.ts" + }, + "name": "ToolbarComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/toolbar/toolbar-divider.component.ts" + }, + "name": "ToolbarDividerComponent" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/core/toolbar/toolbar.module.ts" + }, + "name": "ToolbarDividerComponent" + }, + { + "position": { + "line": 280, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ToolbarModule" + }, + { + "position": { + "line": 207, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ToolbarModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/toolbar/toolbar.module.ts" + }, + "name": "ToolbarModule" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/toolbar/toolbar-title.component.ts" + }, + "name": "ToolbarTitleComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/toolbar/toolbar.module.ts" + }, + "name": "ToolbarTitleComponent" + }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/core/services/translate-loader.service.ts" + }, + "name": "TranslateLoaderService" + }, + { + "position": { + "line": 218, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TranslateModule" + }, + { + "position": { + "line": 291, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TranslateModule" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/mock/translation.service.mock.ts" + }, + "name": "TranslationMock" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/services/translation.service.ts" + }, + "name": "TranslationService" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/viewer/components/txtViewer.component.ts" + }, + "name": "TxtViewerComponent" + }, + { + "position": { + "line": 80, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "TxtViewerComponent" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/core/form/components/widgets/typeahead/typeahead.widget.ts" + }, + "name": "TypeaheadWidgetComponent" + }, + { + "position": { + "line": 87, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "UnknownFormatComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/unknown-format/unknown-format.component.ts" + }, + "name": "UnknownFormatComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/form/components/widgets/unknown/unknown.widget.ts" + }, + "name": "UnknownWidgetComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/upload/components/base-upload/upload-base.ts" + }, + "name": "UploadBase" + }, + { + "position": { + "line": 49, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "UploadButtonComponent" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/content-services/upload/components/upload-button.component.ts" + }, + "name": "UploadButtonComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/directives/upload.directive.ts" + }, + "name": "UploadDirective" + }, + { + "position": { + "line": 50, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "UploadDirective" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/upload/components/upload-drag-area.component.ts" + }, + "name": "UploadDragAreaComponent" + }, + { + "position": { + "line": 48, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "UploadDragAreaComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/content-services/upload/components/upload-files.event.ts" + }, + "name": "UploadFilesEvent" + }, + { + "position": { + "line": 163, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "UploadModule" + }, + { + "position": { + "line": 109, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "UploadModule" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "UploadModule" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/services/upload.service.ts" + }, + "name": "UploadService" + }, + { + "position": { + "line": 50, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "UploadVersionButtonComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/upload/components/upload-version-button.component.ts" + }, + "name": "UploadVersionButtonComponent" + }, + { + "position": { + "line": 29, + "character": 0, + "fileName": "lib/core/form/components/widgets/upload/upload.widget.ts" + }, + "name": "UploadWidgetComponent" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/process-services/task-list/models/user-event.model.ts" + }, + "name": "UserEventModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/process-services/task-list/models/user-group.model.ts" + }, + "name": "UserGroupModel" + }, + { + "position": { + "line": 58, + "character": 0, + "fileName": "lib/content-services/document-list/models/document-library.model.ts" + }, + "name": "UserInfo" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/userinfo/components/user-info.component.ts" + }, + "name": "UserInfoComponent" + }, + { + "position": { + "line": 36, + "character": 8, + "fileName": "lib/core/userinfo/userinfo.module.ts" + }, + "name": "UserInfoComponent" + }, + { + "position": { + "line": 203, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "UserInfoModule" + }, + { + "position": { + "line": 276, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "UserInfoModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/userinfo/userinfo.module.ts" + }, + "name": "UserInfoModule" + }, + { + "position": { + "line": 30, + "character": 0, + "fileName": "lib/core/services/user-preferences.service.ts" + }, + "name": "UserPreferencesService" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/models/user-process.model.ts" + }, + "name": "UserProcessModel" + }, + { + "position": { + "line": 22, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "ValidateDynamicTableRowEvent" + }, + { + "position": { + "line": 21, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "ValidateFormEvent" + }, + { + "position": { + "line": 20, + "character": 9, + "fileName": "lib/core/form/events/index.ts" + }, + "name": "ValidateFormFieldEvent" + }, + { + "position": { + "line": 39, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "VersionListComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/version-manager/version-list.component.ts" + }, + "name": "VersionListComponent" + }, + { + "position": { + "line": 38, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "VersionManagerComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/content-services/version-manager/version-manager.component.ts" + }, + "name": "VersionManagerComponent" + }, + { + "position": { + "line": 119, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "VersionManagerModule" + }, + { + "position": { + "line": 173, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "VersionManagerModule" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "VersionManagerModule" + }, + { + "position": { + "line": 35, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "VersionModel" + }, + { + "position": { + "line": 95, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "VersionModuleModel" + }, + { + "position": { + "line": 79, + "character": 0, + "fileName": "lib/core/models/product-version.model.ts" + }, + "name": "VersionStatusModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/version-manager/version-upload.component.ts" + }, + "name": "VersionUploadComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "VersionUploadComponent" + }, + { + "position": { + "line": 33, + "character": 0, + "fileName": "lib/core/viewer/components/viewer.component.ts" + }, + "name": "ViewerComponent" + }, + { + "position": { + "line": 78, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerComponent" + }, + { + "position": { + "line": 86, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerExtensionDirective" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/viewer/directives/viewer-extension.directive.ts" + }, + "name": "ViewerExtensionDirective" + }, + { + "position": { + "line": 267, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ViewerModule" + }, + { + "position": { + "line": 194, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ViewerModule" + }, + { + "position": { + "line": 46, + "character": 0, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerModule" + }, + { + "position": { + "line": 91, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerMoreActionsComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-more-actions.component.ts" + }, + "name": "ViewerMoreActionsComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-open-with.component.ts" + }, + "name": "ViewerOpenWithComponent" + }, + { + "position": { + "line": 90, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerOpenWithComponent" + }, + { + "position": { + "line": 89, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerSidebarComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-sidebar.component.ts" + }, + "name": "ViewerSidebarComponent" + }, + { + "position": { + "line": 92, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerToolbarActionsComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-toolbar-actions.component.ts" + }, + "name": "ViewerToolbarActionsComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-toolbar.component.ts" + }, + "name": "ViewerToolbarComponent" + }, + { + "position": { + "line": 88, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerToolbarComponent" + }, + { + "position": { + "line": 41, + "character": 0, + "fileName": "lib/content-services/webscript/webscript.component.ts" + }, + "name": "WebscriptComponent" + }, + { + "position": { + "line": 31, + "character": 8, + "fileName": "lib/content-services/webscript/webscript.module.ts" + }, + "name": "WebscriptComponent" + }, + { + "position": { + "line": 107, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "WebScriptModule" + }, + { + "position": { + "line": 161, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "WebScriptModule" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/content-services/webscript/webscript.module.ts" + }, + "name": "WebScriptModule" + }, + { + "position": { + "line": 38, + "character": 0, + "fileName": "lib/core/form/components/widgets/widget.component.ts" + }, + "name": "WidgetComponent" + } +] \ No newline at end of file diff --git a/tools/export-check/export-check-config.json b/tools/export-check/export-check-config.json index 0b675227f7..aa8d3518cc 100644 --- a/tools/export-check/export-check-config.json +++ b/tools/export-check/export-check-config.json @@ -4,6 +4,7 @@ "export-2.0.0.json", "export-2.1.0.json", "export-2.2.0.json", - "export-2.3.0.json" + "export-2.3.0.json", + "export-2.5.0.json" ] } diff --git a/tools/export-check/export-new.json b/tools/export-check/export-new.json index 133b1540ad..a9865dcbf0 100644 --- a/tools/export-check/export-new.json +++ b/tools/export-check/export-new.json @@ -1,4 +1,44 @@ [ + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/about/about.component.ts" + }, + "name": "AboutComponent" + }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/core/about/about.module.ts" + }, + "name": "AboutComponent" + }, + { + "position": { + "line": 266, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AboutModule" + }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/core/about/about.module.ts" + }, + "name": "AboutModule" + }, + { + "position": { + "line": 193, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AboutModule" + }, { "position": { "line": 36, @@ -17,17 +57,17 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/collapsable/accordion-group.component.ts" + "line": 37, + "character": 8, + "fileName": "lib/core/collapsable/collapsable.module.ts" }, "name": "AccordionGroupComponent" }, { "position": { - "line": 37, - "character": 8, - "fileName": "lib/core/collapsable/collapsable.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/collapsable/accordion-group.component.ts" }, "name": "AccordionGroupComponent" }, @@ -41,7 +81,15 @@ }, { "position": { - "line": 62, + "line": 22, + "character": 0, + "fileName": "lib/content-services/permission-manager/components/add-permission/add-permission.component.ts" + }, + "name": "AddPermissionComponent" + }, + { + "position": { + "line": 57, "character": 8, "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, @@ -49,11 +97,11 @@ }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/content-services/permission-manager/components/add-permission/add-permission.component.ts" + "line": 58, + "character": 8, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, - "name": "AddPermissionComponent" + "name": "AddPermissionDialogComponent" }, { "position": { @@ -65,11 +113,11 @@ }, { "position": { - "line": 63, + "line": 55, "character": 8, "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, - "name": "AddPermissionDialogComponent" + "name": "AddPermissionPanelComponent" }, { "position": { @@ -79,14 +127,6 @@ }, "name": "AddPermissionPanelComponent" }, - { - "position": { - "line": 60, - "character": 8, - "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" - }, - "name": "AddPermissionPanelComponent" - }, { "position": { "line": 18, @@ -97,7 +137,7 @@ }, { "position": { - "line": 30, + "line": 41, "character": 0, "fileName": "lib/core/services/alfresco-api.service.ts" }, @@ -105,7 +145,7 @@ }, { "position": { - "line": 25, + "line": 23, "character": 0, "fileName": "lib/core/mock/alfresco-api.service.mock.ts" }, @@ -119,6 +159,14 @@ }, "name": "AmountWidgetComponent" }, + { + "position": { + "line": 64, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsComponent" + }, { "position": { "line": 21, @@ -129,11 +177,11 @@ }, { "position": { - "line": 71, + "line": 67, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, - "name": "AnalyticsComponent" + "name": "AnalyticsGeneratorComponent" }, { "position": { @@ -145,15 +193,7 @@ }, { "position": { - "line": 74, - "character": 8, - "fileName": "lib/insights/analytics-process/analytics-process.module.ts" - }, - "name": "AnalyticsGeneratorComponent" - }, - { - "position": { - "line": 42, + "line": 40, "character": 0, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -161,7 +201,7 @@ }, { "position": { - "line": 54, + "line": 111, "character": 8, "fileName": "lib/insights/insights.module.ts" }, @@ -169,7 +209,15 @@ }, { "position": { - "line": 75, + "line": 67, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "AnalyticsProcessModule" + }, + { + "position": { + "line": 68, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -177,7 +225,7 @@ }, { "position": { - "line": 72, + "line": 65, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -191,14 +239,6 @@ }, "name": "AnalyticsReportListComponent" }, - { - "position": { - "line": 73, - "character": 8, - "fileName": "lib/insights/analytics-process/analytics-process.module.ts" - }, - "name": "AnalyticsReportParametersComponent" - }, { "position": { "line": 41, @@ -209,12 +249,36 @@ }, { "position": { - "line": 33, + "line": 66, + "character": 8, + "fileName": "lib/insights/analytics-process/analytics-process.module.ts" + }, + "name": "AnalyticsReportParametersComponent" + }, + { + "position": { + "line": 32, "character": 0, "fileName": "lib/insights/analytics-process/services/analytics.service.ts" }, "name": "AnalyticsService" }, + { + "position": { + "line": 278, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AppConfigModule" + }, + { + "position": { + "line": 205, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "AppConfigModule" + }, { "position": { "line": 21, @@ -225,23 +289,23 @@ }, { "position": { - "line": 176, - "character": 8, - "fileName": "lib/core/core.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/app-config/app-config.pipe.ts" }, - "name": "AppConfigModule" + "name": "AppConfigPipe" }, { "position": { - "line": 245, + "line": 29, "character": 8, - "fileName": "lib/core/core.module.ts" + "fileName": "lib/core/app-config/app-config.module.ts" }, - "name": "AppConfigModule" + "name": "AppConfigPipe" }, { "position": { - "line": 23, + "line": 38, "character": 0, "fileName": "lib/core/app-config/app-config.service.ts" }, @@ -249,7 +313,7 @@ }, { "position": { - "line": 21, + "line": 20, "character": 0, "fileName": "lib/core/mock/app-config.service.mock.ts" }, @@ -263,14 +327,6 @@ }, "name": "AppDefinitionRepresentationModel" }, - { - "position": { - "line": 40, - "character": 8, - "fileName": "lib/process-services/app-list/apps-list.module.ts" - }, - "name": "AppsListComponent" - }, { "position": { "line": 24, @@ -281,15 +337,15 @@ }, { "position": { - "line": 27, - "character": 0, + "line": 38, + "character": 8, "fileName": "lib/process-services/app-list/apps-list.module.ts" }, - "name": "AppsListModule" + "name": "AppsListComponent" }, { "position": { - "line": 68, + "line": 131, "character": 8, "fileName": "lib/process-services/process.module.ts" }, @@ -297,7 +353,23 @@ }, { "position": { - "line": 25, + "line": 80, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AppsListModule" + }, + { + "position": { + "line": 26, + "character": 0, + "fileName": "lib/process-services/app-list/apps-list.module.ts" + }, + "name": "AppsListModule" + }, + { + "position": { + "line": 24, "character": 0, "fileName": "lib/core/services/apps-process.service.ts" }, @@ -305,20 +377,12 @@ }, { "position": { - "line": 21, + "line": 20, "character": 0, "fileName": "lib/content-services/content-metadata/services/config/aspect-oriented-config.service.ts" }, "name": "AspectOrientedConfigService" }, - { - "position": { - "line": 35, - "character": 0, - "fileName": "lib/process-services/content-widget/attach-file-widget.component.ts" - }, - "name": "AttachFileWidgetComponent" - }, { "position": { "line": 38, @@ -329,11 +393,11 @@ }, { "position": { - "line": 39, - "character": 8, - "fileName": "lib/process-services/content-widget/content-widget.module.ts" + "line": 35, + "character": 0, + "fileName": "lib/process-services/content-widget/attach-file-widget.component.ts" }, - "name": "AttachFolderWidgetComponent" + "name": "AttachFileWidgetComponent" }, { "position": { @@ -345,11 +409,27 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/process-services/attachment/create-task-attachment.component.ts" + "line": 39, + "character": 8, + "fileName": "lib/process-services/content-widget/content-widget.module.ts" }, - "name": "AttachmentComponent" + "name": "AttachFolderWidgetComponent" + }, + { + "position": { + "line": 73, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "AttachFormComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/task-list/components/attach-form.component.ts" + }, + "name": "AttachFormComponent" }, { "position": { @@ -361,11 +441,11 @@ }, { "position": { - "line": 69, - "character": 8, - "fileName": "lib/process-services/process.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/process-services/attachment/create-task-attachment.component.ts" }, - "name": "AttachmentModule" + "name": "AttachmentComponent" }, { "position": { @@ -377,7 +457,23 @@ }, { "position": { - "line": 22, + "line": 132, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AttachmentModule" + }, + { + "position": { + "line": 81, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "AttachmentModule" + }, + { + "position": { + "line": 21, "character": 0, "fileName": "lib/core/mock/authentication.service.mock.ts" }, @@ -385,7 +481,7 @@ }, { "position": { - "line": 33, + "line": 30, "character": 0, "fileName": "lib/core/services/authentication.service.ts" }, @@ -393,7 +489,7 @@ }, { "position": { - "line": 25, + "line": 27, "character": 0, "fileName": "lib/core/services/auth-guard.service.ts" }, @@ -401,7 +497,7 @@ }, { "position": { - "line": 25, + "line": 23, "character": 0, "fileName": "lib/core/services/auth-guard-bpm.service.ts" }, @@ -409,7 +505,7 @@ }, { "position": { - "line": 23, + "line": 25, "character": 0, "fileName": "lib/core/services/auth-guard-ecm.service.ts" }, @@ -473,7 +569,7 @@ }, { "position": { - "line": 30, + "line": 22, "character": 0, "fileName": "lib/content-services/breadcrumb/breadcrumb.component.ts" }, @@ -497,7 +593,7 @@ }, { "position": { - "line": 98, + "line": 112, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -505,11 +601,11 @@ }, { "position": { - "line": 22, - "character": 0, - "fileName": "lib/core/buttons-menu/buttons-menu.component.ts" + "line": 166, + "character": 8, + "fileName": "lib/content-services/content.module.ts" }, - "name": "ButtonsMenuComponent" + "name": "BreadcrumbModule" }, { "position": { @@ -519,6 +615,22 @@ }, "name": "ButtonsMenuComponent" }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/buttons-menu/buttons-menu.component.ts" + }, + "name": "ButtonsMenuComponent" + }, + { + "position": { + "line": 292, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ButtonsMenuModule" + }, { "position": { "line": 24, @@ -529,7 +641,7 @@ }, { "position": { - "line": 190, + "line": 219, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -537,15 +649,7 @@ }, { "position": { - "line": 259, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "ButtonsMenuModule" - }, - { - "position": { - "line": 24, + "line": 26, "character": 0, "fileName": "lib/core/card-view/services/card-item-types.service.ts" }, @@ -559,6 +663,14 @@ }, "name": "CardViewBaseItemModel" }, + { + "position": { + "line": 19, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewBoolItemComponent" + }, { "position": { "line": 22, @@ -569,20 +681,12 @@ }, { "position": { - "line": 72, + "line": 82, "character": 8, "fileName": "lib/core/card-view/card-view.module.ts" }, "name": "CardViewBoolItemComponent" }, - { - "position": { - "line": 19, - "character": 4, - "fileName": "lib/core/card-view/public-api.ts" - }, - "name": "CardViewBoolItemComponent" - }, { "position": { "line": 22, @@ -601,7 +705,7 @@ }, { "position": { - "line": 71, + "line": 81, "character": 8, "fileName": "lib/core/card-view/card-view.module.ts" }, @@ -633,7 +737,7 @@ }, { "position": { - "line": 73, + "line": 83, "character": 8, "fileName": "lib/core/card-view/card-view.module.ts" }, @@ -705,15 +809,47 @@ }, { "position": { - "line": 21, + "line": 24, "character": 4, "fileName": "lib/core/card-view/public-api.ts" }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 87, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.ts" + }, + "name": "CardViewKeyValuePairsItemComponent" + }, + { + "position": { + "line": 22, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-keyvaluepairs.model.ts" + }, + "name": "CardViewKeyValuePairsItemModel" + }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-mapitem/card-view-mapitem.component.ts" + }, "name": "CardViewMapItemComponent" }, { "position": { - "line": 74, + "line": 84, "character": 8, "fileName": "lib/core/card-view/card-view.module.ts" }, @@ -722,8 +858,8 @@ { "position": { "line": 21, - "character": 0, - "fileName": "lib/core/card-view/components/card-view-mapitem/card-view-mapitem.component.ts" + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" }, "name": "CardViewMapItemComponent" }, @@ -737,7 +873,15 @@ }, { "position": { - "line": 40, + "line": 282, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CardViewModule" + }, + { + "position": { + "line": 44, "character": 0, "fileName": "lib/core/card-view/card-view.module.ts" }, @@ -745,7 +889,7 @@ }, { "position": { - "line": 180, + "line": 209, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -753,11 +897,35 @@ }, { "position": { - "line": 249, - "character": 8, - "fileName": "lib/core/core.module.ts" + "line": 24, + "character": 0, + "fileName": "lib/core/card-view/components/card-view-selectitem/card-view-selectitem.component.ts" }, - "name": "CardViewModule" + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 23, + "character": 4, + "fileName": "lib/core/card-view/public-api.ts" + }, + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 86, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewSelectItemComponent" + }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/card-view/models/card-view-selectitem.model.ts" + }, + "name": "CardViewSelectItemModel" }, { "position": { @@ -767,6 +935,14 @@ }, "name": "CardViewTextItemComponent" }, + { + "position": { + "line": 85, + "character": 8, + "fileName": "lib/core/card-view/card-view.module.ts" + }, + "name": "CardViewTextItemComponent" + }, { "position": { "line": 22, @@ -775,14 +951,6 @@ }, "name": "CardViewTextItemComponent" }, - { - "position": { - "line": 75, - "character": 8, - "fileName": "lib/core/card-view/card-view.module.ts" - }, - "name": "CardViewTextItemComponent" - }, { "position": { "line": 22, @@ -793,7 +961,7 @@ }, { "position": { - "line": 39, + "line": 38, "character": 0, "fileName": "lib/core/card-view/services/card-view-update.service.ts" }, @@ -809,7 +977,7 @@ }, { "position": { - "line": 79, + "line": 72, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -825,7 +993,7 @@ }, { "position": { - "line": 86, + "line": 69, "character": 8, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -833,7 +1001,7 @@ }, { "position": { - "line": 24, + "line": 22, "character": 0, "fileName": "lib/process-services/task-list/components/checklist.component.ts" }, @@ -849,7 +1017,7 @@ }, { "position": { - "line": 250, + "line": 210, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -857,7 +1025,7 @@ }, { "position": { - "line": 181, + "line": 283, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -865,7 +1033,7 @@ }, { "position": { - "line": 26, + "line": 24, "character": 0, "fileName": "lib/core/services/comment-content.service.ts" }, @@ -873,9 +1041,9 @@ }, { "position": { - "line": 23, - "character": 0, - "fileName": "lib/core/comments/comment-list.component.ts" + "line": 45, + "character": 8, + "fileName": "lib/core/comments/comments.module.ts" }, "name": "CommentListComponent" }, @@ -889,9 +1057,9 @@ }, { "position": { - "line": 43, - "character": 8, - "fileName": "lib/core/comments/comments.module.ts" + "line": 23, + "character": 0, + "fileName": "lib/core/comments/comment-list.component.ts" }, "name": "CommentListComponent" }, @@ -913,7 +1081,7 @@ }, { "position": { - "line": 27, + "line": 25, "character": 0, "fileName": "lib/core/services/comment-process.service.ts" }, @@ -921,17 +1089,17 @@ }, { "position": { - "line": 44, - "character": 8, - "fileName": "lib/core/comments/comments.module.ts" + "line": 22, + "character": 9, + "fileName": "lib/process-services/index.ts" }, "name": "CommentsComponent" }, { "position": { - "line": 22, - "character": 9, - "fileName": "lib/process-services/index.ts" + "line": 46, + "character": 8, + "fileName": "lib/core/comments/comments.module.ts" }, "name": "CommentsComponent" }, @@ -953,15 +1121,7 @@ }, { "position": { - "line": 62, - "character": 8, - "fileName": "lib/process-services/process.module.ts" - }, - "name": "CommentsModule" - }, - { - "position": { - "line": 183, + "line": 212, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -969,7 +1129,7 @@ }, { "position": { - "line": 28, + "line": 29, "character": 0, "fileName": "lib/core/comments/comments.module.ts" }, @@ -977,7 +1137,7 @@ }, { "position": { - "line": 252, + "line": 285, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -985,31 +1145,7 @@ }, { "position": { - "line": 237, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "CommonModule" - }, - { - "position": { - "line": 168, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "CommonModule" - }, - { - "position": { - "line": 49, - "character": 8, - "fileName": "lib/insights/insights.module.ts" - }, - "name": "CommonModule" - }, - { - "position": { - "line": 61, + "line": 74, "character": 8, "fileName": "lib/process-services/process.module.ts" }, @@ -1017,11 +1153,43 @@ }, { "position": { - "line": 57, + "line": 125, "character": 8, - "fileName": "lib/content-services/dialogs/dialog.module.ts" + "fileName": "lib/process-services/process.module.ts" }, - "name": "ConfirmDialogComponent" + "name": "CommonModule" + }, + { + "position": { + "line": 270, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 62, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 197, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "CommonModule" + }, + { + "position": { + "line": 106, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "CommonModule" }, { "position": { @@ -1031,6 +1199,14 @@ }, "name": "ConfirmDialogComponent" }, + { + "position": { + "line": 53, + "character": 8, + "fileName": "lib/content-services/dialogs/dialog.module.ts" + }, + "name": "ConfirmDialogComponent" + }, { "position": { "line": 21, @@ -1057,7 +1233,7 @@ }, { "position": { - "line": 72, + "line": 55, "character": 8, "fileName": "lib/content-services/document-list/document-list.module.ts" }, @@ -1065,7 +1241,7 @@ }, { "position": { - "line": 27, + "line": 28, "character": 0, "fileName": "lib/content-services/document-list/components/content-action/content-action.component.ts" }, @@ -1073,7 +1249,7 @@ }, { "position": { - "line": 73, + "line": 56, "character": 8, "fileName": "lib/content-services/document-list/document-list.module.ts" }, @@ -1095,14 +1271,6 @@ }, "name": "ContentActionModel" }, - { - "position": { - "line": 70, - "character": 8, - "fileName": "lib/content-services/document-list/document-list.module.ts" - }, - "name": "ContentColumnComponent" - }, { "position": { "line": 25, @@ -1113,7 +1281,15 @@ }, { "position": { - "line": 71, + "line": 53, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "ContentColumnComponent" + }, + { + "position": { + "line": 54, "character": 8, "fileName": "lib/content-services/document-list/document-list.module.ts" }, @@ -1129,20 +1305,28 @@ }, { "position": { - "line": 25, - "character": 0, - "fileName": "lib/content-services/directives/content-directive.module.ts" + "line": 117, + "character": 8, + "fileName": "lib/content-services/content.module.ts" }, "name": "ContentDirectiveModule" }, { "position": { - "line": 103, + "line": 171, "character": 8, "fileName": "lib/content-services/content.module.ts" }, "name": "ContentDirectiveModule" }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/directives/content-directive.module.ts" + }, + "name": "ContentDirectiveModule" + }, { "position": { "line": 63, @@ -1169,7 +1353,7 @@ }, { "position": { - "line": 36, + "line": 34, "character": 8, "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" }, @@ -1177,7 +1361,7 @@ }, { "position": { - "line": 35, + "line": 33, "character": 8, "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" }, @@ -1193,7 +1377,7 @@ }, { "position": { - "line": 26, + "line": 25, "character": 0, "fileName": "lib/content-services/content-metadata/content-metadata.module.ts" }, @@ -1201,7 +1385,7 @@ }, { "position": { - "line": 100, + "line": 168, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -1209,7 +1393,15 @@ }, { "position": { - "line": 27, + "line": 114, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentMetadataModule" + }, + { + "position": { + "line": 28, "character": 0, "fileName": "lib/content-services/content-metadata/services/content-metadata.service.ts" }, @@ -1217,7 +1409,7 @@ }, { "position": { - "line": 48, + "line": 124, "character": 0, "fileName": "lib/content-services/content.module.ts" }, @@ -1225,12 +1417,28 @@ }, { "position": { - "line": 31, + "line": 81, + "character": 0, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentModuleLazy" + }, + { + "position": { + "line": 30, "character": 0, "fileName": "lib/content-services/content-node-selector/content-node-dialog.service.ts" }, "name": "ContentNodeDialogService" }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + }, + "name": "ContentNodeSelectorComponent" + }, { "position": { "line": 24, @@ -1241,15 +1449,7 @@ }, { "position": { - "line": 52, - "character": 8, - "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" - }, - "name": "ContentNodeSelectorComponent" - }, - { - "position": { - "line": 99, + "line": 113, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -1257,7 +1457,15 @@ }, { "position": { - "line": 33, + "line": 167, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "ContentNodeSelectorModule" + }, + { + "position": { + "line": 30, "character": 0, "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" }, @@ -1265,17 +1473,17 @@ }, { "position": { - "line": 50, - "character": 8, - "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" + "line": 36, + "character": 0, + "fileName": "lib/content-services/content-node-selector/content-node-selector-panel.component.ts" }, "name": "ContentNodeSelectorPanelComponent" }, { "position": { - "line": 35, - "character": 0, - "fileName": "lib/content-services/content-node-selector/content-node-selector-panel.component.ts" + "line": 42, + "character": 8, + "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" }, "name": "ContentNodeSelectorPanelComponent" }, @@ -1289,7 +1497,7 @@ }, { "position": { - "line": 32, + "line": 28, "character": 0, "fileName": "lib/core/services/content.service.ts" }, @@ -1297,17 +1505,17 @@ }, { "position": { - "line": 25, - "character": 0, - "fileName": "lib/core/form/components/widgets/content/content.widget.ts" + "line": 69, + "character": 8, + "fileName": "lib/core/form/form.module.ts" }, "name": "ContentWidgetComponent" }, { "position": { - "line": 86, - "character": 8, - "fileName": "lib/core/form/form.module.ts" + "line": 25, + "character": 0, + "fileName": "lib/core/form/components/widgets/content/content.widget.ts" }, "name": "ContentWidgetComponent" }, @@ -1329,7 +1537,7 @@ }, { "position": { - "line": 38, + "line": 39, "character": 8, "fileName": "lib/core/context-menu/context-menu.module.ts" }, @@ -1337,28 +1545,20 @@ }, { "position": { - "line": 26, + "line": 38, + "character": 8, + "fileName": "lib/core/context-menu/context-menu.module.ts" + }, + "name": "ContextMenuHolderComponent" + }, + { + "position": { + "line": 27, "character": 0, "fileName": "lib/core/context-menu/context-menu-holder.component.ts" }, "name": "ContextMenuHolderComponent" }, - { - "position": { - "line": 37, - "character": 8, - "fileName": "lib/core/context-menu/context-menu.module.ts" - }, - "name": "ContextMenuHolderComponent" - }, - { - "position": { - "line": 179, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "ContextMenuModule" - }, { "position": { "line": 26, @@ -1369,7 +1569,15 @@ }, { "position": { - "line": 248, + "line": 281, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ContextMenuModule" + }, + { + "position": { + "line": 208, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -1401,23 +1609,7 @@ }, { "position": { - "line": 48, - "character": 8, - "fileName": "lib/insights/insights.module.ts" - }, - "name": "CoreModule" - }, - { - "position": { - "line": 90, - "character": 8, - "fileName": "lib/content-services/content.module.ts" - }, - "name": "CoreModule" - }, - { - "position": { - "line": 196, + "line": 227, "character": 0, "fileName": "lib/core/core.module.ts" }, @@ -1425,12 +1617,20 @@ }, { "position": { - "line": 127, + "line": 154, "character": 0, "fileName": "lib/core/core.module.ts" }, "name": "CoreModuleLazy" }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/process-services/attachment/create-process-attachment.component.ts" + }, + "name": "CreateProcessAttachmentComponent" + }, { "position": { "line": 42, @@ -1449,15 +1649,7 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/process-services/attachment/create-process-attachment.component.ts" - }, - "name": "CreateProcessAttachmentComponent" - }, - { - "position": { - "line": 33, + "line": 34, "character": 0, "fileName": "lib/content-services/document-list/services/custom-resources.service.ts" }, @@ -1513,7 +1705,15 @@ }, { "position": { - "line": 256, + "line": 289, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataColumnModule" + }, + { + "position": { + "line": 216, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -1527,14 +1727,6 @@ }, "name": "DataColumnModule" }, - { - "position": { - "line": 187, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "DataColumnModule" - }, { "position": { "line": 31, @@ -1567,6 +1759,14 @@ }, "name": "DataSorting" }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "DataTableCellComponent" + }, { "position": { "line": 22, @@ -1577,15 +1777,15 @@ }, { "position": { - "line": 70, + "line": 67, "character": 8, "fileName": "lib/core/datatable/datatable.module.ts" }, - "name": "DataTableCellComponent" + "name": "DataTableComponent" }, { "position": { - "line": 46, + "line": 41, "character": 0, "fileName": "lib/core/datatable/components/datatable/datatable.component.ts" }, @@ -1593,15 +1793,7 @@ }, { "position": { - "line": 65, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" - }, - "name": "DataTableComponent" - }, - { - "position": { - "line": 188, + "line": 217, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -1609,7 +1801,15 @@ }, { "position": { - "line": 40, + "line": 290, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DataTableModule" + }, + { + "position": { + "line": 41, "character": 0, "fileName": "lib/core/datatable/datatable.module.ts" }, @@ -1617,25 +1817,25 @@ }, { "position": { - "line": 257, - "character": 8, - "fileName": "lib/core/core.module.ts" + "line": 23, + "character": 0, + "fileName": "lib/core/datatable/data/data-table.schema.ts" }, - "name": "DataTableModule" + "name": "DataTableSchema" }, { "position": { - "line": 71, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" + "line": 21, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/date-cell.component.ts" }, "name": "DateCellComponent" }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/datatable/components/datatable/date-cell.component.ts" + "line": 73, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" }, "name": "DateCellComponent" }, @@ -1657,12 +1857,20 @@ }, { "position": { - "line": 80, + "line": 73, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, "name": "DateRangeWidgetComponent" }, + { + "position": { + "line": 32, + "character": 0, + "fileName": "lib/core/form/components/widgets/dynamic-table/editors/datetime/datetime.editor.ts" + }, + "name": "DateTimeEditorComponent" + }, { "position": { "line": 31, @@ -1681,7 +1889,15 @@ }, { "position": { - "line": 24, + "line": 22, + "character": 0, + "fileName": "lib/core/app-config/debug-app-config.service.ts" + }, + "name": "DebugAppConfigService" + }, + { + "position": { + "line": 25, "character": 0, "fileName": "lib/core/services/deleted-nodes-api.service.ts" }, @@ -1697,7 +1913,7 @@ }, { "position": { - "line": 222, + "line": 212, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1705,7 +1921,7 @@ }, { "position": { - "line": 253, + "line": 243, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1713,7 +1929,7 @@ }, { "position": { - "line": 225, + "line": 215, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1721,7 +1937,7 @@ }, { "position": { - "line": 228, + "line": 218, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1729,7 +1945,7 @@ }, { "position": { - "line": 220, + "line": 210, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1753,7 +1969,7 @@ }, { "position": { - "line": 210, + "line": 200, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1761,7 +1977,7 @@ }, { "position": { - "line": 248, + "line": 238, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1769,7 +1985,7 @@ }, { "position": { - "line": 214, + "line": 204, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1793,7 +2009,7 @@ }, { "position": { - "line": 213, + "line": 203, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1801,7 +2017,7 @@ }, { "position": { - "line": 211, + "line": 201, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1817,7 +2033,7 @@ }, { "position": { - "line": 234, + "line": 224, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1825,7 +2041,7 @@ }, { "position": { - "line": 257, + "line": 247, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1833,7 +2049,7 @@ }, { "position": { - "line": 231, + "line": 221, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1849,7 +2065,7 @@ }, { "position": { - "line": 230, + "line": 220, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1857,7 +2073,7 @@ }, { "position": { - "line": 224, + "line": 214, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1865,7 +2081,7 @@ }, { "position": { - "line": 241, + "line": 231, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1873,7 +2089,7 @@ }, { "position": { - "line": 244, + "line": 234, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1881,7 +2097,7 @@ }, { "position": { - "line": 247, + "line": 237, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1889,7 +2105,7 @@ }, { "position": { - "line": 239, + "line": 229, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1897,7 +2113,7 @@ }, { "position": { - "line": 250, + "line": 240, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1905,7 +2121,7 @@ }, { "position": { - "line": 243, + "line": 233, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1913,7 +2129,7 @@ }, { "position": { - "line": 238, + "line": 228, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1921,7 +2137,7 @@ }, { "position": { - "line": 252, + "line": 242, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1929,7 +2145,7 @@ }, { "position": { - "line": 240, + "line": 230, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1937,7 +2153,7 @@ }, { "position": { - "line": 245, + "line": 235, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1945,7 +2161,7 @@ }, { "position": { - "line": 242, + "line": 232, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1953,7 +2169,7 @@ }, { "position": { - "line": 246, + "line": 236, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1961,7 +2177,7 @@ }, { "position": { - "line": 236, + "line": 226, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1969,7 +2185,7 @@ }, { "position": { - "line": 235, + "line": 225, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1977,7 +2193,7 @@ }, { "position": { - "line": 251, + "line": 241, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1985,7 +2201,7 @@ }, { "position": { - "line": 249, + "line": 239, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -1993,7 +2209,7 @@ }, { "position": { - "line": 237, + "line": 227, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2001,7 +2217,7 @@ }, { "position": { - "line": 232, + "line": 222, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2009,7 +2225,7 @@ }, { "position": { - "line": 255, + "line": 245, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2017,7 +2233,7 @@ }, { "position": { - "line": 261, + "line": 251, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2033,7 +2249,7 @@ }, { "position": { - "line": 260, + "line": 250, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2041,7 +2257,7 @@ }, { "position": { - "line": 219, + "line": 209, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2057,7 +2273,7 @@ }, { "position": { - "line": 221, + "line": 211, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2065,7 +2281,7 @@ }, { "position": { - "line": 233, + "line": 223, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2073,7 +2289,7 @@ }, { "position": { - "line": 259, + "line": 249, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2089,7 +2305,7 @@ }, { "position": { - "line": 258, + "line": 248, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2097,7 +2313,7 @@ }, { "position": { - "line": 226, + "line": 216, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2105,7 +2321,7 @@ }, { "position": { - "line": 223, + "line": 213, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2113,7 +2329,7 @@ }, { "position": { - "line": 227, + "line": 217, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2121,7 +2337,7 @@ }, { "position": { - "line": 217, + "line": 207, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2137,7 +2353,7 @@ }, { "position": { - "line": 229, + "line": 219, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2145,7 +2361,7 @@ }, { "position": { - "line": 216, + "line": 206, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2153,7 +2369,7 @@ }, { "position": { - "line": 53, + "line": 110, "character": 8, "fileName": "lib/insights/insights.module.ts" }, @@ -2161,7 +2377,15 @@ }, { "position": { - "line": 118, + "line": 66, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "DiagramsModule" + }, + { + "position": { + "line": 113, "character": 0, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2177,7 +2401,7 @@ }, { "position": { - "line": 212, + "line": 202, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2185,7 +2409,7 @@ }, { "position": { - "line": 256, + "line": 246, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2193,7 +2417,7 @@ }, { "position": { - "line": 215, + "line": 205, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2201,7 +2425,7 @@ }, { "position": { - "line": 254, + "line": 244, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2209,7 +2433,7 @@ }, { "position": { - "line": 262, + "line": 252, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2217,7 +2441,7 @@ }, { "position": { - "line": 218, + "line": 208, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -2233,15 +2457,7 @@ }, { "position": { - "line": 34, - "character": 0, - "fileName": "lib/content-services/dialogs/dialog.module.ts" - }, - "name": "DialogModule" - }, - { - "position": { - "line": 101, + "line": 169, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -2249,19 +2465,19 @@ }, { "position": { - "line": 169, - "character": 8, - "fileName": "lib/core/core.module.ts" + "line": 31, + "character": 0, + "fileName": "lib/content-services/dialogs/dialog.module.ts" }, - "name": "DirectiveModule" + "name": "DialogModule" }, { "position": { - "line": 238, + "line": 115, "character": 8, - "fileName": "lib/core/core.module.ts" + "fileName": "lib/content-services/content.module.ts" }, - "name": "DirectiveModule" + "name": "DialogModule" }, { "position": { @@ -2273,7 +2489,23 @@ }, { "position": { - "line": 25, + "line": 271, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DirectiveModule" + }, + { + "position": { + "line": 198, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "DirectiveModule" + }, + { + "position": { + "line": 24, "character": 0, "fileName": "lib/core/services/discovery-api.service.ts" }, @@ -2289,7 +2521,7 @@ }, { "position": { - "line": 49, + "line": 57, "character": 0, "fileName": "lib/content-services/document-list/models/content-action.model.ts" }, @@ -2297,7 +2529,7 @@ }, { "position": { - "line": 29, + "line": 27, "character": 0, "fileName": "lib/content-services/document-list/services/document-actions.service.ts" }, @@ -2305,15 +2537,7 @@ }, { "position": { - "line": 69, - "character": 8, - "fileName": "lib/content-services/document-list/document-list.module.ts" - }, - "name": "DocumentListComponent" - }, - { - "position": { - "line": 51, + "line": 45, "character": 0, "fileName": "lib/content-services/document-list/components/document-list.component.ts" }, @@ -2321,20 +2545,36 @@ }, { "position": { - "line": 41, - "character": 0, + "line": 52, + "character": 8, "fileName": "lib/content-services/document-list/document-list.module.ts" }, + "name": "DocumentListComponent" + }, + { + "position": { + "line": 162, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, "name": "DocumentListModule" }, { "position": { - "line": 94, + "line": 108, "character": 8, "fileName": "lib/content-services/content.module.ts" }, "name": "DocumentListModule" }, + { + "position": { + "line": 34, + "character": 0, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "DocumentListModule" + }, { "position": { "line": 27, @@ -2361,7 +2601,7 @@ }, { "position": { - "line": 53, + "line": 49, "character": 8, "fileName": "lib/content-services/dialogs/dialog.module.ts" }, @@ -2369,17 +2609,17 @@ }, { "position": { - "line": 22, - "character": 0, - "fileName": "lib/content-services/breadcrumb/dropdown-breadcrumb.component.ts" + "line": 33, + "character": 8, + "fileName": "lib/content-services/breadcrumb/breadcrumb.module.ts" }, "name": "DropdownBreadcrumbComponent" }, { "position": { - "line": 33, - "character": 8, - "fileName": "lib/content-services/breadcrumb/breadcrumb.module.ts" + "line": 22, + "character": 0, + "fileName": "lib/content-services/breadcrumb/dropdown-breadcrumb.component.ts" }, "name": "DropdownBreadcrumbComponent" }, @@ -2409,7 +2649,7 @@ }, { "position": { - "line": 76, + "line": 69, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -2425,7 +2665,7 @@ }, { "position": { - "line": 78, + "line": 71, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -2497,7 +2737,39 @@ }, { "position": { - "line": 74, + "line": 36, + "character": 8, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "EmptyContentComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/templates/empty-content/empty-content.component.ts" + }, + "name": "EmptyContentComponent" + }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/datatable/directives/empty-custom-content.directive.ts" + }, + "name": "EmptyCustomContentDirective" + }, + { + "position": { + "line": 79, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyCustomContentDirective" + }, + { + "position": { + "line": 57, "character": 8, "fileName": "lib/content-services/document-list/document-list.module.ts" }, @@ -2521,12 +2793,20 @@ }, { "position": { - "line": 68, + "line": 70, "character": 8, "fileName": "lib/core/datatable/datatable.module.ts" }, "name": "EmptyListBodyDirective" }, + { + "position": { + "line": 68, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "EmptyListComponent" + }, { "position": { "line": 19, @@ -2537,15 +2817,7 @@ }, { "position": { - "line": 66, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" - }, - "name": "EmptyListComponent" - }, - { - "position": { - "line": 69, + "line": 71, "character": 8, "fileName": "lib/core/datatable/datatable.module.ts" }, @@ -2561,17 +2833,17 @@ }, { "position": { - "line": 27, - "character": 0, - "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" + "line": 69, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" }, "name": "EmptyListHeaderDirective" }, { "position": { - "line": 67, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" + "line": 27, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/empty-list.component.ts" }, "name": "EmptyListHeaderDirective" }, @@ -2583,6 +2855,22 @@ }, "name": "EmptySearchResultComponent" }, + { + "position": { + "line": 35, + "character": 8, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "ErrorContentComponent" + }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/core/templates/error-content/error-content.component.ts" + }, + "name": "ErrorContentComponent" + }, { "position": { "line": 19, @@ -2633,20 +2921,12 @@ }, { "position": { - "line": 23, + "line": 24, "character": 0, "fileName": "lib/core/services/favorites-api.service.ts" }, "name": "FavoritesApiService" }, - { - "position": { - "line": 49, - "character": 8, - "fileName": "lib/content-services/upload/upload.module.ts" - }, - "name": "FileDraggableDirective" - }, { "position": { "line": 22, @@ -2657,7 +2937,15 @@ }, { "position": { - "line": 43, + "line": 47, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileDraggableDirective" + }, + { + "position": { + "line": 49, "character": 0, "fileName": "lib/core/models/file.model.ts" }, @@ -2665,17 +2953,17 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/datatable/components/datatable/filesize-cell.component.ts" + "line": 74, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" }, "name": "FileSizeCellComponent" }, { "position": { - "line": 72, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/components/datatable/filesize-cell.component.ts" }, "name": "FileSizeCellComponent" }, @@ -2729,7 +3017,15 @@ }, { "position": { - "line": 28, + "line": 51, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileUploadingDialogComponent" + }, + { + "position": { + "line": 26, "character": 0, "fileName": "lib/content-services/upload/components/file-uploading-dialog.component.ts" }, @@ -2737,23 +3033,7 @@ }, { "position": { - "line": 53, - "character": 8, - "fileName": "lib/content-services/upload/upload.module.ts" - }, - "name": "FileUploadingDialogComponent" - }, - { - "position": { - "line": 54, - "character": 8, - "fileName": "lib/content-services/upload/upload.module.ts" - }, - "name": "FileUploadingListComponent" - }, - { - "position": { - "line": 21, + "line": 22, "character": 0, "fileName": "lib/content-services/upload/components/file-uploading-list.component.ts" }, @@ -2761,7 +3041,15 @@ }, { "position": { - "line": 55, + "line": 52, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "FileUploadingListComponent" + }, + { + "position": { + "line": 53, "character": 8, "fileName": "lib/content-services/upload/upload.module.ts" }, @@ -2825,7 +3113,7 @@ }, { "position": { - "line": 484, + "line": 483, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -2833,7 +3121,7 @@ }, { "position": { - "line": 56, + "line": 64, "character": 0, "fileName": "lib/content-services/document-list/models/content-action.model.ts" }, @@ -2841,7 +3129,7 @@ }, { "position": { - "line": 28, + "line": 26, "character": 0, "fileName": "lib/content-services/document-list/services/folder-actions.service.ts" }, @@ -2849,17 +3137,17 @@ }, { "position": { - "line": 27, - "character": 0, - "fileName": "lib/content-services/folder-directive/folder-create.directive.ts" + "line": 34, + "character": 8, + "fileName": "lib/content-services/folder-directive/folder-directive.module.ts" }, "name": "FolderCreateDirective" }, { "position": { - "line": 34, - "character": 8, - "fileName": "lib/content-services/folder-directive/folder-directive.module.ts" + "line": 27, + "character": 0, + "fileName": "lib/content-services/folder-directive/folder-create.directive.ts" }, "name": "FolderCreateDirective" }, @@ -2873,7 +3161,7 @@ }, { "position": { - "line": 54, + "line": 50, "character": 8, "fileName": "lib/content-services/dialogs/dialog.module.ts" }, @@ -2889,7 +3177,7 @@ }, { "position": { - "line": 102, + "line": 170, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -2897,11 +3185,11 @@ }, { "position": { - "line": 27, - "character": 0, - "fileName": "lib/content-services/folder-directive/folder-edit.directive.ts" + "line": 116, + "character": 8, + "fileName": "lib/content-services/content.module.ts" }, - "name": "FolderEditDirective" + "name": "FolderDirectiveModule" }, { "position": { @@ -2911,6 +3199,14 @@ }, "name": "FolderEditDirective" }, + { + "position": { + "line": 27, + "character": 0, + "fileName": "lib/content-services/folder-directive/folder-edit.directive.ts" + }, + "name": "FolderEditDirective" + }, { "position": { "line": 20, @@ -2921,17 +3217,17 @@ }, { "position": { - "line": 88, - "character": 8, - "fileName": "lib/core/form/form.module.ts" + "line": 29, + "character": 0, + "fileName": "lib/core/form/components/form.component.ts" }, "name": "FormComponent" }, { "position": { - "line": 28, - "character": 0, - "fileName": "lib/core/form/components/form.component.ts" + "line": 71, + "character": 8, + "fileName": "lib/core/form/form.module.ts" }, "name": "FormComponent" }, @@ -2953,7 +3249,7 @@ }, { "position": { - "line": 87, + "line": 70, "character": 8, "fileName": "lib/core/form/form.module.ts" }, @@ -2985,17 +3281,17 @@ }, { "position": { - "line": 89, - "character": 8, - "fileName": "lib/core/form/form.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/form/components/form-list.component.ts" }, "name": "FormListComponent" }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/form/components/form-list.component.ts" + "line": 72, + "character": 8, + "fileName": "lib/core/form/form.module.ts" }, "name": "FormListComponent" }, @@ -3009,15 +3305,7 @@ }, { "position": { - "line": 48, - "character": 0, - "fileName": "lib/core/form/form.module.ts" - }, - "name": "FormModule" - }, - { - "position": { - "line": 182, + "line": 211, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3025,7 +3313,15 @@ }, { "position": { - "line": 251, + "line": 40, + "character": 0, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "FormModule" + }, + { + "position": { + "line": 284, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3057,12 +3353,44 @@ }, { "position": { - "line": 37, + "line": 33, "character": 0, "fileName": "lib/core/form/services/form.service.ts" }, "name": "FormService" }, + { + "position": { + "line": 63, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 107, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 127, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "FormsModule" + }, + { + "position": { + "line": 199, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "FormsModule" + }, { "position": { "line": 40, @@ -3073,7 +3401,7 @@ }, { "position": { - "line": 170, + "line": 272, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3081,28 +3409,12 @@ }, { "position": { - "line": 64, + "line": 76, "character": 8, "fileName": "lib/process-services/process.module.ts" }, "name": "FormsModule" }, - { - "position": { - "line": 50, - "character": 8, - "fileName": "lib/insights/insights.module.ts" - }, - "name": "FormsModule" - }, - { - "position": { - "line": 239, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "FormsModule" - }, { "position": { "line": 21, @@ -3119,6 +3431,14 @@ }, "name": "FunctionalGroupWidgetComponent" }, + { + "position": { + "line": 45, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "HeaderLayoutComponent" + }, { "position": { "line": 19, @@ -3127,14 +3447,6 @@ }, "name": "HeatMapChart" }, - { - "position": { - "line": 44, - "character": 8, - "fileName": "lib/core/directives/directive.module.ts" - }, - "name": "HighlightDirective" - }, { "position": { "line": 22, @@ -3145,11 +3457,11 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/pipes/text-highlight.pipe.ts" + "line": 44, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" }, - "name": "HighlightPipe" + "name": "HighlightDirective" }, { "position": { @@ -3161,20 +3473,20 @@ }, { "position": { - "line": 21, + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/text-highlight.pipe.ts" + }, + "name": "HighlightPipe" + }, + { + "position": { + "line": 22, "character": 0, "fileName": "lib/core/services/highlight-transform.service.ts" }, "name": "HighlightTransformService" }, - { - "position": { - "line": 24, - "character": 0, - "fileName": "lib/core/settings/host-settings.component.ts" - }, - "name": "HostSettingsComponent" - }, { "position": { "line": 37, @@ -3185,19 +3497,11 @@ }, { "position": { - "line": 173, - "character": 8, - "fileName": "lib/core/core.module.ts" + "line": 24, + "character": 0, + "fileName": "lib/core/settings/host-settings.component.ts" }, - "name": "HostSettingsModule" - }, - { - "position": { - "line": 242, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "HostSettingsModule" + "name": "HostSettingsComponent" }, { "position": { @@ -3209,7 +3513,23 @@ }, { "position": { - "line": 241, + "line": 202, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HostSettingsModule" + }, + { + "position": { + "line": 275, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "HostSettingsModule" + }, + { + "position": { + "line": 201, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3217,7 +3537,7 @@ }, { "position": { - "line": 172, + "line": 274, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3231,14 +3551,6 @@ }, "name": "HyperlinkWidgetComponent" }, - { - "position": { - "line": 75, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" - }, - "name": "ImgViewerComponent" - }, { "position": { "line": 20, @@ -3249,7 +3561,15 @@ }, { "position": { - "line": 22, + "line": 79, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ImgViewerComponent" + }, + { + "position": { + "line": 21, "character": 0, "fileName": "lib/content-services/content-metadata/services/config/indifferent-config.service.ts" }, @@ -3265,7 +3585,7 @@ }, { "position": { - "line": 30, + "line": 31, "character": 0, "fileName": "lib/core/pagination/infinite-pagination.component.ts" }, @@ -3281,7 +3601,7 @@ }, { "position": { - "line": 31, + "line": 36, "character": 0, "fileName": "lib/core/info-drawer/info-drawer.component.ts" }, @@ -3303,22 +3623,6 @@ }, "name": "InfoDrawerLayoutComponent" }, - { - "position": { - "line": 186, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "InfoDrawerModule" - }, - { - "position": { - "line": 255, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "InfoDrawerModule" - }, { "position": { "line": 35, @@ -3327,6 +3631,22 @@ }, "name": "InfoDrawerModule" }, + { + "position": { + "line": 288, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "InfoDrawerModule" + }, + { + "position": { + "line": 215, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "InfoDrawerModule" + }, { "position": { "line": 19, @@ -3353,7 +3673,7 @@ }, { "position": { - "line": 61, + "line": 56, "character": 8, "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, @@ -3361,17 +3681,17 @@ }, { "position": { - "line": 52, - "character": 8, - "fileName": "lib/core/pipes/pipe.module.ts" + "line": 22, + "character": 0, + "fileName": "lib/core/pipes/user-initial.pipe.ts" }, "name": "InitialUsernamePipe" }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/core/pipes/user-initial.pipe.ts" + "line": 52, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" }, "name": "InitialUsernamePipe" }, @@ -3385,7 +3705,7 @@ }, { "position": { - "line": 27, + "line": 40, "character": 0, "fileName": "lib/insights/insights.module.ts" }, @@ -3393,11 +3713,11 @@ }, { "position": { - "line": 32, - "character": 8, - "fileName": "lib/core/language-menu/language-menu.module.ts" + "line": 95, + "character": 0, + "fileName": "lib/insights/insights.module.ts" }, - "name": "LanguageMenuComponent" + "name": "InsightsModuleLazy" }, { "position": { @@ -3409,7 +3729,23 @@ }, { "position": { - "line": 185, + "line": 32, + "character": 8, + "fileName": "lib/core/language-menu/language-menu.module.ts" + }, + "name": "LanguageMenuComponent" + }, + { + "position": { + "line": 287, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LanguageMenuModule" + }, + { + "position": { + "line": 214, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3425,23 +3761,23 @@ }, { "position": { - "line": 254, + "line": 40, "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "LanguageMenuModule" - }, - { - "position": { - "line": 36, - "character": 8, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "LayoutContainerComponent" }, { "position": { - "line": 26, + "line": 29, + "character": 0, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "LayoutModule" + }, + { + "position": { + "line": 25, "character": 0, "fileName": "lib/content-services/content-metadata/services/config/layout-oriented-config.service.ts" }, @@ -3457,17 +3793,17 @@ }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/content-services/social/like.component.ts" + "line": 31, + "character": 8, + "fileName": "lib/content-services/social/social.module.ts" }, "name": "LikeComponent" }, { "position": { - "line": 31, - "character": 8, - "fileName": "lib/content-services/social/social.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/content-services/social/like.component.ts" }, "name": "LikeComponent" }, @@ -3479,6 +3815,14 @@ }, "name": "LineChart" }, + { + "position": { + "line": 78, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" + }, + "name": "LoadingContentTemplateDirective" + }, { "position": { "line": 20, @@ -3489,15 +3833,7 @@ }, { "position": { - "line": 76, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" - }, - "name": "LoadingContentTemplateDirective" - }, - { - "position": { - "line": 73, + "line": 75, "character": 8, "fileName": "lib/core/datatable/datatable.module.ts" }, @@ -3513,15 +3849,15 @@ }, { "position": { - "line": 44, - "character": 12, + "line": 43, + "character": 8, "fileName": "lib/core/login/login.module.ts" }, "name": "LoginComponent" }, { "position": { - "line": 46, + "line": 44, "character": 0, "fileName": "lib/core/login/components/login.component.ts" }, @@ -3535,6 +3871,14 @@ }, "name": "LoginErrorEvent" }, + { + "position": { + "line": 44, + "character": 8, + "fileName": "lib/core/login/login.module.ts" + }, + "name": "LoginFooterDirective" + }, { "position": { "line": 25, @@ -3543,22 +3887,6 @@ }, "name": "LoginFooterDirective" }, - { - "position": { - "line": 45, - "character": 12, - "fileName": "lib/core/login/login.module.ts" - }, - "name": "LoginFooterDirective" - }, - { - "position": { - "line": 46, - "character": 12, - "fileName": "lib/core/login/login.module.ts" - }, - "name": "LoginHeaderDirective" - }, { "position": { "line": 25, @@ -3569,15 +3897,15 @@ }, { "position": { - "line": 184, + "line": 45, "character": 8, - "fileName": "lib/core/core.module.ts" + "fileName": "lib/core/login/login.module.ts" }, - "name": "LoginModule" + "name": "LoginHeaderDirective" }, { "position": { - "line": 253, + "line": 213, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -3591,6 +3919,14 @@ }, "name": "LoginModule" }, + { + "position": { + "line": 286, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "LoginModule" + }, { "position": { "line": 17, @@ -3609,17 +3945,17 @@ }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/core/directives/logout.directive.ts" + "line": 45, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" }, "name": "LogoutDirective" }, { "position": { - "line": 45, - "character": 8, - "fileName": "lib/core/directives/directive.module.ts" + "line": 21, + "character": 0, + "fileName": "lib/core/directives/logout.directive.ts" }, "name": "LogoutDirective" }, @@ -3633,7 +3969,23 @@ }, { "position": { - "line": 52, + "line": 277, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 204, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "MaterialModule" + }, + { + "position": { + "line": 65, "character": 8, "fileName": "lib/insights/insights.module.ts" }, @@ -3641,17 +3993,9 @@ }, { "position": { - "line": 244, + "line": 109, "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "MaterialModule" - }, - { - "position": { - "line": 175, - "character": 8, - "fileName": "lib/core/core.module.ts" + "fileName": "lib/insights/insights.module.ts" }, "name": "MaterialModule" }, @@ -3665,7 +4009,7 @@ }, { "position": { - "line": 300, + "line": 299, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -3673,7 +4017,7 @@ }, { "position": { - "line": 373, + "line": 372, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -3681,7 +4025,7 @@ }, { "position": { - "line": 429, + "line": 428, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -3697,7 +4041,7 @@ }, { "position": { - "line": 77, + "line": 81, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -3707,9 +4051,9 @@ "position": { "line": 20, "character": 0, - "fileName": "lib/core/buttons-menu/menu-button.model.ts" + "fileName": "lib/core/pipes/mime-type-icon.pipe.ts" }, - "name": "MenuButton" + "name": "MimeTypeIconPipe" }, { "position": { @@ -3719,14 +4063,6 @@ }, "name": "MimeTypeIconPipe" }, - { - "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/pipes/mime-type-icon.pipe.ts" - }, - "name": "MimeTypeIconPipe" - }, { "position": { "line": 165, @@ -3745,7 +4081,7 @@ }, { "position": { - "line": 347, + "line": 346, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -3753,7 +4089,7 @@ }, { "position": { - "line": 399, + "line": 398, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -3761,7 +4097,7 @@ }, { "position": { - "line": 26, + "line": 21, "character": 0, "fileName": "lib/core/utils/momentDateAdapter.ts" }, @@ -3793,7 +4129,7 @@ }, { "position": { - "line": 51, + "line": 43, "character": 8, "fileName": "lib/content-services/content-node-selector/content-node-selector.module.ts" }, @@ -3801,17 +4137,17 @@ }, { "position": { - "line": 74, - "character": 8, - "fileName": "lib/core/datatable/datatable.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/datatable/directives/no-content-template.directive.ts" }, "name": "NoContentTemplateDirective" }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/datatable/directives/no-content-template.directive.ts" + "line": 76, + "character": 8, + "fileName": "lib/core/datatable/datatable.module.ts" }, "name": "NoContentTemplateDirective" }, @@ -3833,7 +4169,7 @@ }, { "position": { - "line": 50, + "line": 48, "character": 0, "fileName": "lib/core/directives/node-delete.directive.ts" }, @@ -3841,17 +4177,17 @@ }, { "position": { - "line": 36, - "character": 8, - "fileName": "lib/content-services/directives/content-directive.module.ts" + "line": 24, + "character": 0, + "fileName": "lib/content-services/directives/node-download.directive.ts" }, "name": "NodeDownloadDirective" }, { "position": { - "line": 24, - "character": 0, - "fileName": "lib/content-services/directives/node-download.directive.ts" + "line": 36, + "character": 8, + "fileName": "lib/content-services/directives/content-directive.module.ts" }, "name": "NodeDownloadDirective" }, @@ -3873,7 +4209,7 @@ }, { "position": { - "line": 26, + "line": 25, "character": 0, "fileName": "lib/core/directives/node-favorite.directive.ts" }, @@ -3889,7 +4225,7 @@ }, { "position": { - "line": 55, + "line": 51, "character": 8, "fileName": "lib/content-services/dialogs/dialog.module.ts" }, @@ -3929,17 +4265,17 @@ }, { "position": { - "line": 53, - "character": 8, - "fileName": "lib/core/pipes/pipe.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/core/pipes/node-name-tooltip.pipe.ts" }, "name": "NodeNameTooltipPipe" }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/core/pipes/node-name-tooltip.pipe.ts" + "line": 53, + "character": 8, + "fileName": "lib/core/pipes/pipe.module.ts" }, "name": "NodeNameTooltipPipe" }, @@ -3961,20 +4297,12 @@ }, { "position": { - "line": 26, + "line": 27, "character": 0, "fileName": "lib/content-services/permission-manager/services/node-permission-dialog.service.ts" }, "name": "NodePermissionDialogService" }, - { - "position": { - "line": 48, - "character": 8, - "fileName": "lib/core/directives/directive.module.ts" - }, - "name": "NodePermissionDirective" - }, { "position": { "line": 28, @@ -3985,7 +4313,15 @@ }, { "position": { - "line": 25, + "line": 48, + "character": 8, + "fileName": "lib/core/directives/directive.module.ts" + }, + "name": "NodePermissionDirective" + }, + { + "position": { + "line": 23, "character": 0, "fileName": "lib/content-services/permission-manager/services/node-permission.service.ts" }, @@ -3993,7 +4329,7 @@ }, { "position": { - "line": 30, + "line": 32, "character": 0, "fileName": "lib/core/directives/node-restore.directive.ts" }, @@ -4009,7 +4345,7 @@ }, { "position": { - "line": 25, + "line": 24, "character": 0, "fileName": "lib/core/services/nodes-api.service.ts" }, @@ -4017,20 +4353,12 @@ }, { "position": { - "line": 22, + "line": 23, "character": 0, "fileName": "lib/core/form/services/node.service.ts" }, "name": "NodeService" }, - { - "position": { - "line": 37, - "character": 8, - "fileName": "lib/content-services/directives/content-directive.module.ts" - }, - "name": "NodeSharedDirective" - }, { "position": { "line": 23, @@ -4041,11 +4369,11 @@ }, { "position": { - "line": 75, + "line": 37, "character": 8, - "fileName": "lib/content-services/document-list/document-list.module.ts" + "fileName": "lib/content-services/directives/content-directive.module.ts" }, - "name": "NoPermissionContentDirective" + "name": "NodeSharedDirective" }, { "position": { @@ -4057,7 +4385,15 @@ }, { "position": { - "line": 59, + "line": 58, + "character": 8, + "fileName": "lib/content-services/document-list/document-list.module.ts" + }, + "name": "NoPermissionContentDirective" + }, + { + "position": { + "line": 54, "character": 8, "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, @@ -4073,7 +4409,7 @@ }, { "position": { - "line": 75, + "line": 77, "character": 8, "fileName": "lib/core/datatable/datatable.module.ts" }, @@ -4087,14 +4423,6 @@ }, "name": "NoPermissionTemplateDirective" }, - { - "position": { - "line": 81, - "character": 8, - "fileName": "lib/process-services/task-list/task-list.module.ts" - }, - "name": "NoTaskDetailsTemplateDirective" - }, { "position": { "line": 25, @@ -4105,7 +4433,15 @@ }, { "position": { - "line": 20, + "line": 64, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "NoTaskDetailsTemplateDirective" + }, + { + "position": { + "line": 21, "character": 0, "fileName": "lib/core/services/notification.service.ts" }, @@ -4121,7 +4457,7 @@ }, { "position": { - "line": 77, + "line": 70, "character": 8, "fileName": "lib/insights/analytics-process/analytics-process.module.ts" }, @@ -4153,7 +4489,7 @@ }, { "position": { - "line": 28, + "line": 26, "character": 0, "fileName": "lib/core/datatable/data/object-datatable-adapter.ts" }, @@ -4169,7 +4505,7 @@ }, { "position": { - "line": 21, + "line": 22, "character": 0, "fileName": "lib/core/services/page-title.service.ts" }, @@ -4185,17 +4521,17 @@ }, { "position": { - "line": 26, - "character": 0, - "fileName": "lib/core/pagination/pagination.component.ts" + "line": 36, + "character": 8, + "fileName": "lib/core/pagination/pagination.module.ts" }, "name": "PaginationComponent" }, { "position": { - "line": 36, - "character": 8, - "fileName": "lib/core/pagination/pagination.module.ts" + "line": 29, + "character": 0, + "fileName": "lib/core/pagination/pagination.component.ts" }, "name": "PaginationComponent" }, @@ -4209,7 +4545,7 @@ }, { "position": { - "line": 177, + "line": 279, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -4225,7 +4561,7 @@ }, { "position": { - "line": 246, + "line": 206, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -4257,7 +4593,7 @@ }, { "position": { - "line": 79, + "line": 83, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -4265,7 +4601,7 @@ }, { "position": { - "line": 80, + "line": 84, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -4279,14 +4615,6 @@ }, "name": "PdfThumbComponent" }, - { - "position": { - "line": 81, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" - }, - "name": "PdfThumbListComponent" - }, { "position": { "line": 22, @@ -4297,11 +4625,11 @@ }, { "position": { - "line": 78, + "line": 85, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, - "name": "PdfViewerComponent" + "name": "PdfThumbListComponent" }, { "position": { @@ -4311,6 +4639,14 @@ }, "name": "PdfViewerComponent" }, + { + "position": { + "line": 82, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "PdfViewerComponent" + }, { "position": { "line": 25, @@ -4321,7 +4657,7 @@ }, { "position": { - "line": 53, + "line": 50, "character": 8, "fileName": "lib/process-services/people/people.module.ts" }, @@ -4337,7 +4673,7 @@ }, { "position": { - "line": 59, + "line": 56, "character": 8, "fileName": "lib/process-services/people/people.module.ts" }, @@ -4353,7 +4689,7 @@ }, { "position": { - "line": 33, + "line": 32, "character": 0, "fileName": "lib/process-services/people/people.module.ts" }, @@ -4361,7 +4697,7 @@ }, { "position": { - "line": 70, + "line": 133, "character": 8, "fileName": "lib/process-services/process.module.ts" }, @@ -4369,20 +4705,20 @@ }, { "position": { - "line": 26, + "line": 82, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "PeopleModule" + }, + { + "position": { + "line": 25, "character": 0, "fileName": "lib/core/services/people-process.service.ts" }, "name": "PeopleProcessService" }, - { - "position": { - "line": 58, - "character": 8, - "fileName": "lib/process-services/people/people.module.ts" - }, - "name": "PeopleSearchActionLabelDirective" - }, { "position": { "line": 19, @@ -4393,17 +4729,25 @@ }, { "position": { - "line": 54, + "line": 55, "character": 8, "fileName": "lib/process-services/people/people.module.ts" }, + "name": "PeopleSearchActionLabelDirective" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/process-services/people/components/people-search/people-search.component.ts" + }, "name": "PeopleSearchComponent" }, { "position": { - "line": 22, - "character": 0, - "fileName": "lib/process-services/people/components/people-search/people-search.component.ts" + "line": 51, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" }, "name": "PeopleSearchComponent" }, @@ -4417,20 +4761,12 @@ }, { "position": { - "line": 55, + "line": 52, "character": 8, "fileName": "lib/process-services/people/people.module.ts" }, "name": "PeopleSearchFieldComponent" }, - { - "position": { - "line": 57, - "character": 8, - "fileName": "lib/process-services/people/people.module.ts" - }, - "name": "PeopleSearchTitleDirective" - }, { "position": { "line": 19, @@ -4441,7 +4777,15 @@ }, { "position": { - "line": 26, + "line": 54, + "character": 8, + "fileName": "lib/process-services/people/people.module.ts" + }, + "name": "PeopleSearchTitleDirective" + }, + { + "position": { + "line": 27, "character": 0, "fileName": "lib/process-services/people/components/people-selector/people-selector.component.ts" }, @@ -4449,7 +4793,7 @@ }, { "position": { - "line": 56, + "line": 53, "character": 8, "fileName": "lib/process-services/people/people.module.ts" }, @@ -4457,7 +4801,7 @@ }, { "position": { - "line": 27, + "line": 35, "character": 0, "fileName": "lib/core/form/components/widgets/people/people.widget.ts" }, @@ -4473,7 +4817,7 @@ }, { "position": { - "line": 58, + "line": 53, "character": 8, "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" }, @@ -4489,7 +4833,15 @@ }, { "position": { - "line": 104, + "line": 30, + "character": 0, + "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + }, + "name": "PermissionManagerModule" + }, + { + "position": { + "line": 172, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -4497,9 +4849,9 @@ }, { "position": { - "line": 33, - "character": 0, - "fileName": "lib/content-services/permission-manager/permission-manager.module.ts" + "line": 118, + "character": 8, + "fileName": "lib/content-services/content.module.ts" }, "name": "PermissionManagerModule" }, @@ -4545,7 +4897,7 @@ }, { "position": { - "line": 167, + "line": 196, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -4553,20 +4905,12 @@ }, { "position": { - "line": 236, + "line": 269, "character": 8, "fileName": "lib/core/core.module.ts" }, "name": "PipeModule" }, - { - "position": { - "line": 40, - "character": 8, - "fileName": "lib/process-services/attachment/attachment.module.ts" - }, - "name": "ProcessAttachmentListComponent" - }, { "position": { "line": 21, @@ -4577,7 +4921,15 @@ }, { "position": { - "line": 71, + "line": 40, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" + }, + "name": "ProcessAttachmentListComponent" + }, + { + "position": { + "line": 62, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4591,6 +4943,14 @@ }, "name": "ProcessAuditDirective" }, + { + "position": { + "line": 37, + "character": 8, + "fileName": "lib/process-services/process-comments/process-comments.module.ts" + }, + "name": "ProcessCommentsComponent" + }, { "position": { "line": 22, @@ -4601,15 +4961,7 @@ }, { "position": { - "line": 41, - "character": 8, - "fileName": "lib/process-services/process-comments/process-comments.module.ts" - }, - "name": "ProcessCommentsComponent" - }, - { - "position": { - "line": 63, + "line": 126, "character": 8, "fileName": "lib/process-services/process.module.ts" }, @@ -4617,7 +4969,15 @@ }, { "position": { - "line": 26, + "line": 75, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessCommentsModule" + }, + { + "position": { + "line": 25, "character": 0, "fileName": "lib/process-services/process-comments/process-comments.module.ts" }, @@ -4625,7 +4985,7 @@ }, { "position": { - "line": 26, + "line": 24, "character": 0, "fileName": "lib/core/form/services/process-content.service.ts" }, @@ -4657,7 +5017,7 @@ }, { "position": { - "line": 69, + "line": 60, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4665,7 +5025,7 @@ }, { "position": { - "line": 25, + "line": 24, "character": 0, "fileName": "lib/process-services/process-list/components/process-filters.component.ts" }, @@ -4689,7 +5049,7 @@ }, { "position": { - "line": 70, + "line": 61, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4705,7 +5065,7 @@ }, { "position": { - "line": 72, + "line": 63, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4721,17 +5081,17 @@ }, { "position": { - "line": 68, - "character": 8, - "fileName": "lib/process-services/process-list/process-list.module.ts" + "line": 47, + "character": 0, + "fileName": "lib/process-services/process-list/components/process-list.component.ts" }, "name": "ProcessInstanceListComponent" }, { "position": { - "line": 53, - "character": 0, - "fileName": "lib/process-services/process-list/components/process-list.component.ts" + "line": 59, + "character": 8, + "fileName": "lib/process-services/process-list/process-list.module.ts" }, "name": "ProcessInstanceListComponent" }, @@ -4745,7 +5105,7 @@ }, { "position": { - "line": 73, + "line": 64, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4761,7 +5121,7 @@ }, { "position": { - "line": 38, + "line": 36, "character": 0, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -4769,7 +5129,7 @@ }, { "position": { - "line": 66, + "line": 129, "character": 8, "fileName": "lib/process-services/process.module.ts" }, @@ -4777,12 +5137,28 @@ }, { "position": { - "line": 33, + "line": 78, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessListModule" + }, + { + "position": { + "line": 48, "character": 0, "fileName": "lib/process-services/process.module.ts" }, "name": "ProcessModule" }, + { + "position": { + "line": 110, + "character": 0, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ProcessModuleLazy" + }, { "position": { "line": 30, @@ -4793,7 +5169,7 @@ }, { "position": { - "line": 22, + "line": 21, "character": 0, "fileName": "lib/process-services/task-list/services/process-upload.service.ts" }, @@ -4801,7 +5177,7 @@ }, { "position": { - "line": 24, + "line": 23, "character": 0, "fileName": "lib/content-services/content-metadata/services/property-descriptors.service.ts" }, @@ -4825,7 +5201,7 @@ }, { "position": { - "line": 263, + "line": 253, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4833,7 +5209,7 @@ }, { "position": { - "line": 268, + "line": 258, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4841,7 +5217,7 @@ }, { "position": { - "line": 267, + "line": 257, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4849,7 +5225,7 @@ }, { "position": { - "line": 278, + "line": 268, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4857,7 +5233,7 @@ }, { "position": { - "line": 281, + "line": 271, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4865,7 +5241,7 @@ }, { "position": { - "line": 284, + "line": 274, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4873,7 +5249,7 @@ }, { "position": { - "line": 276, + "line": 266, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4881,7 +5257,7 @@ }, { "position": { - "line": 286, + "line": 276, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4889,7 +5265,7 @@ }, { "position": { - "line": 280, + "line": 270, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4897,7 +5273,7 @@ }, { "position": { - "line": 275, + "line": 265, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4905,7 +5281,7 @@ }, { "position": { - "line": 288, + "line": 278, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4913,7 +5289,7 @@ }, { "position": { - "line": 277, + "line": 267, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4921,7 +5297,7 @@ }, { "position": { - "line": 282, + "line": 272, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4929,7 +5305,7 @@ }, { "position": { - "line": 279, + "line": 269, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4937,7 +5313,7 @@ }, { "position": { - "line": 283, + "line": 273, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4945,7 +5321,7 @@ }, { "position": { - "line": 273, + "line": 263, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4953,7 +5329,7 @@ }, { "position": { - "line": 272, + "line": 262, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4961,7 +5337,7 @@ }, { "position": { - "line": 287, + "line": 277, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4969,7 +5345,7 @@ }, { "position": { - "line": 285, + "line": 275, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4977,7 +5353,7 @@ }, { "position": { - "line": 274, + "line": 264, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4985,7 +5361,7 @@ }, { "position": { - "line": 266, + "line": 256, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -4993,7 +5369,7 @@ }, { "position": { - "line": 271, + "line": 261, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -5001,7 +5377,7 @@ }, { "position": { - "line": 269, + "line": 259, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -5009,7 +5385,7 @@ }, { "position": { - "line": 264, + "line": 254, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -5017,7 +5393,7 @@ }, { "position": { - "line": 270, + "line": 260, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -5025,7 +5401,7 @@ }, { "position": { - "line": 265, + "line": 255, "character": 8, "fileName": "lib/insights/diagram/diagram.module.ts" }, @@ -5033,17 +5409,17 @@ }, { "position": { - "line": 30, - "character": 8, - "fileName": "lib/content-services/social/social.module.ts" + "line": 20, + "character": 0, + "fileName": "lib/content-services/social/rating.component.ts" }, "name": "RatingComponent" }, { "position": { - "line": 20, - "character": 0, - "fileName": "lib/content-services/social/rating.component.ts" + "line": 30, + "character": 8, + "fileName": "lib/content-services/social/social.module.ts" }, "name": "RatingComponent" }, @@ -5057,23 +5433,7 @@ }, { "position": { - "line": 65, - "character": 8, - "fileName": "lib/process-services/process.module.ts" - }, - "name": "ReactiveFormsModule" - }, - { - "position": { - "line": 171, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "ReactiveFormsModule" - }, - { - "position": { - "line": 51, + "line": 64, "character": 8, "fileName": "lib/insights/insights.module.ts" }, @@ -5081,7 +5441,39 @@ }, { "position": { - "line": 240, + "line": 108, + "character": 8, + "fileName": "lib/insights/insights.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 273, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 77, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 128, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "ReactiveFormsModule" + }, + { + "position": { + "line": 200, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -5097,7 +5489,7 @@ }, { "position": { - "line": 459, + "line": 458, "character": 0, "fileName": "lib/core/form/components/widgets/core/form-field-validator.ts" }, @@ -5105,7 +5497,7 @@ }, { "position": { - "line": 32, + "line": 28, "character": 0, "fileName": "lib/core/services/renditions.service.ts" }, @@ -5161,19 +5553,11 @@ }, { "position": { - "line": 21, - "character": 9, - "fileName": "lib/content-services/search/public-api.ts" + "line": 26, + "character": 0, + "fileName": "lib/core/directives/node-restore.directive.ts" }, - "name": "ResponseFacetField" - }, - { - "position": { - "line": 22, - "character": 9, - "fileName": "lib/content-services/search/public-api.ts" - }, - "name": "ResponseFacetQuery" + "name": "RestoreMessageModel" }, { "position": { @@ -5185,7 +5569,7 @@ }, { "position": { - "line": 23, + "line": 21, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5209,7 +5593,7 @@ }, { "position": { - "line": 34, + "line": 35, "character": 0, "fileName": "lib/content-services/search/components/search.component.ts" }, @@ -5217,7 +5601,7 @@ }, { "position": { - "line": 26, + "line": 24, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5233,7 +5617,7 @@ }, { "position": { - "line": 29, + "line": 28, "character": 0, "fileName": "lib/content-services/search/components/search-control.component.ts" }, @@ -5249,12 +5633,20 @@ }, { "position": { - "line": 27, + "line": 28, "character": 0, "fileName": "lib/content-services/search/components/search-filter/search-filter.component.ts" }, "name": "SearchFilterComponent" }, + { + "position": { + "line": 25, + "character": 0, + "fileName": "lib/content-services/search/components/search-filter/search-filter.service.ts" + }, + "name": "SearchFilterService" + }, { "position": { "line": 49, @@ -5265,7 +5657,15 @@ }, { "position": { - "line": 96, + "line": 164, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SearchModule" + }, + { + "position": { + "line": 110, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -5281,7 +5681,7 @@ }, { "position": { - "line": 27, + "line": 30, "character": 0, "fileName": "lib/content-services/search/search-query-builder.service.ts" }, @@ -5289,7 +5689,7 @@ }, { "position": { - "line": 27, + "line": 25, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5305,7 +5705,7 @@ }, { "position": { - "line": 28, + "line": 26, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5313,7 +5713,7 @@ }, { "position": { - "line": 25, + "line": 24, "character": 0, "fileName": "lib/core/services/search.service.ts" }, @@ -5327,6 +5727,22 @@ }, "name": "SearchSliderComponent" }, + { + "position": { + "line": 21, + "character": 0, + "fileName": "lib/content-services/search/components/search-sorting-picker/search-sorting-picker.component.ts" + }, + "name": "SearchSortingPickerComponent" + }, + { + "position": { + "line": 77, + "character": 8, + "fileName": "lib/content-services/search/search.module.ts" + }, + "name": "SearchSortingPickerComponent" + }, { "position": { "line": 71, @@ -5337,7 +5753,7 @@ }, { "position": { - "line": 46, + "line": 43, "character": 0, "fileName": "lib/content-services/search/components/search-trigger.directive.ts" }, @@ -5345,7 +5761,7 @@ }, { "position": { - "line": 25, + "line": 23, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5361,7 +5777,7 @@ }, { "position": { - "line": 24, + "line": 22, "character": 9, "fileName": "lib/content-services/search/public-api.ts" }, @@ -5369,17 +5785,17 @@ }, { "position": { - "line": 41, - "character": 8, - "fileName": "lib/process-services/app-list/apps-list.module.ts" + "line": 21, + "character": 0, + "fileName": "lib/process-services/app-list/select-apps-dialog-component.ts" }, "name": "SelectAppsDialogComponent" }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/process-services/app-list/select-apps-dialog-component.ts" + "line": 39, + "character": 8, + "fileName": "lib/process-services/app-list/apps-list.module.ts" }, "name": "SelectAppsDialogComponent" }, @@ -5393,7 +5809,7 @@ }, { "position": { - "line": 23, + "line": 22, "character": 0, "fileName": "lib/content-services/document-list/data/share-data-row.model.ts" }, @@ -5401,7 +5817,7 @@ }, { "position": { - "line": 25, + "line": 23, "character": 0, "fileName": "lib/content-services/document-list/data/share-datatable-adapter.ts" }, @@ -5417,7 +5833,7 @@ }, { "position": { - "line": 56, + "line": 52, "character": 8, "fileName": "lib/content-services/dialogs/dialog.module.ts" }, @@ -5433,87 +5849,79 @@ }, { "position": { - "line": 19, - "character": 0, - "fileName": "lib/core/sidebar/sidebar-action-menu.component.ts" + "line": 41, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidebarActionMenuComponent" }, { "position": { - "line": 234, + "line": 42, "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "SideBarActionModule" - }, - { - "position": { - "line": 165, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "SideBarActionModule" - }, - { - "position": { - "line": 43, - "character": 0, - "fileName": "lib/core/sidebar/sidebar-action-menu.component.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidebarMenuDirective" }, { "position": { - "line": 45, - "character": 0, - "fileName": "lib/core/sidebar/sidebar-action-menu.component.ts" + "line": 43, + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidebarMenuExpandIconDirective" }, { "position": { "line": 44, - "character": 0, - "fileName": "lib/core/sidebar/sidebar-action-menu.component.ts" + "character": 8, + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidebarMenuTitleIconDirective" }, { "position": { - "line": 25, + "line": 24, "character": 0, - "fileName": "lib/core/sidenav-layout/components/sidenav-layout/sidenav-layout.component.ts" + "fileName": "lib/core/layout/components/sidenav-layout/sidenav-layout.component.ts" }, "name": "SidenavLayoutComponent" }, { "position": { - "line": 35, + "line": 39, "character": 8, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidenavLayoutComponent" }, { "position": { - "line": 33, + "line": 37, "character": 8, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidenavLayoutContentDirective" }, { "position": { - "line": 32, + "line": 36, "character": 8, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidenavLayoutHeaderDirective" }, { "position": { - "line": 235, + "line": 61, + "character": 9, + "fileName": "lib/core/layout/layout.module.ts" + }, + "name": "SidenavLayoutModule" + }, + { + "position": { + "line": 268, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -5521,15 +5929,7 @@ }, { "position": { - "line": 26, - "character": 0, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" - }, - "name": "SidenavLayoutModule" - }, - { - "position": { - "line": 166, + "line": 195, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -5537,12 +5937,20 @@ }, { "position": { - "line": 34, + "line": 38, "character": 8, - "fileName": "lib/core/sidenav-layout/sidenav-layout.module.ts" + "fileName": "lib/core/layout/layout.module.ts" }, "name": "SidenavLayoutNavigationDirective" }, + { + "position": { + "line": 111, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "SitesDropdownModule" + }, { "position": { "line": 25, @@ -5553,7 +5961,7 @@ }, { "position": { - "line": 97, + "line": 165, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -5561,7 +5969,7 @@ }, { "position": { - "line": 25, + "line": 24, "character": 0, "fileName": "lib/core/services/sites.service.ts" }, @@ -5577,7 +5985,7 @@ }, { "position": { - "line": 91, + "line": 159, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -5585,11 +5993,51 @@ }, { "position": { - "line": 90, + "line": 105, "character": 8, - "fileName": "lib/core/form/form.module.ts" + "fileName": "lib/content-services/content.module.ts" }, - "name": "StartFormComponent" + "name": "SocialModule" + }, + { + "position": { + "line": 20, + "character": 0, + "fileName": "lib/core/sorting-picker/sorting-picker.component.ts" + }, + "name": "SortingPickerComponent" + }, + { + "position": { + "line": 33, + "character": 8, + "fileName": "lib/core/sorting-picker/sorting-picker.module.ts" + }, + "name": "SortingPickerComponent" + }, + { + "position": { + "line": 221, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SortingPickerModule" + }, + { + "position": { + "line": 294, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "SortingPickerModule" + }, + { + "position": { + "line": 23, + "character": 0, + "fileName": "lib/core/sorting-picker/sorting-picker.module.ts" + }, + "name": "SortingPickerModule" }, { "position": { @@ -5601,7 +6049,15 @@ }, { "position": { - "line": 91, + "line": 73, + "character": 8, + "fileName": "lib/core/form/form.module.ts" + }, + "name": "StartFormComponent" + }, + { + "position": { + "line": 74, "character": 8, "fileName": "lib/core/form/form.module.ts" }, @@ -5609,15 +6065,7 @@ }, { "position": { - "line": 40, - "character": 0, - "fileName": "lib/process-services/process-list/components/start-process.component.ts" - }, - "name": "StartProcessInstanceComponent" - }, - { - "position": { - "line": 74, + "line": 65, "character": 8, "fileName": "lib/process-services/process-list/process-list.module.ts" }, @@ -5625,7 +6073,15 @@ }, { "position": { - "line": 88, + "line": 29, + "character": 0, + "fileName": "lib/process-services/process-list/components/start-process.component.ts" + }, + "name": "StartProcessInstanceComponent" + }, + { + "position": { + "line": 71, "character": 8, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -5633,7 +6089,7 @@ }, { "position": { - "line": 29, + "line": 30, "character": 0, "fileName": "lib/process-services/task-list/components/start-task.component.ts" }, @@ -5681,7 +6137,7 @@ }, { "position": { - "line": 37, + "line": 36, "character": 8, "fileName": "lib/content-services/tag/tag.module.ts" }, @@ -5689,20 +6145,12 @@ }, { "position": { - "line": 26, + "line": 27, "character": 0, "fileName": "lib/content-services/tag/tag-actions.component.ts" }, "name": "TagActionsComponent" }, - { - "position": { - "line": 38, - "character": 8, - "fileName": "lib/content-services/tag/tag.module.ts" - }, - "name": "TagListComponent" - }, { "position": { "line": 25, @@ -5713,15 +6161,15 @@ }, { "position": { - "line": 92, + "line": 37, "character": 8, - "fileName": "lib/content-services/content.module.ts" + "fileName": "lib/content-services/tag/tag.module.ts" }, - "name": "TagModule" + "name": "TagListComponent" }, { "position": { - "line": 28, + "line": 27, "character": 0, "fileName": "lib/content-services/tag/tag.module.ts" }, @@ -5729,11 +6177,19 @@ }, { "position": { - "line": 39, + "line": 106, "character": 8, - "fileName": "lib/content-services/tag/tag.module.ts" + "fileName": "lib/content-services/content.module.ts" }, - "name": "TagNodeListComponent" + "name": "TagModule" + }, + { + "position": { + "line": 160, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "TagModule" }, { "position": { @@ -5745,7 +6201,15 @@ }, { "position": { - "line": 22, + "line": 38, + "character": 8, + "fileName": "lib/content-services/tag/tag.module.ts" + }, + "name": "TagNodeListComponent" + }, + { + "position": { + "line": 23, "character": 0, "fileName": "lib/content-services/tag/services/tag.service.ts" }, @@ -5753,17 +6217,17 @@ }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/process-services/attachment/task-attachment-list.component.ts" + "line": 39, + "character": 8, + "fileName": "lib/process-services/attachment/attachment.module.ts" }, "name": "TaskAttachmentListComponent" }, { "position": { - "line": 39, - "character": 8, - "fileName": "lib/process-services/attachment/attachment.module.ts" + "line": 21, + "character": 0, + "fileName": "lib/process-services/attachment/task-attachment-list.component.ts" }, "name": "TaskAttachmentListComponent" }, @@ -5777,7 +6241,7 @@ }, { "position": { - "line": 85, + "line": 68, "character": 8, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -5785,17 +6249,17 @@ }, { "position": { - "line": 47, - "character": 0, - "fileName": "lib/process-services/task-list/components/task-details.component.ts" + "line": 67, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" }, "name": "TaskDetailsComponent" }, { "position": { - "line": 84, - "character": 8, - "fileName": "lib/process-services/task-list/task-list.module.ts" + "line": 48, + "character": 0, + "fileName": "lib/process-services/task-list/components/task-details.component.ts" }, "name": "TaskDetailsComponent" }, @@ -5817,7 +6281,7 @@ }, { "position": { - "line": 24, + "line": 27, "character": 0, "fileName": "lib/process-services/task-list/components/task-filters.component.ts" }, @@ -5825,7 +6289,7 @@ }, { "position": { - "line": 82, + "line": 65, "character": 8, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -5833,7 +6297,7 @@ }, { "position": { - "line": 25, + "line": 23, "character": 0, "fileName": "lib/process-services/task-list/services/task-filter.service.ts" }, @@ -5849,7 +6313,7 @@ }, { "position": { - "line": 87, + "line": 70, "character": 8, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -5857,15 +6321,7 @@ }, { "position": { - "line": 83, - "character": 8, - "fileName": "lib/process-services/task-list/task-list.module.ts" - }, - "name": "TaskListComponent" - }, - { - "position": { - "line": 33, + "line": 31, "character": 0, "fileName": "lib/process-services/task-list/components/task-list.component.ts" }, @@ -5873,15 +6329,23 @@ }, { "position": { - "line": 67, + "line": 66, "character": 8, - "fileName": "lib/process-services/process.module.ts" + "fileName": "lib/process-services/task-list/task-list.module.ts" }, - "name": "TaskListModule" + "name": "TaskListComponent" }, { "position": { - "line": 44, + "line": 19, + "character": 0, + "fileName": "lib/process-services/task-list/models/task-list.model.ts" + }, + "name": "TaskListModel" + }, + { + "position": { + "line": 39, "character": 0, "fileName": "lib/process-services/task-list/task-list.module.ts" }, @@ -5889,7 +6353,23 @@ }, { "position": { - "line": 31, + "line": 130, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "TaskListModule" + }, + { + "position": { + "line": 79, + "character": 8, + "fileName": "lib/process-services/process.module.ts" + }, + "name": "TaskListModule" + }, + { + "position": { + "line": 26, "character": 0, "fileName": "lib/process-services/task-list/services/tasklist.service.ts" }, @@ -5903,6 +6383,14 @@ }, "name": "TaskQueryRequestRepresentationModel" }, + { + "position": { + "line": 72, + "character": 8, + "fileName": "lib/process-services/task-list/task-list.module.ts" + }, + "name": "TaskStandaloneComponent" + }, { "position": { "line": 19, @@ -5913,20 +6401,36 @@ }, { "position": { - "line": 89, - "character": 8, - "fileName": "lib/process-services/task-list/task-list.module.ts" - }, - "name": "TaskStandaloneComponent" - }, - { - "position": { - "line": 22, + "line": 21, "character": 0, "fileName": "lib/process-services/task-list/services/task-upload.service.ts" }, "name": "TaskUploadService" }, + { + "position": { + "line": 24, + "character": 0, + "fileName": "lib/core/templates/template.module.ts" + }, + "name": "TemplateModule" + }, + { + "position": { + "line": 220, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TemplateModule" + }, + { + "position": { + "line": 293, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "TemplateModule" + }, { "position": { "line": 24, @@ -5951,14 +6455,6 @@ }, "name": "ThumbnailService" }, - { - "position": { - "line": 21, - "character": 0, - "fileName": "lib/core/pipes/time-ago.pipe.ts" - }, - "name": "TimeAgoPipe" - }, { "position": { "line": 50, @@ -5969,11 +6465,11 @@ }, { "position": { - "line": 19, + "line": 20, "character": 0, - "fileName": "lib/core/toolbar/toolbar.component.ts" + "fileName": "lib/core/pipes/time-ago.pipe.ts" }, - "name": "ToolbarComponent" + "name": "TimeAgoPipe" }, { "position": { @@ -5983,6 +6479,14 @@ }, "name": "ToolbarComponent" }, + { + "position": { + "line": 19, + "character": 0, + "fileName": "lib/core/toolbar/toolbar.component.ts" + }, + "name": "ToolbarComponent" + }, { "position": { "line": 19, @@ -6001,7 +6505,15 @@ }, { "position": { - "line": 247, + "line": 280, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ToolbarModule" + }, + { + "position": { + "line": 207, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -6015,22 +6527,6 @@ }, "name": "ToolbarModule" }, - { - "position": { - "line": 178, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "ToolbarModule" - }, - { - "position": { - "line": 37, - "character": 8, - "fileName": "lib/core/toolbar/toolbar.module.ts" - }, - "name": "ToolbarTitleComponent" - }, { "position": { "line": 19, @@ -6041,7 +6537,15 @@ }, { "position": { - "line": 29, + "line": 37, + "character": 8, + "fileName": "lib/core/toolbar/toolbar.module.ts" + }, + "name": "ToolbarTitleComponent" + }, + { + "position": { + "line": 27, "character": 0, "fileName": "lib/core/services/translate-loader.service.ts" }, @@ -6049,7 +6553,7 @@ }, { "position": { - "line": 189, + "line": 218, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -6057,7 +6561,7 @@ }, { "position": { - "line": 258, + "line": 291, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -6065,7 +6569,7 @@ }, { "position": { - "line": 25, + "line": 26, "character": 0, "fileName": "lib/core/mock/translation.service.mock.ts" }, @@ -6073,7 +6577,7 @@ }, { "position": { - "line": 38, + "line": 30, "character": 0, "fileName": "lib/core/services/translation.service.ts" }, @@ -6081,7 +6585,7 @@ }, { "position": { - "line": 22, + "line": 21, "character": 0, "fileName": "lib/core/viewer/components/txtViewer.component.ts" }, @@ -6089,7 +6593,7 @@ }, { "position": { - "line": 76, + "line": 80, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -6105,17 +6609,17 @@ }, { "position": { - "line": 19, - "character": 0, - "fileName": "lib/core/viewer/components/unknown-format/unknown-format.component.ts" + "line": 87, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" }, "name": "UnknownFormatComponent" }, { "position": { - "line": 83, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/unknown-format/unknown-format.component.ts" }, "name": "UnknownFormatComponent" }, @@ -6129,7 +6633,7 @@ }, { "position": { - "line": 21, + "line": 23, "character": 0, "fileName": "lib/content-services/upload/components/base-upload/upload-base.ts" }, @@ -6137,7 +6641,7 @@ }, { "position": { - "line": 51, + "line": 49, "character": 8, "fileName": "lib/content-services/upload/upload.module.ts" }, @@ -6177,7 +6681,7 @@ }, { "position": { - "line": 50, + "line": 48, "character": 8, "fileName": "lib/content-services/upload/upload.module.ts" }, @@ -6185,15 +6689,15 @@ }, { "position": { - "line": 32, + "line": 19, "character": 0, - "fileName": "lib/content-services/upload/upload.module.ts" + "fileName": "lib/content-services/upload/components/upload-files.event.ts" }, - "name": "UploadModule" + "name": "UploadFilesEvent" }, { "position": { - "line": 95, + "line": 163, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -6201,7 +6705,23 @@ }, { "position": { - "line": 32, + "line": 109, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "UploadModule" + }, + { + "position": { + "line": 31, + "character": 0, + "fileName": "lib/content-services/upload/upload.module.ts" + }, + "name": "UploadModule" + }, + { + "position": { + "line": 30, "character": 0, "fileName": "lib/core/services/upload.service.ts" }, @@ -6209,17 +6729,17 @@ }, { "position": { - "line": 22, - "character": 0, - "fileName": "lib/content-services/upload/components/upload-version-button.component.ts" + "line": 50, + "character": 8, + "fileName": "lib/content-services/upload/upload.module.ts" }, "name": "UploadVersionButtonComponent" }, { "position": { - "line": 52, - "character": 8, - "fileName": "lib/content-services/upload/upload.module.ts" + "line": 23, + "character": 0, + "fileName": "lib/content-services/upload/components/upload-version-button.component.ts" }, "name": "UploadVersionButtonComponent" }, @@ -6265,7 +6785,7 @@ }, { "position": { - "line": 42, + "line": 36, "character": 8, "fileName": "lib/core/userinfo/userinfo.module.ts" }, @@ -6273,7 +6793,23 @@ }, { "position": { - "line": 27, + "line": 203, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "UserInfoModule" + }, + { + "position": { + "line": 276, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "UserInfoModule" + }, + { + "position": { + "line": 25, "character": 0, "fileName": "lib/core/userinfo/userinfo.module.ts" }, @@ -6281,23 +6817,7 @@ }, { "position": { - "line": 174, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "UserInfoModule" - }, - { - "position": { - "line": 243, - "character": 8, - "fileName": "lib/core/core.module.ts" - }, - "name": "UserInfoModule" - }, - { - "position": { - "line": 33, + "line": 30, "character": 0, "fileName": "lib/core/services/user-preferences.service.ts" }, @@ -6337,17 +6857,17 @@ }, { "position": { - "line": 23, - "character": 0, - "fileName": "lib/content-services/version-manager/version-list.component.ts" + "line": 39, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" }, "name": "VersionListComponent" }, { "position": { - "line": 39, - "character": 8, - "fileName": "lib/content-services/version-manager/version-manager.module.ts" + "line": 23, + "character": 0, + "fileName": "lib/content-services/version-manager/version-list.component.ts" }, "name": "VersionListComponent" }, @@ -6369,20 +6889,28 @@ }, { "position": { - "line": 28, - "character": 0, - "fileName": "lib/content-services/version-manager/version-manager.module.ts" + "line": 119, + "character": 8, + "fileName": "lib/content-services/content.module.ts" }, "name": "VersionManagerModule" }, { "position": { - "line": 105, + "line": 173, "character": 8, "fileName": "lib/content-services/content.module.ts" }, "name": "VersionManagerModule" }, + { + "position": { + "line": 28, + "character": 0, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" + }, + "name": "VersionManagerModule" + }, { "position": { "line": 35, @@ -6409,17 +6937,17 @@ }, { "position": { - "line": 37, - "character": 8, - "fileName": "lib/content-services/version-manager/version-manager.module.ts" + "line": 21, + "character": 0, + "fileName": "lib/content-services/version-manager/version-upload.component.ts" }, "name": "VersionUploadComponent" }, { "position": { - "line": 21, - "character": 0, - "fileName": "lib/content-services/version-manager/version-upload.component.ts" + "line": 37, + "character": 8, + "fileName": "lib/content-services/version-manager/version-manager.module.ts" }, "name": "VersionUploadComponent" }, @@ -6433,12 +6961,20 @@ }, { "position": { - "line": 74, + "line": 78, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, "name": "ViewerComponent" }, + { + "position": { + "line": 86, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" + }, + "name": "ViewerExtensionDirective" + }, { "position": { "line": 20, @@ -6449,15 +6985,7 @@ }, { "position": { - "line": 82, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" - }, - "name": "ViewerExtensionDirective" - }, - { - "position": { - "line": 164, + "line": 267, "character": 8, "fileName": "lib/core/core.module.ts" }, @@ -6465,7 +6993,15 @@ }, { "position": { - "line": 42, + "line": 194, + "character": 8, + "fileName": "lib/core/core.module.ts" + }, + "name": "ViewerModule" + }, + { + "position": { + "line": 46, "character": 0, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -6473,11 +7009,11 @@ }, { "position": { - "line": 233, + "line": 91, "character": 8, - "fileName": "lib/core/core.module.ts" + "fileName": "lib/core/viewer/viewer.module.ts" }, - "name": "ViewerModule" + "name": "ViewerMoreActionsComponent" }, { "position": { @@ -6487,14 +7023,6 @@ }, "name": "ViewerMoreActionsComponent" }, - { - "position": { - "line": 87, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" - }, - "name": "ViewerMoreActionsComponent" - }, { "position": { "line": 19, @@ -6505,7 +7033,7 @@ }, { "position": { - "line": 86, + "line": 90, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -6513,7 +7041,7 @@ }, { "position": { - "line": 85, + "line": 89, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -6529,17 +7057,17 @@ }, { "position": { - "line": 19, - "character": 0, - "fileName": "lib/core/viewer/components/viewer-toolbar-actions.component.ts" + "line": 92, + "character": 8, + "fileName": "lib/core/viewer/viewer.module.ts" }, "name": "ViewerToolbarActionsComponent" }, { "position": { - "line": 88, - "character": 8, - "fileName": "lib/core/viewer/viewer.module.ts" + "line": 19, + "character": 0, + "fileName": "lib/core/viewer/components/viewer-toolbar-actions.component.ts" }, "name": "ViewerToolbarActionsComponent" }, @@ -6553,7 +7081,7 @@ }, { "position": { - "line": 84, + "line": 88, "character": 8, "fileName": "lib/core/viewer/viewer.module.ts" }, @@ -6569,7 +7097,7 @@ }, { "position": { - "line": 34, + "line": 31, "character": 8, "fileName": "lib/content-services/webscript/webscript.module.ts" }, @@ -6577,7 +7105,7 @@ }, { "position": { - "line": 93, + "line": 107, "character": 8, "fileName": "lib/content-services/content.module.ts" }, @@ -6585,7 +7113,15 @@ }, { "position": { - "line": 25, + "line": 161, + "character": 8, + "fileName": "lib/content-services/content.module.ts" + }, + "name": "WebScriptModule" + }, + { + "position": { + "line": 24, "character": 0, "fileName": "lib/content-services/webscript/webscript.module.ts" },