@alfresco/adf-core 8.1.0-15467664243 → 8.1.0-15470372956

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/bundles/assets/adf-core/i18n/de.json +1 -1
  2. package/esm2022/auth/authentication-interceptor/authentication.interceptor.mjs +4 -4
  3. package/esm2022/lib/card-view/components/card-view/card-view.component.mjs +3 -3
  4. package/esm2022/lib/form/components/form-renderer.component.mjs +3 -3
  5. package/esm2022/lib/form/components/inplace-form-input/inplace-form-input.component.mjs +3 -3
  6. package/esm2022/lib/form/components/widgets/amount/amount.widget.mjs +3 -3
  7. package/esm2022/lib/form/components/widgets/date/date.widget.mjs +3 -3
  8. package/esm2022/lib/form/components/widgets/date-time/date-time.widget.mjs +3 -3
  9. package/esm2022/lib/form/components/widgets/decimal/decimal.component.mjs +3 -3
  10. package/esm2022/lib/form/components/widgets/multiline-text/multiline-text.widget.mjs +3 -3
  11. package/esm2022/lib/form/components/widgets/number/number.widget.mjs +3 -3
  12. package/esm2022/lib/form/components/widgets/text/text.widget.mjs +3 -3
  13. package/esm2022/lib/viewer/components/pdf-viewer/pdf-viewer.component.mjs +6 -9
  14. package/esm2022/lib/viewer/components/viewer.component.mjs +18 -3
  15. package/fesm2022/adf-core.mjs +42 -30
  16. package/fesm2022/adf-core.mjs.map +1 -1
  17. package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
  18. package/fesm2022/alfresco-adf-core-auth.mjs.map +1 -1
  19. package/lib/card-view/components/card-view/card-view.component.scss +1 -0
  20. package/lib/form/components/form-renderer.component.scss +9 -0
  21. package/lib/form/components/inplace-form-input/inplace-form-input.component.scss +1 -1
  22. package/lib/viewer/components/pdf-viewer/pdf-viewer.component.d.ts +2 -2
  23. package/lib/viewer/components/viewer.component.d.ts +2 -0
  24. package/lib/viewer/components/viewer.component.scss +1 -14
  25. package/package.json +4 -4
@@ -47,20 +47,20 @@ class AuthenticationInterceptor {
47
47
  intercept(req, next) {
48
48
  if (req.context.get(SHOULD_ADD_AUTH_TOKEN)) {
49
49
  return this.authService.addTokenToHeader(req.url, req.headers).pipe(mergeMap((headersWithBearer) => {
50
- const headerWithContentType = this.appendJsonContentType(headersWithBearer);
50
+ const headerWithContentType = this.appendJsonContentType(headersWithBearer, req.body);
51
51
  const kcReq = req.clone({ headers: headerWithContentType });
52
52
  return next.handle(kcReq).pipe(catchError((error) => throwError(error)));
53
53
  }));
54
54
  }
55
55
  return next.handle(req).pipe(catchError((error) => throwError(error)));
56
56
  }
57
- appendJsonContentType(headers) {
57
+ appendJsonContentType(headers, reqBody) {
58
58
  // prevent adding any content type, to properly handle formData with boundary browser generated value,
59
59
  // as adding any Content-Type its going to break the upload functionality
60
60
  if (headers.get('Content-Type') === 'multipart/form-data') {
61
61
  return headers.delete('Content-Type');
62
62
  }
63
- if (!headers.get('Content-Type')) {
63
+ if (!headers.get('Content-Type') && !(reqBody instanceof FormData)) {
64
64
  return headers.set('Content-Type', 'application/json;charset=UTF-8');
65
65
  }
66
66
  return headers;
@@ -1 +1 @@
1
- {"version":3,"file":"alfresco-adf-core-auth.mjs","sources":["../../../../lib/core/auth/src/authentication.ts","../../../../lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts","../../../../lib/core/auth/src/index.ts","../../../../lib/core/auth/src/alfresco-adf-core-auth.ts"],"sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\nexport abstract class Authentication {\n public abstract addTokenToHeader(requestUrl: string, headers: HttpHeaders): Observable<HttpHeaders>;\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n HttpContextToken,\n HttpHandler,\n HttpHeaderResponse,\n HttpHeaders,\n HttpInterceptor,\n HttpProgressEvent,\n HttpRequest,\n HttpResponse,\n HttpSentEvent,\n HttpUserEvent\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable, throwError as observableThrowError } from 'rxjs';\nimport { catchError, mergeMap } from 'rxjs/operators';\nimport { Authentication } from '../authentication';\n\nexport const SHOULD_ADD_AUTH_TOKEN = new HttpContextToken<boolean>(() => false);\n\n@Injectable()\nexport class AuthenticationInterceptor implements HttpInterceptor {\n constructor(private authService: Authentication) {}\n\n intercept(\n req: HttpRequest<any>,\n next: HttpHandler\n ): Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>> {\n if (req.context.get(SHOULD_ADD_AUTH_TOKEN)) {\n return this.authService.addTokenToHeader(req.url, req.headers).pipe(\n mergeMap((headersWithBearer) => {\n const headerWithContentType = this.appendJsonContentType(headersWithBearer);\n const kcReq = req.clone({ headers: headerWithContentType });\n return next.handle(kcReq).pipe(catchError((error) => observableThrowError(error)));\n })\n );\n }\n\n return next.handle(req).pipe(catchError((error) => observableThrowError(error)));\n }\n\n private appendJsonContentType(headers: HttpHeaders): HttpHeaders {\n // prevent adding any content type, to properly handle formData with boundary browser generated value,\n // as adding any Content-Type its going to break the upload functionality\n\n if (headers.get('Content-Type') === 'multipart/form-data') {\n return headers.delete('Content-Type');\n }\n\n if (!headers.get('Content-Type')) {\n return headers.set('Content-Type', 'application/json;charset=UTF-8');\n }\n\n return headers;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './authentication';\nexport * from './authentication-interceptor/authentication.interceptor';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["observableThrowError","i1.Authentication"],"mappings":";;;;;;AAAA;;;;;;;;;;;;;;;AAeG;MAKmB,cAAc,CAAA;AAEnC;;ACtBD;;;;;;;;;;;;;;;AAeG;AAmBI,MAAM,qBAAqB,GAAG,IAAI,gBAAgB,CAAU,MAAM,KAAK,EAAE;MAGnE,yBAAyB,CAAA;AAClC,IAAA,WAAA,CAAoB,WAA2B,EAAA;QAA3B,IAAW,CAAA,WAAA,GAAX,WAAW,CAAgB;KAAI;IAEnD,SAAS,CACL,GAAqB,EACrB,IAAiB,EAAA;QAEjB,IAAI,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,EAAE;YACxC,OAAO,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,IAAI,CAC/D,QAAQ,CAAC,CAAC,iBAAiB,KAAI;gBAC3B,MAAM,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,iBAAiB,CAAC,CAAC;AAC5E,gBAAA,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,qBAAqB,EAAE,CAAC,CAAC;gBAC5D,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,KAAKA,UAAoB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;aACtF,CAAC,CACL,CAAC;SACL;QAED,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,KAAKA,UAAoB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACpF;AAEO,IAAA,qBAAqB,CAAC,OAAoB,EAAA;;;QAI9C,IAAI,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,KAAK,qBAAqB,EAAE;AACvD,YAAA,OAAO,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;SACzC;QAED,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,EAAE;YAC9B,OAAO,OAAO,CAAC,GAAG,CAAC,cAAc,EAAE,gCAAgC,CAAC,CAAC;SACxE;AAED,QAAA,OAAO,OAAO,CAAC;KAClB;+GAjCQ,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAC,cAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA,EAAA;mHAAzB,yBAAyB,EAAA,CAAA,CAAA,EAAA;;4FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBADrC,UAAU;;;ACpCX;;;;;;;;;;;;;;;AAeG;;ACfH;;AAEG;;;;"}
1
+ {"version":3,"file":"alfresco-adf-core-auth.mjs","sources":["../../../../lib/core/auth/src/authentication.ts","../../../../lib/core/auth/src/authentication-interceptor/authentication.interceptor.ts","../../../../lib/core/auth/src/index.ts","../../../../lib/core/auth/src/alfresco-adf-core-auth.ts"],"sourcesContent":["/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { HttpHeaders } from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\nexport abstract class Authentication {\n public abstract addTokenToHeader(requestUrl: string, headers: HttpHeaders): Observable<HttpHeaders>;\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n HttpContextToken,\n HttpHandler,\n HttpHeaderResponse,\n HttpHeaders,\n HttpInterceptor,\n HttpProgressEvent,\n HttpRequest,\n HttpResponse,\n HttpSentEvent,\n HttpUserEvent\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable, throwError as observableThrowError } from 'rxjs';\nimport { catchError, mergeMap } from 'rxjs/operators';\nimport { Authentication } from '../authentication';\n\nexport const SHOULD_ADD_AUTH_TOKEN = new HttpContextToken<boolean>(() => false);\n\n@Injectable()\nexport class AuthenticationInterceptor implements HttpInterceptor {\n constructor(private authService: Authentication) {}\n\n intercept(\n req: HttpRequest<any>,\n next: HttpHandler\n ): Observable<HttpSentEvent | HttpHeaderResponse | HttpProgressEvent | HttpResponse<any> | HttpUserEvent<any>> {\n if (req.context.get(SHOULD_ADD_AUTH_TOKEN)) {\n return this.authService.addTokenToHeader(req.url, req.headers).pipe(\n mergeMap((headersWithBearer) => {\n const headerWithContentType = this.appendJsonContentType(headersWithBearer, req.body);\n const kcReq = req.clone({ headers: headerWithContentType });\n return next.handle(kcReq).pipe(catchError((error) => observableThrowError(error)));\n })\n );\n }\n\n return next.handle(req).pipe(catchError((error) => observableThrowError(error)));\n }\n\n private appendJsonContentType(headers: HttpHeaders, reqBody: any): HttpHeaders {\n // prevent adding any content type, to properly handle formData with boundary browser generated value,\n // as adding any Content-Type its going to break the upload functionality\n\n if (headers.get('Content-Type') === 'multipart/form-data') {\n return headers.delete('Content-Type');\n }\n\n if (!headers.get('Content-Type') && !(reqBody instanceof FormData)) {\n return headers.set('Content-Type', 'application/json;charset=UTF-8');\n }\n\n return headers;\n }\n}\n","/*!\n * @license\n * Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport * from './authentication';\nexport * from './authentication-interceptor/authentication.interceptor';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["observableThrowError","i1.Authentication"],"mappings":";;;;;;AAAA;;;;;;;;;;;;;;;AAeG;MAKmB,cAAc,CAAA;AAEnC;;ACtBD;;;;;;;;;;;;;;;AAeG;AAmBI,MAAM,qBAAqB,GAAG,IAAI,gBAAgB,CAAU,MAAM,KAAK,EAAE;MAGnE,yBAAyB,CAAA;AAClC,IAAA,WAAA,CAAoB,WAA2B,EAAA;QAA3B,IAAW,CAAA,WAAA,GAAX,WAAW,CAAgB;KAAI;IAEnD,SAAS,CACL,GAAqB,EACrB,IAAiB,EAAA;QAEjB,IAAI,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,EAAE;YACxC,OAAO,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC,IAAI,CAC/D,QAAQ,CAAC,CAAC,iBAAiB,KAAI;AAC3B,gBAAA,MAAM,qBAAqB,GAAG,IAAI,CAAC,qBAAqB,CAAC,iBAAiB,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;AACtF,gBAAA,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,qBAAqB,EAAE,CAAC,CAAC;gBAC5D,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,KAAKA,UAAoB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;aACtF,CAAC,CACL,CAAC;SACL;QAED,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,KAAK,KAAKA,UAAoB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACpF;IAEO,qBAAqB,CAAC,OAAoB,EAAE,OAAY,EAAA;;;QAI5D,IAAI,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,KAAK,qBAAqB,EAAE;AACvD,YAAA,OAAO,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;SACzC;AAED,QAAA,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,EAAE,OAAO,YAAY,QAAQ,CAAC,EAAE;YAChE,OAAO,OAAO,CAAC,GAAG,CAAC,cAAc,EAAE,gCAAgC,CAAC,CAAC;SACxE;AAED,QAAA,OAAO,OAAO,CAAC;KAClB;+GAjCQ,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAAC,cAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA,EAAA;mHAAzB,yBAAyB,EAAA,CAAA,CAAA,EAAA;;4FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBADrC,UAAU;;;ACpCX;;;;;;;;;;;;;;;AAeG;;ACfH;;AAEG;;;;"}
@@ -8,6 +8,7 @@
8
8
  .adf-property-label {
9
9
  color: var(--adf-metadata-property-panel-text-color);
10
10
  display: flex;
11
+ padding: 3px 0;
11
12
  line-height: 20px;
12
13
 
13
14
  &.adf-property-value-editable {
@@ -219,6 +219,15 @@
219
219
  text-align: center;
220
220
  }
221
221
 
222
+ &-label {
223
+ width: 32px;
224
+ height: 16px;
225
+ font-size: var(--theme-caption-font-size);
226
+ line-height: var(--theme-headline-line-height);
227
+ text-align: left;
228
+ white-space: nowrap;
229
+ }
230
+
222
231
  &-form-mat-card-actions {
223
232
  padding-bottom: 25px;
224
233
  padding-right: 25px;
@@ -24,7 +24,7 @@ $adf-inplace-input-padding: 7px;
24
24
  }
25
25
 
26
26
  .adf-inplace-input-mat-form-field {
27
- width: 98%;
27
+ width: 100%;
28
28
  }
29
29
 
30
30
  .adf-inplace-input {
@@ -21,7 +21,7 @@ export declare class PdfViewerComponent implements OnChanges, OnDestroy {
21
21
  displayPage: number;
22
22
  totalPages: number;
23
23
  loadingPercent: number;
24
- pdfViewer: PDFViewer;
24
+ pdfViewer: any;
25
25
  pdfJsWorkerUrl: string;
26
26
  pdfJsWorkerInstance: Worker;
27
27
  currentScaleMode: PdfScaleMode;
@@ -83,7 +83,7 @@ export declare class PdfViewerComponent implements OnChanges, OnDestroy {
83
83
  * @param newScale - new scale page
84
84
  * @returns `true` if the scale is the same, otherwise `false`
85
85
  */
86
- isSameScale(oldScale: string, newScale: string): boolean;
86
+ isSameScale(oldScale: number, newScale: number): boolean;
87
87
  /**
88
88
  * Check if is a land scape view
89
89
  *
@@ -131,6 +131,7 @@ export declare class ViewerComponent<T> implements OnDestroy, OnInit, OnChanges
131
131
  private _fileName;
132
132
  private _fileNameWithoutExtension;
133
133
  private _fileExtension;
134
+ displayName: string;
134
135
  downloadPromptTimer: number;
135
136
  downloadPromptReminderTimer: number;
136
137
  mimeTypeIconUrl: string;
@@ -159,6 +160,7 @@ export declare class ViewerComponent<T> implements OnDestroy, OnInit, OnChanges
159
160
  enterFullScreen(): void;
160
161
  onSubmitFile(newImageBlob: Blob): void;
161
162
  ngOnDestroy(): void;
163
+ getDisplayFileName(): string;
162
164
  private configureAndInitDownloadPrompt;
163
165
  private configureDownloadPromptProperties;
164
166
  private initDownloadPrompt;
@@ -55,23 +55,10 @@
55
55
 
56
56
  &__display-name {
57
57
  font-size: var(--theme-subheading-2-font-size);
58
- opacity: 0.87;
59
58
  line-height: 1.5;
60
- letter-spacing: -0.4px;
61
- font-weight: normal;
62
- font-style: normal;
63
- font-stretch: normal;
64
59
  vertical-align: middle;
65
60
  color: var(--adf-theme-foreground-text-color);
66
-
67
- &-without-extension {
68
- display: inline-block;
69
- text-overflow: ellipsis;
70
- overflow: hidden;
71
- max-width: 400px;
72
- white-space: nowrap;
73
- vertical-align: bottom;
74
- }
61
+ white-space: nowrap;
75
62
  }
76
63
 
77
64
  &-container {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alfresco/adf-core",
3
3
  "description": "Alfresco ADF core",
4
- "version": "8.1.0-15467664243",
4
+ "version": "8.1.0-15470372956",
5
5
  "author": "Hyland Software, Inc. and its affiliates",
6
6
  "repository": {
7
7
  "type": "git",
@@ -60,7 +60,7 @@
60
60
  "angular-oauth2-oidc": "17.0.2",
61
61
  "angular-oauth2-oidc-jwks": "17.0.2",
62
62
  "date-fns": "^2.30.0",
63
- "rxjs": "7.8.1",
63
+ "rxjs": "7.8.2",
64
64
  "tslib": "^2.3.0"
65
65
  },
66
66
  "peerDependencies": {
@@ -75,8 +75,8 @@
75
75
  "@angular/router": ">=16.0.0",
76
76
  "@mat-datetimepicker/core": ">=12.0.1",
77
77
  "@ngx-translate/core": ">=14.0.0",
78
- "@alfresco/js-api": ">=9.1.0-15467664243",
79
- "@alfresco/adf-extensions": ">=8.1.0-15467664243",
78
+ "@alfresco/js-api": ">=9.1.0-15470372956",
79
+ "@alfresco/adf-extensions": ">=8.1.0-15470372956",
80
80
  "minimatch": ">=10.0.0",
81
81
  "pdfjs-dist": ">=3.3.122",
82
82
  "ts-morph": ">=20.0.0"