10930 Commits

Author SHA1 Message Date
Wojciech Duda
d0ae2e6631 AAE-30882 Rename http client files 2025-02-18 13:58:18 +01:00
Wojciech Duda
02df98e461 AAE-30882 Code formatting and unit tests 2025-02-18 13:57:12 +01:00
Wojciech Duda
9cea847d06 AAE-30882 Change buildRequest parameters 2025-02-18 13:43:39 +01:00
Wojciech Duda
7f4a46f4c3 AAE-30882 Simplify typing of methods 2025-02-18 13:38:10 +01:00
Wojciech Duda
e50a3f04ce AAE-30882 Separate mock objects 2025-02-18 13:34:14 +01:00
Wojciech Duda
4f3a5230b8 AAE-30882 Reduce imports to specfile 2025-02-18 12:15:11 +01:00
Wojciech Duda
e6bf6aa46c AAE-30882 Add more tests for superagentHttpClient 2025-02-18 12:14:09 +01:00
Wojciech Duda
26ade31bb0 AAE-30882 Replace superagent with ofetch 2025-02-18 11:36:31 +01:00
Wojciech Duda
8eaf2ab741 AAE-30882 Install ofetch, add unit tests for existing implementation 2025-02-17 17:17:04 +01:00
Mykyta Maliarchuk
e4feb68381
[ACS-9266][ACS-9234] Make notification and user menu accessible with keyboard (#10647)
* [ACS-9266][ACS-9234] Make notification and user menu accessible with keyboard

* [ACS-9266] cr fix

* [ACS-9266] cr fixes

* [ACS-9266] fix eslint

* [ACS-9266] fix circular dependency

* [ACS-9266] cr fix
2025-02-17 10:52:27 +01:00
Alfresco Build
c8aa27a87b
New Crowdin translations by GitHub Action (#10648)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2025-02-16 18:08:24 +00:00
dependabot[bot]
b6dfa44217
build(deps-dev): bump husky from 7.0.4 to 9.1.7 (#10652)
Bumps [husky](https://github.com/typicode/husky) from 7.0.4 to 9.1.7.
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](https://github.com/typicode/husky/compare/v7.0.4...v9.1.7)

---
updated-dependencies:
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-16 15:21:19 +00:00
dependabot[bot]
28b67701f5
build(deps): bump @octokit/request-error and @actions/github (#10649)
Bumps [@octokit/request-error](https://github.com/octokit/request-error.js) to 5.1.1 and updates ancestor dependency [@actions/github](https://github.com/actions/toolkit/tree/HEAD/packages/github). These dependencies need to be updated together.


Updates `@octokit/request-error` from 2.1.0 to 5.1.1
- [Release notes](https://github.com/octokit/request-error.js/releases)
- [Commits](https://github.com/octokit/request-error.js/compare/v2.1.0...v5.1.1)

Updates `@actions/github` from 5.1.1 to 6.0.0
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/github/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/github)

---
updated-dependencies:
- dependency-name: "@octokit/request-error"
  dependency-type: indirect
- dependency-name: "@actions/github"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-16 15:03:06 +00:00
AleksanderSklorz
808f836259
[MNT-24456] aps with adw multi user and group fields do not accept multiple values (#10636)
* [MNT-24456] Allow to select multiple users and groups for task form

* [MNT-24456] Inputs styling

* [MNT-24456] Unit tests, fixed issue for selecting single group

* [MNT-24456] Fixed issue when completing forms with null instead of empty array

* [MNT-24456] Used UnitTestingUtils where possible
2025-02-13 10:43:02 +01:00
Vito Albano
430ca84c77
[AAE-0000] - bumping the prerelease version (#10645) 2025-02-12 12:49:49 +00:00
Dawid Tworkowski
ca1842e93f
AAE-30827 correction in simpleapp - removed invalid form outcome for previously added form (#10642) 2025-02-12 13:48:40 +01:00
Vito Albano
5d64c7f0ed
Ng17 migration (#10295)
* Migrate to NG17

* [ci:force] - fixed deps

* [ci:force] - fixed build for testing 1

* Fixed build for all the packages

* [ci:force] - fixing lint

* [ci:force] - Fixed lint

* AAE-26163 Fix infinite loop when authentication error event occured (#10272)

* AAE-26163 Logout user after 3 login attempts failed, avoiding infinite loop when an authentication error occured, like when a user machine clock is significantly out of sync

* AAE-26163 Wait to discovery document to be loaded and user not authenticated to perform a ssoLogin, logout user if login fails after 3 attempts

* AAE-26163 Fix missed id_token_hint invoking logout when a login error occured due to a clock significantly out of sync

* AAE-26163 Add fake observable to unit test

* AAE-26163 Show oauth event logs if showDebugInformation is enabled, remove auth items if access token is not valid

* AAE-26163 Improve tryLogin error message

* AAE-26163 Check if token has expired to fix case when user access the application after the token is expired and with a clock significantly out of sync

* AAE-26163 Test logout when clock is out of sync

* AAE-26163 Create a service to check if local machine time is out of sync

* AAE-26163 Update oauthErrorEvent$ and combinedOAuthErrorsStream$ to return errors

* AAE-26163 Output error within combined oauth error event subscription

* AAE-26163 Fix lint problems

* AAE-26163 Logout user when token refresh error happens for the second time, if the token is not refreshed properly after first refresh error

* AAE-26163 Logout user once an oauth error event occur due to clock out of sync

* AAE-26163 Fix retry login error message if the OAuthErrorEvent doesn t return reason

* AAE-26163 Fix the issue where the logout API call is canceled by the authorize call when login fails due to clock synchronization problems, causing an infinite loop.

* remove console.log

* AAE-26163 Fix retry login error message if the OAuthErrorEvent reason is an empty object

* Cherry picked commit from oidc and run fix lint

* [MIGRATION] - fixed build and lint

* [MIGRATION] - Added injectionContext to avoid error NG0203 for unit tests

* [MIGRATION] - Moving mocha to jest

* [MIGRATION] - Fixing failing migrated tests

* [MIGRATION] - Migrating to Jest - working but some tests fails

* Trying to fix js-api unit tests

* Removing testing lib to sync with develop

* Fixed two excluded unit tests

* Removed unused project parts

* Removed unused project parts

* Reduced tserrors on building storybook

* Fixed sonarqube errors

* Removing temporarily eslint rule from publishing

* [MIGRATION] - Fixed lint

* [MIGRATION] - Fixed type

* [MIGRATION] - Rebased

* [MIGRATION] - Readded removed action

* [MIGRATION] - Checking deps

* [MIGRATION] - updated lock

* [ACS-9052] manage versions close button is too low (#10466)

* [ci:force] - Fixed lint

* [ACS-9052] Fixed close button in version manager position

* [ACS-9052] Reverted unwanted changes

---------

Co-authored-by: VitoAlbano <vito.albano.123@gmail.com>

* [MIGRATION] - fixed storybook builds

* [MIGRATION] - Checking if now eslint is releasable

* [MIGRATION] - Changing the building executor for eslint-rules

* Readded rule for peer deps

* Fixed wrong rule

* [ACS-9075] Fixed incorrect buttons labels color (#10489)

* Update package.json

* Fix ACA pipeline

* [ACS-9084] Fixed incorrect color for notification bell icon (#10513)

* Change dialog label padding

* [AAE-26767] - Fixed lint

* [AAE-26767] - Fixed lint

* updated dependencies

* AAE-30733 Fix incorrect alignment of icons in permission list header

* [MIGRATION] - sync package-lock

* [MIGRATION] - Fixed package on core lib

* [MIGRATION] - Removed unused lock

* Fixed licence

* [MIGRATION] - sync lock file

* [MIGRATION] - fixed lint issues

* [ACS-9271][ACA] Login page input labels are cut if the input is not empty (#10637)

* AAE-31453 Override card-view-textitem readonly color

---------

Co-authored-by: Amedeo Lepore <amedeo.lepore@hyland.com>
Co-authored-by: Ehsan Rezaei <ehsan.rezaei@hyland.com>
Co-authored-by: AleksanderSklorz <115619721+AleksanderSklorz@users.noreply.github.com>
Co-authored-by: DominikIwanek <dominik.iwanek@hyland.com>
Co-authored-by: swapnil-verma-gl <92505353+swapnil-verma-gl@users.noreply.github.com>
Co-authored-by: Wojciech Duda <69160975+wojd0@users.noreply.github.com>
Co-authored-by: dominikiwanekhyland <141320833+dominikiwanekhyland@users.noreply.github.com>
2025-02-12 11:58:57 +00:00
Tomasz Gnyp
2284ede0c7
AAE-30110 Render sections in runtime (#10599)
* AAE-30110 Render sections in runtime

* Move section to separate component

* Improve sections styles

* added early return improvement

* fix process services unit tests

* use testingUtils

* fix styles

* fix lint header error
2025-02-12 12:37:17 +01:00
dominikiwanekhyland
287519ee24
[ACS-9252] Create Button Not Enabled After Resolving Duplicate Folder Name Warning (#10635) 2025-02-12 10:59:10 +01:00
dependabot[bot]
ddd81d8806
build(deps): bump github/codeql-action from 3.28.8 to 3.28.9 (#10632)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.8 to 3.28.9.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](dd746615b3...9e8d0789d4)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 10:17:49 +01:00
dependabot[bot]
445c89a2c6
build(deps): bump Alfresco/alfresco-build-tools from 8.12.1 to 8.13.0 (#10633)
Bumps [Alfresco/alfresco-build-tools](https://github.com/alfresco/alfresco-build-tools) from 8.12.1 to 8.13.0.
- [Release notes](https://github.com/alfresco/alfresco-build-tools/releases)
- [Commits](4b0ea0ccff...166e610d3e)

---
updated-dependencies:
- dependency-name: Alfresco/alfresco-build-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 10:17:35 +01:00
dependabot[bot]
33c2c98f35
build(deps): bump Alfresco/alfresco-build-tools (#10631)
Bumps [Alfresco/alfresco-build-tools](https://github.com/alfresco/alfresco-build-tools) from 8.12.1 to 8.13.0.
- [Release notes](https://github.com/alfresco/alfresco-build-tools/releases)
- [Commits](4b0ea0ccff...166e610d3e)

---
updated-dependencies:
- dependency-name: Alfresco/alfresco-build-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 10:17:19 +01:00
dependabot[bot]
3ac560dd94
build(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions (#10634)
Bumps [zgosalvez/github-actions-ensure-sha-pinned-actions](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions) from 3.0.20 to 3.0.21.
- [Release notes](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/releases)
- [Commits](c3a2b64f69...6eb1abde32)

---
updated-dependencies:
- dependency-name: zgosalvez/github-actions-ensure-sha-pinned-actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-12 10:16:58 +01:00
Dawid Tworkowski
d5d2784eab
AAE-30827 simpleapp upgrade (#10638) 2025-02-11 18:18:48 +01:00
dominikiwanekhyland
2784310556
[ACS-9230] a11y testing: Search Page / Search Filters / Certain ARIA roles must contain particular children (#10627) 2025-02-10 14:51:16 +01:00
Wojciech Duda
0edbae8c59
AAE-25579 Toggle logs for skipped karma unit tests (#10601) 2025-02-07 13:02:32 +01:00
Vito Albano
97fdeb4d34
[AAE-30888] - used updated package to handle change font size (#10624)
* [AAE-30888] - used updated package to handle change size

* [ci:force]

* [AAE-30888] - sync package-lock

* AAE-30888 - sync package lock
2025-02-07 11:37:19 +00:00
Alfresco Build
6afe574e13
New Crowdin translations by GitHub Action (#10626)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
7.0.0-alpha.8-13191168169
2025-02-07 01:17:13 +00:00
Alex Molodyh
265c8e8a56
AAE-28655 Fix for datatable not scrolling back up after paginations (#10605)
* AAE-28655 Fix for datatable not scrolling back up after paginations
2025-02-06 13:04:37 -08:00
Tomasz Nastaly
e5281e7ff0
HXPMNT-542 display email for people (#10622) 2025-02-06 14:14:05 -05:00
Tomasz Nastaly
dcb7e4067c
AAE-25571 Add column title to widget (#10620)
* AAE-30141 Fix broken amount field

* AAE-30141 add title column
2025-02-06 16:18:22 +01:00
Mykyta Maliarchuk
e62c0587b6
[ACS-9215] Update license headers (#10625)
* [ACS-9215] Update license headers

* [ACS-9215] Update license headers
2025-02-06 13:18:56 +01:00
Bartosz Sekula
72a889241e
AAE-30901 Allow to use different saveSearch service (#10623) 2025-02-05 17:27:34 +01:00
tomasz hanaj
8e3bd154ed
AAE-30336 Screens updates (#10619)
* [AAE-30336] updated interface and removed buttons

* [AAE-30336] added fullscreen support for dynamic component

* [AAE-30336] fullscreen feature and css fix

* [AAE-30336] fixed wrong subscription, removed obsolete code

* [AAE-30336] removed obsolete variable

* [AAE-30336] updated unit test and model

* [AAE-30336] updated documentation and comments
2025-02-05 15:18:11 +01:00
Vito Albano
a1a3f97ec8
[AAE-30879] - removed unsupported minimatch version in favor or a ESM… (#10617)
* [AAE-30879] - removed unsupported minimatch version in favor or a ESM compatible one

* [ci:force]

* [ci:force] - removed unsupported minimatch version in favor or a ESM compatible one

* [ci:force] - sync package-lock
2025-02-05 14:15:55 +00:00
Vito Albano
6a6c1183a3
AAE-0000 - removing protractor dependencies (#10618) 2025-02-05 12:17:23 +00:00
Alfresco Build
f1e0ba2726
New Crowdin translations by GitHub Action (#10486)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2025-02-05 12:17:13 +00:00
Robert Duda
0c753278e5
AAE-27984 Fix fieldValueChanged called on init and blur for date widgets (#10621) 2025-02-05 10:31:06 +01:00
Bartosz Sekula
1fc0f0a6a4
AAE-30563 Fix for dropdown IsRequired validator (#10616) 2025-02-03 16:33:08 +01:00
dependabot[bot]
267b11171c
build(deps): bump crowdin/github-action from 2.5.1 to 2.5.2 (#10584)
Bumps [crowdin/github-action](https://github.com/crowdin/github-action) from 2.5.1 to 2.5.2.
- [Release notes](https://github.com/crowdin/github-action/releases)
- [Commits](d1632879d4...b811e49583)

---
updated-dependencies:
- dependency-name: crowdin/github-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:06:12 +01:00
dependabot[bot]
f1a6b1d31c
build(deps): bump actions/setup-node from 4.1.0 to 4.2.0 (#10609)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](39370e3970...1d0ff469b7)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:05:55 +01:00
dependabot[bot]
4a5e4d16cf
build(deps): bump Alfresco/alfresco-build-tools (#10612)
Bumps [Alfresco/alfresco-build-tools](https://github.com/alfresco/alfresco-build-tools) from 8.9.0 to 8.12.1.
- [Release notes](https://github.com/alfresco/alfresco-build-tools/releases)
- [Commits](1627263358...4b0ea0ccff)

---
updated-dependencies:
- dependency-name: Alfresco/alfresco-build-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:05:40 +01:00
dependabot[bot]
f3c3e67218
build(deps): bump github/codeql-action from 3.28.1 to 3.28.8 (#10610)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.1 to 3.28.8.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](b6a472f63d...dd746615b3)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:05:24 +01:00
dependabot[bot]
6a46ad30c5
build(deps): bump Alfresco/alfresco-build-tools from 8.9.0 to 8.12.1 (#10611)
Bumps [Alfresco/alfresco-build-tools](https://github.com/alfresco/alfresco-build-tools) from 8.9.0 to 8.12.1.
- [Release notes](https://github.com/alfresco/alfresco-build-tools/releases)
- [Commits](1627263358...4b0ea0ccff)

---
updated-dependencies:
- dependency-name: Alfresco/alfresco-build-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:05:10 +01:00
dependabot[bot]
9d2444bf63
build(deps): bump actions/setup-node in /.github/actions/setup (#10613)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](39370e3970...1d0ff469b7)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-03 13:04:56 +01:00
Bartosz Sekula
34855a840a
AAE-30563 Required Form Drop down with default selection (#10614) 2025-02-03 11:51:09 +01:00
dominikiwanekhyland
0c459227a8
[ACS-8223] - Remove MomentDateTimePipe (#10602)
[ACS-8222] - Remove MomentDatePipe
2025-01-31 15:11:52 +01:00
Robert Duda
43f3a5b55f
AAE-30771 Show username on hover in people component (#10603) 2025-01-31 12:31:56 +01:00
swapnil-verma-gl
3b95e4ab25
[ACS-9119] Fixed textOrientation getting reset on arabic after browser refresh (#10591)
* [ACS-9119] Fixed issue where hitting browser refresh on arabic language changes the direction from rtl to ltr

* [ACS-9119] Added unit test

* [ACS-9119] Fixed UI issue in sidenav where incorrect margin-right was set when switching window sizes

* [ACS-9119] Addressed PR comments

* [ACS-9119] Fixed sonar issue

* [ACS-9119] Added margin-right 0 to mat-sidenav-content
2025-01-31 13:49:44 +05:30
Tomasz Nastaly
4124a49f41
AAE-30141 Fix broken amount field (#10588) 2025-01-30 20:30:59 +01:00