@alfresco/adf-core 8.1.0-15484232623 → 8.1.0-15484746933
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.
- package/bundles/assets/adf-core/i18n/de.json +1 -1
- package/esm2022/auth/authentication-interceptor/authentication.interceptor.mjs +4 -4
- package/esm2022/lib/form/components/form-renderer.component.mjs +3 -3
- package/esm2022/lib/viewer/components/viewer-render/viewer-render.component.mjs +12 -20
- package/esm2022/lib/viewer/components/viewer.component.mjs +18 -3
- package/fesm2022/adf-core.mjs +29 -21
- package/fesm2022/adf-core.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
- package/fesm2022/alfresco-adf-core-auth.mjs.map +1 -1
- package/lib/viewer/components/viewer-render/viewer-render.component.d.ts +5 -9
- package/lib/viewer/components/viewer.component.d.ts +2 -0
- package/lib/viewer/components/viewer.component.scss +1 -14
- 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;
|
|
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;;;;"}
|
|
@@ -19,9 +19,7 @@ import { EventEmitter, Injector, OnChanges, OnInit, TemplateRef } from '@angular
|
|
|
19
19
|
import { MatDialog } from '@angular/material/dialog';
|
|
20
20
|
import { Track } from '../../models/viewer.model';
|
|
21
21
|
import { ViewUtilService } from '../../services/view-util.service';
|
|
22
|
-
import { BehaviorSubject } from 'rxjs';
|
|
23
22
|
import * as i0 from "@angular/core";
|
|
24
|
-
type ViewerType = 'media' | 'image' | 'pdf' | 'external' | 'text' | 'custom' | 'unknown';
|
|
25
23
|
export declare class ViewerRenderComponent implements OnChanges, OnInit {
|
|
26
24
|
private viewUtilService;
|
|
27
25
|
private extensionService;
|
|
@@ -44,6 +42,8 @@ export declare class ViewerRenderComponent implements OnChanges, OnInit {
|
|
|
44
42
|
mimeType: string;
|
|
45
43
|
/** Override Content filename. */
|
|
46
44
|
fileName: string;
|
|
45
|
+
/** Override loading status */
|
|
46
|
+
isLoading: boolean;
|
|
47
47
|
/** Enable when where is possible the editing functionalities */
|
|
48
48
|
readOnly: boolean;
|
|
49
49
|
/**
|
|
@@ -77,8 +77,8 @@ export declare class ViewerRenderComponent implements OnChanges, OnInit {
|
|
|
77
77
|
extensionsSupportedByTemplates: string[];
|
|
78
78
|
extension: string;
|
|
79
79
|
internalFileName: string;
|
|
80
|
-
viewerType:
|
|
81
|
-
|
|
80
|
+
viewerType: string;
|
|
81
|
+
isContentReady: boolean;
|
|
82
82
|
/**
|
|
83
83
|
* Returns a list of the active Viewer content extensions.
|
|
84
84
|
*
|
|
@@ -97,7 +97,6 @@ export declare class ViewerRenderComponent implements OnChanges, OnInit {
|
|
|
97
97
|
constructor(viewUtilService: ViewUtilService, extensionService: AppExtensionService, dialog: MatDialog, injector: Injector);
|
|
98
98
|
ngOnInit(): void;
|
|
99
99
|
ngOnChanges(): void;
|
|
100
|
-
markAsLoaded(): void;
|
|
101
100
|
private setUpBlobData;
|
|
102
101
|
private setUpUrlFile;
|
|
103
102
|
scrollTop(): void;
|
|
@@ -105,9 +104,6 @@ export declare class ViewerRenderComponent implements OnChanges, OnInit {
|
|
|
105
104
|
onSubmitFile(newImageBlob: Blob): void;
|
|
106
105
|
onUnsupportedFile(): void;
|
|
107
106
|
onClose(): void;
|
|
108
|
-
private canBePreviewed;
|
|
109
|
-
private setDefaultLoadingState;
|
|
110
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewerRenderComponent, never>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerRenderComponent, "adf-viewer-render", never, { "urlFile": { "alias": "urlFile"; "required": false; }; "blobFile": { "alias": "blobFile"; "required": false; }; "allowFullScreen": { "alias": "allowFullScreen"; "required": false; }; "allowThumbnails": { "alias": "allowThumbnails"; "required": false; }; "thumbnailsTemplate": { "alias": "thumbnailsTemplate"; "required": false; }; "mimeType": { "alias": "mimeType"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "allowedEditActions": { "alias": "allowedEditActions"; "required": false; }; "tracks": { "alias": "tracks"; "required": false; }; "nodeId": { "alias": "nodeId"; "required": false; }; "viewerTemplateExtensions": { "alias": "viewerTemplateExtensions"; "required": false; }; "customError": { "alias": "customError"; "required": false; }; }, { "extensionChange": "extensionChange"; "submitFile": "submitFile"; "close": "close"; "isSaving": "isSaving"; }, never, never, true, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewerRenderComponent, "adf-viewer-render", never, { "urlFile": { "alias": "urlFile"; "required": false; }; "blobFile": { "alias": "blobFile"; "required": false; }; "allowFullScreen": { "alias": "allowFullScreen"; "required": false; }; "allowThumbnails": { "alias": "allowThumbnails"; "required": false; }; "thumbnailsTemplate": { "alias": "thumbnailsTemplate"; "required": false; }; "mimeType": { "alias": "mimeType"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "allowedEditActions": { "alias": "allowedEditActions"; "required": false; }; "tracks": { "alias": "tracks"; "required": false; }; "nodeId": { "alias": "nodeId"; "required": false; }; "viewerTemplateExtensions": { "alias": "viewerTemplateExtensions"; "required": false; }; "customError": { "alias": "customError"; "required": false; }; }, { "extensionChange": "extensionChange"; "submitFile": "submitFile"; "close": "close"; "isSaving": "isSaving"; }, never, never, true, never>;
|
|
112
109
|
}
|
|
113
|
-
export {};
|
|
@@ -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-
|
|
4
|
+
"version": "8.1.0-15484746933",
|
|
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.
|
|
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-
|
|
79
|
-
"@alfresco/adf-extensions": ">=8.1.0-
|
|
78
|
+
"@alfresco/js-api": ">=9.1.0-15484746933",
|
|
79
|
+
"@alfresco/adf-extensions": ">=8.1.0-15484746933",
|
|
80
80
|
"minimatch": ">=10.0.0",
|
|
81
81
|
"pdfjs-dist": ">=3.3.122",
|
|
82
82
|
"ts-morph": ">=20.0.0"
|