diff --git a/.browserslistrc b/ .browserslistrc similarity index 68% rename from .browserslistrc rename to .browserslistrc index fb92325c6ed..7639a91434e 100644 --- a/.browserslistrc +++ b/ .browserslistrc @@ -1,13 +1,10 @@ -# This file is used by the build system to adjust CSS and JS output to support the specified browsers below. -# For additional information regarding the format and rule options, please see: -# https://github.com/browserslist/browserslist#queries - -# For the full list of supported browsers by the Angular framework, please see: -# https://angular.io/guide/browser-support - -# You can see what browsers were selected by your queries by running: -# npx browserslist - +# This file is used by the build system to adjust CSS and JS output to support the specified browsers below +# For additional information regarding the format and rule options, please see +# +# For the full list of supported browsers by the Angular framework, please see +# +# You can see what browsers were selected by your queries by running +# npx browserslist last 1 Chrome version last 1 Firefox version last 2 Edge major versions diff --git a/.eslintrc.js b/.eslintrc.js index e05c7e38997..7fe877cdb75 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,5 +1,6 @@ module.exports = { root: true, + ignorePatterns: [ 'projects/**/*', '**/node_modules/**/*', @@ -10,6 +11,7 @@ module.exports = { '**/scripts', '**/docs' ], + plugins: ['@nrwl/nx'], overrides: [ { @@ -184,5 +186,7 @@ module.exports = { extends: ['plugin:@angular-eslint/template/recommended'], rules: {} } - ] + ], + + extends: ['plugin:storybook/recommended'] }; diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index df76626c4df..c988942155c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -12,7 +12,7 @@ on: description: 'devel' required: false type: string - default: false + default: 'false' cron-run: description: 'disables jobs which should not run when cron runs e2es' required: false diff --git a/.storybook/main.js b/.storybook/main.js index 51d3372dc53..58e79dad4b0 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -1,7 +1,15 @@ module.exports = { + framework: { + name: '@storybook/angular', + options: {} + }, + + staticDirs: [{ from: '../../../demo-shell/src/app.config.json', to: 'app.config.json' }], + + docs: { + autodocs: true + }, + stories: [], - addons: ['@storybook/addon-essentials'], - framework: '@storybook/angular', - staticDirs: [ { from: '../../../demo-shell/src/app.config.json', to: 'app.config.json' } ], - core: { builder: 'webpack5' } + addons:[], }; diff --git a/angular.json b/angular.json index b453c76bbdc..afc2366a542 100644 --- a/angular.json +++ b/angular.json @@ -108,6 +108,7 @@ } ], "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -116,7 +117,8 @@ "scripts": [ "node_modules/pdfjs-dist/build/pdf.js", "node_modules/pdfjs-dist/web/pdf_viewer.js", - "node_modules/raphael/raphael.min.js" + "node_modules/raphael/raphael.min.js", + "node_modules/moment/min/moment.min.js" ], "vendorChunk": true, "extractLicenses": false, @@ -305,6 +307,7 @@ "configDir": "lib/core/.storybook", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -330,6 +333,7 @@ "outputDir": "dist/storybook/core", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -451,6 +455,7 @@ "configDir": "lib/content-services/.storybook", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -476,6 +481,7 @@ "outputDir": "dist/storybook/content-services", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -643,6 +649,7 @@ "configDir": "lib/process-services-cloud/.storybook", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -668,6 +675,7 @@ "outputDir": "dist/storybook/process-services-cloud", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -1110,6 +1118,7 @@ ] }, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", @@ -1130,6 +1139,7 @@ "outputDir": "dist/storybook/stories", "compodoc": false, "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", "demo-shell/src/styles.scss", "demo-shell/src/custom-style-dev.scss", "node_modules/cropperjs/dist/cropper.min.css", diff --git a/decorate-angular-cli.js b/decorate-angular-cli.js index 88269b8138a..abca6917e64 100644 --- a/decorate-angular-cli.js +++ b/decorate-angular-cli.js @@ -21,35 +21,35 @@ * - Delete and reinstall your node_modules */ -const fs = require("fs"); -const os = require("os"); -const cp = require("child_process"); -const isWindows = os.platform() === "win32"; -const { output } = require("@nrwl/workspace"); +const fs = require('fs'); +const os = require('os'); +const cp = require('child_process'); +const isWindows = os.platform() === 'win32'; +const { output } = require('@nx/workspace'); /** * Paths to files being patched */ -const angularCLIInitPath = "node_modules/@angular/cli/lib/cli/index.js"; +const angularCLIInitPath = 'node_modules/@angular/cli/lib/cli/index.js'; /** * Patch index.js to warn you if you invoke the undecorated Angular CLI. */ function patchAngularCLI(initPath) { - const angularCLIInit = fs.readFileSync(initPath, "utf-8").toString(); + const angularCLIInit = fs.readFileSync(initPath, 'utf-8').toString(); - if (!angularCLIInit.includes("NX_CLI_SET")) { - fs.writeFileSync( - initPath, - ` + if (!angularCLIInit.includes('NX_CLI_SET')) { + fs.writeFileSync( + initPath, + ` if (!process.env['NX_CLI_SET']) { - const { output } = require('@nrwl/workspace'); + const { output } = require('@nx/workspace'); output.warn({ title: 'The Angular CLI was invoked instead of the Nx CLI. Use "npx ng [command]" or "nx [command]" instead.' }); } ${angularCLIInit} ` - ); - } + ); + } } /** @@ -57,39 +57,37 @@ ${angularCLIInit} * invoke the Nx CLI and get the benefits of computation caching. */ function symlinkNgCLItoNxCLI() { - try { - const ngPath = "./node_modules/.bin/ng"; - const nxPath = "./node_modules/.bin/nx"; - if (isWindows) { - /** - * This is the most reliable way to create symlink-like behavior on Windows. - * Such that it works in all shells and works with npx. - */ - ["", ".cmd", ".ps1"].forEach(ext => { - fs.writeFileSync(ngPath + ext, fs.readFileSync(nxPath + ext)); - }); - } else { - // If unix-based, symlink - cp.execSync(`ln -sf ./nx ${ngPath}`); + try { + const ngPath = './node_modules/.bin/ng'; + const nxPath = './node_modules/.bin/nx'; + if (isWindows) { + /** + * This is the most reliable way to create symlink-like behavior on Windows. + * Such that it works in all shells and works with npx. + */ + ['', '.cmd', '.ps1'].forEach((ext) => { + fs.writeFileSync(ngPath + ext, fs.readFileSync(nxPath + ext)); + }); + } else { + // If unix-based, symlink + cp.execSync(`ln -sf ./nx ${ngPath}`); + } + } catch (e) { + output.error({ + title: 'Unable to create a symlink from the Angular CLI to the Nx CLI:' + e.message + }); + throw e; } - } catch (e) { - output.error({ - title: - "Unable to create a symlink from the Angular CLI to the Nx CLI:" + - e.message - }); - throw e; - } } try { - symlinkNgCLItoNxCLI(); - patchAngularCLI(angularCLIInitPath); - output.log({ - title: "Angular CLI has been decorated to enable computation caching." - }); + symlinkNgCLItoNxCLI(); + patchAngularCLI(angularCLIInitPath); + output.log({ + title: 'Angular CLI has been decorated to enable computation caching.' + }); } catch (e) { - output.error({ - title: "Decoration of the Angular CLI did not complete successfully" - }); + output.error({ + title: 'Decoration of the Angular CLI did not complete successfully' + }); } diff --git a/demo-shell/project.json b/demo-shell/project.json new file mode 100644 index 00000000000..6cbe7581963 --- /dev/null +++ b/demo-shell/project.json @@ -0,0 +1,216 @@ +{ + "name": "demoshell", + "$schema": "../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "demo-shell/src", + "projectType": "application", + "targets": { + "build": { + "executor": "@angular-devkit/build-angular:browser", + "options": { + "allowedCommonJsDependencies": [ + "minimatch", + "minimatch-browser", + "superagent", + "event-emitter", + "brace-expansion", + "zen-observable", + "subscriptions-transport-ws", + "d", + "chart.js" + ], + "outputPath": "dist/demo-shell", + "index": "demo-shell/src/index.html", + "main": "demo-shell/src/main.ts", + "tsConfig": "tsconfig.dev.json", + "polyfills": "demo-shell/src/polyfills.ts", + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + }, + "assets": [ + "demo-shell/src/assets", + "demo-shell/src/favicon-96x96.png", + "demo-shell/src/app.config.json", + { + "glob": "**/*", + "input": "demo-shell/src/assets", + "output": "/assets" + }, + { + "glob": "app.config.json", + "input": "demo-shell/src", + "output": "/" + }, + { + "glob": "**/*", + "input": "demo-shell/resources", + "output": "/resources" + }, + { + "glob": "**/*", + "input": "lib/core/src/lib/assets", + "output": "/assets" + }, + { + "glob": "**/*", + "input": "lib/process-services/src/lib/assets", + "output": "/assets" + }, + { + "glob": "**/*", + "input": "lib/process-services-cloud/src/lib/assets", + "output": "/assets" + }, + { + "glob": "**/*", + "input": "lib/content-services/src/lib/assets", + "output": "/assets" + }, + { + "glob": "**/*", + "input": "lib/core/src/lib/i18n", + "output": "/assets/adf-core/i18n" + }, + { + "glob": "**/*", + "input": "lib/content-services/src/lib/i18n", + "output": "/assets/adf-content-services/i18n" + }, + { + "glob": "**/*", + "input": "lib/process-services/src/lib/i18n", + "output": "/assets/adf-process-services/i18n" + }, + { + "glob": "**/*", + "input": "lib/process-services-cloud/src/lib/i18n", + "output": "/assets/adf-process-services-cloud/i18n" + }, + { + "glob": "**/*", + "input": "lib/insights/src/lib/i18n", + "output": "/assets/adf-insights/i18n" + }, + { + "glob": "pdf.worker.min.js", + "input": "node_modules/pdfjs-dist/build", + "output": "/" + }, + { + "glob": "**/*", + "input": "node_modules/monaco-editor", + "output": "/assets/monaco/" + } + ], + "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", + "demo-shell/src/styles.scss", + "demo-shell/src/custom-style-dev.scss", + "node_modules/cropperjs/dist/cropper.min.css", + "node_modules/pdfjs-dist/web/pdf_viewer.css" + ], + "scripts": [ + "node_modules/pdfjs-dist/build/pdf.js", + "node_modules/pdfjs-dist/web/pdf_viewer.js", + "node_modules/raphael/raphael.min.js", + "node_modules/moment/min/moment.min.js" + ], + "vendorChunk": true, + "extractLicenses": false, + "buildOptimizer": false, + "sourceMap": true, + "optimization": false, + "namedChunks": true + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "anyComponentStyle", + "maximumWarning": "12kb" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "extractLicenses": true, + "buildOptimizer": true, + "verbose": false, + "fileReplacements": [ + { + "replace": "demo-shell/src/environments/environment.ts", + "with": "demo-shell/src/environments/environment.prod.ts" + } + ] + }, + "canary": { + "fileReplacements": [ + { + "replace": "demo-shell/src/environments/environment.ts", + "with": "demo-shell/src/environments/environment.canary.ts" + } + ] + }, + "e2e": { + "budgets": [ + { + "type": "anyComponentStyle", + "maximumWarning": "6kb" + } + ], + "optimization": true, + "outputHashing": "all", + "sourceMap": false, + "namedChunks": false, + "extractLicenses": true, + "buildOptimizer": true, + "verbose": false, + "fileReplacements": [ + { + "replace": "demo-shell/src/environments/environment.ts", + "with": "demo-shell/src/environments/environment.e2e.ts" + } + ] + } + }, + "defaultConfiguration": "" + }, + "serve": { + "executor": "@angular-devkit/build-angular:dev-server", + "options": { + "browserTarget": "demoshell:build", + "host": "0.0.0.0", + "port": 3000, + "proxyConfig": "demo-shell/proxy.conf.js", + "disableHostCheck": true + }, + "configurations": { + "production": { + "browserTarget": "demoshell:build:production" + }, + "canary": { + "browserTarget": "demoshell:build:canary" + }, + "e2e": { + "browserTarget": "demoshell:build:e2e" + } + } + }, + "lint": { + "executor": "@nrwl/linter:eslint", + "options": { + "lintFilePatterns": ["demo-shell/**/*.ts", "demo-shell/**/*.html"] + } + }, + "spellcheck": { + "executor": "nx:run-commands", + "options": { + "commands": [ + { + "command": "npx cspell 'demo-shell/**/*.ts'" + } + ] + } + } + } +} diff --git a/demo-shell/src/app/app.module.ts b/demo-shell/src/app/app.module.ts index d911d172ddf..892418a8a1e 100644 --- a/demo-shell/src/app/app.module.ts +++ b/demo-shell/src/app/app.module.ts @@ -73,7 +73,7 @@ import { UserInfoComponent } from './components/app-layout/user-info/user-info.c BrowserModule, environment.e2e ? NoopAnimationsModule : BrowserAnimationsModule, ReactiveFormsModule, - RouterModule.forRoot(appRoutes, { useHash: true, relativeLinkResolution: 'legacy' }), + RouterModule.forRoot(appRoutes, { useHash: true }), ...(environment.oidc ? [AuthModule.forRoot({ useHash: true })] : []), FormsModule, HttpClientModule, diff --git a/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.scss b/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.scss index 1e8697df815..a65c71f1ece 100644 --- a/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.scss +++ b/demo-shell/src/app/components/app-layout/cloud/form-demo/cloud-form-demo.component.scss @@ -31,7 +31,7 @@ } .app-form-editor-buttons { - & > .mat-raised-button { + & > .mat-mdc-raised-button { margin-right: 5px; } } diff --git a/demo-shell/src/app/components/cloud/cloud-layout.component.scss b/demo-shell/src/app/components/cloud/cloud-layout.component.scss index 7457ba1a160..5c365d16bb2 100644 --- a/demo-shell/src/app/components/cloud/cloud-layout.component.scss +++ b/demo-shell/src/app/components/cloud/cloud-layout.component.scss @@ -2,6 +2,7 @@ overflow: auto; } +/* TODO(mdc-migration): The following rule targets internal classes of tabs that may no longer apply for the MDC version. */ .app-cloud-layout-tab-body .mat-tab-body-wrapper { height: 100%; } diff --git a/demo-shell/src/app/components/files/files.component.ts b/demo-shell/src/app/components/files/files.component.ts index 8b3ad4810df..aae3c773722 100644 --- a/demo-shell/src/app/components/files/files.component.ts +++ b/demo-shell/src/app/components/files/files.component.ts @@ -448,7 +448,7 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy { onUploadNewVersion(ev) { const contentEntry = ev.detail.data.node.entry; - const showComments = true; + const showComments = this.showVersionComments; const allowDownload = this.allowVersionDownload; const newFileVersion = ev.detail.files[0].file; diff --git a/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts b/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts new file mode 100644 index 00000000000..4e570015be2 --- /dev/null +++ b/demo-shell/src/app/components/files/metadata-dialog-adapter.component.ts @@ -0,0 +1,38 @@ +/*! + * @license + * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { Component, Inject, ViewEncapsulation } from '@angular/core'; +import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; +import { Node } from '@alfresco/js-api'; + +@Component({ + templateUrl: './metadata-dialog-adapter.component.html', + encapsulation: ViewEncapsulation.None +}) +export class MetadataDialogAdapterComponent { + contentEntry: Node; + displayEmptyMetadata = false; + + constructor(@Inject(MAT_DIALOG_DATA) data: any, private containingDialog?: MatDialogRef) { + this.contentEntry = data.contentEntry; + this.displayEmptyMetadata = data.displayEmptyMetadata; + } + + close() { + this.containingDialog.close(); + } +} diff --git a/demo-shell/src/app/components/login/login.component.scss b/demo-shell/src/app/components/login/login.component.scss index be6b5db41e1..4ca33287248 100644 --- a/demo-shell/src/app/components/login/login.component.scss +++ b/demo-shell/src/app/components/login/login.component.scss @@ -1,4 +1,4 @@ -.app-setting-button.mat-fab { +.app-setting-button.mat-mdc-fab { position: absolute; right: 10px; top: 10px; diff --git a/demo-shell/src/app/components/settings/host-settings.component.html b/demo-shell/src/app/components/settings/host-settings.component.html index 3eaa05348d6..54fb7cf450d 100644 --- a/demo-shell/src/app/components/settings/host-settings.component.html +++ b/demo-shell/src/app/components/settings/host-settings.component.html @@ -8,11 +8,11 @@ -
-
Authentication type:
- - Basic Authentication - SSO +
+
Authentication type :
+ + Basic Authentication + SSO
diff --git a/demo-shell/src/custom-style-dev.scss b/demo-shell/src/custom-style-dev.scss index 7249e1c8845..895788a044e 100644 --- a/demo-shell/src/custom-style-dev.scss +++ b/demo-shell/src/custom-style-dev.scss @@ -1,6 +1,21 @@ @use '@angular/material' as mat; @import '../../lib/core/src/lib/styles/index'; @import '../../lib/core/src/lib/styles/typography'; + +// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles. +// The following line adds: +// 1. Default typography styles for all components +// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1) +// If you specify typography styles for the components you use elsewhere, you should delete this line. +// If you don't need the default component typographies but still want the hierarchy styles, +// you can delete this line and instead use: +// `@include mat.legacy-typography-hierarchy(mat.define-typography-config());` + +/* TODO(mdc-migration): Remove all-legacy-component-typographies once all legacy components are migrated */ +// @include mat.all-component-typographies; +@include mat.all-component-typographies; + +/* TODO(mdc-migration): Remove legacy-core once all legacy components are migrated */ @include mat.core; $primary: mat.define-palette($alfresco-accent-orange); @@ -17,6 +32,7 @@ $theme: mat.define-light-theme( ) ); +/* TODO(mdc-migration): Remove all-legacy-component-themes once all legacy components are migrated */ @include mat.all-component-themes($theme); @include alfresco-material-theme($theme); diff --git a/demo-shell/src/custom-style.scss b/demo-shell/src/custom-style.scss index c7cc6f98fdf..32777144719 100644 --- a/demo-shell/src/custom-style.scss +++ b/demo-shell/src/custom-style.scss @@ -1,6 +1,20 @@ @use '@angular/material' as mat; @import '~@alfresco/adf-core/theming'; -@include mat.core($alfresco-typography); + +// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles. +// The following line adds: +// 1. Default typography styles for all components +// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1) +// If you specify typography styles for the components you use elsewhere, you should delete this line. +// If you don't need the default component typographies but still want the hierarchy styles, +// you can delete this line and instead use: +// `@include mat.legacy-typography-hierarchy($alfresco-typography);` + +/* TODO(mdc-migration): Remove all-legacy-component-typographies once all legacy components are migrated */ +@include mat.all-component-typographies($alfresco-typography); + +/* TODO(mdc-migration): Remove legacy-core once all legacy components are migrated */ +@include mat.core; $primary: mat.define-palette($alfresco-accent-orange); $accent: mat.define-palette($alfresco-accent-purple); @@ -14,6 +28,7 @@ $theme: mat.define-light-theme( ) ); +/* TODO(mdc-migration): Remove all-legacy-component-themes once all legacy components are migrated*/ @include mat.all-component-themes($theme); @include alfresco-material-theme($theme); diff --git a/demo-shell/src/test.ts b/demo-shell/src/test.ts index 7fb3c559129..658659696f5 100644 --- a/demo-shell/src/test.ts +++ b/demo-shell/src/test.ts @@ -33,7 +33,3 @@ getTestBed().initTestEnvironment( teardown: { destroyAfterEach: false } } ); -// Then we find all the tests. -const context = require.context('./', true, /\.spec\.ts$/); -// And load the modules. -context.keys().map(context); diff --git a/docs/release-notes/RelNote410.md b/docs/release-notes/RelNote410.md index 7d67d88763a..3af091a55e3 100644 --- a/docs/release-notes/RelNote410.md +++ b/docs/release-notes/RelNote410.md @@ -59,168 +59,167 @@ The following is a brief list of references to help you get started with the new Please refer to the [official documentation](http://docs.alfresco.com/) for further details and suggestions. -## PR merged - -* [Alfresco/alfresco-ng2-components#6023 - Bump mdast-util-toc from 2.1.0 to 5.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6023) -* [Alfresco/alfresco-ng2-components#6021 - Bump unist-util-select from 2.0.2 to 3.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6021) -* [Alfresco/alfresco-ng2-components#6012 - Bump mini-css-extract-plugin from 0.9.0 to 0.10.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6012) -* [Alfresco/alfresco-ng2-components#5997 - Bump mdast-zone from 3.0.4 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/5997) -* [Alfresco/alfresco-ng2-components#6037 - Bump @types/pdfjs-dist from 2.1.4 to 2.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6037) -* [Alfresco/alfresco-ng2-components#6036 - Bump ng-packagr from 10.0.2 to 10.0.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6036) -* [Alfresco/alfresco-ng2-components#6033 - Bump jasmine2-protractor-utils from 1.1.3 to 1.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6033) -* [Alfresco/alfresco-ng2-components#6032 - [ACA-3863] Add query-service call for E2E tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6032) -* [Alfresco/alfresco-ng2-components#6034 - Bump scss-bundle from 2.3.2 to 3.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6034) -* [Alfresco/alfresco-ng2-components#6015 - Bump @nrwl/workspace from 10.0.10 to 10.0.12](https://github.com/Alfresco/alfresco-ng2-components/pull/6015) -* [Alfresco/alfresco-ng2-components#5983 - New Service create - AuditService](https://github.com/Alfresco/alfresco-ng2-components/pull/5983) -* [Alfresco/alfresco-ng2-components#6035 - Bump @types/node from 14.0.27 to 14.6.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6035) -* [Alfresco/alfresco-ng2-components#6013 - Bump graphql from 14.7.0 to 15.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6013) -* [Alfresco/alfresco-ng2-components#6049 - Revert "Bump scss-bundle from 2.3.2 to 3.1.2"](https://github.com/Alfresco/alfresco-ng2-components/pull/6049) -* [Alfresco/alfresco-ng2-components#6040 - fix flex-layout version](https://github.com/Alfresco/alfresco-ng2-components/pull/6040) -* [Alfresco/alfresco-ng2-components#6045 - Bump moment from 2.22.2 to 2.27.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6045) -* [Alfresco/alfresco-ng2-components#6046 - Bump concurrently from 3.6.1 to 5.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6046) -* [Alfresco/alfresco-ng2-components#6043 - Bump @angular-devkit/build-angular from 0.1000.3 to 0.1000.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6043) -* [Alfresco/alfresco-ng2-components#6042 - Bump karma from 4.4.1 to 5.1.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6042) -* [Alfresco/alfresco-ng2-components#6041 - Bump codelyzer from 5.2.2 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6041) -* [Alfresco/alfresco-ng2-components#6048 - [ACA-3800]Add method to datatable PO for selecting row with CMD](https://github.com/Alfresco/alfresco-ng2-components/pull/6048) -* [Alfresco/alfresco-ng2-components#6044 - Bump typescript from 3.9.6 to 3.9.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6044) -* [Alfresco/alfresco-ng2-components#6051 - Bump stylelint from 9.10.1 to 13.6.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6051) -* [Alfresco/alfresco-ng2-components#6055 - Bump sass-loader from 7.1.0 to 9.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6055) -* [Alfresco/alfresco-ng2-components#6056 - Bump ejs from 3.1.3 to 3.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6056) -* [Alfresco/alfresco-ng2-components#6053 - Bump rxjs from 6.6.0 to 6.6.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6053) -* [Alfresco/alfresco-ng2-components#6052 - Bump jasmine-spec-reporter from 4.2.1 to 5.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6052) -* [Alfresco/alfresco-ng2-components#6047 - Bump cspell from 4.0.63 to 4.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6047) -* [Alfresco/alfresco-ng2-components#6050 - Bump jasmine-ajax from 3.2.0 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6050) -* [Alfresco/alfresco-ng2-components#6057 - add missing group role APIs](https://github.com/Alfresco/alfresco-ng2-components/pull/6057) -* [Alfresco/alfresco-ng2-components#6058 - [ACA-3737] Process cloud properties review labels](https://github.com/Alfresco/alfresco-ng2-components/pull/6058) -* [Alfresco/alfresco-ng2-components#6024 - [AAE-3273] Manage empty option in retrieve content metadata dropdowns](https://github.com/Alfresco/alfresco-ng2-components/pull/6024) -* [Alfresco/alfresco-ng2-components#6054 - Bump commander from 4.0.0 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6054) -* [Alfresco/alfresco-ng2-components#6062 - Bump sass-loader from 9.0.3 to 10.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6062) -* [Alfresco/alfresco-ng2-components#6059 - Bump mdast-util-compact from 1.0.4 to 2.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6059) -* [Alfresco/alfresco-ng2-components#6061 - Bump @angular-devkit/build-ng-packagr from 0.1000.6 to 0.1000.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6061) -* [Alfresco/alfresco-ng2-components#6064 - Bump adf-tslint-rules from 0.0.6 to 0.0.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6064) -* [Alfresco/alfresco-ng2-components#6065 - Update upgrade39-40.md](https://github.com/Alfresco/alfresco-ng2-components/pull/6065) -* [Alfresco/alfresco-ng2-components#6060 - Bump scss-bundle from 2.3.2 to 3.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6060) -* [Alfresco/alfresco-ng2-components#6063 - Bump markdownlint-cli from 0.16.0 to 0.23.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6063) -* [Alfresco/alfresco-ng2-components#6066 - fix http method regression](https://github.com/Alfresco/alfresco-ng2-components/pull/6066) -* [Alfresco/alfresco-ng2-components#6067 - publish improvements](https://github.com/Alfresco/alfresco-ng2-components/pull/6067) -* [Alfresco/alfresco-ng2-components#6075 - fix production builds](https://github.com/Alfresco/alfresco-ng2-components/pull/6075) -* [Alfresco/alfresco-ng2-components#6090 - [AAE-3338] Update simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6090) -* [Alfresco/alfresco-ng2-components#6087 - Fix e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6087) -* [Alfresco/alfresco-ng2-components#6085 - [ACA-3441] Add method to attach file widget PO](https://github.com/Alfresco/alfresco-ng2-components/pull/6085) -* [Alfresco/alfresco-ng2-components#6084 - [AAE-3406] - Fix advanced search inside content-node selector](https://github.com/Alfresco/alfresco-ng2-components/pull/6084) -* [Alfresco/alfresco-ng2-components#6086 - [ADF-5230] - Implement process date range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6086) -* [Alfresco/alfresco-ng2-components#6096 - Remove excluded test](https://github.com/Alfresco/alfresco-ng2-components/pull/6096) -* [Alfresco/alfresco-ng2-components#6099 - [MNT-21636] - added redirection when SSO is enabled for external link](https://github.com/Alfresco/alfresco-ng2-components/pull/6099) -* [Alfresco/alfresco-ng2-components#6069 - Bump selenium-webdriver from 4.0.0-alpha.5 to 4.0.0-alpha.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6069) -* [Alfresco/alfresco-ng2-components#6101 - [ADF-4481] Fix Viewer peview for unsupported new versions](https://github.com/Alfresco/alfresco-ng2-components/pull/6101) -* [Alfresco/alfresco-ng2-components#6103 - Bump sass-loader from 10.0.0 to 10.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6103) -* [Alfresco/alfresco-ng2-components#6106 - Bump ts-node from 8.10.2 to 9.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6106) -* [Alfresco/alfresco-ng2-components#6104 - Bump ng-packagr from 10.0.4 to 10.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6104) -* [Alfresco/alfresco-ng2-components#6072 - Bump tslint from 5.20.0 to 6.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6072) -* [Alfresco/alfresco-ng2-components#6073 - Bump remark-frontmatter from 1.3.3 to 2.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6073) -* [Alfresco/alfresco-ng2-components#6107 - Bump karma from 5.2.0 to 5.2.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6107) -* [Alfresco/alfresco-ng2-components#6109 - Bump husky from 4.2.5 to 4.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6109) -* [Alfresco/alfresco-ng2-components#6105 - Bump css-loader from 3.6.0 to 4.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6105) -* [Alfresco/alfresco-ng2-components#6108 - Bump @angular-devkit/build-ng-packagr from 0.1000.7 to 0.1001.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6108) -* [Alfresco/alfresco-ng2-components#6094 - [AAE-3296] Add unit tests for Tooltips in Form Widgets](https://github.com/Alfresco/alfresco-ng2-components/pull/6094) -* [Alfresco/alfresco-ng2-components#5919 - [ACA-3637] - Add dueDate range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/5919) -* [Alfresco/alfresco-ng2-components#6110 - Bump graphql-request from 1.8.2 to 3.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6110) -* [Alfresco/alfresco-ng2-components#6111 - Bump @types/node from 14.6.0 to 14.6.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6111) -* [Alfresco/alfresco-ng2-components#6112 - Bump @angular/cli from 10.0.7 to 10.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6112) -* [Alfresco/alfresco-ng2-components#6113 - [ACA-3942] Enable assignee edit button only when userTask shared among the candidates](https://github.com/Alfresco/alfresco-ng2-components/pull/6113) -* [Alfresco/alfresco-ng2-components#6114 - [MNT-21789] ADW - Disable ACS Thumbnail Generation cause ADF Upload Service to fail any file upload with 501 error](https://github.com/Alfresco/alfresco-ng2-components/pull/6114) -* [Alfresco/alfresco-ng2-components#6102 - include attach file test](https://github.com/Alfresco/alfresco-ng2-components/pull/6102) -* [Alfresco/alfresco-ng2-components#6097 - [ACA-3877] Add the possibility to ADF Extension to be used in compila…](https://github.com/Alfresco/alfresco-ng2-components/pull/6097) -* [Alfresco/alfresco-ng2-components#6088 - Bump karma-coverage-istanbul-reporter from 2.1.0 to 3.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6088) -* [Alfresco/alfresco-ng2-components#6083 - [Docs] cloud custom form widget examples](https://github.com/Alfresco/alfresco-ng2-components/pull/6083) -* [Alfresco/alfresco-ng2-components#6120 - Bump snyk from 1.385.0 to 1.393.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6120) -* [Alfresco/alfresco-ng2-components#5871 - [ACA-3623] Process definition name filter in task list](https://github.com/Alfresco/alfresco-ng2-components/pull/5871) -* [Alfresco/alfresco-ng2-components#6079 - [AAE-3321] Select uploaded local files by default](https://github.com/Alfresco/alfresco-ng2-components/pull/6079) -* [Alfresco/alfresco-ng2-components#6076 - [ACA-3884]Attach cloud file - Ability to use the -appname- as placeholder in the destinationFolder ](https://github.com/Alfresco/alfresco-ng2-components/pull/6076) -* [Alfresco/alfresco-ng2-components#6130 - updated outcomebuttons process](https://github.com/Alfresco/alfresco-ng2-components/pull/6130) -* [Alfresco/alfresco-ng2-components#6126 - [AAE-3507] ADF - Change default destination folder alias -root- to -my-](https://github.com/Alfresco/alfresco-ng2-components/pull/6126) -* [Alfresco/alfresco-ng2-components#6122 - [ADF-5235] Facet fix and improve search test](https://github.com/Alfresco/alfresco-ng2-components/pull/6122) -* [Alfresco/alfresco-ng2-components#6143 - [ACA-3884] AttachFileCloud - Pass the replaced value](https://github.com/Alfresco/alfresco-ng2-components/pull/6143) -* [Alfresco/alfresco-ng2-components#6144 - Sanity check - Be able to pass params](https://github.com/Alfresco/alfresco-ng2-components/pull/6144) -* [Alfresco/alfresco-ng2-components#6137 - [ADF-5237] Unexclude C362240 and C362241](https://github.com/Alfresco/alfresco-ng2-components/pull/6137) -* [Alfresco/alfresco-ng2-components#5931 - [ACA-3722] - rename process name sort option](https://github.com/Alfresco/alfresco-ng2-components/pull/5931) -* [Alfresco/alfresco-ng2-components#6148 - [ACA-3973] K8s image - fetch all the namespaces and handle the missing container](https://github.com/Alfresco/alfresco-ng2-components/pull/6148) -* [Alfresco/alfresco-ng2-components#6142 - [AAE-3514] Create file viewer widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6142) -* [Alfresco/alfresco-ng2-components#6147 - [ADF-5245] Fix C297478, C297485 and C297472](https://github.com/Alfresco/alfresco-ng2-components/pull/6147) -* [Alfresco/alfresco-ng2-components#6149 - [ADF-5241] [ADF-5243] [ADF-5244] Fix C291954, C291955, C291993 and C291995](https://github.com/Alfresco/alfresco-ng2-components/pull/6149) -* [Alfresco/alfresco-ng2-components#6128 - [ACA-3637] - DueDate filter fix translation and add missing option](https://github.com/Alfresco/alfresco-ng2-components/pull/6128) -* [Alfresco/alfresco-ng2-components#6131 - [AAE-3469] New Service Task List in Task List Cloud Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6131) -* [Alfresco/alfresco-ng2-components#6150 - [ACA-3899] Viewer thumbnails cannot be accessed by keyboard](https://github.com/Alfresco/alfresco-ng2-components/pull/6150) -* [Alfresco/alfresco-ng2-components#5953 - [ADF-3499] Make Card View Text Item reactive to user input](https://github.com/Alfresco/alfresco-ng2-components/pull/5953) -* [Alfresco/alfresco-ng2-components#6154 - Revert "[AAE-3469] New Service Task List in Task List Cloud Component"](https://github.com/Alfresco/alfresco-ng2-components/pull/6154) -* [Alfresco/alfresco-ng2-components#6155 - [ACA-3973] K8s - namespaces - Replace all the occurrences](https://github.com/Alfresco/alfresco-ng2-components/pull/6155) -* [Alfresco/alfresco-ng2-components#6146 - Test improve](https://github.com/Alfresco/alfresco-ng2-components/pull/6146) -* [Alfresco/alfresco-ng2-components#6093 - [ACA-3683] - implement started date process filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6093) -* [Alfresco/alfresco-ng2-components#6152 - Update protractor.excludes.json](https://github.com/Alfresco/alfresco-ng2-components/pull/6152) -* [Alfresco/alfresco-ng2-components#6145 - [ACA-3692] - Add completed date/due date/started date filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6145) -* [Alfresco/alfresco-ng2-components#6156 - Test improve](https://github.com/Alfresco/alfresco-ng2-components/pull/6156) -* [Alfresco/alfresco-ng2-components#6138 - [ADF-5236] C246534 Failing](https://github.com/Alfresco/alfresco-ng2-components/pull/6138) -* [Alfresco/alfresco-ng2-components#6078 - [MNT-21705] - fixed column display for fields](https://github.com/Alfresco/alfresco-ng2-components/pull/6078) -* [Alfresco/alfresco-ng2-components#6157 - [ACA-3977] FE - Integrate new user assign API](https://github.com/Alfresco/alfresco-ng2-components/pull/6157) -* [Alfresco/alfresco-ng2-components#5924 - [ACA-3643] - add completedBy filter on tasks](https://github.com/Alfresco/alfresco-ng2-components/pull/5924) -* [Alfresco/alfresco-ng2-components#6098 - [ACA-3312] Add user-filter util class](https://github.com/Alfresco/alfresco-ng2-components/pull/6098) -* [Alfresco/alfresco-ng2-components#6092 - [ADF-5219] Refactor Document list Filters](https://github.com/Alfresco/alfresco-ng2-components/pull/6092) -* [Alfresco/alfresco-ng2-components#6159 - [ACA-3960] FE - Users that are part of a candidate group should not be able to see 'Assignee' property as editable when on that user task candidate group was set as assignment](https://github.com/Alfresco/alfresco-ng2-components/pull/6159) -* [Alfresco/alfresco-ng2-components#6158 - [AAE-3493] Update the documentation to provide the proper guidance on custom forms widgets for APA and APS developers](https://github.com/Alfresco/alfresco-ng2-components/pull/6158) -* [Alfresco/alfresco-ng2-components#6139 - Bump @angular/cli from 10.1.0 to 10.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6139) -* [Alfresco/alfresco-ng2-components#6164 - [ACA-3903] DocumentList - header filters are missing aria-labels](https://github.com/Alfresco/alfresco-ng2-components/pull/6164) -* [Alfresco/alfresco-ng2-components#6119 - Bump optimize-css-assets-webpack-plugin from 5.0.3 to 5.0.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6119) -* [Alfresco/alfresco-ng2-components#6165 - [ACA-3689] Update customize filter locator](https://github.com/Alfresco/alfresco-ng2-components/pull/6165) -* [Alfresco/alfresco-ng2-components#6166 - [ADF-5219] Fix Production Build](https://github.com/Alfresco/alfresco-ng2-components/pull/6166) -* [Alfresco/alfresco-ng2-components#6153 - Ole tutorial updates](https://github.com/Alfresco/alfresco-ng2-components/pull/6153) -* [Alfresco/alfresco-ng2-components#6160 - [AAE-3410] NodeSelector - Use user alias (-my-) name as default for upload of type Alfresco Content only](https://github.com/Alfresco/alfresco-ng2-components/pull/6160) -* [Alfresco/alfresco-ng2-components#6167 - Test improve 2](https://github.com/Alfresco/alfresco-ng2-components/pull/6167) -* [Alfresco/alfresco-ng2-components#6172 - Bump mini-css-extract-plugin from 0.10.1 to 0.11.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6172) -* [Alfresco/alfresco-ng2-components#6161 - [AAE-3469] New Service Task Cloud Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6161) -* [Alfresco/alfresco-ng2-components#6173 - [AAE-3469] Expose ServiceTaskListCloudComponent in public api](https://github.com/Alfresco/alfresco-ng2-components/pull/6173) -* [Alfresco/alfresco-ng2-components#6175 - Expose ServiceTaskFilterCloudService in public API](https://github.com/Alfresco/alfresco-ng2-components/pull/6175) -* [Alfresco/alfresco-ng2-components#6174 - [AAE-3651] FE - Export DateCloudFilterType from process-services-cloud lib](https://github.com/Alfresco/alfresco-ng2-components/pull/6174) -* [Alfresco/alfresco-ng2-components#6177 - Added switch to be able to check the form behaviour](https://github.com/Alfresco/alfresco-ng2-components/pull/6177) -* [Alfresco/alfresco-ng2-components#6180 - Fix broken e2e tests because of the lack of thrown error](https://github.com/Alfresco/alfresco-ng2-components/pull/6180) -* [Alfresco/alfresco-ng2-components#6181 - fix rxjs imports](https://github.com/Alfresco/alfresco-ng2-components/pull/6181) -* [Alfresco/alfresco-ng2-components#6171 - Bump moment from 2.27.0 to 2.29.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6171) -* [Alfresco/alfresco-ng2-components#6169 - Bump commander from 6.0.0 to 6.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6169) -* [Alfresco/alfresco-ng2-components#6182 - Update candidatebaseapp for variable mapping in tasks to work](https://github.com/Alfresco/alfresco-ng2-components/pull/6182) -* [Alfresco/alfresco-ng2-components#6184 - [ADF-5260] Fix Service task list initialization in DemoShell](https://github.com/Alfresco/alfresco-ng2-components/pull/6184) -* [Alfresco/alfresco-ng2-components#6141 - [ADF-4481] e2e test for uploading an unsupported file](https://github.com/Alfresco/alfresco-ng2-components/pull/6141) -* [Alfresco/alfresco-ng2-components#6185 - [ACA-3626] Cloud Task - completed date filter ](https://github.com/Alfresco/alfresco-ng2-components/pull/6185) -* [Alfresco/alfresco-ng2-components#6187 - Bump snyk from 1.393.0 to 1.404.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6187) -* [Alfresco/alfresco-ng2-components#6188 - Bump lint-staged from 10.2.13 to 10.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6188) -* [Alfresco/alfresco-ng2-components#6189 - Bump @types/node from 14.6.4 to 14.11.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6189) -* [Alfresco/alfresco-ng2-components#6170 - Bump pdfjs-dist from 2.4.456 to 2.5.207](https://github.com/Alfresco/alfresco-ng2-components/pull/6170) -* [Alfresco/alfresco-ng2-components#6168 - Bump @nrwl/workspace from 10.1.0 to 10.2.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6168) -* [Alfresco/alfresco-ng2-components#6176 - [ACA-3689] Update edit-process-filter-cloud-component PO](https://github.com/Alfresco/alfresco-ng2-components/pull/6176) -* [Alfresco/alfresco-ng2-components#6191 - LOC-258_Localised UI files for ADF 4.1 in 16 languages](https://github.com/Alfresco/alfresco-ng2-components/pull/6191) -* [Alfresco/alfresco-ng2-components#6190 - [ACA-3957] Added correct Icon for save-as button in task filter and p…](https://github.com/Alfresco/alfresco-ng2-components/pull/6190) -* [Alfresco/alfresco-ng2-components#6134 - [AAE-3199] - Add support for searchable content model properties (new search filters panel in the attach file widget)](https://github.com/Alfresco/alfresco-ng2-components/pull/6134) -* [Alfresco/alfresco-ng2-components#6195 - Bump typedoc from 0.18.0 to 0.19.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6195) -* [Alfresco/alfresco-ng2-components#6194 - Bump ng-packagr from 10.1.0 to 10.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6194) -* [Alfresco/alfresco-ng2-components#6196 - Bump codelyzer from 6.0.0 to 6.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6196) -* [Alfresco/alfresco-ng2-components#6198 - Bump @angular-devkit/build-angular from 0.1000.7 to 0.1001.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6198) -* [Alfresco/alfresco-ng2-components#6192 - [ACA-3010] - Process/Task Cloud fix wrong date range](https://github.com/Alfresco/alfresco-ng2-components/pull/6192) -* [Alfresco/alfresco-ng2-components#6197 - Bump @angular/cli from 10.1.2 to 10.1.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6197) -* [Alfresco/alfresco-ng2-components#6186 - [ACA-3627] - Add completedBy filter again](https://github.com/Alfresco/alfresco-ng2-components/pull/6186) -* [Alfresco/alfresco-ng2-components#6199 - [AAE-3694] Add new Service Method for service task integration](https://github.com/Alfresco/alfresco-ng2-components/pull/6199) -* [Alfresco/alfresco-ng2-components#6200 - add support for toolbar title i18n](https://github.com/Alfresco/alfresco-ng2-components/pull/6200) -* [Alfresco/alfresco-ng2-components#6201 - [ADF-5262] Fix query execution in BaseQueryBuilderService](https://github.com/Alfresco/alfresco-ng2-components/pull/6201) -* [Alfresco/alfresco-ng2-components#6202 - [ADF-5259] - addded unit test for custom widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6202) -* [Alfresco/alfresco-ng2-components#6209 - [ADF-5263] Empty page displayed all the time when load content fix ](https://github.com/Alfresco/alfresco-ng2-components/pull/6209) -* [Alfresco/alfresco-ng2-components#6210 - add missing interface property](https://github.com/Alfresco/alfresco-ng2-components/pull/6210) -* [Alfresco/alfresco-ng2-components#6205 - Bump rxjs from 6.6.2 to 6.6.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6205) -* [Alfresco/alfresco-ng2-components#6212 - [ADF-5261] Fix excluded flaky tests C297689, C297690](https://github.com/Alfresco/alfresco-ng2-components/pull/6212) -* [Alfresco/alfresco-ng2-components#6211 - Bump mdast-util-compact from 2.0.1 to 3.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6211) -* [Alfresco/alfresco-ng2-components#6203 - Bump @angular-devkit/build-ng-packagr from 0.1001.0 to 0.1001.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6203) -* [Alfresco/alfresco-ng2-components#6207 - Bump karma from 5.2.2 to 5.2.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6207) -* [Alfresco/alfresco-ng2-components#6206 - Bump ng2-charts from 2.3.3 to 2.4.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6206) -* [Alfresco/alfresco-ng2-components#6218 - Bump remark-frontmatter from 2.0.0 to 3.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6218) -* [Alfresco/alfresco-ng2-components#6193 - [AAE-3637] Attach file - Upload button is not disabled when the user is in search mode](https://github.com/Alfresco/alfresco-ng2-components/pull/6193) -* [Alfresco/alfresco-ng2-components#6221 - [AAE-3764]Fix typo for CLAIM button on form - process services](https://github.com/Alfresco/alfresco-ng2-components/pull/6221) - +## PR merged + +- [Alfresco/alfresco-ng2-components#6023 - Bump mdast-util-toc from 2.1.0 to 5.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6023) +- [Alfresco/alfresco-ng2-components#6021 - Bump unist-util-select from 2.0.2 to 3.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6021) +- [Alfresco/alfresco-ng2-components#6012 - Bump mini-css-extract-plugin from 0.9.0 to 0.10.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6012) +- [Alfresco/alfresco-ng2-components#5997 - Bump mdast-zone from 3.0.4 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/5997) +- [Alfresco/alfresco-ng2-components#6037 - Bump @types/pdfjs-dist from 2.1.4 to 2.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6037) +- [Alfresco/alfresco-ng2-components#6036 - Bump ng-packagr from 10.0.2 to 10.0.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6036) +- [Alfresco/alfresco-ng2-components#6033 - Bump jasmine2-protractor-utils from 1.1.3 to 1.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6033) +- [Alfresco/alfresco-ng2-components#6032 - [ACA-3863] Add query-service call for E2E tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6032) +- [Alfresco/alfresco-ng2-components#6034 - Bump scss-bundle from 2.3.2 to 3.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6034) +- [Alfresco/alfresco-ng2-components#6015 - Bump @nx/workspace from 10.0.10 to 10.0.12](https://github.com/Alfresco/alfresco-ng2-components/pull/6015) +- [Alfresco/alfresco-ng2-components#5983 - New Service create - AuditService](https://github.com/Alfresco/alfresco-ng2-components/pull/5983) +- [Alfresco/alfresco-ng2-components#6035 - Bump @types/node from 14.0.27 to 14.6.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6035) +- [Alfresco/alfresco-ng2-components#6013 - Bump graphql from 14.7.0 to 15.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6013) +- [Alfresco/alfresco-ng2-components#6049 - Revert "Bump scss-bundle from 2.3.2 to 3.1.2"](https://github.com/Alfresco/alfresco-ng2-components/pull/6049) +- [Alfresco/alfresco-ng2-components#6040 - fix flex-layout version](https://github.com/Alfresco/alfresco-ng2-components/pull/6040) +- [Alfresco/alfresco-ng2-components#6045 - Bump moment from 2.22.2 to 2.27.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6045) +- [Alfresco/alfresco-ng2-components#6046 - Bump concurrently from 3.6.1 to 5.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6046) +- [Alfresco/alfresco-ng2-components#6043 - Bump @angular-devkit/build-angular from 0.1000.3 to 0.1000.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6043) +- [Alfresco/alfresco-ng2-components#6042 - Bump karma from 4.4.1 to 5.1.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6042) +- [Alfresco/alfresco-ng2-components#6041 - Bump codelyzer from 5.2.2 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6041) +- [Alfresco/alfresco-ng2-components#6048 - [ACA-3800]Add method to datatable PO for selecting row with CMD](https://github.com/Alfresco/alfresco-ng2-components/pull/6048) +- [Alfresco/alfresco-ng2-components#6044 - Bump typescript from 3.9.6 to 3.9.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6044) +- [Alfresco/alfresco-ng2-components#6051 - Bump stylelint from 9.10.1 to 13.6.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6051) +- [Alfresco/alfresco-ng2-components#6055 - Bump sass-loader from 7.1.0 to 9.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6055) +- [Alfresco/alfresco-ng2-components#6056 - Bump ejs from 3.1.3 to 3.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6056) +- [Alfresco/alfresco-ng2-components#6053 - Bump rxjs from 6.6.0 to 6.6.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6053) +- [Alfresco/alfresco-ng2-components#6052 - Bump jasmine-spec-reporter from 4.2.1 to 5.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6052) +- [Alfresco/alfresco-ng2-components#6047 - Bump cspell from 4.0.63 to 4.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6047) +- [Alfresco/alfresco-ng2-components#6050 - Bump jasmine-ajax from 3.2.0 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6050) +- [Alfresco/alfresco-ng2-components#6057 - add missing group role APIs](https://github.com/Alfresco/alfresco-ng2-components/pull/6057) +- [Alfresco/alfresco-ng2-components#6058 - [ACA-3737] Process cloud properties review labels](https://github.com/Alfresco/alfresco-ng2-components/pull/6058) +- [Alfresco/alfresco-ng2-components#6024 - [AAE-3273] Manage empty option in retrieve content metadata dropdowns](https://github.com/Alfresco/alfresco-ng2-components/pull/6024) +- [Alfresco/alfresco-ng2-components#6054 - Bump commander from 4.0.0 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6054) +- [Alfresco/alfresco-ng2-components#6062 - Bump sass-loader from 9.0.3 to 10.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6062) +- [Alfresco/alfresco-ng2-components#6059 - Bump mdast-util-compact from 1.0.4 to 2.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6059) +- [Alfresco/alfresco-ng2-components#6061 - Bump @angular-devkit/build-ng-packagr from 0.1000.6 to 0.1000.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6061) +- [Alfresco/alfresco-ng2-components#6064 - Bump adf-tslint-rules from 0.0.6 to 0.0.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6064) +- [Alfresco/alfresco-ng2-components#6065 - Update upgrade39-40.md](https://github.com/Alfresco/alfresco-ng2-components/pull/6065) +- [Alfresco/alfresco-ng2-components#6060 - Bump scss-bundle from 2.3.2 to 3.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6060) +- [Alfresco/alfresco-ng2-components#6063 - Bump markdownlint-cli from 0.16.0 to 0.23.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6063) +- [Alfresco/alfresco-ng2-components#6066 - fix http method regression](https://github.com/Alfresco/alfresco-ng2-components/pull/6066) +- [Alfresco/alfresco-ng2-components#6067 - publish improvements](https://github.com/Alfresco/alfresco-ng2-components/pull/6067) +- [Alfresco/alfresco-ng2-components#6075 - fix production builds](https://github.com/Alfresco/alfresco-ng2-components/pull/6075) +- [Alfresco/alfresco-ng2-components#6090 - [AAE-3338] Update simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6090) +- [Alfresco/alfresco-ng2-components#6087 - Fix e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6087) +- [Alfresco/alfresco-ng2-components#6085 - [ACA-3441] Add method to attach file widget PO](https://github.com/Alfresco/alfresco-ng2-components/pull/6085) +- [Alfresco/alfresco-ng2-components#6084 - [AAE-3406] - Fix advanced search inside content-node selector](https://github.com/Alfresco/alfresco-ng2-components/pull/6084) +- [Alfresco/alfresco-ng2-components#6086 - [ADF-5230] - Implement process date range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6086) +- [Alfresco/alfresco-ng2-components#6096 - Remove excluded test](https://github.com/Alfresco/alfresco-ng2-components/pull/6096) +- [Alfresco/alfresco-ng2-components#6099 - [MNT-21636] - added redirection when SSO is enabled for external link](https://github.com/Alfresco/alfresco-ng2-components/pull/6099) +- [Alfresco/alfresco-ng2-components#6069 - Bump selenium-webdriver from 4.0.0-alpha.5 to 4.0.0-alpha.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6069) +- [Alfresco/alfresco-ng2-components#6101 - [ADF-4481] Fix Viewer peview for unsupported new versions](https://github.com/Alfresco/alfresco-ng2-components/pull/6101) +- [Alfresco/alfresco-ng2-components#6103 - Bump sass-loader from 10.0.0 to 10.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6103) +- [Alfresco/alfresco-ng2-components#6106 - Bump ts-node from 8.10.2 to 9.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6106) +- [Alfresco/alfresco-ng2-components#6104 - Bump ng-packagr from 10.0.4 to 10.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6104) +- [Alfresco/alfresco-ng2-components#6072 - Bump tslint from 5.20.0 to 6.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6072) +- [Alfresco/alfresco-ng2-components#6073 - Bump remark-frontmatter from 1.3.3 to 2.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6073) +- [Alfresco/alfresco-ng2-components#6107 - Bump karma from 5.2.0 to 5.2.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6107) +- [Alfresco/alfresco-ng2-components#6109 - Bump husky from 4.2.5 to 4.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6109) +- [Alfresco/alfresco-ng2-components#6105 - Bump css-loader from 3.6.0 to 4.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6105) +- [Alfresco/alfresco-ng2-components#6108 - Bump @angular-devkit/build-ng-packagr from 0.1000.7 to 0.1001.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6108) +- [Alfresco/alfresco-ng2-components#6094 - [AAE-3296] Add unit tests for Tooltips in Form Widgets](https://github.com/Alfresco/alfresco-ng2-components/pull/6094) +- [Alfresco/alfresco-ng2-components#5919 - [ACA-3637] - Add dueDate range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/5919) +- [Alfresco/alfresco-ng2-components#6110 - Bump graphql-request from 1.8.2 to 3.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6110) +- [Alfresco/alfresco-ng2-components#6111 - Bump @types/node from 14.6.0 to 14.6.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6111) +- [Alfresco/alfresco-ng2-components#6112 - Bump @angular/cli from 10.0.7 to 10.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6112) +- [Alfresco/alfresco-ng2-components#6113 - [ACA-3942] Enable assignee edit button only when userTask shared among the candidates](https://github.com/Alfresco/alfresco-ng2-components/pull/6113) +- [Alfresco/alfresco-ng2-components#6114 - [MNT-21789] ADW - Disable ACS Thumbnail Generation cause ADF Upload Service to fail any file upload with 501 error](https://github.com/Alfresco/alfresco-ng2-components/pull/6114) +- [Alfresco/alfresco-ng2-components#6102 - include attach file test](https://github.com/Alfresco/alfresco-ng2-components/pull/6102) +- [Alfresco/alfresco-ng2-components#6097 - [ACA-3877] Add the possibility to ADF Extension to be used in compila…](https://github.com/Alfresco/alfresco-ng2-components/pull/6097) +- [Alfresco/alfresco-ng2-components#6088 - Bump karma-coverage-istanbul-reporter from 2.1.0 to 3.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6088) +- [Alfresco/alfresco-ng2-components#6083 - [Docs] cloud custom form widget examples](https://github.com/Alfresco/alfresco-ng2-components/pull/6083) +- [Alfresco/alfresco-ng2-components#6120 - Bump snyk from 1.385.0 to 1.393.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6120) +- [Alfresco/alfresco-ng2-components#5871 - [ACA-3623] Process definition name filter in task list](https://github.com/Alfresco/alfresco-ng2-components/pull/5871) +- [Alfresco/alfresco-ng2-components#6079 - [AAE-3321] Select uploaded local files by default](https://github.com/Alfresco/alfresco-ng2-components/pull/6079) +- [Alfresco/alfresco-ng2-components#6076 - [ACA-3884]Attach cloud file - Ability to use the -appname- as placeholder in the destinationFolder ](https://github.com/Alfresco/alfresco-ng2-components/pull/6076) +- [Alfresco/alfresco-ng2-components#6130 - updated outcomebuttons process](https://github.com/Alfresco/alfresco-ng2-components/pull/6130) +- [Alfresco/alfresco-ng2-components#6126 - [AAE-3507] ADF - Change default destination folder alias -root- to -my-](https://github.com/Alfresco/alfresco-ng2-components/pull/6126) +- [Alfresco/alfresco-ng2-components#6122 - [ADF-5235] Facet fix and improve search test](https://github.com/Alfresco/alfresco-ng2-components/pull/6122) +- [Alfresco/alfresco-ng2-components#6143 - [ACA-3884] AttachFileCloud - Pass the replaced value](https://github.com/Alfresco/alfresco-ng2-components/pull/6143) +- [Alfresco/alfresco-ng2-components#6144 - Sanity check - Be able to pass params](https://github.com/Alfresco/alfresco-ng2-components/pull/6144) +- [Alfresco/alfresco-ng2-components#6137 - [ADF-5237] Unexclude C362240 and C362241](https://github.com/Alfresco/alfresco-ng2-components/pull/6137) +- [Alfresco/alfresco-ng2-components#5931 - [ACA-3722] - rename process name sort option](https://github.com/Alfresco/alfresco-ng2-components/pull/5931) +- [Alfresco/alfresco-ng2-components#6148 - [ACA-3973] K8s image - fetch all the namespaces and handle the missing container](https://github.com/Alfresco/alfresco-ng2-components/pull/6148) +- [Alfresco/alfresco-ng2-components#6142 - [AAE-3514] Create file viewer widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6142) +- [Alfresco/alfresco-ng2-components#6147 - [ADF-5245] Fix C297478, C297485 and C297472](https://github.com/Alfresco/alfresco-ng2-components/pull/6147) +- [Alfresco/alfresco-ng2-components#6149 - [ADF-5241] [ADF-5243] [ADF-5244] Fix C291954, C291955, C291993 and C291995](https://github.com/Alfresco/alfresco-ng2-components/pull/6149) +- [Alfresco/alfresco-ng2-components#6128 - [ACA-3637] - DueDate filter fix translation and add missing option](https://github.com/Alfresco/alfresco-ng2-components/pull/6128) +- [Alfresco/alfresco-ng2-components#6131 - [AAE-3469] New Service Task List in Task List Cloud Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6131) +- [Alfresco/alfresco-ng2-components#6150 - [ACA-3899] Viewer thumbnails cannot be accessed by keyboard](https://github.com/Alfresco/alfresco-ng2-components/pull/6150) +- [Alfresco/alfresco-ng2-components#5953 - [ADF-3499] Make Card View Text Item reactive to user input](https://github.com/Alfresco/alfresco-ng2-components/pull/5953) +- [Alfresco/alfresco-ng2-components#6154 - Revert "[AAE-3469] New Service Task List in Task List Cloud Component"](https://github.com/Alfresco/alfresco-ng2-components/pull/6154) +- [Alfresco/alfresco-ng2-components#6155 - [ACA-3973] K8s - namespaces - Replace all the occurrences](https://github.com/Alfresco/alfresco-ng2-components/pull/6155) +- [Alfresco/alfresco-ng2-components#6146 - Test improve](https://github.com/Alfresco/alfresco-ng2-components/pull/6146) +- [Alfresco/alfresco-ng2-components#6093 - [ACA-3683] - implement started date process filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6093) +- [Alfresco/alfresco-ng2-components#6152 - Update protractor.excludes.json](https://github.com/Alfresco/alfresco-ng2-components/pull/6152) +- [Alfresco/alfresco-ng2-components#6145 - [ACA-3692] - Add completed date/due date/started date filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6145) +- [Alfresco/alfresco-ng2-components#6156 - Test improve](https://github.com/Alfresco/alfresco-ng2-components/pull/6156) +- [Alfresco/alfresco-ng2-components#6138 - [ADF-5236] C246534 Failing](https://github.com/Alfresco/alfresco-ng2-components/pull/6138) +- [Alfresco/alfresco-ng2-components#6078 - [MNT-21705] - fixed column display for fields](https://github.com/Alfresco/alfresco-ng2-components/pull/6078) +- [Alfresco/alfresco-ng2-components#6157 - [ACA-3977] FE - Integrate new user assign API](https://github.com/Alfresco/alfresco-ng2-components/pull/6157) +- [Alfresco/alfresco-ng2-components#5924 - [ACA-3643] - add completedBy filter on tasks](https://github.com/Alfresco/alfresco-ng2-components/pull/5924) +- [Alfresco/alfresco-ng2-components#6098 - [ACA-3312] Add user-filter util class](https://github.com/Alfresco/alfresco-ng2-components/pull/6098) +- [Alfresco/alfresco-ng2-components#6092 - [ADF-5219] Refactor Document list Filters](https://github.com/Alfresco/alfresco-ng2-components/pull/6092) +- [Alfresco/alfresco-ng2-components#6159 - [ACA-3960] FE - Users that are part of a candidate group should not be able to see 'Assignee' property as editable when on that user task candidate group was set as assignment](https://github.com/Alfresco/alfresco-ng2-components/pull/6159) +- [Alfresco/alfresco-ng2-components#6158 - [AAE-3493] Update the documentation to provide the proper guidance on custom forms widgets for APA and APS developers](https://github.com/Alfresco/alfresco-ng2-components/pull/6158) +- [Alfresco/alfresco-ng2-components#6139 - Bump @angular/cli from 10.1.0 to 10.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6139) +- [Alfresco/alfresco-ng2-components#6164 - [ACA-3903] DocumentList - header filters are missing aria-labels](https://github.com/Alfresco/alfresco-ng2-components/pull/6164) +- [Alfresco/alfresco-ng2-components#6119 - Bump optimize-css-assets-webpack-plugin from 5.0.3 to 5.0.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6119) +- [Alfresco/alfresco-ng2-components#6165 - [ACA-3689] Update customize filter locator](https://github.com/Alfresco/alfresco-ng2-components/pull/6165) +- [Alfresco/alfresco-ng2-components#6166 - [ADF-5219] Fix Production Build](https://github.com/Alfresco/alfresco-ng2-components/pull/6166) +- [Alfresco/alfresco-ng2-components#6153 - Ole tutorial updates](https://github.com/Alfresco/alfresco-ng2-components/pull/6153) +- [Alfresco/alfresco-ng2-components#6160 - [AAE-3410] NodeSelector - Use user alias (-my-) name as default for upload of type Alfresco Content only](https://github.com/Alfresco/alfresco-ng2-components/pull/6160) +- [Alfresco/alfresco-ng2-components#6167 - Test improve 2](https://github.com/Alfresco/alfresco-ng2-components/pull/6167) +- [Alfresco/alfresco-ng2-components#6172 - Bump mini-css-extract-plugin from 0.10.1 to 0.11.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6172) +- [Alfresco/alfresco-ng2-components#6161 - [AAE-3469] New Service Task Cloud Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6161) +- [Alfresco/alfresco-ng2-components#6173 - [AAE-3469] Expose ServiceTaskListCloudComponent in public api](https://github.com/Alfresco/alfresco-ng2-components/pull/6173) +- [Alfresco/alfresco-ng2-components#6175 - Expose ServiceTaskFilterCloudService in public API](https://github.com/Alfresco/alfresco-ng2-components/pull/6175) +- [Alfresco/alfresco-ng2-components#6174 - [AAE-3651] FE - Export DateCloudFilterType from process-services-cloud lib](https://github.com/Alfresco/alfresco-ng2-components/pull/6174) +- [Alfresco/alfresco-ng2-components#6177 - Added switch to be able to check the form behaviour](https://github.com/Alfresco/alfresco-ng2-components/pull/6177) +- [Alfresco/alfresco-ng2-components#6180 - Fix broken e2e tests because of the lack of thrown error](https://github.com/Alfresco/alfresco-ng2-components/pull/6180) +- [Alfresco/alfresco-ng2-components#6181 - fix rxjs imports](https://github.com/Alfresco/alfresco-ng2-components/pull/6181) +- [Alfresco/alfresco-ng2-components#6171 - Bump moment from 2.27.0 to 2.29.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6171) +- [Alfresco/alfresco-ng2-components#6169 - Bump commander from 6.0.0 to 6.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6169) +- [Alfresco/alfresco-ng2-components#6182 - Update candidatebaseapp for variable mapping in tasks to work](https://github.com/Alfresco/alfresco-ng2-components/pull/6182) +- [Alfresco/alfresco-ng2-components#6184 - [ADF-5260] Fix Service task list initialization in DemoShell](https://github.com/Alfresco/alfresco-ng2-components/pull/6184) +- [Alfresco/alfresco-ng2-components#6141 - [ADF-4481] e2e test for uploading an unsupported file](https://github.com/Alfresco/alfresco-ng2-components/pull/6141) +- [Alfresco/alfresco-ng2-components#6185 - [ACA-3626] Cloud Task - completed date filter ](https://github.com/Alfresco/alfresco-ng2-components/pull/6185) +- [Alfresco/alfresco-ng2-components#6187 - Bump snyk from 1.393.0 to 1.404.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6187) +- [Alfresco/alfresco-ng2-components#6188 - Bump lint-staged from 10.2.13 to 10.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6188) +- [Alfresco/alfresco-ng2-components#6189 - Bump @types/node from 14.6.4 to 14.11.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6189) +- [Alfresco/alfresco-ng2-components#6170 - Bump pdfjs-dist from 2.4.456 to 2.5.207](https://github.com/Alfresco/alfresco-ng2-components/pull/6170) +- [Alfresco/alfresco-ng2-components#6168 - Bump @nx/workspace from 10.1.0 to 10.2.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6168) +- [Alfresco/alfresco-ng2-components#6176 - [ACA-3689] Update edit-process-filter-cloud-component PO](https://github.com/Alfresco/alfresco-ng2-components/pull/6176) +- [Alfresco/alfresco-ng2-components#6191 - LOC-258_Localised UI files for ADF 4.1 in 16 languages](https://github.com/Alfresco/alfresco-ng2-components/pull/6191) +- [Alfresco/alfresco-ng2-components#6190 - [ACA-3957] Added correct Icon for save-as button in task filter and p…](https://github.com/Alfresco/alfresco-ng2-components/pull/6190) +- [Alfresco/alfresco-ng2-components#6134 - [AAE-3199] - Add support for searchable content model properties (new search filters panel in the attach file widget)](https://github.com/Alfresco/alfresco-ng2-components/pull/6134) +- [Alfresco/alfresco-ng2-components#6195 - Bump typedoc from 0.18.0 to 0.19.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6195) +- [Alfresco/alfresco-ng2-components#6194 - Bump ng-packagr from 10.1.0 to 10.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6194) +- [Alfresco/alfresco-ng2-components#6196 - Bump codelyzer from 6.0.0 to 6.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6196) +- [Alfresco/alfresco-ng2-components#6198 - Bump @angular-devkit/build-angular from 0.1000.7 to 0.1001.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6198) +- [Alfresco/alfresco-ng2-components#6192 - [ACA-3010] - Process/Task Cloud fix wrong date range](https://github.com/Alfresco/alfresco-ng2-components/pull/6192) +- [Alfresco/alfresco-ng2-components#6197 - Bump @angular/cli from 10.1.2 to 10.1.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6197) +- [Alfresco/alfresco-ng2-components#6186 - [ACA-3627] - Add completedBy filter again](https://github.com/Alfresco/alfresco-ng2-components/pull/6186) +- [Alfresco/alfresco-ng2-components#6199 - [AAE-3694] Add new Service Method for service task integration](https://github.com/Alfresco/alfresco-ng2-components/pull/6199) +- [Alfresco/alfresco-ng2-components#6200 - add support for toolbar title i18n](https://github.com/Alfresco/alfresco-ng2-components/pull/6200) +- [Alfresco/alfresco-ng2-components#6201 - [ADF-5262] Fix query execution in BaseQueryBuilderService](https://github.com/Alfresco/alfresco-ng2-components/pull/6201) +- [Alfresco/alfresco-ng2-components#6202 - [ADF-5259] - addded unit test for custom widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6202) +- [Alfresco/alfresco-ng2-components#6209 - [ADF-5263] Empty page displayed all the time when load content fix ](https://github.com/Alfresco/alfresco-ng2-components/pull/6209) +- [Alfresco/alfresco-ng2-components#6210 - add missing interface property](https://github.com/Alfresco/alfresco-ng2-components/pull/6210) +- [Alfresco/alfresco-ng2-components#6205 - Bump rxjs from 6.6.2 to 6.6.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6205) +- [Alfresco/alfresco-ng2-components#6212 - [ADF-5261] Fix excluded flaky tests C297689, C297690](https://github.com/Alfresco/alfresco-ng2-components/pull/6212) +- [Alfresco/alfresco-ng2-components#6211 - Bump mdast-util-compact from 2.0.1 to 3.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6211) +- [Alfresco/alfresco-ng2-components#6203 - Bump @angular-devkit/build-ng-packagr from 0.1001.0 to 0.1001.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6203) +- [Alfresco/alfresco-ng2-components#6207 - Bump karma from 5.2.2 to 5.2.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6207) +- [Alfresco/alfresco-ng2-components#6206 - Bump ng2-charts from 2.3.3 to 2.4.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6206) +- [Alfresco/alfresco-ng2-components#6218 - Bump remark-frontmatter from 2.0.0 to 3.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6218) +- [Alfresco/alfresco-ng2-components#6193 - [AAE-3637] Attach file - Upload button is not disabled when the user is in search mode](https://github.com/Alfresco/alfresco-ng2-components/pull/6193) +- [Alfresco/alfresco-ng2-components#6221 - [AAE-3764]Fix typo for CLAIM button on form - process services](https://github.com/Alfresco/alfresco-ng2-components/pull/6221) Please refer to the [Alfresco issue tracker](https://issues.alfresco.com/jira/projects/ADF/issues/ADF-581?filter=allopenissues) for other known issues in this release. If you have any questions about the release, please contact us using [Gitter](https://gitter.im/Alfresco/alfresco-ng2-components). diff --git a/docs/release-notes/RelNote420.md b/docs/release-notes/RelNote420.md index 0ae3eb46f52..2ffed67b6b6 100644 --- a/docs/release-notes/RelNote420.md +++ b/docs/release-notes/RelNote420.md @@ -54,136 +54,136 @@ The following is a brief list of references to help you get started with the new Please refer to the [official documentation](http://docs.alfresco.com/) for further details and suggestions. -## PR merged - -* [Alfresco/alfresco-ng2-components#6244 - Bump snyk from 1.413.2 to 1.413.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6244) -* [Alfresco/alfresco-ng2-components#6230 - Bump moment from 2.29.0 to 2.29.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6230) -* [Alfresco/alfresco-ng2-components#6246 - Menu for ABN in regard of upgrade guides, vulnerability and licence info.](https://github.com/Alfresco/alfresco-ng2-components/pull/6246) -* [Alfresco/alfresco-ng2-components#6252 - adf-cli - Fix typo on namespace](https://github.com/Alfresco/alfresco-ng2-components/pull/6252) -* [Alfresco/alfresco-ng2-components#6249 - [ACA-4052] - Add today option back](https://github.com/Alfresco/alfresco-ng2-components/pull/6249) -* [Alfresco/alfresco-ng2-components#6248 - improved e2e login api](https://github.com/Alfresco/alfresco-ng2-components/pull/6248) -* [Alfresco/alfresco-ng2-components#6251 - [ACA-3662] Add setCompleteDateFilterDropDown() method](https://github.com/Alfresco/alfresco-ng2-components/pull/6251) -* [Alfresco/alfresco-ng2-components#6247 - Bump sass-loader from 10.0.2 to 10.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6247) -* [Alfresco/alfresco-ng2-components#6250 - Try new travis Graviton](https://github.com/Alfresco/alfresco-ng2-components/pull/6250) -* [Alfresco/alfresco-ng2-components#6257 - AAE renamed APA in guides and files.](https://github.com/Alfresco/alfresco-ng2-components/pull/6257) -* [Alfresco/alfresco-ng2-components#6259 - fix error message for CSRF](https://github.com/Alfresco/alfresco-ng2-components/pull/6259) -* [Alfresco/alfresco-ng2-components#6260 - Default login with admin if not to create user e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6260) -* [Alfresco/alfresco-ng2-components#6151 - [AAE-3587] Use grid to allow using rowspan](https://github.com/Alfresco/alfresco-ng2-components/pull/6151) -* [Alfresco/alfresco-ng2-components#6262 - Bump @angular-devkit/build-angular from 0.1001.4 to 0.1001.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6262) -* [Alfresco/alfresco-ng2-components#6263 - Bump snyk from 1.413.3 to 1.415.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6263) -* [Alfresco/alfresco-ng2-components#6253 - [ADF-5279] Date range type filter selection triggers list reload](https://github.com/Alfresco/alfresco-ng2-components/pull/6253) -* [Alfresco/alfresco-ng2-components#6254 - [ADF-5280] [Cloud] Tasks - Created Date filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6254) -* [Alfresco/alfresco-ng2-components#6265 - [ACA-3969]Add methods for people-cloud-component.page.ts](https://github.com/Alfresco/alfresco-ng2-components/pull/6265) -* [Alfresco/alfresco-ng2-components#6214 - [AAE-3719][AAE-3720] - Fix content node selector search should align with the filtering](https://github.com/Alfresco/alfresco-ng2-components/pull/6214) -* [Alfresco/alfresco-ng2-components#6269 - [AAE-3908] - fix clear value icon on card view text item](https://github.com/Alfresco/alfresco-ng2-components/pull/6269) -* [Alfresco/alfresco-ng2-components#5907 - [ACA-3619] - add task assignment filter](https://github.com/Alfresco/alfresco-ng2-components/pull/5907) -* [Alfresco/alfresco-ng2-components#6271 - [AAE-3405] - Optimise attach file widget UI](https://github.com/Alfresco/alfresco-ng2-components/pull/6271) -* [Alfresco/alfresco-ng2-components#6272 - [ACA-3976]Add a new process with 2 parallel user tasks in candidatebaseapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6272) -* [Alfresco/alfresco-ng2-components#6274 - [AAE-3925] Add support for date type searchable properties in attach …](https://github.com/Alfresco/alfresco-ng2-components/pull/6274) -* [Alfresco/alfresco-ng2-components#6275 - [AAE-3886] Cleanup the customModels when the attach file widget compo…](https://github.com/Alfresco/alfresco-ng2-components/pull/6275) -* [Alfresco/alfresco-ng2-components#6276 - [ACA-4089] Add new method in DatePickerCalendarPage](https://github.com/Alfresco/alfresco-ng2-components/pull/6276) -* [Alfresco/alfresco-ng2-components#6077 - [ACA-3706] implement startedBy process filter property](https://github.com/Alfresco/alfresco-ng2-components/pull/6077) -* [Alfresco/alfresco-ng2-components#6280 - Fix the if condition on namespaces](https://github.com/Alfresco/alfresco-ng2-components/pull/6280) -* [Alfresco/alfresco-ng2-components#6281 - [ACA-3664] Add new method in ADF to validate tasks filtering by CreatedBy filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6281) -* [Alfresco/alfresco-ng2-components#6279 - [ACA-4049] Improve check for content on lists](https://github.com/Alfresco/alfresco-ng2-components/pull/6279) -* [Alfresco/alfresco-ng2-components#6277 - [AAE-3750] - add possibility to exclude user from selection on people…](https://github.com/Alfresco/alfresco-ng2-components/pull/6277) -* [Alfresco/alfresco-ng2-components#6256 - [ADF-5170] [upload] not able to upload file/folder from external content service specfic path](https://github.com/Alfresco/alfresco-ng2-components/pull/6256) -* [Alfresco/alfresco-ng2-components#6270 - move users in the users object to make loginWithProgile general purpose](https://github.com/Alfresco/alfresco-ng2-components/pull/6270) -* [Alfresco/alfresco-ng2-components#6286 - Bump @angular-devkit/build-ng-packagr from 0.1001.4 to 0.1002.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6286) -* [Alfresco/alfresco-ng2-components#6283 - Bump chart.js from 2.9.3 to 2.9.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6283) -* [Alfresco/alfresco-ng2-components#6284 - Bump lint-staged from 10.4.0 to 10.5.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6284) -* [Alfresco/alfresco-ng2-components#6289 - [ACA-4089] Modify setCompletedBy method to set the selected assignee](https://github.com/Alfresco/alfresco-ng2-components/pull/6289) -* [Alfresco/alfresco-ng2-components#6293 - [ACA-4057]Create process with random name](https://github.com/Alfresco/alfresco-ng2-components/pull/6293) -* [Alfresco/alfresco-ng2-components#6288 - [ACA-3870] Fix Version Compatibility Initialization](https://github.com/Alfresco/alfresco-ng2-components/pull/6288) -* [Alfresco/alfresco-ng2-components#6295 - remove spamming of i18n warnings to console log](https://github.com/Alfresco/alfresco-ng2-components/pull/6295) -* [Alfresco/alfresco-ng2-components#6298 - [ACA-4057] Add getProcessInstanceByName method](https://github.com/Alfresco/alfresco-ng2-components/pull/6298) -* [Alfresco/alfresco-ng2-components#6300 - Bump sass-loader from 10.0.3 to 10.0.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6300) -* [Alfresco/alfresco-ng2-components#6296 - [ACA-4057]Add method to create process with values](https://github.com/Alfresco/alfresco-ng2-components/pull/6296) -* [Alfresco/alfresco-ng2-components#6307 - Bump lint-staged from 10.5.0 to 10.5.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6307) -* [Alfresco/alfresco-ng2-components#6308 - Bump @types/selenium-webdriver from 4.0.9 to 4.0.10](https://github.com/Alfresco/alfresco-ng2-components/pull/6308) -* [Alfresco/alfresco-ng2-components#6304 - [AAE-3966] FE - Disable the upload button when the user doesn't have permissions in a folder](https://github.com/Alfresco/alfresco-ng2-components/pull/6304) -* [Alfresco/alfresco-ng2-components#6294 - [ACA-4071] [ADW-Cloud]Task header takes too much to be loaded after claiming a task](https://github.com/Alfresco/alfresco-ng2-components/pull/6294) -* [Alfresco/alfresco-ng2-components#6301 - [AAE-3992] cleanup the code before refactoring](https://github.com/Alfresco/alfresco-ng2-components/pull/6301) -* [Alfresco/alfresco-ng2-components#6310 - Bump graphql from 15.3.0 to 15.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6310) -* [Alfresco/alfresco-ng2-components#6311 - Bump remark from 12.0.1 to 13.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6311) -* [Alfresco/alfresco-ng2-components#6299 - [ACA-4099] Fix search query in content node selector](https://github.com/Alfresco/alfresco-ng2-components/pull/6299) -* [Alfresco/alfresco-ng2-components#6309 - Bump @types/node from 14.11.2 to 14.14.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6309) -* [Alfresco/alfresco-ng2-components#6297 - [AAE-3967] Add datetime-range search filter component](https://github.com/Alfresco/alfresco-ng2-components/pull/6297) -* [Alfresco/alfresco-ng2-components#6312 - exported search-datetime range component](https://github.com/Alfresco/alfresco-ng2-components/pull/6312) -* [Alfresco/alfresco-ng2-components#6306 - [MNT-22003] - fixed check on variable for visibility service](https://github.com/Alfresco/alfresco-ng2-components/pull/6306) -* [Alfresco/alfresco-ng2-components#6282 - Improve search filter component: hide a facet if there is no filter category](https://github.com/Alfresco/alfresco-ng2-components/pull/6282) -* [Alfresco/alfresco-ng2-components#6303 - [ACA-4057] Edit getProcessInstanceByName method to search the process instance directly by its name](https://github.com/Alfresco/alfresco-ng2-components/pull/6303) -* [Alfresco/alfresco-ng2-components#6317 - Bump @angular/cli from 10.1.4 to 10.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6317) -* [Alfresco/alfresco-ng2-components#6316 - Bump snyk from 1.415.0 to 1.424.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6316) -* [Alfresco/alfresco-ng2-components#6315 - Bump mdast-zone from 4.0.0 to 4.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6315) -* [Alfresco/alfresco-ng2-components#6313 - Bump mdast-util-heading-range from 2.1.4 to 2.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6313) -* [Alfresco/alfresco-ng2-components#6318 - [ACA-828] Add showTitle input in TaskCloudForm component](https://github.com/Alfresco/alfresco-ng2-components/pull/6318) -* [Alfresco/alfresco-ng2-components#6319 - add missing env variables for proxy file](https://github.com/Alfresco/alfresco-ng2-components/pull/6319) -* [Alfresco/alfresco-ng2-components#6302 - [ADF-5223] Fix Amount widget styling](https://github.com/Alfresco/alfresco-ng2-components/pull/6302) -* [Alfresco/alfresco-ng2-components#6129 - [ACA-3373] Add e2e multi item select method in DataTable component](https://github.com/Alfresco/alfresco-ng2-components/pull/6129) -* [Alfresco/alfresco-ng2-components#6328 - Added optional on variable models to avoid breaking changes](https://github.com/Alfresco/alfresco-ng2-components/pull/6328) -* [Alfresco/alfresco-ng2-components#6329 - [ACS-827] - added whitelisted element and method for checking them](https://github.com/Alfresco/alfresco-ng2-components/pull/6329) -* [Alfresco/alfresco-ng2-components#6330 - AAE-3936 Tooltip card directive](https://github.com/Alfresco/alfresco-ng2-components/pull/6330) -* [Alfresco/alfresco-ng2-components#6322 - Bump unist-util-select from 3.0.1 to 3.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6322) -* [Alfresco/alfresco-ng2-components#6320 - [MNT-21920] Fix Card View Integers initialization when they are set to 0](https://github.com/Alfresco/alfresco-ng2-components/pull/6320) -* [Alfresco/alfresco-ng2-components#6327 - [ACS-721] Improve End/Cancel Editing UX (part 1) - implement single menu option & dialog](https://github.com/Alfresco/alfresco-ng2-components/pull/6327) -* [Alfresco/alfresco-ng2-components#6305 - [ACA-4124] Change name displayed for groups in Add Permission Panel Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6305) -* [Alfresco/alfresco-ng2-components#6325 - Bump rxjs-tslint-rules from 4.34.1 to 4.34.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6325) -* [Alfresco/alfresco-ng2-components#6332 - [AAE-3936] Fix error in directive component](https://github.com/Alfresco/alfresco-ng2-components/pull/6332) -* [Alfresco/alfresco-ng2-components#6335 - Fix clickUntilIsNotVisible by removing one return](https://github.com/Alfresco/alfresco-ng2-components/pull/6335) -* [Alfresco/alfresco-ng2-components#6337 - Fixed floating promise](https://github.com/Alfresco/alfresco-ng2-components/pull/6337) -* [Alfresco/alfresco-ng2-components#6347 - ix build](https://github.com/Alfresco/alfresco-ng2-components/pull/6347) -* [Alfresco/alfresco-ng2-components#6349 - Bump snyk from 1.424.2 to 1.427.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6349) -* [Alfresco/alfresco-ng2-components#6350 - Bump cspell from 4.1.0 to 4.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6350) -* [Alfresco/alfresco-ng2-components#6331 - [ACA-4123] Unify APS and Cloud event emitters for filters](https://github.com/Alfresco/alfresco-ng2-components/pull/6331) -* [Alfresco/alfresco-ng2-components#6348 - [ADF-5284] Restore original plugin functionality](https://github.com/Alfresco/alfresco-ng2-components/pull/6348) -* [Alfresco/alfresco-ng2-components#6336 - [DRAFT] Adding script for updating users on APS1](https://github.com/Alfresco/alfresco-ng2-components/pull/6336) -* [Alfresco/alfresco-ng2-components#6353 - Bump @nrwl/workspace from 10.2.1 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6353) -* [Alfresco/alfresco-ng2-components#6357 - Bump cspell from 4.2.0 to 4.2.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6357) -* [Alfresco/alfresco-ng2-components#6360 - Bump @types/node from 14.14.6 to 14.14.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6360) -* [Alfresco/alfresco-ng2-components#6351 - [AAE-3638] - implement priority drodpown widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6351) -* [Alfresco/alfresco-ng2-components#6359 - Bump stylelint from 13.7.2 to 13.8.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6359) -* [Alfresco/alfresco-ng2-components#6358 - Bump markdownlint-cli from 0.23.2 to 0.25.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6358) -* [Alfresco/alfresco-ng2-components#6355 - [ACA-3957] - Replace icons on process cloud](https://github.com/Alfresco/alfresco-ng2-components/pull/6355) -* [Alfresco/alfresco-ng2-components#6361 - Improve env check](https://github.com/Alfresco/alfresco-ng2-components/pull/6361) -* [Alfresco/alfresco-ng2-components#6371 - [ACA-4124] Display authorityName when authorityDisplayName is missing](https://github.com/Alfresco/alfresco-ng2-components/pull/6371) -* [Alfresco/alfresco-ng2-components#6370 - [AAE-4127] [process-services] [APS1] Return Create Filters API response instead of the default payload](https://github.com/Alfresco/alfresco-ng2-components/pull/6370) -* [Alfresco/alfresco-ng2-components#6374 - [AAE-4188] Fix 3 invalid processes in simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6374) -* [Alfresco/alfresco-ng2-components#6375 - [ACA-4168] - changed to public reset pagination](https://github.com/Alfresco/alfresco-ng2-components/pull/6375) -* [Alfresco/alfresco-ng2-components#6321 - [ACA-3712] Add appVersion multi-select dropdown in edit cloud process filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6321) -* [Alfresco/alfresco-ng2-components#6377 - Bump nconf from 0.10.0 to 0.11.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6377) -* [Alfresco/alfresco-ng2-components#6366 - [AAE-1379] - fixed form rapresentation](https://github.com/Alfresco/alfresco-ng2-components/pull/6366) -* [Alfresco/alfresco-ng2-components#6373 - [AAE-4090] [ADW - Cloud] Warning message is displayed for one second in destination picker when Upload button is enabled](https://github.com/Alfresco/alfresco-ng2-components/pull/6373) -* [Alfresco/alfresco-ng2-components#6376 - Bump snyk from 1.427.0 to 1.430.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6376) -* [Alfresco/alfresco-ng2-components#6385 - [AAE-4077] - TaskCloud: Refactor priority](https://github.com/Alfresco/alfresco-ng2-components/pull/6385) -* [Alfresco/alfresco-ng2-components#6383 - LOC-268 - Fixed. All localised UI files updated in 16 languages](https://github.com/Alfresco/alfresco-ng2-components/pull/6383) -* [Alfresco/alfresco-ng2-components#6386 - Add upload license script](https://github.com/Alfresco/alfresco-ng2-components/pull/6386) -* [Alfresco/alfresco-ng2-components#6395 - Bump rxjs-tslint-rules from 4.34.5 to 4.34.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6395) -* [Alfresco/alfresco-ng2-components#6394 - Bump snyk from 1.430.2 to 1.431.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6394) -* [Alfresco/alfresco-ng2-components#6393 - Bump cspell from 4.2.2 to 4.2.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6393) -* [Alfresco/alfresco-ng2-components#6391 - Fix versioncompatibility directive](https://github.com/Alfresco/alfresco-ng2-components/pull/6391) -* [Alfresco/alfresco-ng2-components#6397 - AAE-4023 fix BASE_PATH as /](https://github.com/Alfresco/alfresco-ng2-components/pull/6397) -* [Alfresco/alfresco-ng2-components#6404 - [ADF-5297] Success Snackbar messages showning as errors](https://github.com/Alfresco/alfresco-ng2-components/pull/6404) -* [Alfresco/alfresco-ng2-components#6405 - [ADF-5294] - fixed problem on form rendering](https://github.com/Alfresco/alfresco-ng2-components/pull/6405) -* [Alfresco/alfresco-ng2-components#6400 - ACA-4171 to ACA-4174 Display the number of activated and deactivated users](https://github.com/Alfresco/alfresco-ng2-components/pull/6400) -* [Alfresco/alfresco-ng2-components#6403 - Clean-up demo shell Error component](https://github.com/Alfresco/alfresco-ng2-components/pull/6403) -* [Alfresco/alfresco-ng2-components#6399 - [ADF-5295] Fix Session not reloaded after User logs in in other tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6399) -* [Alfresco/alfresco-ng2-components#6378 - [ACA-2176] prevent Esc click event bubble into the Viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6378) -* [Alfresco/alfresco-ng2-components#6409 - fix jasmine and karma integration for IDEs](https://github.com/Alfresco/alfresco-ng2-components/pull/6409) -* [Alfresco/alfresco-ng2-components#6415 - Bump snyk from 1.431.2 to 1.434.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6415) -* [Alfresco/alfresco-ng2-components#6414 - Bump ts-node from 9.0.0 to 9.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6414) -* [Alfresco/alfresco-ng2-components#6417 - [ACA-3957] - replace task icon](https://github.com/Alfresco/alfresco-ng2-components/pull/6417) -* [Alfresco/alfresco-ng2-components#6413 - [ADF-5298] Fix Service Tasks not loading](https://github.com/Alfresco/alfresco-ng2-components/pull/6413) -* [Alfresco/alfresco-ng2-components#6422 - [ACA-4202] - caching with version number for the url](https://github.com/Alfresco/alfresco-ng2-components/pull/6422) -* [Alfresco/alfresco-ng2-components#6420 - [ACA-4205] reload on sorting only for server mode](https://github.com/Alfresco/alfresco-ng2-components/pull/6420) -* [Alfresco/alfresco-ng2-components#6423 - [AAE-3638] - update priority option](https://github.com/Alfresco/alfresco-ng2-components/pull/6423) -* [Alfresco/alfresco-ng2-components#6421 - [ACA-4208] - fix date filter by range](https://github.com/Alfresco/alfresco-ng2-components/pull/6421) -* [Alfresco/alfresco-ng2-components#6427 - Bump highlight.js from 10.2.0 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6427) -* [Alfresco/alfresco-ng2-components#6425 - Include back C587084](https://github.com/Alfresco/alfresco-ng2-components/pull/6425) -* [Alfresco/alfresco-ng2-components#6426 - AAE-4262 fix docker redirect with relative url](https://github.com/Alfresco/alfresco-ng2-components/pull/6426) -* [Alfresco/alfresco-ng2-components#6428 - Bump snyk from 1.434.0 to 1.434.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6428) -* [Alfresco/alfresco-ng2-components#6429 - Bump protractor-retry from 1.2.13 to 2.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6429) -* [Alfresco/alfresco-ng2-components#6430 - Bump lint-staged from 10.5.1 to 10.5.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6430) -Please refer to the [Alfresco issue tracker](https://issues.alfresco.com/jira/projects/ADF/issues/ADF-581?filter=allopenissues) for other known issues in this release. If you have any questions about the release, please contact us using [Gitter](https://gitter.im/Alfresco/alfresco-ng2-components). +## PR merged + +- [Alfresco/alfresco-ng2-components#6244 - Bump snyk from 1.413.2 to 1.413.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6244) +- [Alfresco/alfresco-ng2-components#6230 - Bump moment from 2.29.0 to 2.29.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6230) +- [Alfresco/alfresco-ng2-components#6246 - Menu for ABN in regard of upgrade guides, vulnerability and licence info.](https://github.com/Alfresco/alfresco-ng2-components/pull/6246) +- [Alfresco/alfresco-ng2-components#6252 - adf-cli - Fix typo on namespace](https://github.com/Alfresco/alfresco-ng2-components/pull/6252) +- [Alfresco/alfresco-ng2-components#6249 - [ACA-4052] - Add today option back](https://github.com/Alfresco/alfresco-ng2-components/pull/6249) +- [Alfresco/alfresco-ng2-components#6248 - improved e2e login api](https://github.com/Alfresco/alfresco-ng2-components/pull/6248) +- [Alfresco/alfresco-ng2-components#6251 - [ACA-3662] Add setCompleteDateFilterDropDown() method](https://github.com/Alfresco/alfresco-ng2-components/pull/6251) +- [Alfresco/alfresco-ng2-components#6247 - Bump sass-loader from 10.0.2 to 10.0.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6247) +- [Alfresco/alfresco-ng2-components#6250 - Try new travis Graviton](https://github.com/Alfresco/alfresco-ng2-components/pull/6250) +- [Alfresco/alfresco-ng2-components#6257 - AAE renamed APA in guides and files.](https://github.com/Alfresco/alfresco-ng2-components/pull/6257) +- [Alfresco/alfresco-ng2-components#6259 - fix error message for CSRF](https://github.com/Alfresco/alfresco-ng2-components/pull/6259) +- [Alfresco/alfresco-ng2-components#6260 - Default login with admin if not to create user e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6260) +- [Alfresco/alfresco-ng2-components#6151 - [AAE-3587] Use grid to allow using rowspan](https://github.com/Alfresco/alfresco-ng2-components/pull/6151) +- [Alfresco/alfresco-ng2-components#6262 - Bump @angular-devkit/build-angular from 0.1001.4 to 0.1001.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6262) +- [Alfresco/alfresco-ng2-components#6263 - Bump snyk from 1.413.3 to 1.415.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6263) +- [Alfresco/alfresco-ng2-components#6253 - [ADF-5279] Date range type filter selection triggers list reload](https://github.com/Alfresco/alfresco-ng2-components/pull/6253) +- [Alfresco/alfresco-ng2-components#6254 - [ADF-5280] [Cloud] Tasks - Created Date filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6254) +- [Alfresco/alfresco-ng2-components#6265 - [ACA-3969]Add methods for people-cloud-component.page.ts](https://github.com/Alfresco/alfresco-ng2-components/pull/6265) +- [Alfresco/alfresco-ng2-components#6214 - [AAE-3719][AAE-3720] - Fix content node selector search should align with the filtering](https://github.com/Alfresco/alfresco-ng2-components/pull/6214) +- [Alfresco/alfresco-ng2-components#6269 - [AAE-3908] - fix clear value icon on card view text item](https://github.com/Alfresco/alfresco-ng2-components/pull/6269) +- [Alfresco/alfresco-ng2-components#5907 - [ACA-3619] - add task assignment filter](https://github.com/Alfresco/alfresco-ng2-components/pull/5907) +- [Alfresco/alfresco-ng2-components#6271 - [AAE-3405] - Optimise attach file widget UI](https://github.com/Alfresco/alfresco-ng2-components/pull/6271) +- [Alfresco/alfresco-ng2-components#6272 - [ACA-3976]Add a new process with 2 parallel user tasks in candidatebaseapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6272) +- [Alfresco/alfresco-ng2-components#6274 - [AAE-3925] Add support for date type searchable properties in attach …](https://github.com/Alfresco/alfresco-ng2-components/pull/6274) +- [Alfresco/alfresco-ng2-components#6275 - [AAE-3886] Cleanup the customModels when the attach file widget compo…](https://github.com/Alfresco/alfresco-ng2-components/pull/6275) +- [Alfresco/alfresco-ng2-components#6276 - [ACA-4089] Add new method in DatePickerCalendarPage](https://github.com/Alfresco/alfresco-ng2-components/pull/6276) +- [Alfresco/alfresco-ng2-components#6077 - [ACA-3706] implement startedBy process filter property](https://github.com/Alfresco/alfresco-ng2-components/pull/6077) +- [Alfresco/alfresco-ng2-components#6280 - Fix the if condition on namespaces](https://github.com/Alfresco/alfresco-ng2-components/pull/6280) +- [Alfresco/alfresco-ng2-components#6281 - [ACA-3664] Add new method in ADF to validate tasks filtering by CreatedBy filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6281) +- [Alfresco/alfresco-ng2-components#6279 - [ACA-4049] Improve check for content on lists](https://github.com/Alfresco/alfresco-ng2-components/pull/6279) +- [Alfresco/alfresco-ng2-components#6277 - [AAE-3750] - add possibility to exclude user from selection on people…](https://github.com/Alfresco/alfresco-ng2-components/pull/6277) +- [Alfresco/alfresco-ng2-components#6256 - [ADF-5170] [upload] not able to upload file/folder from external content service specfic path](https://github.com/Alfresco/alfresco-ng2-components/pull/6256) +- [Alfresco/alfresco-ng2-components#6270 - move users in the users object to make loginWithProgile general purpose](https://github.com/Alfresco/alfresco-ng2-components/pull/6270) +- [Alfresco/alfresco-ng2-components#6286 - Bump @angular-devkit/build-ng-packagr from 0.1001.4 to 0.1002.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6286) +- [Alfresco/alfresco-ng2-components#6283 - Bump chart.js from 2.9.3 to 2.9.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6283) +- [Alfresco/alfresco-ng2-components#6284 - Bump lint-staged from 10.4.0 to 10.5.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6284) +- [Alfresco/alfresco-ng2-components#6289 - [ACA-4089] Modify setCompletedBy method to set the selected assignee](https://github.com/Alfresco/alfresco-ng2-components/pull/6289) +- [Alfresco/alfresco-ng2-components#6293 - [ACA-4057]Create process with random name](https://github.com/Alfresco/alfresco-ng2-components/pull/6293) +- [Alfresco/alfresco-ng2-components#6288 - [ACA-3870] Fix Version Compatibility Initialization](https://github.com/Alfresco/alfresco-ng2-components/pull/6288) +- [Alfresco/alfresco-ng2-components#6295 - remove spamming of i18n warnings to console log](https://github.com/Alfresco/alfresco-ng2-components/pull/6295) +- [Alfresco/alfresco-ng2-components#6298 - [ACA-4057] Add getProcessInstanceByName method](https://github.com/Alfresco/alfresco-ng2-components/pull/6298) +- [Alfresco/alfresco-ng2-components#6300 - Bump sass-loader from 10.0.3 to 10.0.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6300) +- [Alfresco/alfresco-ng2-components#6296 - [ACA-4057]Add method to create process with values](https://github.com/Alfresco/alfresco-ng2-components/pull/6296) +- [Alfresco/alfresco-ng2-components#6307 - Bump lint-staged from 10.5.0 to 10.5.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6307) +- [Alfresco/alfresco-ng2-components#6308 - Bump @types/selenium-webdriver from 4.0.9 to 4.0.10](https://github.com/Alfresco/alfresco-ng2-components/pull/6308) +- [Alfresco/alfresco-ng2-components#6304 - [AAE-3966] FE - Disable the upload button when the user doesn't have permissions in a folder](https://github.com/Alfresco/alfresco-ng2-components/pull/6304) +- [Alfresco/alfresco-ng2-components#6294 - [ACA-4071] [ADW-Cloud]Task header takes too much to be loaded after claiming a task](https://github.com/Alfresco/alfresco-ng2-components/pull/6294) +- [Alfresco/alfresco-ng2-components#6301 - [AAE-3992] cleanup the code before refactoring](https://github.com/Alfresco/alfresco-ng2-components/pull/6301) +- [Alfresco/alfresco-ng2-components#6310 - Bump graphql from 15.3.0 to 15.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6310) +- [Alfresco/alfresco-ng2-components#6311 - Bump remark from 12.0.1 to 13.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6311) +- [Alfresco/alfresco-ng2-components#6299 - [ACA-4099] Fix search query in content node selector](https://github.com/Alfresco/alfresco-ng2-components/pull/6299) +- [Alfresco/alfresco-ng2-components#6309 - Bump @types/node from 14.11.2 to 14.14.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6309) +- [Alfresco/alfresco-ng2-components#6297 - [AAE-3967] Add datetime-range search filter component](https://github.com/Alfresco/alfresco-ng2-components/pull/6297) +- [Alfresco/alfresco-ng2-components#6312 - exported search-datetime range component](https://github.com/Alfresco/alfresco-ng2-components/pull/6312) +- [Alfresco/alfresco-ng2-components#6306 - [MNT-22003] - fixed check on variable for visibility service](https://github.com/Alfresco/alfresco-ng2-components/pull/6306) +- [Alfresco/alfresco-ng2-components#6282 - Improve search filter component: hide a facet if there is no filter category](https://github.com/Alfresco/alfresco-ng2-components/pull/6282) +- [Alfresco/alfresco-ng2-components#6303 - [ACA-4057] Edit getProcessInstanceByName method to search the process instance directly by its name](https://github.com/Alfresco/alfresco-ng2-components/pull/6303) +- [Alfresco/alfresco-ng2-components#6317 - Bump @angular/cli from 10.1.4 to 10.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6317) +- [Alfresco/alfresco-ng2-components#6316 - Bump snyk from 1.415.0 to 1.424.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6316) +- [Alfresco/alfresco-ng2-components#6315 - Bump mdast-zone from 4.0.0 to 4.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6315) +- [Alfresco/alfresco-ng2-components#6313 - Bump mdast-util-heading-range from 2.1.4 to 2.1.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6313) +- [Alfresco/alfresco-ng2-components#6318 - [ACA-828] Add showTitle input in TaskCloudForm component](https://github.com/Alfresco/alfresco-ng2-components/pull/6318) +- [Alfresco/alfresco-ng2-components#6319 - add missing env variables for proxy file](https://github.com/Alfresco/alfresco-ng2-components/pull/6319) +- [Alfresco/alfresco-ng2-components#6302 - [ADF-5223] Fix Amount widget styling](https://github.com/Alfresco/alfresco-ng2-components/pull/6302) +- [Alfresco/alfresco-ng2-components#6129 - [ACA-3373] Add e2e multi item select method in DataTable component](https://github.com/Alfresco/alfresco-ng2-components/pull/6129) +- [Alfresco/alfresco-ng2-components#6328 - Added optional on variable models to avoid breaking changes](https://github.com/Alfresco/alfresco-ng2-components/pull/6328) +- [Alfresco/alfresco-ng2-components#6329 - [ACS-827] - added whitelisted element and method for checking them](https://github.com/Alfresco/alfresco-ng2-components/pull/6329) +- [Alfresco/alfresco-ng2-components#6330 - AAE-3936 Tooltip card directive](https://github.com/Alfresco/alfresco-ng2-components/pull/6330) +- [Alfresco/alfresco-ng2-components#6322 - Bump unist-util-select from 3.0.1 to 3.0.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6322) +- [Alfresco/alfresco-ng2-components#6320 - [MNT-21920] Fix Card View Integers initialization when they are set to 0](https://github.com/Alfresco/alfresco-ng2-components/pull/6320) +- [Alfresco/alfresco-ng2-components#6327 - [ACS-721] Improve End/Cancel Editing UX (part 1) - implement single menu option & dialog](https://github.com/Alfresco/alfresco-ng2-components/pull/6327) +- [Alfresco/alfresco-ng2-components#6305 - [ACA-4124] Change name displayed for groups in Add Permission Panel Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6305) +- [Alfresco/alfresco-ng2-components#6325 - Bump rxjs-tslint-rules from 4.34.1 to 4.34.5](https://github.com/Alfresco/alfresco-ng2-components/pull/6325) +- [Alfresco/alfresco-ng2-components#6332 - [AAE-3936] Fix error in directive component](https://github.com/Alfresco/alfresco-ng2-components/pull/6332) +- [Alfresco/alfresco-ng2-components#6335 - Fix clickUntilIsNotVisible by removing one return](https://github.com/Alfresco/alfresco-ng2-components/pull/6335) +- [Alfresco/alfresco-ng2-components#6337 - Fixed floating promise](https://github.com/Alfresco/alfresco-ng2-components/pull/6337) +- [Alfresco/alfresco-ng2-components#6347 - ix build](https://github.com/Alfresco/alfresco-ng2-components/pull/6347) +- [Alfresco/alfresco-ng2-components#6349 - Bump snyk from 1.424.2 to 1.427.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6349) +- [Alfresco/alfresco-ng2-components#6350 - Bump cspell from 4.1.0 to 4.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6350) +- [Alfresco/alfresco-ng2-components#6331 - [ACA-4123] Unify APS and Cloud event emitters for filters](https://github.com/Alfresco/alfresco-ng2-components/pull/6331) +- [Alfresco/alfresco-ng2-components#6348 - [ADF-5284] Restore original plugin functionality](https://github.com/Alfresco/alfresco-ng2-components/pull/6348) +- [Alfresco/alfresco-ng2-components#6336 - [DRAFT] Adding script for updating users on APS1](https://github.com/Alfresco/alfresco-ng2-components/pull/6336) +- [Alfresco/alfresco-ng2-components#6353 - Bump @nx/workspace from 10.2.1 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6353) +- [Alfresco/alfresco-ng2-components#6357 - Bump cspell from 4.2.0 to 4.2.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6357) +- [Alfresco/alfresco-ng2-components#6360 - Bump @types/node from 14.14.6 to 14.14.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6360) +- [Alfresco/alfresco-ng2-components#6351 - [AAE-3638] - implement priority drodpown widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6351) +- [Alfresco/alfresco-ng2-components#6359 - Bump stylelint from 13.7.2 to 13.8.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6359) +- [Alfresco/alfresco-ng2-components#6358 - Bump markdownlint-cli from 0.23.2 to 0.25.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6358) +- [Alfresco/alfresco-ng2-components#6355 - [ACA-3957] - Replace icons on process cloud](https://github.com/Alfresco/alfresco-ng2-components/pull/6355) +- [Alfresco/alfresco-ng2-components#6361 - Improve env check](https://github.com/Alfresco/alfresco-ng2-components/pull/6361) +- [Alfresco/alfresco-ng2-components#6371 - [ACA-4124] Display authorityName when authorityDisplayName is missing](https://github.com/Alfresco/alfresco-ng2-components/pull/6371) +- [Alfresco/alfresco-ng2-components#6370 - [AAE-4127] [process-services] [APS1] Return Create Filters API response instead of the default payload](https://github.com/Alfresco/alfresco-ng2-components/pull/6370) +- [Alfresco/alfresco-ng2-components#6374 - [AAE-4188] Fix 3 invalid processes in simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6374) +- [Alfresco/alfresco-ng2-components#6375 - [ACA-4168] - changed to public reset pagination](https://github.com/Alfresco/alfresco-ng2-components/pull/6375) +- [Alfresco/alfresco-ng2-components#6321 - [ACA-3712] Add appVersion multi-select dropdown in edit cloud process filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6321) +- [Alfresco/alfresco-ng2-components#6377 - Bump nconf from 0.10.0 to 0.11.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6377) +- [Alfresco/alfresco-ng2-components#6366 - [AAE-1379] - fixed form rapresentation](https://github.com/Alfresco/alfresco-ng2-components/pull/6366) +- [Alfresco/alfresco-ng2-components#6373 - [AAE-4090] [ADW - Cloud] Warning message is displayed for one second in destination picker when Upload button is enabled](https://github.com/Alfresco/alfresco-ng2-components/pull/6373) +- [Alfresco/alfresco-ng2-components#6376 - Bump snyk from 1.427.0 to 1.430.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6376) +- [Alfresco/alfresco-ng2-components#6385 - [AAE-4077] - TaskCloud: Refactor priority](https://github.com/Alfresco/alfresco-ng2-components/pull/6385) +- [Alfresco/alfresco-ng2-components#6383 - LOC-268 - Fixed. All localised UI files updated in 16 languages](https://github.com/Alfresco/alfresco-ng2-components/pull/6383) +- [Alfresco/alfresco-ng2-components#6386 - Add upload license script](https://github.com/Alfresco/alfresco-ng2-components/pull/6386) +- [Alfresco/alfresco-ng2-components#6395 - Bump rxjs-tslint-rules from 4.34.5 to 4.34.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6395) +- [Alfresco/alfresco-ng2-components#6394 - Bump snyk from 1.430.2 to 1.431.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6394) +- [Alfresco/alfresco-ng2-components#6393 - Bump cspell from 4.2.2 to 4.2.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6393) +- [Alfresco/alfresco-ng2-components#6391 - Fix versioncompatibility directive](https://github.com/Alfresco/alfresco-ng2-components/pull/6391) +- [Alfresco/alfresco-ng2-components#6397 - AAE-4023 fix BASE_PATH as /](https://github.com/Alfresco/alfresco-ng2-components/pull/6397) +- [Alfresco/alfresco-ng2-components#6404 - [ADF-5297] Success Snackbar messages showning as errors](https://github.com/Alfresco/alfresco-ng2-components/pull/6404) +- [Alfresco/alfresco-ng2-components#6405 - [ADF-5294] - fixed problem on form rendering](https://github.com/Alfresco/alfresco-ng2-components/pull/6405) +- [Alfresco/alfresco-ng2-components#6400 - ACA-4171 to ACA-4174 Display the number of activated and deactivated users](https://github.com/Alfresco/alfresco-ng2-components/pull/6400) +- [Alfresco/alfresco-ng2-components#6403 - Clean-up demo shell Error component](https://github.com/Alfresco/alfresco-ng2-components/pull/6403) +- [Alfresco/alfresco-ng2-components#6399 - [ADF-5295] Fix Session not reloaded after User logs in in other tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6399) +- [Alfresco/alfresco-ng2-components#6378 - [ACA-2176] prevent Esc click event bubble into the Viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6378) +- [Alfresco/alfresco-ng2-components#6409 - fix jasmine and karma integration for IDEs](https://github.com/Alfresco/alfresco-ng2-components/pull/6409) +- [Alfresco/alfresco-ng2-components#6415 - Bump snyk from 1.431.2 to 1.434.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6415) +- [Alfresco/alfresco-ng2-components#6414 - Bump ts-node from 9.0.0 to 9.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6414) +- [Alfresco/alfresco-ng2-components#6417 - [ACA-3957] - replace task icon](https://github.com/Alfresco/alfresco-ng2-components/pull/6417) +- [Alfresco/alfresco-ng2-components#6413 - [ADF-5298] Fix Service Tasks not loading](https://github.com/Alfresco/alfresco-ng2-components/pull/6413) +- [Alfresco/alfresco-ng2-components#6422 - [ACA-4202] - caching with version number for the url](https://github.com/Alfresco/alfresco-ng2-components/pull/6422) +- [Alfresco/alfresco-ng2-components#6420 - [ACA-4205] reload on sorting only for server mode](https://github.com/Alfresco/alfresco-ng2-components/pull/6420) +- [Alfresco/alfresco-ng2-components#6423 - [AAE-3638] - update priority option](https://github.com/Alfresco/alfresco-ng2-components/pull/6423) +- [Alfresco/alfresco-ng2-components#6421 - [ACA-4208] - fix date filter by range](https://github.com/Alfresco/alfresco-ng2-components/pull/6421) +- [Alfresco/alfresco-ng2-components#6427 - Bump highlight.js from 10.2.0 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6427) +- [Alfresco/alfresco-ng2-components#6425 - Include back C587084](https://github.com/Alfresco/alfresco-ng2-components/pull/6425) +- [Alfresco/alfresco-ng2-components#6426 - AAE-4262 fix docker redirect with relative url](https://github.com/Alfresco/alfresco-ng2-components/pull/6426) +- [Alfresco/alfresco-ng2-components#6428 - Bump snyk from 1.434.0 to 1.434.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6428) +- [Alfresco/alfresco-ng2-components#6429 - Bump protractor-retry from 1.2.13 to 2.0.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6429) +- [Alfresco/alfresco-ng2-components#6430 - Bump lint-staged from 10.5.1 to 10.5.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6430) + Please refer to the [Alfresco issue tracker](https://issues.alfresco.com/jira/projects/ADF/issues/ADF-581?filter=allopenissues) for other known issues in this release. If you have any questions about the release, please contact us using [Gitter](https://gitter.im/Alfresco/alfresco-ng2-components). Thanks to the whole application team and the amazing Alfresco community for the hard work. diff --git a/docs/release-notes/RelNote430.md b/docs/release-notes/RelNote430.md index b2ba5f94dc8..05c52963696 100644 --- a/docs/release-notes/RelNote430.md +++ b/docs/release-notes/RelNote430.md @@ -59,193 +59,193 @@ The following is a brief list of references to help you get started with the new Please refer to the [official documentation](http://docs.alfresco.com/) for further details and suggestions. -## PR merged - -* [Alfresco/alfresco-ng2-components#6442 - Removed the TODO placeholders from the release note.](https://github.com/Alfresco/alfresco-ng2-components/pull/6442) -* [Alfresco/alfresco-ng2-components#6440 - Bump @alfresco/js-api from 4.1.0 to 4.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6440) -* [Alfresco/alfresco-ng2-components#6438 - [ACA-4218] - fix tomorrow date range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6438) -* [Alfresco/alfresco-ng2-components#6424 - remove old context menu](https://github.com/Alfresco/alfresco-ng2-components/pull/6424) -* [Alfresco/alfresco-ng2-components#6446 - ACA-4175 Show number of user's home folders during environment scan](https://github.com/Alfresco/alfresco-ng2-components/pull/6446) -* [Alfresco/alfresco-ng2-components#6451 - Remove escaped characters to fix ABN publish](https://github.com/Alfresco/alfresco-ng2-components/pull/6451) -* [Alfresco/alfresco-ng2-components#6402 - Use hash strategy in demo shell as the other apps](https://github.com/Alfresco/alfresco-ng2-components/pull/6402) -* [Alfresco/alfresco-ng2-components#6467 - Bump highlight.js from 10.2.0 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6467) -* [Alfresco/alfresco-ng2-components#6464 - Bump markdownlint-cli from 0.25.0 to 0.26.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6464) -* [Alfresco/alfresco-ng2-components#6468 - Bump snyk from 1.431.2 to 1.437.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6468) -* [Alfresco/alfresco-ng2-components#6457 - Bump commander from 6.1.0 to 6.2.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6457) -* [Alfresco/alfresco-ng2-components#6461 - ACA-4176 & ACA-4177 Show number of groups, sites and files during environment scan](https://github.com/Alfresco/alfresco-ng2-components/pull/6461) -* [Alfresco/alfresco-ng2-components#6469 - Duplicated tutorial (because of the renaming)](https://github.com/Alfresco/alfresco-ng2-components/pull/6469) -* [Alfresco/alfresco-ng2-components#6365 - [ADF-5281][ADF] Can't go through a form with date/dateTime widgets only with Tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6365) -* [Alfresco/alfresco-ng2-components#6476 - [AAE-3869] Update simpleapp adding custom model forms](https://github.com/Alfresco/alfresco-ng2-components/pull/6476) -* [Alfresco/alfresco-ng2-components#6478 - [ADF-5014] unit tests are added for using date fields as visibility conditions](https://github.com/Alfresco/alfresco-ng2-components/pull/6478) -* [Alfresco/alfresco-ng2-components#6487 - add missing toolbar title class](https://github.com/Alfresco/alfresco-ng2-components/pull/6487) -* [Alfresco/alfresco-ng2-components#6490 - [ACA-4231] Added a table format to the scan-env command](https://github.com/Alfresco/alfresco-ng2-components/pull/6490) -* [Alfresco/alfresco-ng2-components#6486 - [ACA-4227] [APS] Create a script to check Process Services Management plugin status before running e2e tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6486) -* [Alfresco/alfresco-ng2-components#6495 - Bump @types/selenium-webdriver from 4.0.10 to 4.0.11](https://github.com/Alfresco/alfresco-ng2-components/pull/6495) -* [Alfresco/alfresco-ng2-components#6489 - add missing toolbar tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6489) -* [Alfresco/alfresco-ng2-components#6492 - Bump cspell from 4.2.3 to 5.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6492) -* [Alfresco/alfresco-ng2-components#6491 - Bump js-yaml from 3.14.0 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6491) -* [Alfresco/alfresco-ng2-components#6496 - [AAE-4369] adf-cli - Build the docker image only once and create tag link](https://github.com/Alfresco/alfresco-ng2-components/pull/6496) -* [Alfresco/alfresco-ng2-components#6460 - [AAE-3472] e2e service task](https://github.com/Alfresco/alfresco-ng2-components/pull/6460) -* [Alfresco/alfresco-ng2-components#6502 - Fix - Add all-tags as additional option](https://github.com/Alfresco/alfresco-ng2-components/pull/6502) -* [Alfresco/alfresco-ng2-components#6503 - Revert "[DRAFT] Adding script for updating users on APS1"](https://github.com/Alfresco/alfresco-ng2-components/pull/6503) -* [Alfresco/alfresco-ng2-components#6504 - docker-publish fix - Push the image with tag](https://github.com/Alfresco/alfresco-ng2-components/pull/6504) -* [Alfresco/alfresco-ng2-components#6505 - updated simpleapp with dynamic callActivity](https://github.com/Alfresco/alfresco-ng2-components/pull/6505) -* [Alfresco/alfresco-ng2-components#6507 - Fix broken tutorial link](https://github.com/Alfresco/alfresco-ng2-components/pull/6507) -* [Alfresco/alfresco-ng2-components#6511 - Bump nconf from 0.11.0 to 0.11.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6511) -* [Alfresco/alfresco-ng2-components#6508 - Bump typedoc from 0.19.2 to 0.20.13](https://github.com/Alfresco/alfresco-ng2-components/pull/6508) -* [Alfresco/alfresco-ng2-components#6445 - fix typescript errors (latest typescript)](https://github.com/Alfresco/alfresco-ng2-components/pull/6445) -* [Alfresco/alfresco-ng2-components#6514 - [ADF-5308] excluded e2e C311290](https://github.com/Alfresco/alfresco-ng2-components/pull/6514) -* [Alfresco/alfresco-ng2-components#6513 - add missing app instance types](https://github.com/Alfresco/alfresco-ng2-components/pull/6513) -* [Alfresco/alfresco-ng2-components#6466 - [AAE-4311] Make sure we have unit test coverage of the error component.](https://github.com/Alfresco/alfresco-ng2-components/pull/6466) -* [Alfresco/alfresco-ng2-components#6515 - [AAE-4379] i18n fixes](https://github.com/Alfresco/alfresco-ng2-components/pull/6515) -* [Alfresco/alfresco-ng2-components#6516 - Bump typedoc from 0.20.13 to 0.20.14](https://github.com/Alfresco/alfresco-ng2-components/pull/6516) -* [Alfresco/alfresco-ng2-components#6512 - Fix loop scenario when the login page is not present in silent login](https://github.com/Alfresco/alfresco-ng2-components/pull/6512) -* [Alfresco/alfresco-ng2-components#6506 - [AAE-3467] - Fix Uploaded files are not being attached after selecting more files](https://github.com/Alfresco/alfresco-ng2-components/pull/6506) -* [Alfresco/alfresco-ng2-components#6412 - [AAE-4241] Populate date and datetime widgets on retrieve metadata](https://github.com/Alfresco/alfresco-ng2-components/pull/6412) -* [Alfresco/alfresco-ng2-components#6518 - adf-cli init-aae-env - Add request as dependency](https://github.com/Alfresco/alfresco-ng2-components/pull/6518) -* [Alfresco/alfresco-ng2-components#6522 - Bump sass-loader from 10.0.5 to 10.1.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6522) -* [Alfresco/alfresco-ng2-components#6521 - Bump @nrwl/workspace from 10.4.1 to 11.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6521) -* [Alfresco/alfresco-ng2-components#6473 - [ACA-3975]Add process definitions to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6473) -* [Alfresco/alfresco-ng2-components#6524 - [ADF-5308] Unexclude C311290](https://github.com/Alfresco/alfresco-ng2-components/pull/6524) -* [Alfresco/alfresco-ng2-components#6528 - [ACA-3969]Add new process definition to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6528) -* [Alfresco/alfresco-ng2-components#6526 - [AAE-4364] Add delete release api call](https://github.com/Alfresco/alfresco-ng2-components/pull/6526) -* [Alfresco/alfresco-ng2-components#6531 - [AAE-4295] E2E - Add retry api calls for delete descriptor and application](https://github.com/Alfresco/alfresco-ng2-components/pull/6531) -* [Alfresco/alfresco-ng2-components#6519 - [ACA-4233] Call the scan-env adf-cli command before and after each E2E job](https://github.com/Alfresco/alfresco-ng2-components/pull/6519) -* [Alfresco/alfresco-ng2-components#6525 - TestElement prototype to greatly reduce e2e coding time](https://github.com/Alfresco/alfresco-ng2-components/pull/6525) -* [Alfresco/alfresco-ng2-components#6536 - [ADF-5311] Extract infinite select scroll loading logic to a reusable component](https://github.com/Alfresco/alfresco-ng2-components/pull/6536) -* [Alfresco/alfresco-ng2-components#6532 - Bump snyk from 1.437.2 to 1.437.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6532) -* [Alfresco/alfresco-ng2-components#6538 - adf-cli init aps env - Upload the APS default app](https://github.com/Alfresco/alfresco-ng2-components/pull/6538) -* [Alfresco/alfresco-ng2-components#6539 - [ACA-4247] Improve login error logs in scan-env command in adf-cli](https://github.com/Alfresco/alfresco-ng2-components/pull/6539) -* [Alfresco/alfresco-ng2-components#6542 - [ACA-4223] Add process definition name filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6542) -* [Alfresco/alfresco-ng2-components#6540 - [AAE-4426] Add upload from local tab in attach file widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6540) -* [Alfresco/alfresco-ng2-components#6517 - [MNT-22051] - Fix form field mapping when value is zero](https://github.com/Alfresco/alfresco-ng2-components/pull/6517) -* [Alfresco/alfresco-ng2-components#6546 - [ACA-4252] Update authentication to SSO](https://github.com/Alfresco/alfresco-ng2-components/pull/6546) -* [Alfresco/alfresco-ng2-components#6541 - Bump commander from 6.2.1 to 7.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6541) -* [Alfresco/alfresco-ng2-components#6548 - Bump typedoc from 0.20.14 to 0.20.16](https://github.com/Alfresco/alfresco-ng2-components/pull/6548) -* [Alfresco/alfresco-ng2-components#6551 - [ADF-5324] - Expose a new adf-cli command to initialise acs-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6551) -* [Alfresco/alfresco-ng2-components#6523 - [ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI](https://github.com/Alfresco/alfresco-ng2-components/pull/6523) -* [Alfresco/alfresco-ng2-components#6559 - [AAE-4384] Add blank page component](https://github.com/Alfresco/alfresco-ng2-components/pull/6559) -* [Alfresco/alfresco-ng2-components#6566 - Revert "[AAE-4384] Add blank page component"](https://github.com/Alfresco/alfresco-ng2-components/pull/6566) -* [Alfresco/alfresco-ng2-components#6529 - [MNT-22063] - fix form cloud layout](https://github.com/Alfresco/alfresco-ng2-components/pull/6529) -* [Alfresco/alfresco-ng2-components#6564 - [MNT-21636] Fix redirect URL for viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6564) -* [Alfresco/alfresco-ng2-components#6544 - [ACA-3455] [ACA-4250] Create methods needed for candidate tasks](https://github.com/Alfresco/alfresco-ng2-components/pull/6544) -* [Alfresco/alfresco-ng2-components#6574 - Do redirect before implicit button](https://github.com/Alfresco/alfresco-ng2-components/pull/6574) -* [Alfresco/alfresco-ng2-components#6569 - Bump stylelint from 13.8.0 to 13.9.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6569) -* [Alfresco/alfresco-ng2-components#6576 - [AAE-4521] Remove process UI from test projects](https://github.com/Alfresco/alfresco-ng2-components/pull/6576) -* [Alfresco/alfresco-ng2-components#6571 - Bump typedoc from 0.20.14 to 0.20.18](https://github.com/Alfresco/alfresco-ng2-components/pull/6571) -* [Alfresco/alfresco-ng2-components#6570 - Bump husky from 4.3.0 to 4.3.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6570) -* [Alfresco/alfresco-ng2-components#6545 - Getting started tutorial on ADF.](https://github.com/Alfresco/alfresco-ng2-components/pull/6545) -* [Alfresco/alfresco-ng2-components#6567 - [AAE-4384] Add blank page component](https://github.com/Alfresco/alfresco-ng2-components/pull/6567) -* [Alfresco/alfresco-ng2-components#6578 - [ACA-4262] Content node selector - show 2 tabs only in cloud attach f…](https://github.com/Alfresco/alfresco-ng2-components/pull/6578) -* [Alfresco/alfresco-ng2-components#6577 - Fix viewer page loading method](https://github.com/Alfresco/alfresco-ng2-components/pull/6577) -* [Alfresco/alfresco-ng2-components#6556 - [ACA-4258] Add Task Filter Counters](https://github.com/Alfresco/alfresco-ng2-components/pull/6556) -* [Alfresco/alfresco-ng2-components#6586 - "Empty content" centering fixes](https://github.com/Alfresco/alfresco-ng2-components/pull/6586) -* [Alfresco/alfresco-ng2-components#6587 - [AAE-4534] Logout directive - handle the route based on app config](https://github.com/Alfresco/alfresco-ng2-components/pull/6587) -* [Alfresco/alfresco-ng2-components#6591 - improve the init by failing in case the app are not running](https://github.com/Alfresco/alfresco-ng2-components/pull/6591) -* [Alfresco/alfresco-ng2-components#6593 - Check if the order matter](https://github.com/Alfresco/alfresco-ng2-components/pull/6593) -* [Alfresco/alfresco-ng2-components#6601 - [AAE-4546] Update simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6601) -* [Alfresco/alfresco-ng2-components#6614 - Install NX if is in Travis Update lint.sh](https://github.com/Alfresco/alfresco-ng2-components/pull/6614) -* [Alfresco/alfresco-ng2-components#6616 - [AAE-4547] Add new process and form to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6616) -* [Alfresco/alfresco-ng2-components#6608 - [AAE-4553] Improve error logs in scan-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6608) -* [Alfresco/alfresco-ng2-components#6575 - [AAE-4427] Embed upload progress dialog inside the upload from your d…](https://github.com/Alfresco/alfresco-ng2-components/pull/6575) -* [Alfresco/alfresco-ng2-components#6592 - [AAE-4430] Upload from local tab visibility with info icon error message](https://github.com/Alfresco/alfresco-ng2-components/pull/6592) -* [Alfresco/alfresco-ng2-components#6630 - [ADF-5328] - fix replacing priority values error](https://github.com/Alfresco/alfresco-ng2-components/pull/6630) -* [Alfresco/alfresco-ng2-components#6557 - [AAE-4504] FE - [ADF] Fetch destination Folder Path from a static path](https://github.com/Alfresco/alfresco-ng2-components/pull/6557) -* [Alfresco/alfresco-ng2-components#6635 - Bump @angular/cli from 10.2.0 to 11.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6635) -* [Alfresco/alfresco-ng2-components#6634 - Bump @types/node from 14.14.8 to 14.14.25](https://github.com/Alfresco/alfresco-ng2-components/pull/6634) -* [Alfresco/alfresco-ng2-components#6633 - Bump snyk from 1.437.4 to 1.445.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6633) -* [Alfresco/alfresco-ng2-components#6629 - Update simpleapp and candidatebaseapp: destinationFolderPath and add attach file widgets](https://github.com/Alfresco/alfresco-ng2-components/pull/6629) -* [Alfresco/alfresco-ng2-components#6627 - [AAE-4547] Add new process definition to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6627) -* [Alfresco/alfresco-ng2-components#6580 - [ADF-4329][ASD-5330] plus Improve e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6580) -* [Alfresco/alfresco-ng2-components#6628 - [ACA-4265]Refactor attachFileFromLocal method](https://github.com/Alfresco/alfresco-ng2-components/pull/6628) -* [Alfresco/alfresco-ng2-components#6642 - Bump ejs from 3.1.5 to 3.1.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6642) -* [Alfresco/alfresco-ng2-components#6643 - Bump snyk from 1.445.0 to 1.446.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6643) -* [Alfresco/alfresco-ng2-components#6626 - [ATS-854] Add media tracks to player from webvtt rendition](https://github.com/Alfresco/alfresco-ng2-components/pull/6626) -* [Alfresco/alfresco-ng2-components#6600 - Tutorial on creating ADF based applications.](https://github.com/Alfresco/alfresco-ng2-components/pull/6600) -* [Alfresco/alfresco-ng2-components#6641 - Bump stylelint from 13.8.0 to 13.9.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6641) -* [Alfresco/alfresco-ng2-components#6638 - Update branch for JS-API PR#3205](https://github.com/Alfresco/alfresco-ng2-components/pull/6638) -* [Alfresco/alfresco-ng2-components#6644 - Update simpleapp to use candidate group on attach-local-file-on-task …](https://github.com/Alfresco/alfresco-ng2-components/pull/6644) -* [Alfresco/alfresco-ng2-components#6620 - [AAE-4529] Refactor Notification History Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6620) -* [Alfresco/alfresco-ng2-components#6639 - [ADF-5331] - Alpha ADF/JS-API update has been successfully created.](https://github.com/Alfresco/alfresco-ng2-components/pull/6639) -* [Alfresco/alfresco-ng2-components#6636 - [AAE-4569] Added readOnly property to breadcrumb components](https://github.com/Alfresco/alfresco-ng2-components/pull/6636) -* [Alfresco/alfresco-ng2-components#6650 - Update children script ](https://github.com/Alfresco/alfresco-ng2-components/pull/6650) -* [Alfresco/alfresco-ng2-components#6652 - Bump snyk from 1.446.0 to 1.448.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6652) -* [Alfresco/alfresco-ng2-components#6656 - [ACA-4266] Improve governance plugin check logs](https://github.com/Alfresco/alfresco-ng2-components/pull/6656) -* [Alfresco/alfresco-ng2-components#6654 - Bump typescript from 3.9.7 to 3.9.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6654) -* [Alfresco/alfresco-ng2-components#6655 - Bump @nrwl/workspace from 11.1.2 to 11.2.11](https://github.com/Alfresco/alfresco-ng2-components/pull/6655) -* [Alfresco/alfresco-ng2-components#6657 - Bump ini from 1.3.5 to 1.3.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6657) -* [Alfresco/alfresco-ng2-components#6543 - [ADF-5313] Merge both form-fields POs in one because are identical](https://github.com/Alfresco/alfresco-ng2-components/pull/6543) -* [Alfresco/alfresco-ng2-components#6658 - [MNT-21636] Refactor redirect URL](https://github.com/Alfresco/alfresco-ng2-components/pull/6658) -* [Alfresco/alfresco-ng2-components#6663 - updated simpleapp with outcome visibility](https://github.com/Alfresco/alfresco-ng2-components/pull/6663) -* [Alfresco/alfresco-ng2-components#6602 - [ADF-5316] - Content Type](https://github.com/Alfresco/alfresco-ng2-components/pull/6602) -* [Alfresco/alfresco-ng2-components#6668 - Bump @angular/cli from 11.1.3 to 11.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6668) -* [Alfresco/alfresco-ng2-components#6669 - Bump stylelint from 13.9.0 to 13.10.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6669) -* [Alfresco/alfresco-ng2-components#6666 - Bump @types/node from 14.14.25 to 14.14.26](https://github.com/Alfresco/alfresco-ng2-components/pull/6666) -* [Alfresco/alfresco-ng2-components#6667 - Bump snyk from 1.448.0 to 1.452.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6667) -* [Alfresco/alfresco-ng2-components#6664 - [AAE-4429] Add readOnly breadcrumb to upload from device tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6664) -* [Alfresco/alfresco-ng2-components#6671 - Fix promise redirect](https://github.com/Alfresco/alfresco-ng2-components/pull/6671) -* [Alfresco/alfresco-ng2-components#6672 - Bump socket.io from 2.3.0 to 2.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6672) -* [Alfresco/alfresco-ng2-components#6670 - Update branch for JS-API PR#3207](https://github.com/Alfresco/alfresco-ng2-components/pull/6670) -* [Alfresco/alfresco-ng2-components#6651 - [ADF-5332] Login basic auth - Ability to override the successRoute from app.config.json](https://github.com/Alfresco/alfresco-ng2-components/pull/6651) -* [Alfresco/alfresco-ng2-components#6673 - excluded flaky test C260241](https://github.com/Alfresco/alfresco-ng2-components/pull/6673) -* [Alfresco/alfresco-ng2-components#6607 - [ACA-4259] Task filter counter notifications](https://github.com/Alfresco/alfresco-ng2-components/pull/6607) -* [Alfresco/alfresco-ng2-components#6674 - [AAE-3326] Content node selector - sort files by createdAt desc by de…](https://github.com/Alfresco/alfresco-ng2-components/pull/6674) -* [Alfresco/alfresco-ng2-components#6685 - configure dependabot excludes](https://github.com/Alfresco/alfresco-ng2-components/pull/6685) -* [Alfresco/alfresco-ng2-components#6688 - Avoid to recall the method if no change detect is affected](https://github.com/Alfresco/alfresco-ng2-components/pull/6688) -* [Alfresco/alfresco-ng2-components#6689 - Update branch for JS-API PR#3224](https://github.com/Alfresco/alfresco-ng2-components/pull/6689) -* [Alfresco/alfresco-ng2-components#6549 - [ADF-5305] - Added aspect list component](https://github.com/Alfresco/alfresco-ng2-components/pull/6549) -* [Alfresco/alfresco-ng2-components#6695 - Bump snyk from 1.452.0 to 1.456.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6695) -* [Alfresco/alfresco-ng2-components#6693 - Aspect List - added spinner and refresh](https://github.com/Alfresco/alfresco-ng2-components/pull/6693) -* [Alfresco/alfresco-ng2-components#6694 - Bump apollo-angular from 2.2.0 to 2.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6694) -* [Alfresco/alfresco-ng2-components#6665 - [AAE-4452] FE - [ADF] Fetch destination folder path from mapped variables](https://github.com/Alfresco/alfresco-ng2-components/pull/6665) -* [Alfresco/alfresco-ng2-components#6698 - Enabling default aspects for card component](https://github.com/Alfresco/alfresco-ng2-components/pull/6698) -* [Alfresco/alfresco-ng2-components#6697 - [ADF-5341] Add Apollo direct dependencies](https://github.com/Alfresco/alfresco-ng2-components/pull/6697) -* [Alfresco/alfresco-ng2-components#6699 - Improve update-project script to update adf-cli and adf-testing packages](https://github.com/Alfresco/alfresco-ng2-components/pull/6699) -* [Alfresco/alfresco-ng2-components#6691 - [MNT-21636] Use URLTree for redirect](https://github.com/Alfresco/alfresco-ng2-components/pull/6691) -* [Alfresco/alfresco-ng2-components#6690 - [AAE-4637] Fix varying height of dialog when clicking on the Upload from your device tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6690) -* [Alfresco/alfresco-ng2-components#6700 - [ACA-3881] Able to start form with preselected ACS nodes](https://github.com/Alfresco/alfresco-ng2-components/pull/6700) -* [Alfresco/alfresco-ng2-components#6696 - [ADF-5339] ESCAPE should close opened dialog not the overlay viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6696) -* [Alfresco/alfresco-ng2-components#6706 - Update branch for JS-API PR#3232](https://github.com/Alfresco/alfresco-ng2-components/pull/6706) -* [Alfresco/alfresco-ng2-components#6704 - [AAE-4608] Use smartrunner version 2 and add SuperCache (workspaces + S3 combo)!](https://github.com/Alfresco/alfresco-ng2-components/pull/6704) -* [Alfresco/alfresco-ng2-components#6714 - [AAE-4701] ADF check env - Fail if the env is not reachable](https://github.com/Alfresco/alfresco-ng2-components/pull/6714) -* [Alfresco/alfresco-ng2-components#6715 - Auto PR - Add the ADF number to easily identify the version](https://github.com/Alfresco/alfresco-ng2-components/pull/6715) -* [Alfresco/alfresco-ng2-components#6684 - [ACA-4208] - Fix process date filter for range](https://github.com/Alfresco/alfresco-ng2-components/pull/6684) -* [Alfresco/alfresco-ng2-components#6710 - Bump concurrently from 5.3.0 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6710) -* [Alfresco/alfresco-ng2-components#6712 - Bump typedoc from 0.20.14 to 0.20.27](https://github.com/Alfresco/alfresco-ng2-components/pull/6712) -* [Alfresco/alfresco-ng2-components#6707 - [AAE-4661] Fix search results are still displayed when search term ge…](https://github.com/Alfresco/alfresco-ng2-components/pull/6707) -* [Alfresco/alfresco-ng2-components#6719 - [AAE-4203][AAE-4292] - Fix breadcrumb and folder navigation issues wh…](https://github.com/Alfresco/alfresco-ng2-components/pull/6719) -* [Alfresco/alfresco-ng2-components#6717 - [AAE-4624] - fix user initials for identity user with bpm](https://github.com/Alfresco/alfresco-ng2-components/pull/6717) -* [Alfresco/alfresco-ng2-components#6418 - [ADF-5285] Re-include test](https://github.com/Alfresco/alfresco-ng2-components/pull/6418) -* [Alfresco/alfresco-ng2-components#6723 - [AAE-4661] Fix not showing results when filtering by content model pr…](https://github.com/Alfresco/alfresco-ng2-components/pull/6723) -* [Alfresco/alfresco-ng2-components#6599 - [AAE-3992] Process Filter bug fixes and improvements](https://github.com/Alfresco/alfresco-ng2-components/pull/6599) -* [Alfresco/alfresco-ng2-components#6705 - Create Image from PR if request](https://github.com/Alfresco/alfresco-ng2-components/pull/6705) -* [Alfresco/alfresco-ng2-components#6724 - [AAE-4710] Error-proof scan-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6724) -* [Alfresco/alfresco-ng2-components#6462 - cli init-aae - Remove useless properties](https://github.com/Alfresco/alfresco-ng2-components/pull/6462) -* [Alfresco/alfresco-ng2-components#6725 - Override the pr title in case already exists](https://github.com/Alfresco/alfresco-ng2-components/pull/6725) -* [Alfresco/alfresco-ng2-components#6730 - [ADF-5346] DocumentList - header is not scrollable when the width of the browser is small](https://github.com/Alfresco/alfresco-ng2-components/pull/6730) -* [Alfresco/alfresco-ng2-components#6732 - [ACA-4213] - Fix search datetime range in different timezones](https://github.com/Alfresco/alfresco-ng2-components/pull/6732) -* [Alfresco/alfresco-ng2-components#6713 - [REPO-5552] more filtering capabilities for aspect/type api ](https://github.com/Alfresco/alfresco-ng2-components/pull/6713) -* [Alfresco/alfresco-ng2-components#6727 - [ADF-5344] - fixed counter for custom aspects](https://github.com/Alfresco/alfresco-ng2-components/pull/6727) -* [Alfresco/alfresco-ng2-components#6726 - [ACA-4299] Add e2e tests for task counters and notifications](https://github.com/Alfresco/alfresco-ng2-components/pull/6726) -* [Alfresco/alfresco-ng2-components#6735 - Bump css-loader from 4.3.0 to 5.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6735) -* [Alfresco/alfresco-ng2-components#6740 - [ACA-4304] - Remove userinfo name on small screens (only profile icon…](https://github.com/Alfresco/alfresco-ng2-components/pull/6740) -* [Alfresco/alfresco-ng2-components#6741 - [ACA-4299] Fix C593066 e2e test - task counter](https://github.com/Alfresco/alfresco-ng2-components/pull/6741) -* [Alfresco/alfresco-ng2-components#6737 - [ADF-5347] Viewer - Closing PDF before all pages are loaded causes errors](https://github.com/Alfresco/alfresco-ng2-components/pull/6737) -* [Alfresco/alfresco-ng2-components#6736 - Bump mini-css-extract-plugin from 0.11.2 to 1.3.9](https://github.com/Alfresco/alfresco-ng2-components/pull/6736) -* [Alfresco/alfresco-ng2-components#6734 - Bump cspell from 5.1.3 to 5.3.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6734) -* [Alfresco/alfresco-ng2-components#6746 - [ADF-5345] - fixed border for aspect dialog](https://github.com/Alfresco/alfresco-ng2-components/pull/6746) -* [Alfresco/alfresco-ng2-components#6742 - [ATS-873] Fix Subtitles in audio files](https://github.com/Alfresco/alfresco-ng2-components/pull/6742) -* [Alfresco/alfresco-ng2-components#6731 - [AAE-3543] Attach button enabled only when all files uploaded](https://github.com/Alfresco/alfresco-ng2-components/pull/6731) -* [Alfresco/alfresco-ng2-components#6745 - [ADF-5349] WebSocket protocol based on BpmHost](https://github.com/Alfresco/alfresco-ng2-components/pull/6745) -* [Alfresco/alfresco-ng2-components#6748 - Bump snyk from 1.456.0 to 1.462.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6748) -* [Alfresco/alfresco-ng2-components#6749 - Bump husky from 4.3.8 to 5.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6749) -* [Alfresco/alfresco-ng2-components#6744 - [ADF-5348] - fix user info icons](https://github.com/Alfresco/alfresco-ng2-components/pull/6744) -* [Alfresco/alfresco-ng2-components#6752 - [ADF-5285] re-include test C299187](https://github.com/Alfresco/alfresco-ng2-components/pull/6752) -* [Alfresco/alfresco-ng2-components#6750 - Bump cspell from 5.3.1 to 5.3.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6750) -* [Alfresco/alfresco-ng2-components#6753 - [AAE-4547] Add getInputValue() in TestElement class](https://github.com/Alfresco/alfresco-ng2-components/pull/6753) -* [Alfresco/alfresco-ng2-components#6747 - Update branch for JS-API PR#3256](https://github.com/Alfresco/alfresco-ng2-components/pull/6747) -* [Alfresco/alfresco-ng2-components#6763 - [ACA-4202] - refreshing the preview when version has changed](https://github.com/Alfresco/alfresco-ng2-components/pull/6763) -* [Alfresco/alfresco-ng2-components#6764 - Revert "[AAE-4637] Fix varying height of dialog when clicking on the Upload from your device tab"](https://github.com/Alfresco/alfresco-ng2-components/pull/6764) +## PR merged + +- [Alfresco/alfresco-ng2-components#6442 - Removed the TODO placeholders from the release note.](https://github.com/Alfresco/alfresco-ng2-components/pull/6442) +- [Alfresco/alfresco-ng2-components#6440 - Bump @alfresco/js-api from 4.1.0 to 4.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6440) +- [Alfresco/alfresco-ng2-components#6438 - [ACA-4218] - fix tomorrow date range filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6438) +- [Alfresco/alfresco-ng2-components#6424 - remove old context menu](https://github.com/Alfresco/alfresco-ng2-components/pull/6424) +- [Alfresco/alfresco-ng2-components#6446 - ACA-4175 Show number of user's home folders during environment scan](https://github.com/Alfresco/alfresco-ng2-components/pull/6446) +- [Alfresco/alfresco-ng2-components#6451 - Remove escaped characters to fix ABN publish](https://github.com/Alfresco/alfresco-ng2-components/pull/6451) +- [Alfresco/alfresco-ng2-components#6402 - Use hash strategy in demo shell as the other apps](https://github.com/Alfresco/alfresco-ng2-components/pull/6402) +- [Alfresco/alfresco-ng2-components#6467 - Bump highlight.js from 10.2.0 to 10.4.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6467) +- [Alfresco/alfresco-ng2-components#6464 - Bump markdownlint-cli from 0.25.0 to 0.26.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6464) +- [Alfresco/alfresco-ng2-components#6468 - Bump snyk from 1.431.2 to 1.437.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6468) +- [Alfresco/alfresco-ng2-components#6457 - Bump commander from 6.1.0 to 6.2.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6457) +- [Alfresco/alfresco-ng2-components#6461 - ACA-4176 & ACA-4177 Show number of groups, sites and files during environment scan](https://github.com/Alfresco/alfresco-ng2-components/pull/6461) +- [Alfresco/alfresco-ng2-components#6469 - Duplicated tutorial (because of the renaming)](https://github.com/Alfresco/alfresco-ng2-components/pull/6469) +- [Alfresco/alfresco-ng2-components#6365 - [ADF-5281][ADF] Can't go through a form with date/dateTime widgets only with Tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6365) +- [Alfresco/alfresco-ng2-components#6476 - [AAE-3869] Update simpleapp adding custom model forms](https://github.com/Alfresco/alfresco-ng2-components/pull/6476) +- [Alfresco/alfresco-ng2-components#6478 - [ADF-5014] unit tests are added for using date fields as visibility conditions](https://github.com/Alfresco/alfresco-ng2-components/pull/6478) +- [Alfresco/alfresco-ng2-components#6487 - add missing toolbar title class](https://github.com/Alfresco/alfresco-ng2-components/pull/6487) +- [Alfresco/alfresco-ng2-components#6490 - [ACA-4231] Added a table format to the scan-env command](https://github.com/Alfresco/alfresco-ng2-components/pull/6490) +- [Alfresco/alfresco-ng2-components#6486 - [ACA-4227] [APS] Create a script to check Process Services Management plugin status before running e2e tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6486) +- [Alfresco/alfresco-ng2-components#6495 - Bump @types/selenium-webdriver from 4.0.10 to 4.0.11](https://github.com/Alfresco/alfresco-ng2-components/pull/6495) +- [Alfresco/alfresco-ng2-components#6489 - add missing toolbar tests](https://github.com/Alfresco/alfresco-ng2-components/pull/6489) +- [Alfresco/alfresco-ng2-components#6492 - Bump cspell from 4.2.3 to 5.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6492) +- [Alfresco/alfresco-ng2-components#6491 - Bump js-yaml from 3.14.0 to 4.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6491) +- [Alfresco/alfresco-ng2-components#6496 - [AAE-4369] adf-cli - Build the docker image only once and create tag link](https://github.com/Alfresco/alfresco-ng2-components/pull/6496) +- [Alfresco/alfresco-ng2-components#6460 - [AAE-3472] e2e service task](https://github.com/Alfresco/alfresco-ng2-components/pull/6460) +- [Alfresco/alfresco-ng2-components#6502 - Fix - Add all-tags as additional option](https://github.com/Alfresco/alfresco-ng2-components/pull/6502) +- [Alfresco/alfresco-ng2-components#6503 - Revert "[DRAFT] Adding script for updating users on APS1"](https://github.com/Alfresco/alfresco-ng2-components/pull/6503) +- [Alfresco/alfresco-ng2-components#6504 - docker-publish fix - Push the image with tag](https://github.com/Alfresco/alfresco-ng2-components/pull/6504) +- [Alfresco/alfresco-ng2-components#6505 - updated simpleapp with dynamic callActivity](https://github.com/Alfresco/alfresco-ng2-components/pull/6505) +- [Alfresco/alfresco-ng2-components#6507 - Fix broken tutorial link](https://github.com/Alfresco/alfresco-ng2-components/pull/6507) +- [Alfresco/alfresco-ng2-components#6511 - Bump nconf from 0.11.0 to 0.11.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6511) +- [Alfresco/alfresco-ng2-components#6508 - Bump typedoc from 0.19.2 to 0.20.13](https://github.com/Alfresco/alfresco-ng2-components/pull/6508) +- [Alfresco/alfresco-ng2-components#6445 - fix typescript errors (latest typescript)](https://github.com/Alfresco/alfresco-ng2-components/pull/6445) +- [Alfresco/alfresco-ng2-components#6514 - [ADF-5308] excluded e2e C311290](https://github.com/Alfresco/alfresco-ng2-components/pull/6514) +- [Alfresco/alfresco-ng2-components#6513 - add missing app instance types](https://github.com/Alfresco/alfresco-ng2-components/pull/6513) +- [Alfresco/alfresco-ng2-components#6466 - [AAE-4311] Make sure we have unit test coverage of the error component.](https://github.com/Alfresco/alfresco-ng2-components/pull/6466) +- [Alfresco/alfresco-ng2-components#6515 - [AAE-4379] i18n fixes](https://github.com/Alfresco/alfresco-ng2-components/pull/6515) +- [Alfresco/alfresco-ng2-components#6516 - Bump typedoc from 0.20.13 to 0.20.14](https://github.com/Alfresco/alfresco-ng2-components/pull/6516) +- [Alfresco/alfresco-ng2-components#6512 - Fix loop scenario when the login page is not present in silent login](https://github.com/Alfresco/alfresco-ng2-components/pull/6512) +- [Alfresco/alfresco-ng2-components#6506 - [AAE-3467] - Fix Uploaded files are not being attached after selecting more files](https://github.com/Alfresco/alfresco-ng2-components/pull/6506) +- [Alfresco/alfresco-ng2-components#6412 - [AAE-4241] Populate date and datetime widgets on retrieve metadata](https://github.com/Alfresco/alfresco-ng2-components/pull/6412) +- [Alfresco/alfresco-ng2-components#6518 - adf-cli init-aae-env - Add request as dependency](https://github.com/Alfresco/alfresco-ng2-components/pull/6518) +- [Alfresco/alfresco-ng2-components#6522 - Bump sass-loader from 10.0.5 to 10.1.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6522) +- [Alfresco/alfresco-ng2-components#6521 - Bump @nx/workspace from 10.4.1 to 11.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6521) +- [Alfresco/alfresco-ng2-components#6473 - [ACA-3975]Add process definitions to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6473) +- [Alfresco/alfresco-ng2-components#6524 - [ADF-5308] Unexclude C311290](https://github.com/Alfresco/alfresco-ng2-components/pull/6524) +- [Alfresco/alfresco-ng2-components#6528 - [ACA-3969]Add new process definition to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6528) +- [Alfresco/alfresco-ng2-components#6526 - [AAE-4364] Add delete release api call](https://github.com/Alfresco/alfresco-ng2-components/pull/6526) +- [Alfresco/alfresco-ng2-components#6531 - [AAE-4295] E2E - Add retry api calls for delete descriptor and application](https://github.com/Alfresco/alfresco-ng2-components/pull/6531) +- [Alfresco/alfresco-ng2-components#6519 - [ACA-4233] Call the scan-env adf-cli command before and after each E2E job](https://github.com/Alfresco/alfresco-ng2-components/pull/6519) +- [Alfresco/alfresco-ng2-components#6525 - TestElement prototype to greatly reduce e2e coding time](https://github.com/Alfresco/alfresco-ng2-components/pull/6525) +- [Alfresco/alfresco-ng2-components#6536 - [ADF-5311] Extract infinite select scroll loading logic to a reusable component](https://github.com/Alfresco/alfresco-ng2-components/pull/6536) +- [Alfresco/alfresco-ng2-components#6532 - Bump snyk from 1.437.2 to 1.437.4](https://github.com/Alfresco/alfresco-ng2-components/pull/6532) +- [Alfresco/alfresco-ng2-components#6538 - adf-cli init aps env - Upload the APS default app](https://github.com/Alfresco/alfresco-ng2-components/pull/6538) +- [Alfresco/alfresco-ng2-components#6539 - [ACA-4247] Improve login error logs in scan-env command in adf-cli](https://github.com/Alfresco/alfresco-ng2-components/pull/6539) +- [Alfresco/alfresco-ng2-components#6542 - [ACA-4223] Add process definition name filter](https://github.com/Alfresco/alfresco-ng2-components/pull/6542) +- [Alfresco/alfresco-ng2-components#6540 - [AAE-4426] Add upload from local tab in attach file widget](https://github.com/Alfresco/alfresco-ng2-components/pull/6540) +- [Alfresco/alfresco-ng2-components#6517 - [MNT-22051] - Fix form field mapping when value is zero](https://github.com/Alfresco/alfresco-ng2-components/pull/6517) +- [Alfresco/alfresco-ng2-components#6546 - [ACA-4252] Update authentication to SSO](https://github.com/Alfresco/alfresco-ng2-components/pull/6546) +- [Alfresco/alfresco-ng2-components#6541 - Bump commander from 6.2.1 to 7.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6541) +- [Alfresco/alfresco-ng2-components#6548 - Bump typedoc from 0.20.14 to 0.20.16](https://github.com/Alfresco/alfresco-ng2-components/pull/6548) +- [Alfresco/alfresco-ng2-components#6551 - [ADF-5324] - Expose a new adf-cli command to initialise acs-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6551) +- [Alfresco/alfresco-ng2-components#6523 - [ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI](https://github.com/Alfresco/alfresco-ng2-components/pull/6523) +- [Alfresco/alfresco-ng2-components#6559 - [AAE-4384] Add blank page component](https://github.com/Alfresco/alfresco-ng2-components/pull/6559) +- [Alfresco/alfresco-ng2-components#6566 - Revert "[AAE-4384] Add blank page component"](https://github.com/Alfresco/alfresco-ng2-components/pull/6566) +- [Alfresco/alfresco-ng2-components#6529 - [MNT-22063] - fix form cloud layout](https://github.com/Alfresco/alfresco-ng2-components/pull/6529) +- [Alfresco/alfresco-ng2-components#6564 - [MNT-21636] Fix redirect URL for viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6564) +- [Alfresco/alfresco-ng2-components#6544 - [ACA-3455] [ACA-4250] Create methods needed for candidate tasks](https://github.com/Alfresco/alfresco-ng2-components/pull/6544) +- [Alfresco/alfresco-ng2-components#6574 - Do redirect before implicit button](https://github.com/Alfresco/alfresco-ng2-components/pull/6574) +- [Alfresco/alfresco-ng2-components#6569 - Bump stylelint from 13.8.0 to 13.9.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6569) +- [Alfresco/alfresco-ng2-components#6576 - [AAE-4521] Remove process UI from test projects](https://github.com/Alfresco/alfresco-ng2-components/pull/6576) +- [Alfresco/alfresco-ng2-components#6571 - Bump typedoc from 0.20.14 to 0.20.18](https://github.com/Alfresco/alfresco-ng2-components/pull/6571) +- [Alfresco/alfresco-ng2-components#6570 - Bump husky from 4.3.0 to 4.3.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6570) +- [Alfresco/alfresco-ng2-components#6545 - Getting started tutorial on ADF.](https://github.com/Alfresco/alfresco-ng2-components/pull/6545) +- [Alfresco/alfresco-ng2-components#6567 - [AAE-4384] Add blank page component](https://github.com/Alfresco/alfresco-ng2-components/pull/6567) +- [Alfresco/alfresco-ng2-components#6578 - [ACA-4262] Content node selector - show 2 tabs only in cloud attach f…](https://github.com/Alfresco/alfresco-ng2-components/pull/6578) +- [Alfresco/alfresco-ng2-components#6577 - Fix viewer page loading method](https://github.com/Alfresco/alfresco-ng2-components/pull/6577) +- [Alfresco/alfresco-ng2-components#6556 - [ACA-4258] Add Task Filter Counters](https://github.com/Alfresco/alfresco-ng2-components/pull/6556) +- [Alfresco/alfresco-ng2-components#6586 - "Empty content" centering fixes](https://github.com/Alfresco/alfresco-ng2-components/pull/6586) +- [Alfresco/alfresco-ng2-components#6587 - [AAE-4534] Logout directive - handle the route based on app config](https://github.com/Alfresco/alfresco-ng2-components/pull/6587) +- [Alfresco/alfresco-ng2-components#6591 - improve the init by failing in case the app are not running](https://github.com/Alfresco/alfresco-ng2-components/pull/6591) +- [Alfresco/alfresco-ng2-components#6593 - Check if the order matter](https://github.com/Alfresco/alfresco-ng2-components/pull/6593) +- [Alfresco/alfresco-ng2-components#6601 - [AAE-4546] Update simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6601) +- [Alfresco/alfresco-ng2-components#6614 - Install NX if is in Travis Update lint.sh](https://github.com/Alfresco/alfresco-ng2-components/pull/6614) +- [Alfresco/alfresco-ng2-components#6616 - [AAE-4547] Add new process and form to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6616) +- [Alfresco/alfresco-ng2-components#6608 - [AAE-4553] Improve error logs in scan-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6608) +- [Alfresco/alfresco-ng2-components#6575 - [AAE-4427] Embed upload progress dialog inside the upload from your d…](https://github.com/Alfresco/alfresco-ng2-components/pull/6575) +- [Alfresco/alfresco-ng2-components#6592 - [AAE-4430] Upload from local tab visibility with info icon error message](https://github.com/Alfresco/alfresco-ng2-components/pull/6592) +- [Alfresco/alfresco-ng2-components#6630 - [ADF-5328] - fix replacing priority values error](https://github.com/Alfresco/alfresco-ng2-components/pull/6630) +- [Alfresco/alfresco-ng2-components#6557 - [AAE-4504] FE - [ADF] Fetch destination Folder Path from a static path](https://github.com/Alfresco/alfresco-ng2-components/pull/6557) +- [Alfresco/alfresco-ng2-components#6635 - Bump @angular/cli from 10.2.0 to 11.1.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6635) +- [Alfresco/alfresco-ng2-components#6634 - Bump @types/node from 14.14.8 to 14.14.25](https://github.com/Alfresco/alfresco-ng2-components/pull/6634) +- [Alfresco/alfresco-ng2-components#6633 - Bump snyk from 1.437.4 to 1.445.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6633) +- [Alfresco/alfresco-ng2-components#6629 - Update simpleapp and candidatebaseapp: destinationFolderPath and add attach file widgets](https://github.com/Alfresco/alfresco-ng2-components/pull/6629) +- [Alfresco/alfresco-ng2-components#6627 - [AAE-4547] Add new process definition to simpleapp](https://github.com/Alfresco/alfresco-ng2-components/pull/6627) +- [Alfresco/alfresco-ng2-components#6580 - [ADF-4329][ASD-5330] plus Improve e2e](https://github.com/Alfresco/alfresco-ng2-components/pull/6580) +- [Alfresco/alfresco-ng2-components#6628 - [ACA-4265]Refactor attachFileFromLocal method](https://github.com/Alfresco/alfresco-ng2-components/pull/6628) +- [Alfresco/alfresco-ng2-components#6642 - Bump ejs from 3.1.5 to 3.1.6](https://github.com/Alfresco/alfresco-ng2-components/pull/6642) +- [Alfresco/alfresco-ng2-components#6643 - Bump snyk from 1.445.0 to 1.446.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6643) +- [Alfresco/alfresco-ng2-components#6626 - [ATS-854] Add media tracks to player from webvtt rendition](https://github.com/Alfresco/alfresco-ng2-components/pull/6626) +- [Alfresco/alfresco-ng2-components#6600 - Tutorial on creating ADF based applications.](https://github.com/Alfresco/alfresco-ng2-components/pull/6600) +- [Alfresco/alfresco-ng2-components#6641 - Bump stylelint from 13.8.0 to 13.9.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6641) +- [Alfresco/alfresco-ng2-components#6638 - Update branch for JS-API PR#3205](https://github.com/Alfresco/alfresco-ng2-components/pull/6638) +- [Alfresco/alfresco-ng2-components#6644 - Update simpleapp to use candidate group on attach-local-file-on-task …](https://github.com/Alfresco/alfresco-ng2-components/pull/6644) +- [Alfresco/alfresco-ng2-components#6620 - [AAE-4529] Refactor Notification History Component](https://github.com/Alfresco/alfresco-ng2-components/pull/6620) +- [Alfresco/alfresco-ng2-components#6639 - [ADF-5331] - Alpha ADF/JS-API update has been successfully created.](https://github.com/Alfresco/alfresco-ng2-components/pull/6639) +- [Alfresco/alfresco-ng2-components#6636 - [AAE-4569] Added readOnly property to breadcrumb components](https://github.com/Alfresco/alfresco-ng2-components/pull/6636) +- [Alfresco/alfresco-ng2-components#6650 - Update children script ](https://github.com/Alfresco/alfresco-ng2-components/pull/6650) +- [Alfresco/alfresco-ng2-components#6652 - Bump snyk from 1.446.0 to 1.448.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6652) +- [Alfresco/alfresco-ng2-components#6656 - [ACA-4266] Improve governance plugin check logs](https://github.com/Alfresco/alfresco-ng2-components/pull/6656) +- [Alfresco/alfresco-ng2-components#6654 - Bump typescript from 3.9.7 to 3.9.8](https://github.com/Alfresco/alfresco-ng2-components/pull/6654) +- [Alfresco/alfresco-ng2-components#6655 - Bump @nx/workspace from 11.1.2 to 11.2.11](https://github.com/Alfresco/alfresco-ng2-components/pull/6655) +- [Alfresco/alfresco-ng2-components#6657 - Bump ini from 1.3.5 to 1.3.7](https://github.com/Alfresco/alfresco-ng2-components/pull/6657) +- [Alfresco/alfresco-ng2-components#6543 - [ADF-5313] Merge both form-fields POs in one because are identical](https://github.com/Alfresco/alfresco-ng2-components/pull/6543) +- [Alfresco/alfresco-ng2-components#6658 - [MNT-21636] Refactor redirect URL](https://github.com/Alfresco/alfresco-ng2-components/pull/6658) +- [Alfresco/alfresco-ng2-components#6663 - updated simpleapp with outcome visibility](https://github.com/Alfresco/alfresco-ng2-components/pull/6663) +- [Alfresco/alfresco-ng2-components#6602 - [ADF-5316] - Content Type](https://github.com/Alfresco/alfresco-ng2-components/pull/6602) +- [Alfresco/alfresco-ng2-components#6668 - Bump @angular/cli from 11.1.3 to 11.2.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6668) +- [Alfresco/alfresco-ng2-components#6669 - Bump stylelint from 13.9.0 to 13.10.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6669) +- [Alfresco/alfresco-ng2-components#6666 - Bump @types/node from 14.14.25 to 14.14.26](https://github.com/Alfresco/alfresco-ng2-components/pull/6666) +- [Alfresco/alfresco-ng2-components#6667 - Bump snyk from 1.448.0 to 1.452.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6667) +- [Alfresco/alfresco-ng2-components#6664 - [AAE-4429] Add readOnly breadcrumb to upload from device tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6664) +- [Alfresco/alfresco-ng2-components#6671 - Fix promise redirect](https://github.com/Alfresco/alfresco-ng2-components/pull/6671) +- [Alfresco/alfresco-ng2-components#6672 - Bump socket.io from 2.3.0 to 2.4.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6672) +- [Alfresco/alfresco-ng2-components#6670 - Update branch for JS-API PR#3207](https://github.com/Alfresco/alfresco-ng2-components/pull/6670) +- [Alfresco/alfresco-ng2-components#6651 - [ADF-5332] Login basic auth - Ability to override the successRoute from app.config.json](https://github.com/Alfresco/alfresco-ng2-components/pull/6651) +- [Alfresco/alfresco-ng2-components#6673 - excluded flaky test C260241](https://github.com/Alfresco/alfresco-ng2-components/pull/6673) +- [Alfresco/alfresco-ng2-components#6607 - [ACA-4259] Task filter counter notifications](https://github.com/Alfresco/alfresco-ng2-components/pull/6607) +- [Alfresco/alfresco-ng2-components#6674 - [AAE-3326] Content node selector - sort files by createdAt desc by de…](https://github.com/Alfresco/alfresco-ng2-components/pull/6674) +- [Alfresco/alfresco-ng2-components#6685 - configure dependabot excludes](https://github.com/Alfresco/alfresco-ng2-components/pull/6685) +- [Alfresco/alfresco-ng2-components#6688 - Avoid to recall the method if no change detect is affected](https://github.com/Alfresco/alfresco-ng2-components/pull/6688) +- [Alfresco/alfresco-ng2-components#6689 - Update branch for JS-API PR#3224](https://github.com/Alfresco/alfresco-ng2-components/pull/6689) +- [Alfresco/alfresco-ng2-components#6549 - [ADF-5305] - Added aspect list component](https://github.com/Alfresco/alfresco-ng2-components/pull/6549) +- [Alfresco/alfresco-ng2-components#6695 - Bump snyk from 1.452.0 to 1.456.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6695) +- [Alfresco/alfresco-ng2-components#6693 - Aspect List - added spinner and refresh](https://github.com/Alfresco/alfresco-ng2-components/pull/6693) +- [Alfresco/alfresco-ng2-components#6694 - Bump apollo-angular from 2.2.0 to 2.3.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6694) +- [Alfresco/alfresco-ng2-components#6665 - [AAE-4452] FE - [ADF] Fetch destination folder path from mapped variables](https://github.com/Alfresco/alfresco-ng2-components/pull/6665) +- [Alfresco/alfresco-ng2-components#6698 - Enabling default aspects for card component](https://github.com/Alfresco/alfresco-ng2-components/pull/6698) +- [Alfresco/alfresco-ng2-components#6697 - [ADF-5341] Add Apollo direct dependencies](https://github.com/Alfresco/alfresco-ng2-components/pull/6697) +- [Alfresco/alfresco-ng2-components#6699 - Improve update-project script to update adf-cli and adf-testing packages](https://github.com/Alfresco/alfresco-ng2-components/pull/6699) +- [Alfresco/alfresco-ng2-components#6691 - [MNT-21636] Use URLTree for redirect](https://github.com/Alfresco/alfresco-ng2-components/pull/6691) +- [Alfresco/alfresco-ng2-components#6690 - [AAE-4637] Fix varying height of dialog when clicking on the Upload from your device tab](https://github.com/Alfresco/alfresco-ng2-components/pull/6690) +- [Alfresco/alfresco-ng2-components#6700 - [ACA-3881] Able to start form with preselected ACS nodes](https://github.com/Alfresco/alfresco-ng2-components/pull/6700) +- [Alfresco/alfresco-ng2-components#6696 - [ADF-5339] ESCAPE should close opened dialog not the overlay viewer](https://github.com/Alfresco/alfresco-ng2-components/pull/6696) +- [Alfresco/alfresco-ng2-components#6706 - Update branch for JS-API PR#3232](https://github.com/Alfresco/alfresco-ng2-components/pull/6706) +- [Alfresco/alfresco-ng2-components#6704 - [AAE-4608] Use smartrunner version 2 and add SuperCache (workspaces + S3 combo)!](https://github.com/Alfresco/alfresco-ng2-components/pull/6704) +- [Alfresco/alfresco-ng2-components#6714 - [AAE-4701] ADF check env - Fail if the env is not reachable](https://github.com/Alfresco/alfresco-ng2-components/pull/6714) +- [Alfresco/alfresco-ng2-components#6715 - Auto PR - Add the ADF number to easily identify the version](https://github.com/Alfresco/alfresco-ng2-components/pull/6715) +- [Alfresco/alfresco-ng2-components#6684 - [ACA-4208] - Fix process date filter for range](https://github.com/Alfresco/alfresco-ng2-components/pull/6684) +- [Alfresco/alfresco-ng2-components#6710 - Bump concurrently from 5.3.0 to 6.0.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6710) +- [Alfresco/alfresco-ng2-components#6712 - Bump typedoc from 0.20.14 to 0.20.27](https://github.com/Alfresco/alfresco-ng2-components/pull/6712) +- [Alfresco/alfresco-ng2-components#6707 - [AAE-4661] Fix search results are still displayed when search term ge…](https://github.com/Alfresco/alfresco-ng2-components/pull/6707) +- [Alfresco/alfresco-ng2-components#6719 - [AAE-4203][AAE-4292] - Fix breadcrumb and folder navigation issues wh…](https://github.com/Alfresco/alfresco-ng2-components/pull/6719) +- [Alfresco/alfresco-ng2-components#6717 - [AAE-4624] - fix user initials for identity user with bpm](https://github.com/Alfresco/alfresco-ng2-components/pull/6717) +- [Alfresco/alfresco-ng2-components#6418 - [ADF-5285] Re-include test](https://github.com/Alfresco/alfresco-ng2-components/pull/6418) +- [Alfresco/alfresco-ng2-components#6723 - [AAE-4661] Fix not showing results when filtering by content model pr…](https://github.com/Alfresco/alfresco-ng2-components/pull/6723) +- [Alfresco/alfresco-ng2-components#6599 - [AAE-3992] Process Filter bug fixes and improvements](https://github.com/Alfresco/alfresco-ng2-components/pull/6599) +- [Alfresco/alfresco-ng2-components#6705 - Create Image from PR if request](https://github.com/Alfresco/alfresco-ng2-components/pull/6705) +- [Alfresco/alfresco-ng2-components#6724 - [AAE-4710] Error-proof scan-env](https://github.com/Alfresco/alfresco-ng2-components/pull/6724) +- [Alfresco/alfresco-ng2-components#6462 - cli init-aae - Remove useless properties](https://github.com/Alfresco/alfresco-ng2-components/pull/6462) +- [Alfresco/alfresco-ng2-components#6725 - Override the pr title in case already exists](https://github.com/Alfresco/alfresco-ng2-components/pull/6725) +- [Alfresco/alfresco-ng2-components#6730 - [ADF-5346] DocumentList - header is not scrollable when the width of the browser is small](https://github.com/Alfresco/alfresco-ng2-components/pull/6730) +- [Alfresco/alfresco-ng2-components#6732 - [ACA-4213] - Fix search datetime range in different timezones](https://github.com/Alfresco/alfresco-ng2-components/pull/6732) +- [Alfresco/alfresco-ng2-components#6713 - [REPO-5552] more filtering capabilities for aspect/type api ](https://github.com/Alfresco/alfresco-ng2-components/pull/6713) +- [Alfresco/alfresco-ng2-components#6727 - [ADF-5344] - fixed counter for custom aspects](https://github.com/Alfresco/alfresco-ng2-components/pull/6727) +- [Alfresco/alfresco-ng2-components#6726 - [ACA-4299] Add e2e tests for task counters and notifications](https://github.com/Alfresco/alfresco-ng2-components/pull/6726) +- [Alfresco/alfresco-ng2-components#6735 - Bump css-loader from 4.3.0 to 5.1.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6735) +- [Alfresco/alfresco-ng2-components#6740 - [ACA-4304] - Remove userinfo name on small screens (only profile icon…](https://github.com/Alfresco/alfresco-ng2-components/pull/6740) +- [Alfresco/alfresco-ng2-components#6741 - [ACA-4299] Fix C593066 e2e test - task counter](https://github.com/Alfresco/alfresco-ng2-components/pull/6741) +- [Alfresco/alfresco-ng2-components#6737 - [ADF-5347] Viewer - Closing PDF before all pages are loaded causes errors](https://github.com/Alfresco/alfresco-ng2-components/pull/6737) +- [Alfresco/alfresco-ng2-components#6736 - Bump mini-css-extract-plugin from 0.11.2 to 1.3.9](https://github.com/Alfresco/alfresco-ng2-components/pull/6736) +- [Alfresco/alfresco-ng2-components#6734 - Bump cspell from 5.1.3 to 5.3.1](https://github.com/Alfresco/alfresco-ng2-components/pull/6734) +- [Alfresco/alfresco-ng2-components#6746 - [ADF-5345] - fixed border for aspect dialog](https://github.com/Alfresco/alfresco-ng2-components/pull/6746) +- [Alfresco/alfresco-ng2-components#6742 - [ATS-873] Fix Subtitles in audio files](https://github.com/Alfresco/alfresco-ng2-components/pull/6742) +- [Alfresco/alfresco-ng2-components#6731 - [AAE-3543] Attach button enabled only when all files uploaded](https://github.com/Alfresco/alfresco-ng2-components/pull/6731) +- [Alfresco/alfresco-ng2-components#6745 - [ADF-5349] WebSocket protocol based on BpmHost](https://github.com/Alfresco/alfresco-ng2-components/pull/6745) +- [Alfresco/alfresco-ng2-components#6748 - Bump snyk from 1.456.0 to 1.462.0](https://github.com/Alfresco/alfresco-ng2-components/pull/6748) +- [Alfresco/alfresco-ng2-components#6749 - Bump husky from 4.3.8 to 5.1.2](https://github.com/Alfresco/alfresco-ng2-components/pull/6749) +- [Alfresco/alfresco-ng2-components#6744 - [ADF-5348] - fix user info icons](https://github.com/Alfresco/alfresco-ng2-components/pull/6744) +- [Alfresco/alfresco-ng2-components#6752 - [ADF-5285] re-include test C299187](https://github.com/Alfresco/alfresco-ng2-components/pull/6752) +- [Alfresco/alfresco-ng2-components#6750 - Bump cspell from 5.3.1 to 5.3.3](https://github.com/Alfresco/alfresco-ng2-components/pull/6750) +- [Alfresco/alfresco-ng2-components#6753 - [AAE-4547] Add getInputValue() in TestElement class](https://github.com/Alfresco/alfresco-ng2-components/pull/6753) +- [Alfresco/alfresco-ng2-components#6747 - Update branch for JS-API PR#3256](https://github.com/Alfresco/alfresco-ng2-components/pull/6747) +- [Alfresco/alfresco-ng2-components#6763 - [ACA-4202] - refreshing the preview when version has changed](https://github.com/Alfresco/alfresco-ng2-components/pull/6763) +- [Alfresco/alfresco-ng2-components#6764 - Revert "[AAE-4637] Fix varying height of dialog when clicking on the Upload from your device tab"](https://github.com/Alfresco/alfresco-ng2-components/pull/6764) Please refer to the [Alfresco issue tracker](https://issues.alfresco.com/jira/projects/ADF/issues/ADF-581?filter=allopenissues) for other known issues in this release. If you have any questions about the release, please contact us using [Gitter](https://gitter.im/Alfresco/alfresco-ng2-components). diff --git a/e2e/content-services/pages/permissions.page.ts b/e2e/content-services/pages/permissions.page.ts new file mode 100644 index 00000000000..70fdeca987c --- /dev/null +++ b/e2e/content-services/pages/permissions.page.ts @@ -0,0 +1,97 @@ +/*! + * @license + * Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { + AddPermissionsDialogPage, + BrowserActions, + DataTableComponentPage, + DropdownPage, + TestElement +} from '@alfresco/adf-testing'; +import { browser } from 'protractor'; + +export class PermissionsPage { + + dataTableComponentPage = new DataTableComponentPage(); + addPermissionsDialog = new AddPermissionsDialogPage(); + + rootElement = 'adf-permission-manager-card'; + inheritedButton = '[data-automation-id="adf-inherit-toggle-button"]'; + errorElement = TestElement.byId('adf-permission-manager-error'); + localPermissionList = TestElement.byCss('[data-automation-id="adf-locally-set-permission"]'); + addPermissionButton = TestElement.byCss('button[data-automation-id=\'adf-add-permission-button\']'); + + async changePermission(name: string, role: string): Promise { + await browser.sleep(1000); + await this.clickRoleDropdownByUserOrGroupName(name); + await new DropdownPage().selectOption(role); + await this.dataTableComponentPage.checkRowByContentIsNotSelected(name); + } + + async checkUserIsAdded(id: string) { + const userOrGroupName = TestElement.byCss('div[data-automation-id="' + id + '"]'); + await userOrGroupName.waitPresent(); + } + + async getRoleCellValue(username: string): Promise { + const locator = this.dataTableComponentPage.getCellByRowContentAndColumn('Users and Groups', username, 'Role'); + return BrowserActions.getText(locator); + } + + async clickRoleDropdownByUserOrGroupName(name: string): Promise { + const row = this.dataTableComponentPage.getRow('Users and Groups', name); + await row.click(); + await BrowserActions.click(row.$('[id="adf-select-role-permission"] .mat-select-trigger')); + await TestElement.byCss('.mat-mdc-select-panel').waitVisible(); + } + + async clickDeletePermissionButton(username: string): Promise { + const userOrGroupName = TestElement.byCss(`[data-automation-id="adf-delete-permission-button-${username}"]`); + await userOrGroupName.waitPresent(); + await userOrGroupName.click(); + } + + async checkUserIsDeleted(username: string): Promise { + const userOrGroupName = TestElement.byCss('div[data-automation-id="' + username + '"]'); + await userOrGroupName.waitNotPresent(); + } + + async noPermissionContent(): Promise { + const noPermission = TestElement.byCss('.adf-no-permission__template--text'); + return noPermission.getText(); + } + + async checkPermissionManagerDisplayed(): Promise { + await TestElement.byId(this.rootElement).waitVisible(); + } + + async checkPermissionListDisplayed(): Promise { + await browser.sleep(500); + await this.localPermissionList.waitVisible(); + } + + async isInherited(): Promise { + const inheritButton = TestElement.byCss(this.inheritedButton); + await inheritButton.waitVisible(); + return (await inheritButton.getAttribute('class')).indexOf('mat-checked') !== -1; + } + + async toggleInheritPermission(): Promise { + const inheritButton = TestElement.byCss(`${this.inheritedButton} label`); + await inheritButton.click(); + } +} diff --git a/e2e/core/pages/content-services.page.ts b/e2e/core/pages/content-services.page.ts index a8d3425ed2f..8d6aa6e1b48 100644 --- a/e2e/core/pages/content-services.page.ts +++ b/e2e/core/pages/content-services.page.ts @@ -78,6 +78,21 @@ export class ContentServicesPage { await BrowserActions.click(this.versionManagerAction); } + async clickFileHyperlink(fileName: string): Promise { + const hyperlink = this.contentList.dataTablePage().getFileHyperlink(fileName); + await BrowserActions.click(hyperlink); + } + + async checkFileHyperlinkIsEnabled(fileName: string): Promise { + const hyperlink = this.contentList.dataTablePage().getFileHyperlink(fileName); + await BrowserVisibility.waitUntilElementIsVisible(hyperlink); + } + + async clickHyperlinkNavigationToggle(): Promise { + const hyperlinkToggle = element(by.cssContainingText('.mat-mdc-slide-toggle', 'Hyperlink navigation')); + await BrowserActions.click(hyperlinkToggle); + } + async getElementsDisplayedId() { return this.contentList.dataTablePage().getAllRowsColumnValues(this.columns.nodeId); } @@ -235,6 +250,15 @@ export class ContentServicesPage { await BrowserVisibility.waitUntilElementIsClickable(this.uploadFileButton); } + async uploadButtonIsEnabled(): Promise { + return this.uploadFileButton.isEnabled(); + } + + async enableInfiniteScrolling(): Promise { + const infiniteScrollButton = element(by.cssContainingText('.mat-mdc-slide-toggle', 'Enable Infinite Scrolling')); + await BrowserActions.click(infiniteScrollButton); + } + async enableMediumTimeFormat(): Promise { const mediumTimeFormat = $('#enableMediumTimeFormat'); await BrowserActions.click(mediumTimeFormat); diff --git a/e2e/resources/adf/allFileTypes/documents/text/a_vsd_file.vsd b/e2e/resources/adf/allFileTypes/documents/text/a_vsd_file.vsd index 457995406e7..a317c805231 100644 Binary files a/e2e/resources/adf/allFileTypes/documents/text/a_vsd_file.vsd and b/e2e/resources/adf/allFileTypes/documents/text/a_vsd_file.vsd differ diff --git a/e2e/resources/adf/allFileTypes/documents/word/a_dotx_file.dotx b/e2e/resources/adf/allFileTypes/documents/word/a_dotx_file.dotx index 87f95e892d7..de91a4055ca 100644 Binary files a/e2e/resources/adf/allFileTypes/documents/word/a_dotx_file.dotx and b/e2e/resources/adf/allFileTypes/documents/word/a_dotx_file.dotx differ diff --git a/e2e/resources/adf/allFileTypes/documents/word/a_sxw_file.sxw b/e2e/resources/adf/allFileTypes/documents/word/a_sxw_file.sxw index 3f4be982a24..a484246fcb1 100644 Binary files a/e2e/resources/adf/allFileTypes/documents/word/a_sxw_file.sxw and b/e2e/resources/adf/allFileTypes/documents/word/a_sxw_file.sxw differ diff --git a/lib/cli/.eslintrc.json b/lib/cli/.eslintrc.json index d8d4e2cd05c..df8b556bd16 100644 --- a/lib/cli/.eslintrc.json +++ b/lib/cli/.eslintrc.json @@ -4,7 +4,7 @@ "overrides": [ { "files": ["*.ts"], - "extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"], + "extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"], "rules": { "prefer-arrow/prefer-arrow-functions": "off", "@typescript-eslint/no-var-requires": "off", @@ -37,7 +37,7 @@ }, { "files": ["*.html"], - "extends": ["plugin:@nrwl/nx/angular-template"], + "extends": ["plugin:@nx/angular-template"], "rules": {} } ] diff --git a/lib/cli/package-lock.json b/lib/cli/package-lock.json index 3ece4181fa2..d305712110f 100644 --- a/lib/cli/package-lock.json +++ b/lib/cli/package-lock.json @@ -9,11 +9,11 @@ "version": "6.4.0", "license": "Apache-2.0", "dependencies": { - "@alfresco/js-api": ">=7.1.0-1372", + "@alfresco/js-api": ">=7.1.0-1367", "commander": "^6.2.1", "ejs": "^3.1.9", "license-checker": "^25.0.1", - "node-fetch": "^2.7.0", + "request": "^2.88.2", "rxjs": "^6.6.6", "shelljs": "^0.8.3", "spdx-license-list": "^5.0.0" @@ -30,24 +30,15 @@ } }, "node_modules/@alfresco/js-api": { - "version": "7.1.0-1409", - "resolved": "https://registry.npmjs.org/@alfresco/js-api/-/js-api-7.1.0-1409.tgz", - "integrity": "sha512-HbA1FBkSgaibEjgeoo7o1umNksc+TiDRlG6VCZWNt5twn2MT1oJZ70TuPpl1oDdU3c34B5SHZb5gKz4vHUToWw==", + "version": "7.1.0-1367", + "resolved": "https://registry.npmjs.org/@alfresco/js-api/-/js-api-7.1.0-1367.tgz", + "integrity": "sha512-GfgKwQdQggjcK9Bp8Kr5t55XVRGF26PS6VDtU12K+/PlTrQChotICUS8UEC37GGRYE5zMp+uQhcARs7yBzaRjA==", "dependencies": { "event-emitter": "^0.3.5", - "jsdom": "^22.1.0", "superagent": "^8.0.9", "tslib": "^2.6.1" } }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "engines": { - "node": ">= 10" - } - }, "node_modules/@types/ejs": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz", @@ -86,25 +77,24 @@ "@types/node": "*" } }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - }, "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dependencies": { - "debug": "4" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">= 6.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ansi-styles": { @@ -131,6 +121,22 @@ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, + "node_modules/asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } + }, "node_modules/async": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", @@ -141,11 +147,32 @@ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, "node_modules/balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -167,6 +194,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -227,16 +259,10 @@ "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==" }, - "node_modules/cssstyle": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-3.0.0.tgz", - "integrity": "sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==", - "dependencies": { - "rrweb-cssom": "^0.6.0" - }, - "engines": { - "node": ">=14" - } + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "node_modules/d": { "version": "1.0.1", @@ -247,17 +273,15 @@ "type": "^1.0.1" } }, - "node_modules/data-urls": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz", - "integrity": "sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==", + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^12.0.0" + "assert-plus": "^1.0.0" }, "engines": { - "node": ">=14" + "node": ">=0.10" } }, "node_modules/debug": { @@ -284,11 +308,6 @@ "node": "*" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -306,15 +325,13 @@ "wrappy": "1" } }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "dependencies": { - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, "node_modules/ejs": { @@ -331,17 +348,6 @@ "node": ">=0.10.0" } }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/es5-ext": { "version": "0.10.62", "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", @@ -405,6 +411,29 @@ "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, "node_modules/fast-safe-stringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", @@ -437,6 +466,14 @@ "node": ">=10" } }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } + }, "node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", @@ -488,6 +525,14 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, "node_modules/glob": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", @@ -512,6 +557,27 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -566,51 +632,18 @@ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dependencies": { - "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8", + "npm": ">=1.3.7" } }, "node_modules/inflight": { @@ -646,10 +679,15 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, "node_modules/jake": { "version": "10.8.6", @@ -732,65 +770,44 @@ "node": ">=8" } }, - "node_modules/jsdom": { - "version": "22.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz", - "integrity": "sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==", - "dependencies": { - "abab": "^2.0.6", - "cssstyle": "^3.0.0", - "data-urls": "^4.0.0", - "decimal.js": "^10.4.3", - "domexception": "^4.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.4", - "parse5": "^7.1.2", - "rrweb-cssom": "^0.6.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^12.0.1", - "ws": "^8.13.0", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, - "node_modules/jsdom/node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" }, "engines": { - "node": ">=6" + "node": ">=0.6.0" } }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "node_modules/jsprim/node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "node_modules/license-checker": { "version": "25.0.1", @@ -914,44 +931,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/nopt": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", @@ -988,10 +967,13 @@ "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" }, - "node_modules/nwsapi": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", - "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } }, "node_modules/object-inspect": { "version": "1.12.3", @@ -1034,17 +1016,6 @@ "os-tmpdir": "^1.0.0" } }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -1058,15 +1029,20 @@ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, "node_modules/psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" }, "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "engines": { "node": ">=6" } @@ -1085,11 +1061,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - }, "node_modules/read-installed": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz", @@ -1148,10 +1119,57 @@ "node": ">= 0.10" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "engines": { + "node": ">=0.6" + } }, "node_modules/resolve": { "version": "1.19.0", @@ -1165,11 +1183,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/rrweb-cssom": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", - "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==" - }, "node_modules/rxjs": { "version": "6.6.7", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", @@ -1186,22 +1199,30 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=v12.22.7" - } - }, "node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -1314,6 +1335,30 @@ "spdx-ranges": "^2.0.0" } }, + "node_modules/sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/superagent": { "version": "8.1.2", "resolved": "https://registry.npmjs.org/superagent/-/superagent-8.1.2.tgz", @@ -1345,20 +1390,16 @@ "node": ">=4" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - }, - "node_modules/tr46": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", - "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "dependencies": { - "punycode": "^2.3.0" + "psl": "^1.1.28", + "punycode": "^2.1.1" }, "engines": { - "node": ">=14" + "node": ">=0.8" } }, "node_modules/treeify": { @@ -1374,6 +1415,22 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, "node_modules/type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -1392,21 +1449,12 @@ "node": ">=4.2.0" } }, - "node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "punycode": "^2.1.0" } }, "node_modules/util-extend": { @@ -1414,6 +1462,15 @@ "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", "integrity": "sha1-p8IW0mdUUWljeztu3GypEZ4v+T8=" }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -1423,54 +1480,17 @@ "spdx-expression-parse": "^3.0.0" } }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz", - "integrity": "sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==", - "dependencies": { - "tr46": "^4.1.1", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=14" + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" } }, "node_modules/wrappy": { @@ -1478,39 +1498,6 @@ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, - "node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", diff --git a/lib/cli/project.json b/lib/cli/project.json new file mode 100644 index 00000000000..f99d131764e --- /dev/null +++ b/lib/cli/project.json @@ -0,0 +1,72 @@ +{ + "name": "cli", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "lib/cli", + "projectType": "library", + "prefix": "adf", + "targets": { + "build": { + "executor": "nx:run-commands", + "options": { + "commands": ["cd lib/cli && npm i && npm run dist"], + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + }, + "configurations": { + "production": { + "tsConfig": "lib/cli/tsconfig.json" + } + }, + "defaultConfiguration": "production" + }, + "bundle": { + "executor": "nx:run-commands", + "options": { + "commands": [ + { + "command": "echo cli bundle created" + } + ] + }, + "dependsOn": ["copyToNodeModules"] + }, + "copyToNodeModules": { + "executor": "nx:run-commands", + "options": { + "commands": [ + { + "command": "rm -rf ./node_modules/@alfresco/adf-cli/ && mkdir -p ./node_modules/@alfresco/adf-cli/ && cp -R ./dist/libs/cli/* ./node_modules/@alfresco/adf-cli/" + } + ] + }, + "dependsOn": [ + { + "target": "build" + } + ] + }, + "lint": { + "executor": "@nrwl/linter:eslint", + "options": { + "lintFilePatterns": ["lib/cli/**/*.ts", "lib/cli/**/*.html"] + } + }, + "npm-publish": { + "executor": "nx:run-commands", + "dependsOn": ["build"], + "options": { + "cwd": "dist/libs/cli", + "commands": [ + { + "command": "npm publish --tag {args.tag}", + "forwardAllArgs": true + } + ], + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + } + } + } +} diff --git a/lib/content-services/.eslintrc.json b/lib/content-services/.eslintrc.json index 77aa1ad8f13..26a12941662 100644 --- a/lib/content-services/.eslintrc.json +++ b/lib/content-services/.eslintrc.json @@ -4,7 +4,7 @@ "overrides": [ { "files": ["*.ts"], - "extends": ["plugin:@nrwl/nx/angular", "plugin:@angular-eslint/template/process-inline-templates"], + "extends": ["plugin:@nx/angular", "plugin:@angular-eslint/template/process-inline-templates"], "rules": { "jsdoc/newline-after-description": "warn", "@typescript-eslint/naming-convention": "warn", @@ -73,7 +73,7 @@ }, { "files": ["*.html"], - "extends": ["plugin:@nrwl/nx/angular-template"], + "extends": ["plugin:@nx/angular-template"], "rules": { "@angular-eslint/template/no-autofocus": "error", "@angular-eslint/template/no-positive-tabindex": "error" diff --git a/lib/content-services/.storybook/main.js b/lib/content-services/.storybook/main.js index dfbcb477ba6..b4c94658aef 100644 --- a/lib/content-services/.storybook/main.js +++ b/lib/content-services/.storybook/main.js @@ -1,9 +1,18 @@ -const rootMain = require('../../../.storybook/main'); +var rootPath = require('../../../.storybook/main'); module.exports = { - ...rootMain, - core: { ...rootMain.core, builder: 'webpack5' }, - stories: [...rootMain.stories, '../**/*.stories.@(js|jsx|ts|tsx)'], - staticDirs: [...rootMain.staticDirs, { from: __dirname + '/../src/lib/i18n', to: 'assets/adf-content-services/i18n' }], - addons: [...rootMain.addons] + rootMain: rootPath, + stories: [...rootPath.stories, '../**/*.stories.@(js|jsx|ts|tsx)'], + staticDirs: [...rootPath.staticDirs, { from: __dirname + '/../src/lib/i18n', to: 'assets/adf-content-services/i18n' }], + addons: ['@storybook/addon-essentials', ...rootPath.addons ], + storyStoreV7: false, + + framework: { + name: '@storybook/angular', + options: {} + }, + + docs: { + autodocs: true + } }; diff --git a/lib/content-services/project.json b/lib/content-services/project.json new file mode 100644 index 00000000000..5c5676c25e3 --- /dev/null +++ b/lib/content-services/project.json @@ -0,0 +1,126 @@ +{ + "name": "content-services", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "lib/content-services/src", + "projectType": "library", + "prefix": "adf", + "targets": { + "build": { + "executor": "@angular-devkit/build-angular:ng-packagr", + "options": { + "tsConfig": "lib/content-services/tsconfig.lib.json", + "project": "lib/content-services/ng-package.json" + }, + "configurations": { + "production": { + "project": "lib/content-services/ng-package.json", + "tsConfig": "lib/content-services/tsconfig.lib.prod.json" + } + }, + "defaultConfiguration": "production" + }, + "test": { + "executor": "@angular-devkit/build-angular:karma", + "options": { + "main": "lib/content-services/src/test.ts", + "tsConfig": "lib/content-services/tsconfig.spec.json", + "karmaConfig": "lib/content-services/karma.conf.js", + "sourceMap": true, + "codeCoverage": true, + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + } + }, + "lint": { + "executor": "@nrwl/linter:eslint", + "options": { + "lintFilePatterns": ["lib/content-services/**/*.ts", "lib/content-services/**/*.html"] + } + }, + "storybook": { + "executor": "@storybook/angular:start-storybook", + "options": { + "port": 4400, + "browserTarget": "content-services:storybook", + "configDir": "lib/content-services/.storybook", + "compodoc": false, + "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", + "demo-shell/src/styles.scss", + "demo-shell/src/custom-style-dev.scss", + "node_modules/cropperjs/dist/cropper.min.css", + "node_modules/pdfjs-dist/web/pdf_viewer.css" + ], + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + }, + "configurations": { + "ci": { + "quiet": true + } + } + }, + "build-storybook": { + "executor": "@storybook/angular:build-storybook", + "options": { + "browserTarget": "content-services:build-storybook", + "configDir": "lib/content-services/.storybook", + "outputDir": "dist/storybook/content-services", + "compodoc": false, + "styles": [ + "demo-shell/src/assets/fonts/muli/muli.css", + "demo-shell/src/styles.scss", + "demo-shell/src/custom-style-dev.scss", + "node_modules/cropperjs/dist/cropper.min.css", + "node_modules/pdfjs-dist/web/pdf_viewer.css" + ], + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + }, + "configurations": { + "ci": { + "quiet": true + } + } + }, + "spellcheck": { + "executor": "nx:run-commands", + "options": { + "commands": [ + { + "command": "npx cspell 'lib/content-services/**/*.ts'" + } + ] + } + }, + "stylelint": { + "executor": "nx:run-commands", + "options": { + "commands": [ + { + "command": "npx stylelint lib/content-services/**/*.scss --config stylelint-config.json" + } + ] + } + }, + "npm-publish": { + "executor": "nx:run-commands", + "dependsOn": ["build"], + "options": { + "cwd": "dist/libs/content-services", + "commands": [ + { + "command": "npm publish --tag {args.tag}", + "forwardAllArgs": true + } + ], + "stylePreprocessorOptions": { + "includePaths": ["lib", "lib/core/src/lib"] + } + } + } + } +} diff --git a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.scss b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.scss index f24ec5004cf..492fd66717b 100644 --- a/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.scss +++ b/lib/content-services/src/lib/aspect-list/aspect-list-dialog.component.scss @@ -19,7 +19,7 @@ } &-aspect-list-dialog { - .mat-dialog-actions { + .mat-mdc-dialog-actions { justify-content: space-between; } } @@ -28,7 +28,7 @@ padding-top: 3px; .adf-aspect-property-table { - .mat-cell { + .mat-mdc-cell { font-size: smaller; } diff --git a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.scss b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.scss index 66134e37824..b08958ee03e 100644 --- a/lib/content-services/src/lib/breadcrumb/breadcrumb.component.scss +++ b/lib/content-services/src/lib/breadcrumb/breadcrumb.component.scss @@ -24,7 +24,7 @@ overflow: hidden; margin-top: 35px; - &.mat-select { + &.mat-mdc-select { width: 0; } } diff --git a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.scss b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.scss index 6ef1aee8d2b..e07689295bf 100644 --- a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.scss +++ b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.scss @@ -49,7 +49,7 @@ $dropdown-horizontal-offset: 30px; overflow: hidden; margin-top: 35px; - &.mat-select { + &.mat-mdc-select { width: 0; } } @@ -63,18 +63,18 @@ $dropdown-horizontal-offset: 30px; color: var(--adf-theme-foreground-text-color); } - &-dropdown-breadcrumb-path-option.mat-option { + &-dropdown-breadcrumb-path-option.mat-mdc-option { height: 28px; line-height: 28px; padding: 0 12px; font-size: var(--theme-caption-font-size); } - &-dropdown-breadcrumb-path-option.mat-option:first-child { + &-dropdown-breadcrumb-path-option.mat-mdc-option:first-child { padding-top: 4px; } - &-dropdown-breadcrumb-path-option.mat-option:last-child { + &-dropdown-breadcrumb-path-option.mat-mdc-option:last-child { padding-bottom: 4px; } } diff --git a/lib/content-services/src/lib/category/categories-management/categories-management.component.scss b/lib/content-services/src/lib/category/categories-management/categories-management.component.scss index 31911029be8..cd181a5a0ab 100644 --- a/lib/content-services/src/lib/category/categories-management/categories-management.component.scss +++ b/lib/content-services/src/lib/category/categories-management/categories-management.component.scss @@ -36,7 +36,7 @@ .adf-categories-list { padding-bottom: 10px; - .mat-list-base .mat-list-item, + .mat-mdc-list-base .mat-mdc-list-item, .mat-list-base .mat-list-option { display: flex; height: 100%; @@ -44,11 +44,13 @@ padding: 5px 0; font-size: 14px; + /* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version. */ &.mat-list-item-disabled { background-color: inherit; color: inherit; } + /* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version. */ .mat-list-item-content, .mat-list-item-content-reverse { padding: 0; diff --git a/lib/content-services/src/lib/category/categories-management/categories-management.component.spec.ts b/lib/content-services/src/lib/category/categories-management/categories-management.component.spec.ts index d7e3801e14f..641bbd36bd5 100644 --- a/lib/content-services/src/lib/category/categories-management/categories-management.component.spec.ts +++ b/lib/content-services/src/lib/category/categories-management/categories-management.component.spec.ts @@ -38,10 +38,10 @@ describe('CategoriesManagementComponent', () => { const category2 = new Category({ id: 'test2', name: 'testCat2' }); const category3 = new Category({ id: 'test3', name: 'testCat3' }); const category4 = new Category({ id: 'test4', name: 'testCat4' }); - const resultCat1 = new ResultNode({ id: 'test', name: 'testCat', path: { name: 'general/categories' }}); - const resultCat2 = new ResultNode({ id: 'test2', name: 'testCat2', path: { name: 'general/categories' }}); - const categoryPagingResponse: CategoryPaging = { list: { pagination: {}, entries: [ { entry: category1 }, { entry: category2 }]}}; - const categorySearchResponse: ResultSetPaging = { list: { pagination: {}, entries: [ { entry: resultCat1 }, { entry: resultCat2 }]}}; + const resultCat1 = new ResultNode({ id: 'test', name: 'testCat', path: { name: 'general/categories' } }); + const resultCat2 = new ResultNode({ id: 'test2', name: 'testCat2', path: { name: 'general/categories' } }); + const categoryPagingResponse: CategoryPaging = { list: { pagination: {}, entries: [{ entry: category1 }, { entry: category2 }] } }; + const categorySearchResponse: ResultSetPaging = { list: { pagination: {}, entries: [{ entry: resultCat1 }, { entry: resultCat2 }] } }; beforeEach(() => { TestBed.configureTestingModule({ @@ -267,7 +267,7 @@ describe('CategoriesManagementComponent', () => { * @returns debug element */ function getSpinner(): DebugElement { - return fixture.debugElement.query(By.css(`.mat-progress-spinner`)); + return fixture.debugElement.query(By.css(`.mat-mdc-progress-spinner`)); } it('should be displayed with correct diameter when existing categories are loading', fakeAsync(() => { @@ -290,7 +290,7 @@ describe('CategoriesManagementComponent', () => { }); it('should display correct message when there are no existing categories', fakeAsync(() => { - spyOn(categoryService, 'getSubcategories').and.returnValue(of({list: { pagination: {}, entries: []}})); + spyOn(categoryService, 'getSubcategories').and.returnValue(of({ list: { pagination: {}, entries: [] } })); typeCategory('test'); const noExistingCategoriesMsg = fixture.debugElement.query(By.css('mat-selection-list p'))?.nativeElement.textContent.trim(); @@ -338,6 +338,8 @@ describe('CategoriesManagementComponent', () => { it('should display validation error when searching for empty category', fakeAsync(() => { typeCategory(' '); + component.categoryNameControl.markAsTouched(); + fixture.detectChanges(); expect(getFirstError()).toBe('CATEGORIES_MANAGEMENT.ERRORS.EMPTY_CATEGORY'); })); @@ -354,8 +356,9 @@ describe('CategoriesManagementComponent', () => { it('should not display create category label', fakeAsync(() => { typeCategory('test'); + const createCategoryLabel = fixture.debugElement.query(By.css('.adf-existing-categories-panel .adf-create-category-label')); - expect(getCreateCategoryLabel()).toBeUndefined(); + expect(createCategoryLabel).toBeNull(); })); it('should not disable existing categories', fakeAsync(() => { @@ -369,7 +372,7 @@ describe('CategoriesManagementComponent', () => { typeCategory('test'); const options = getExistingCategoriesList(); // eslint-disable-next-line no-underscore-dangle - options[0]._handleClick(); + options[0]._hostElement.click(); expect(component.categories.length).toBe(3); expect(component.categories[2].name).toBe('testCat'); @@ -383,7 +386,7 @@ describe('CategoriesManagementComponent', () => { typeCategory('test'); const options = getExistingCategoriesList(); // eslint-disable-next-line no-underscore-dangle - options[0]._handleClick(); + options[0]._hostElement.click(); fixture.detectChanges(); const categoriesChangeSpy = spyOn(component.categoriesChange, 'emit').and.callThrough(); diff --git a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.html b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.html index 3b9930e3b91..630d55654fa 100644 --- a/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.html +++ b/lib/content-services/src/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.html @@ -1,4 +1,4 @@ - + { let service: PropertyDescriptorsService; @@ -38,38 +63,27 @@ describe('PropertyDescriptorLoaderService', () => { classesApi = service['classesApi']; }); - it('should load the groups passed by paramter', () => { - spyOn(classesApi, 'getClass'); + it('should load the groups passed by paramter', (done) => { - service.load(['exif:exif', 'cm:content', 'custom:custom']) - .subscribe(() => {}); + const apiResponses = [exifResponse, contentResponse, customResponse]; + let counter = 0; + + spyOn(classesApi, 'getClass').and.callFake(() => Promise.resolve(apiResponses[counter++])); - expect(classesApi.getClass).toHaveBeenCalledTimes(3); - expect(classesApi.getClass).toHaveBeenCalledWith('exif_exif'); - expect(classesApi.getClass).toHaveBeenCalledWith('cm_content'); - expect(classesApi.getClass).toHaveBeenCalledWith('custom_custom'); + service.load(['exif:exif', 'cm:content', 'custom:custom']) + .subscribe({ + next: () => { + expect(classesApi.getClass).toHaveBeenCalledTimes(3); + expect(classesApi.getClass).toHaveBeenCalledWith('exif_exif'); + expect(classesApi.getClass).toHaveBeenCalledWith('cm_content'); + expect(classesApi.getClass).toHaveBeenCalledWith('custom_custom'); + }, + complete: () => done() + }); }); it('should merge the forked values', (done) => { - - const exifResponse: PropertyGroup = { - name: 'exif:exif', - title: '', - properties: { - 'exif:1': { title: 'exif:1:id', name: 'exif:1', dataType: '', mandatory: false, multiValued: false }, - 'exif:2': { title: 'exif:2:id', name: 'exif:2', dataType: '', mandatory: false, multiValued: false } - } - }; - - const contentResponse: PropertyGroup = { - name: 'cm:content', - title: '', - properties: { - 'cm:content': { title: 'cm:content:id', name: 'cm:content', dataType: '', mandatory: false, multiValued: false } - } - }; - - const apiResponses = [ exifResponse, contentResponse ]; + const apiResponses = [exifResponse, contentResponse]; let counter = 0; spyOn(classesApi, 'getClass').and.callFake(() => Promise.resolve(apiResponses[counter++])); diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.scss b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.scss index 3785bca93df..2324075709c 100644 --- a/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.scss +++ b/lib/content-services/src/lib/content-node-selector/content-node-selector-panel.component.scss @@ -48,13 +48,14 @@ h2.adf-search-results-label { } } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-underline .mat-form-field-ripple { height: 1px; transition: none; } .adf-site-dropdown-container { - .mat-form-field { + .mat-mdc-form-field { display: block; margin-bottom: 15px; } @@ -64,6 +65,7 @@ h2.adf-search-results-label { width: 100%; margin-bottom: 0; + /* TODO(mdc-migration): The following rule targets internal classes of select that may no longer apply for the MDC version. */ .mat-select-trigger { font-size: var(--theme-body-1-font-size); } diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.scss b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.scss index 1d4924b9d18..46be1cc884b 100644 --- a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.scss +++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.scss @@ -1,6 +1,6 @@ adf-content-node-selector { .adf-content-node-selector-headless-tabs { - .mat-tab-header { + .mat-mdc-tab-header { display: none; } } @@ -51,7 +51,7 @@ adf-content-node-selector { padding-right: 24px; } - .mat-dialog-title { + .mat-mdc-dialog-title { margin-left: 24px; margin-right: 24px; font-size: var(--theme-title-font-size); @@ -68,17 +68,17 @@ adf-content-node-selector { } } - .mat-dialog-container { + .mat-mdc-dialog-container { padding-left: 0; padding-right: 0; } - .mat-dialog-content { + .mat-mdc-dialog-content { margin: 0; overflow: hidden; } - .mat-dialog-actions { + .mat-mdc-dialog-actions { padding: 8px; height: 61px; background-color: var(--theme-background-color); @@ -104,7 +104,7 @@ adf-content-node-selector { } @media screen and (max-width: 768px) { - .mat-dialog-container { + .mat-mdc-dialog-container { height: 100vh; } } diff --git a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts index 96800a19920..5961e6faf79 100644 --- a/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts +++ b/lib/content-services/src/lib/content-node-selector/content-node-selector.component.spec.ts @@ -126,7 +126,7 @@ describe('ContentNodeSelectorComponent', () => { }; const selectTabByIndex = (tabIndex: number) => { - const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[tabIndex]; + const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[tabIndex]; const attributes = uploadFromLocalTab.nativeNode.attributes as NamedNodeMap; const tabPositionInSet = Number(attributes.getNamedItem('aria-posinset').value) - 1; component.onTabSelectionChange(tabPositionInSet); @@ -263,7 +263,7 @@ describe('ContentNodeSelectorComponent', () => { fixture.detectChanges(); let infoMatIcon = fixture.debugElement.query(By.css('[data-automation-id="adf-content-node-selector-disabled-tab-info-icon"]')); - let uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[1]; + let uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[1]; expect(uploadFromLocalTab.nativeElement.getAttribute('aria-disabled')).toBe('false'); expect(infoMatIcon).toBeFalsy(); @@ -271,7 +271,7 @@ describe('ContentNodeSelectorComponent', () => { component.showingSearch = true; fixture.detectChanges(); - uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[1]; + uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[1]; infoMatIcon = fixture.debugElement.query(By.css('[data-automation-id="adf-content-node-selector-disabled-tab-info-icon"]')); expect(uploadFromLocalTab.nativeElement.getAttribute('aria-disabled')).toBe('true'); @@ -281,7 +281,7 @@ describe('ContentNodeSelectorComponent', () => { component.showingSearch = false; fixture.detectChanges(); - uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[1]; + uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[1]; infoMatIcon = fixture.debugElement.query(By.css('[data-automation-id="adf-content-node-selector-disabled-tab-info-icon"]')); expect(uploadFromLocalTab.nativeElement.getAttribute('aria-disabled')).toBe('false'); @@ -454,7 +454,7 @@ describe('ContentNodeSelectorComponent', () => { it('should show drag and drop area with the empty list template when no upload has started', async () => { enableLocalUpload(); - const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[1]; + const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[1]; uploadFromLocalTab.nativeElement.click(); fixture.detectChanges(); @@ -468,7 +468,7 @@ describe('ContentNodeSelectorComponent', () => { it('should not show the empty list template when an upload has started', async () => { enableLocalUpload(); - const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-tab-label'))[1]; + const uploadFromLocalTab = fixture.debugElement.queryAll(By.css('.mat-mdc-tab'))[1]; uploadFromLocalTab.nativeElement.click(); component.uploadStarted = true; diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.scss b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.scss index 4bf4f0d29d5..fdecacf66c9 100644 --- a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.scss +++ b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.scss @@ -112,11 +112,12 @@ margin-left: 8px; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-infix { border-top: unset; } - .mat-dialog-actions { + .mat-mdc-dialog-actions { justify-content: flex-end; padding: 0; margin: 8px 0 0; @@ -128,18 +129,21 @@ } } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-flex { align-items: center; } - .mat-dialog-container { + .mat-mdc-dialog-container { padding: 0; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-appearance-legacy .mat-form-field-underline { display: none; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-appearance-legacy .mat-form-field-wrapper { padding-bottom: 8px; margin-right: 8px; @@ -147,15 +151,16 @@ } @media screen and (max-width: 380px) { - .mat-dialog-container { + .mat-mdc-dialog-container { padding: 0 15px; } - .mat-dialog-actions { + .mat-mdc-dialog-actions { margin-bottom: 0; padding: 2px 0; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-suffix { padding-left: 8px; } diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts index 9ccb780a28a..735d10766db 100644 --- a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts +++ b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.spec.ts @@ -151,7 +151,7 @@ describe('ShareDialogComponent', () => { expect(sharedLinksApiService.createSharedLinks).toHaveBeenCalled(); expect(renditionService.getNodeRendition).toHaveBeenCalled(); expect(fixture.nativeElement.querySelector('input[formcontrolname="sharedUrl"]').value).toBe('some-url/sharedId'); - expect(getShareToggleLinkedClasses()).toContain('mat-checked'); + expect(getShareToggleLinkedClasses()).toContain('mat-mdc-slide-toggle-checked'); }); it(`should not toggle share action when file has 'sharedId' property`, async () => { @@ -176,7 +176,7 @@ describe('ShareDialogComponent', () => { expect(sharedLinksApiService.createSharedLinks).not.toHaveBeenCalled(); expect(fixture.nativeElement.querySelector('input[formcontrolname="sharedUrl"]').value).toBe('some-url/sharedId'); - expect(getShareToggleLinkedClasses()).toContain('mat-checked'); + expect(getShareToggleLinkedClasses()).toContain('mat-mdc-slide-toggle-checked'); }); it('should open a confirmation dialog when unshare button is triggered', () => { @@ -247,8 +247,9 @@ describe('ShareDialogComponent', () => { }; fixture.detectChanges(); + const slideToggleButton: HTMLButtonElement = fixture.debugElement.query(By.css('[data-automation-id="adf-share-toggle"] button')).nativeElement; - expect(getShareToggleLinkedClasses()).toContain('mat-disabled'); + expect(slideToggleButton.classList).toContain('mdc-switch--disabled'); }); it('should delete the current link generated with expiry date and generate a new link without expiry date when toggle is unchecked', async () => { @@ -286,7 +287,8 @@ describe('ShareDialogComponent', () => { fixture.detectChanges(); await fixture.whenStable(); - expect(fixture.nativeElement.querySelector('.mat-slide-toggle[data-automation-id="adf-expire-toggle"]').classList).toContain('mat-disabled'); + expect(fixture.nativeElement.querySelector('.mat-mdc-slide-toggle[data-automation-id="adf-expire-toggle"] .mdc-switch') + .classList).toContain('mdc-switch--disabled'); expect(fixture.nativeElement.querySelector('[data-automation-id="adf-slide-toggle-checked"]').style.display).toEqual('none'); }); diff --git a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts index b0e369d7c97..7846816cac6 100644 --- a/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts +++ b/lib/content-services/src/lib/content-node-share/content-node-share.dialog.ts @@ -18,7 +18,7 @@ import { Component, Inject, OnInit, ViewEncapsulation, ViewChild, OnDestroy } from '@angular/core'; import { MAT_DIALOG_DATA, MatDialog, MatDialogRef } from '@angular/material/dialog'; import { MatSlideToggleChange } from '@angular/material/slide-toggle'; -import { FormControl, FormGroup, Validators } from '@angular/forms'; +import { AbstractControl, FormControl, FormGroup, Validators } from '@angular/forms'; import { Subject } from 'rxjs'; import { ContentService } from '../common/services/content.service'; import { SharedLinksApiService } from './services/shared-links-api.service'; @@ -28,10 +28,7 @@ import { ContentNodeShareSettings } from './content-node-share.settings'; import { RenditionService } from '../common/services/rendition.service'; import { format, add, endOfDay, isBefore } from 'date-fns'; -interface SharedDialogFormProps { - sharedUrl: FormControl; - time: FormControl; -} +type DatePickerType = 'date' | 'time' | 'month' | 'datetime'; @Component({ selector: 'adf-share-dialog', @@ -41,8 +38,7 @@ interface SharedDialogFormProps { encapsulation: ViewEncapsulation.None }) export class ShareDialogComponent implements OnInit, OnDestroy { - private minDateValidator = (control: FormControl): any => - isBefore(endOfDay(new Date(control.value)), this.minDate) ? { invalidDate: true } : null; + private minDateValidator = (control: AbstractControl): any => isBefore(endOfDay(new Date(control.value)), this.minDate) ? {invalidDate: true} : null; minDate = add(new Date(), { days: 1 }); sharedId: string; @@ -51,15 +47,20 @@ export class ShareDialogComponent implements OnInit, OnDestroy { isFileShared = false; isDisabled = false; isLinkWithExpiryDate = false; - form = new FormGroup({ + form: FormGroup = new FormGroup({ sharedUrl: new FormControl(''), - time: new FormControl({ value: null, disabled: true }, [Validators.required, this.minDateValidator]) + time: new FormControl({value: '', disabled: true}, [Validators.required, this.minDateValidator]) }); + type: DatePickerType = 'date'; + maxDebounceTime = 500; isExpiryDateToggleChecked: boolean; @ViewChild('slideToggleExpirationDate', { static: true }) slideToggleExpirationDate; + @ViewChild('datePickerInput', { static: true }) + datePickerInput; + private onDestroy$ = new Subject(); constructor( @@ -97,7 +98,7 @@ export class ShareDialogComponent implements OnInit, OnDestroy { } } - get time(): FormControl { + get time(): AbstractControl { return this.form.controls['time']; } @@ -175,7 +176,7 @@ export class ShareDialogComponent implements OnInit, OnDestroy { this.isDisabled = true; this.sharedLinksApiService.createSharedLinks(nodeId, sharedLinkWithExpirySettings).subscribe( - (sharedLink) => { + (sharedLink: SharedLinkEntry) => { if (sharedLink.entry) { this.sharedId = sharedLink.entry.id; if (this.data.node.entry.properties) { @@ -265,7 +266,11 @@ export class ShareDialogComponent implements OnInit, OnDestroy { private updateNode(date: Date) { let expiryDate: Date | string; if (date) { - expiryDate = format(endOfDay(new Date(date)), `yyyy-MM-dd'T'HH:mm:ss.SSSxx`); + if (this.type === 'date') { + expiryDate = format(endOfDay(new Date(date)), `yyyy-MM-dd'T'HH:mm:ss.SSSxx`); + } else { + expiryDate = format(new Date(date), `yyyy-MM-dd'T'HH:mm:ss.SSSxx`); + } } else { expiryDate = null; } diff --git a/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts b/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts index 46d01e720d5..97e0bc11348 100644 --- a/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts +++ b/lib/content-services/src/lib/content-type/content-type-dialog.component.spec.ts @@ -15,15 +15,15 @@ * limitations under the License. */ -import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog'; +import { TypeEntry } from '@alfresco/js-api'; import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { MatDialogModule, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { TranslateModule } from '@ngx-translate/core'; import { of, Subject } from 'rxjs'; import { ContentTestingModule } from '../testing/content.testing.module'; import { ContentTypeDialogComponent } from './content-type-dialog.component'; -import { ContentTypeService } from './content-type.service'; import { ContentTypeDialogComponentData } from './content-type-metadata.interface'; -import { TypeEntry } from '@alfresco/js-api'; +import { ContentTypeService } from './content-type.service'; const elementCustom: TypeEntry = { entry: { @@ -152,7 +152,8 @@ describe('Content Type Dialog Component', () => { showPropertyAccordion.click(); fixture.detectChanges(); await fixture.whenStable(); - const propertyShowed: NodeList = fixture.nativeElement.querySelectorAll('.adf-content-type-table .mat-row'); + const propertyShowed: NodeList = fixture.nativeElement.querySelectorAll('.adf-content-type-table .mat-mdc-row'); + expect(propertyShowed.length).toBe(3); }); diff --git a/lib/content-services/src/lib/content-user-info/content-user-info.component.html b/lib/content-services/src/lib/content-user-info/content-user-info.component.html index 6f696105ee4..06efa66d522 100644 --- a/lib/content-services/src/lib/content-user-info/content-user-info.component.html +++ b/lib/content-services/src/lib/content-user-info/content-user-info.component.html @@ -42,7 +42,7 @@ class="adf-userinfo-tab adf-hide-tab"> - +
- +
{ adfVersionUploadButton: '#adf-version-upload-button', adfVersionComparison: '#adf-version-comparison', adfVersionList: '.adf-version-list', - matDialogTitle: '.mat-dialog-title' + matDialogTitle: '.mat-mdc-dialog-title' }; const mockDialogRef = { diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss index 5b4ed960248..63fe6bfb77c 100644 --- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss +++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss @@ -1,5 +1,5 @@ .adf-add-permission-dialog { - .mat-dialog-title { + .mat-mdc-dialog-title { margin-left: 24px; margin-right: 24px; font-size: var(--theme-title-font-size); @@ -11,12 +11,12 @@ color: var(--adf-theme-foreground-text-color-087); } - .mat-dialog-container { + .mat-mdc-dialog-container { padding-left: 0; padding-right: 0; } - .mat-dialog-content { + .mat-mdc-dialog-content { margin: 0; overflow: hidden; flex-grow: 1; @@ -31,7 +31,7 @@ } } - .mat-dialog-actions { + .mat-mdc-dialog-actions { padding: 0 24px; background-color: var(--theme-background-color); display: flex; @@ -58,6 +58,7 @@ &-search-user-button { width: 100%; + /* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version. */ .mat-button-wrapper { display: flex; align-items: center; diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts index 23d32127855..e2044fa21a4 100644 --- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts +++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-dialog.component.spec.ts @@ -127,7 +127,7 @@ describe('AddPermissionDialog', () => { fixture.detectChanges(); await fixture.whenStable(); - const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-select-trigger'))); + const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-mdc-select-trigger'))); selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); @@ -170,13 +170,13 @@ describe('AddPermissionDialog', () => { fixture.detectChanges(); await fixture.whenStable(); - const selectBox = fixture.debugElement.query(By.css(('[id="adf-bulk-select-role-permission"] .mat-select-trigger'))); + const selectBox = fixture.debugElement.query(By.css(('#adf-bulk-select-role-permission .mat-mdc-select-trigger'))); selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); await fixture.whenStable(); - const options = fixture.debugElement.queryAll(By.css('mat-option')); + const options = fixture.debugElement.queryAll(By.css('.mat-mdc-option')); expect(options).not.toBeNull(); expect(options.length).toBe(2); options[0].triggerEventHandler('click', {}); @@ -212,7 +212,7 @@ describe('AddPermissionDialog', () => { fixture.detectChanges(); await fixture.whenStable(); - const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-select-trigger'))); + const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-mdc-select-trigger'))); selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.scss b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.scss index e43fd3378cd..9776e3b0ab7 100644 --- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.scss +++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.scss @@ -52,6 +52,7 @@ $search-result-height: calc(100% - 75px); display: none; } + /* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version. */ .mat-list-text { display: flex; flex-direction: row !important; diff --git a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts index 30dd64e4efd..9b0608880f7 100644 --- a/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts +++ b/lib/content-services/src/lib/permission-manager/components/add-permission/add-permission-panel.component.spec.ts @@ -194,10 +194,12 @@ describe('AddPermissionPanelComponent', () => { typeWordIntoSearchInput('a'); await fixture.whenStable(); fixture.detectChanges(); + const result1 = fixture.debugElement.query(By.css('#result_option_0 .mat-mdc-list-item-unscoped-content')); + const result2 = fixture.debugElement.query(By.css('#result_option_1 .mat-mdc-list-item-unscoped-content')); - expect(element.querySelector('#result_option_0 .mat-list-text')).toBeTruthy(); - expect(element.querySelector('#result_option_1 .mat-list-text')).toBeTruthy(); - expect(element.querySelector('#result_option_0 .mat-list-text').innerHTML).not.toEqual(element.querySelector('#result_option_1 .mat-list-text').innerHTML); + expect(result1).toBeTruthy(); + expect(result2).toBeTruthy(); + expect(result1.nativeElement.innerHTML).not.toEqual(result2.nativeElement.innerHTML); }); it('should emit unique element in between multiple search', async () => { diff --git a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts index a45fcc70a3b..efda4a13ef9 100644 --- a/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts +++ b/lib/content-services/src/lib/permission-manager/components/permission-container/permission-container.component.spec.ts @@ -75,8 +75,8 @@ describe('PermissionContainerComponent', () => { it('should emit update event on role change', () => { spyOn(component.update, 'emit'); - const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-select-trigger'))); - selectBox.triggerEventHandler('click', null); + const selectBox = fixture.debugElement.query(By.css(('[id="adf-select-role-permission"] .mat-mdc-select-trigger'))); + selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); const options = fixture.debugElement.queryAll(By.css('mat-option')); diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.html b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.html index 78dc2b84642..2f3ac115db1 100644 --- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.html +++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.html @@ -1,4 +1,4 @@ - +
diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.scss b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.scss index b0038007818..d6c1350e70d 100644 --- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.scss +++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.scss @@ -51,6 +51,7 @@ position: relative !important; height: 40px; + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-infix { border: none; } diff --git a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts index 5a76093cfe6..850dda42566 100644 --- a/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts +++ b/lib/content-services/src/lib/permission-manager/components/permission-list/permission-list.component.spec.ts @@ -206,8 +206,8 @@ describe('PermissionListComponent', () => { expect(element.querySelector('adf-user-name-column').textContent).toContain('GROUP_EVERYONE'); expect(element.querySelector('#adf-select-role-permission').textContent).toContain('Contributor'); - const selectBox = fixture.debugElement.query(By.css('[id="adf-select-role-permission"] .mat-select-trigger')); - selectBox.triggerEventHandler('click', null); + const selectBox = fixture.debugElement.query(By.css('[id="adf-select-role-permission"] .mat-mdc-select-trigger')); + selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); const options = fixture.debugElement.queryAll(By.css('mat-option')); @@ -247,8 +247,8 @@ describe('PermissionListComponent', () => { expect(element.querySelector('adf-user-name-column').textContent).toContain('GROUP_EVERYONE'); expect(element.querySelector('#adf-select-role-permission').textContent).toContain('Contributor'); - const selectBox = fixture.debugElement.query(By.css('[id="adf-select-role-permission"] .mat-select-trigger')); - selectBox.triggerEventHandler('click', null); + const selectBox = fixture.debugElement.query(By.css('[id="adf-select-role-permission"] .mat-mdc-select-trigger')); + selectBox.nativeElement.dispatchEvent(new Event('click')); fixture.detectChanges(); const options = fixture.debugElement.queryAll(By.css('mat-option')); expect(options).not.toBeNull(); diff --git a/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts b/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts index 600dd904202..4dec0dd9a4d 100644 --- a/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts +++ b/lib/content-services/src/lib/permission-manager/components/user-role-column/user-role-column.component.ts @@ -21,7 +21,7 @@ import { RoleModel } from '../../models/role.model'; @Component({ selector: 'adf-user-role-column', template: ` - + - - + @@ -14,7 +14,7 @@ [attr.aria-label]="('SEARCH.FILTER.BUTTONS.REMOVE' | translate) + ' ' + option.value"> close - + - + diff --git a/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.scss b/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.scss index ced2a9d4a16..d775400a2e6 100644 --- a/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.scss +++ b/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.scss @@ -3,15 +3,17 @@ adf-search-chip-autocomplete-input { width: 100%; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-appearance-outline .mat-form-field-outline { top: 0; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-infix { border: none; } - .mat-chip.adf-option-chips { + .mat-mdc-chip.adf-option-chips { border: 1px solid var(--theme-text-color); border-radius: 10px; background-color: var(--theme-primary-color-default-contrast); @@ -19,6 +21,7 @@ adf-search-chip-autocomplete-input { word-break: break-word; } + /* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */ .mat-chip-remove.adf-option-chips-delete-button { font-size: 13px; height: 13px; @@ -31,20 +34,23 @@ adf-search-chip-autocomplete-input { } } + /* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */ .mat-chip-list-wrapper { min-height: 40px; } + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ .mat-form-field-wrapper { padding: 0; } } +/* TODO(mdc-migration): The following rule targets internal classes of tooltip that may no longer apply for the MDC version. */ .mat-tooltip-hide { display: none; } -.mat-option.adf-autocomplete-added-option { +.mat-mdc-option.adf-autocomplete-added-option { background: var(--adf-theme-mat-grey-color-a200); color: var(--adf-theme-primary-300); } diff --git a/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.spec.ts b/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.spec.ts index 45056d2f600..c9fefb431db 100644 --- a/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.spec.ts +++ b/lib/content-services/src/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.spec.ts @@ -86,7 +86,7 @@ describe('SearchChipAutocompleteInputComponent', () => { * @returns list of chips */ function getChipList(): MatChip[] { - return fixture.debugElement.queryAll(By.css('mat-chip')).map((chip) => chip.nativeElement); + return fixture.debugElement.queryAll(By.css('mat-chip-row')).map((chip) => chip.nativeElement); } /** @@ -96,7 +96,7 @@ describe('SearchChipAutocompleteInputComponent', () => { * @returns chip value */ function getChipValue(index: number): string { - return fixture.debugElement.queryAll(By.css('mat-chip span')).map((chip) => chip.nativeElement)[index].innerText; + return fixture.debugElement.queryAll(By.css('.mdc-evolution-chip__text-label span')).map((chip) => chip.nativeElement)[index].innerText; } /** @@ -105,7 +105,7 @@ describe('SearchChipAutocompleteInputComponent', () => { * @returns list of debug elements */ function getOptionElements(): DebugElement[] { - return fixture.debugElement.queryAll(By.css('mat-option')); + return fixture.debugElement.queryAll(By.css('.mat-mdc-option')); } /** @@ -275,7 +275,7 @@ describe('SearchChipAutocompleteInputComponent', () => { it('should show full category path when fullPath provided', () => { component.filteredOptions = [{id: 'test-id', value: 'test-value', fullPath: 'test-full-path'}]; enterNewInputValue('test-value'); - const matOption = fixture.debugElement.query(By.css('.mat-option span')).nativeElement; + const matOption = fixture.debugElement.query(By.css('.mat-mdc-option span')).nativeElement; fixture.detectChanges(); expect(matOption.innerHTML).toEqual(' test-full-path '); diff --git a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.html b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.html index 1090d59cec5..ef272a9e2f0 100644 --- a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.html +++ b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.html @@ -1,6 +1,6 @@ - + - {{ 'SEARCH.FILTER.BUTTONS.CLEAR-ALL.LABEL' | translate }} - + - {{ (selection.bucket.display || selection.bucket.label) | translate }} cancel - + - + diff --git a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.scss b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.scss index d1e581d6a9d..66f5507fa5b 100644 --- a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.scss +++ b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.scss @@ -1,7 +1,8 @@ -.mat-chip:focus { +.mat-mdc-chip:focus { color: var(--theme-accent-color-default-contrast); background-color: var(--theme-accent-color); + /* TODO(mdc-migration): The following rule targets internal classes of chips that may no longer apply for the MDC version. */ .mat-chip-remove { color: var(--theme-accent-color-default-contrast); opacity: 1; diff --git a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts index 23b6de5bf76..3dcd742facb 100644 --- a/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts +++ b/lib/content-services/src/lib/search/components/search-chip-list/search-chip-list.component.spec.ts @@ -115,7 +115,7 @@ describe('SearchChipListComponent', () => { fixture.detectChanges(); - const chips = fixture.debugElement.queryAll(By.css(`[data-automation-id="chip-list-entry"] .mat-chip-remove`)); + const chips = fixture.debugElement.queryAll(By.css(`[data-automation-id="chip-list-entry"] .mat-mdc-chip-remove`)); chips[0].nativeElement.click(); await fixture.whenStable(); @@ -131,7 +131,7 @@ describe('SearchChipListComponent', () => { fixture.detectChanges(); - const closeButtons = fixture.debugElement.nativeElement.querySelectorAll('.mat-chip-remove'); + const closeButtons = fixture.debugElement.nativeElement.querySelectorAll('.mat-mdc-chip-remove'); expect(closeButtons.length).toBe(2); closeButtons[0].click(); @@ -157,7 +157,7 @@ describe('SearchChipListComponent', () => { fixture.detectChanges(); - const chips = fixture.debugElement.queryAll(By.css(`[data-automation-id="chip-list-entry"] .mat-chip-remove`)); + const chips = fixture.debugElement.queryAll(By.css(`[data-automation-id="chip-list-entry"] .mat-mdc-chip-remove`)); expect(chips.length).toBe(1); const clearButton = fixture.debugElement.query(By.css(`[data-automation-id="reset-filter"]`)); diff --git a/lib/content-services/src/lib/search/components/search-control.component.ts b/lib/content-services/src/lib/search/components/search-control.component.ts index 8556b3dce43..a5bc9a48330 100644 --- a/lib/content-services/src/lib/search/components/search-control.component.ts +++ b/lib/content-services/src/lib/search/components/search-control.component.ts @@ -167,7 +167,7 @@ export class SearchControlComponent implements OnDestroy { if (this.listResultElement && this.listResultElement.length > 0) { const firstElement = this.listResultElement.first as MatListItem; // eslint-disable-next-line no-underscore-dangle - firstElement._getHostElement().focus(); + firstElement._hostElement.focus(); } } diff --git a/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.scss b/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.scss index cc2c68873b1..67bf411a8a2 100644 --- a/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.scss +++ b/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.scss @@ -1,21 +1,50 @@ -adf-search-date-range-advanced { - .adf-search-date-range-container { - margin-top: 20px; - padding: 10px; - - &-row { - display: flex; - flex-direction: row; - padding-bottom: 15px; - align-items: center; - - .adf-search-date-range-input-field { - width: 75px; - } +.adf-search-date-range-advanced { + .mat-mdc-radio-group { + display: flex; + flex-direction: column; + padding: 5px; + } + + .mat-mdc-radio-button { + margin: 5px; + } + + .adf-search-date-range-horizontal-container { + display: flex; + flex-direction: row; + padding-bottom: 15px; + + .adf-search-date-range-input-field { + width: 75px; + } + + .adf-search-date-range-form-field { + padding-left: 10px; + flex: 1; + + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ + + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ + .mat-form-field-wrapper { + padding-bottom: 0; + margin-bottom: 1.25em; + border: 1px solid var(--adf-theme-mat-grey-color-a400); + border-radius: 5px; + + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ + .mat-form-field-infix { + border: 0; + } + + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ + .mat-form-field-underline { + display: none; + } - .adf-search-date-range-form-field { - padding-left: 10px; - flex: 1; + /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version. */ + .mat-form-field-subscript-wrapper { + margin-top: 2em; + } } } } diff --git a/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.spec.ts b/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.spec.ts index fa570f6c6be..01b118a939f 100644 --- a/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.spec.ts +++ b/lib/content-services/src/lib/search/components/search-date-range-advanced-tabbed/search-date-range-advanced/search-date-range-advanced.component.spec.ts @@ -213,7 +213,7 @@ describe('SearchDateRangeAdvancedComponent', () => { betweenStartDate: undefined, betweenEndDate: undefined }; - let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mat-radio-input'); + let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mdc-radio__native-control'); dateRangeTypeRadioButton.click(); selectDropdownOption('date-range-advanced-in-last-option-weeks'); enterValueInInputFieldAndTriggerEvent('date-range-advanced-in-last-input', ''); @@ -234,7 +234,7 @@ describe('SearchDateRangeAdvancedComponent', () => { betweenStartDate: '', betweenEndDate: '' }; - dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mat-radio-input'); + dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mdc-radio__native-control'); dateRangeTypeRadioButton.click(); fixture.detectChanges(); expect(component.changed.emit).not.toHaveBeenCalledWith(value); @@ -249,7 +249,7 @@ describe('SearchDateRangeAdvancedComponent', () => { betweenStartDate: null, betweenEndDate: null }; - let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mat-radio-input'); + let dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-in-last"] .mdc-radio__native-control'); dateRangeTypeRadioButton.click(); selectDropdownOption('date-range-advanced-in-last-option-weeks'); enterValueInInputFieldAndTriggerEvent('date-range-advanced-in-last-input', '5'); @@ -271,7 +271,7 @@ describe('SearchDateRangeAdvancedComponent', () => { betweenStartDate: startDateSampleValue, betweenEndDate: endDateSampleValue }; - dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mat-radio-input'); + dateRangeTypeRadioButton = getElementBySelector('[data-automation-id="date-range-advanced-between"] .mdc-radio__native-control'); dateRangeTypeRadioButton.click(); component.betweenStartDateFormControl.setValue(startDateSampleValue); component.betweenEndDateFormControl.setValue(endDateSampleValue); diff --git a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.html b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.html index 1b0de7df584..6a5598bf522 100644 --- a/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.html +++ b/lib/content-services/src/lib/search/components/search-facet-field/search-facet-field.component.html @@ -4,10 +4,10 @@ - + - - + diff --git a/lib/content-services/src/lib/search/components/search-text/search-text.component.scss b/lib/content-services/src/lib/search/components/search-text/search-text.component.scss index c617acaf08d..b2de1b6dea2 100644 --- a/lib/content-services/src/lib/search/components/search-text/search-text.component.scss +++ b/lib/content-services/src/lib/search/components/search-text/search-text.component.scss @@ -1,5 +1,5 @@ .adf-search-text { - .mat-form-field { + .mat-mdc-form-field { width: 100%; max-width: 168px; } diff --git a/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts b/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts index b33b0ef7df7..4a397efd2fc 100644 --- a/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts +++ b/lib/content-services/src/lib/search/components/search-text/search-text.component.spec.ts @@ -100,7 +100,7 @@ describe('SearchTextComponent', () => { fixture.detectChanges(); await fixture.whenStable(); expect(component.value).toEqual('secret.pdf'); - const input = fixture.debugElement.nativeElement.querySelector('.mat-form-field-infix input'); + const input = fixture.debugElement.nativeElement.querySelector('.mat-mdc-form-field-infix input'); expect(input.value).toEqual('secret.pdf'); }); diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.scss b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.scss index d3d5abc34f1..73a0e3be644 100644 --- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.scss +++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.scss @@ -1,6 +1,6 @@ .adf-sites-dropdown { &.adf-full-width { - .mat-form-field { + .mat-mdc-form-field { width: 100%; } } diff --git a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts index 02fa9ecbbd9..36348f54d1d 100644 --- a/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts +++ b/lib/content-services/src/lib/site-dropdown/sites-dropdown.component.spec.ts @@ -111,7 +111,7 @@ describe('DropdownSitesComponent', () => { }); const openSelectBox = () => { - const selectBox = debug.query(By.css(('[data-automation-id="site-my-files-option"] .mat-select-trigger'))); + const selectBox = debug.query(By.css(('[data-automation-id="site-my-files-option"] .mat-mdc-select-trigger'))); selectBox.triggerEventHandler('click', null); }; @@ -131,7 +131,7 @@ describe('DropdownSitesComponent', () => { fixture.detectChanges(); await fixture.whenStable(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); await fixture.whenStable(); @@ -146,7 +146,7 @@ describe('DropdownSitesComponent', () => { fixture.detectChanges(); await fixture.whenStable(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); await fixture.whenStable(); @@ -206,7 +206,7 @@ describe('DropdownSitesComponent', () => { fixture.detectChanges(); await fixture.whenStable(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); await fixture.whenStable(); @@ -221,7 +221,7 @@ describe('DropdownSitesComponent', () => { fixture.whenStable().then(() => { fixture.detectChanges(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); const options: any = debug.queryAll(By.css('mat-option')); options[1].nativeElement.click(); @@ -305,7 +305,7 @@ describe('DropdownSitesComponent', () => { fixture.detectChanges(); fixture.whenStable().then(() => { fixture.detectChanges(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); fixture.whenStable().then(() => { const options: any = debug.queryAll(By.css('mat-option')); @@ -330,7 +330,7 @@ describe('DropdownSitesComponent', () => { fixture.detectChanges(); fixture.whenStable().then(() => { fixture.detectChanges(); - debug.query(By.css('.mat-select-trigger')).triggerEventHandler('click', null); + debug.query(By.css('.mat-mdc-select-trigger')).triggerEventHandler('click', null); fixture.detectChanges(); fixture.whenStable().then(() => { const options: any = debug.queryAll(By.css('mat-option')); diff --git a/lib/content-services/src/lib/social/rating.component.scss b/lib/content-services/src/lib/social/rating.component.scss index 99e22d30784..68761316c84 100644 --- a/lib/content-services/src/lib/social/rating.component.scss +++ b/lib/content-services/src/lib/social/rating.component.scss @@ -23,6 +23,7 @@ $adf-average-star-color: #808080; cursor: pointer; width: 25px; + /* TODO(mdc-migration): The following rule targets internal classes of list that may no longer apply for the MDC version. */ .mat-list-item-content { padding: 0 !important; } diff --git a/lib/content-services/src/lib/tag/tag-list.component.html b/lib/content-services/src/lib/tag/tag-list.component.html index 9c9d678ca9a..6e6bbdd5034 100644 --- a/lib/content-services/src/lib/tag/tag-list.component.html +++ b/lib/content-services/src/lib/tag/tag-list.component.html @@ -1,10 +1,10 @@ - +
- + {{currentEntry.entry.tag}} - +
-
+
- + {{ 'ADF_PROCESS_LIST.DETAILS.BUTTON.CANCEL' | translate }}
- + { fixture.detectChanges(); await fixture.whenStable(); - const headerEl: DebugElement = fixture.debugElement.query(By.css('.mat-card-title ')); + const headerEl: DebugElement = fixture.debugElement.query(By.css('.mat-mdc-card-title ')); expect(headerEl).not.toBeNull(); expect(headerEl.nativeElement.innerText).toBe('Process 123'); }); @@ -93,7 +93,7 @@ describe('ProcessInstanceDetailsComponent', () => { fixture.detectChanges(); await fixture.whenStable(); - const headerEl: DebugElement = fixture.debugElement.query(By.css('.mat-card-title ')); + const headerEl: DebugElement = fixture.debugElement.query(By.css('.mat-mdc-card-title ')); expect(headerEl).not.toBeNull(); expect(headerEl.nativeElement.innerText).toBe('My Process - Nov 10, 2016, 3:37:30 AM'); }); diff --git a/lib/process-services/src/lib/process-list/components/process-instance-header.component.html b/lib/process-services/src/lib/process-list/components/process-instance-header.component.html index 8189048260e..2da41fceddc 100644 --- a/lib/process-services/src/lib/process-list/components/process-instance-header.component.html +++ b/lib/process-services/src/lib/process-list/components/process-instance-header.component.html @@ -1,4 +1,4 @@ - + diff --git a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html index 2fec2fb6bfb..1149c07fd13 100644 --- a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html +++ b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html @@ -6,10 +6,10 @@ - + {{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASKS_ACTIVE'|translate }} - {{activeTasks?.length}} - + {{activeTasks?.length}} + - + {{ 'ADF_PROCESS_LIST.DETAILS.LABELS.TASKS_COMPLETED'|translate }} - {{completedTasks?.length}} - + {{completedTasks?.length}} +