@alfresco/adf-core 8.1.0-15340390815 → 8.1.0-15387286716
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/esm2022/lib/card-view/components/card-view/card-view.component.mjs +3 -3
- package/esm2022/lib/form/components/form-renderer.component.mjs +3 -3
- package/esm2022/lib/form/components/inplace-form-input/inplace-form-input.component.mjs +3 -3
- package/esm2022/lib/form/components/widgets/amount/amount.widget.mjs +3 -3
- package/esm2022/lib/form/components/widgets/date/date.widget.mjs +3 -3
- package/esm2022/lib/form/components/widgets/date-time/date-time.widget.mjs +3 -3
- package/esm2022/lib/form/components/widgets/decimal/decimal.component.mjs +3 -3
- package/esm2022/lib/form/components/widgets/multiline-text/multiline-text.widget.mjs +3 -3
- package/esm2022/lib/form/components/widgets/number/number.widget.mjs +3 -3
- package/esm2022/lib/form/components/widgets/text/text.widget.mjs +3 -3
- package/esm2022/lib/viewer/components/viewer.component.mjs +18 -3
- package/fesm2022/adf-core.mjs +37 -22
- package/fesm2022/adf-core.mjs.map +1 -1
- package/lib/card-view/components/card-view/card-view.component.scss +1 -0
- package/lib/form/components/form-renderer.component.scss +9 -0
- package/lib/form/components/inplace-form-input/inplace-form-input.component.scss +1 -1
- package/lib/viewer/components/viewer.component.d.ts +2 -0
- package/lib/viewer/components/viewer.component.scss +1 -14
- package/package.json +3 -3
|
@@ -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;
|
|
@@ -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-15387286716",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -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-15387286716",
|
|
79
|
+
"@alfresco/adf-extensions": ">=8.1.0-15387286716",
|
|
80
80
|
"minimatch": ">=10.0.0",
|
|
81
81
|
"pdfjs-dist": ">=3.3.122",
|
|
82
82
|
"ts-morph": ">=20.0.0"
|