@alfresco/adf-process-services-cloud 8.4.0-17844146986 → 8.4.0-17855306064
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/README.md +16 -0
- package/bundles/assets/adf-process-services-cloud/i18n/ar.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/cs.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/da.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/fi.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/ja.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/nb.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/nl.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/pt-BR.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/ru.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/sv.json +1 -1
- package/bundles/assets/adf-process-services-cloud/i18n/zh-CN.json +1 -1
- package/fesm2022/adf-process-services-cloud.mjs +2 -6
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/lib/app/components/app-details-cloud/app-details-cloud.component.d.ts +0 -1
- package/lib/app/components/app-details-cloud/app-details-cloud.component.scss +2 -7
- package/lib/app/components/app-list-cloud/app-list-cloud.component.d.ts +0 -1
- package/lib/app/public-api.d.ts +2 -2
- package/lib/form/components/form-cloud.component.scss +5 -29
- package/lib/form/components/form-definition-selector-cloud.component.d.ts +0 -1
- package/lib/form/services/form-definition-selector-cloud.service.d.ts +0 -1
- package/package.json +4 -4
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
import { EventEmitter } from '@angular/core';
|
|
18
18
|
import { ApplicationInstanceModel } from '../../models/application-instance.model';
|
|
19
19
|
import * as i0 from "@angular/core";
|
|
20
|
-
/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */
|
|
21
20
|
export declare class AppDetailsCloudComponent {
|
|
22
21
|
applicationInstance: ApplicationInstanceModel;
|
|
23
22
|
selectedApp: EventEmitter<ApplicationInstanceModel>;
|
|
@@ -90,9 +90,7 @@ adf-cloud-app-details {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
outline: none;
|
|
93
|
-
transition:
|
|
94
|
-
transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
|
|
95
|
-
box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
93
|
+
transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
96
94
|
min-height: 200px;
|
|
97
95
|
flex-direction: column;
|
|
98
96
|
box-sizing: border-box;
|
|
@@ -101,10 +99,7 @@ adf-cloud-app-details {
|
|
|
101
99
|
max-width: unset;
|
|
102
100
|
|
|
103
101
|
&:hover {
|
|
104
|
-
box-shadow:
|
|
105
|
-
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
106
|
-
0 3px 14px 2px rgba(0, 0, 0, 0.12),
|
|
107
|
-
0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
102
|
+
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
108
103
|
cursor: pointer;
|
|
109
104
|
transform: scale(1.015);
|
|
110
105
|
}
|
|
@@ -23,7 +23,6 @@ import * as i0 from "@angular/core";
|
|
|
23
23
|
export declare const LAYOUT_LIST: string;
|
|
24
24
|
export declare const LAYOUT_GRID: string;
|
|
25
25
|
export declare const DEPLOYED_STATUS: string;
|
|
26
|
-
/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */
|
|
27
26
|
export declare class AppListCloudComponent implements OnInit, AfterContentInit {
|
|
28
27
|
private appsProcessCloudService;
|
|
29
28
|
emptyCustomContent: CustomEmptyContentTemplateDirective;
|
package/lib/app/public-api.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* See the License for the specific language governing permissions and
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
|
+
export * from './components/app-list-cloud/app-list-cloud.component';
|
|
18
|
+
export * from './components/app-details-cloud/app-details-cloud.component';
|
|
17
19
|
export * from './services/apps-process-cloud.service';
|
|
18
20
|
export * from './models/application-instance.model';
|
|
19
21
|
export * from './app-list-cloud.module';
|
|
20
|
-
export * from './components/app-list-cloud/app-list-cloud.component';
|
|
21
|
-
export * from './components/app-details-cloud/app-details-cloud.component';
|
|
@@ -10,14 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.adf-cloud-form {
|
|
13
|
-
&-content-standalone-fullscreen {
|
|
14
|
-
background-color: transparent;
|
|
15
|
-
border-radius: 14px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
13
|
&-container {
|
|
19
|
-
border-radius: 14px;
|
|
20
|
-
|
|
21
14
|
.adf-cloud-form-content {
|
|
22
15
|
@extend .adf-full-screen;
|
|
23
16
|
|
|
@@ -29,22 +22,11 @@
|
|
|
29
22
|
}
|
|
30
23
|
|
|
31
24
|
&-fullscreen-container {
|
|
32
|
-
position: fixed;
|
|
33
|
-
top: 0;
|
|
34
|
-
left: 0;
|
|
35
|
-
z-index: 100000;
|
|
36
|
-
background-color: var(--adf-theme-mat-grey-color-a400);
|
|
37
|
-
display: block;
|
|
38
|
-
height: 100%;
|
|
39
|
-
width: 100vw;
|
|
40
|
-
overflow-y: auto;
|
|
41
|
-
border-radius: 0 0 14px;
|
|
42
|
-
|
|
43
25
|
.adf-cloud-form-content {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
26
|
+
position: fixed;
|
|
27
|
+
top: 0;
|
|
28
|
+
left: 0;
|
|
29
|
+
z-index: 100000;
|
|
48
30
|
}
|
|
49
31
|
}
|
|
50
32
|
|
|
@@ -52,10 +34,9 @@
|
|
|
52
34
|
@extend .adf-full-screen;
|
|
53
35
|
}
|
|
54
36
|
|
|
55
|
-
&-toolbar
|
|
37
|
+
&-toolbar {
|
|
56
38
|
#{ms.$mat-toolbar} {
|
|
57
39
|
background-color: var(--adf-theme-background-card-color-087);
|
|
58
|
-
border-radius: 14px 14px 0 0;
|
|
59
40
|
}
|
|
60
41
|
}
|
|
61
42
|
|
|
@@ -91,7 +72,6 @@
|
|
|
91
72
|
overflow-y: auto;
|
|
92
73
|
position: static;
|
|
93
74
|
height: 70%;
|
|
94
|
-
border-radius: 14px;
|
|
95
75
|
|
|
96
76
|
&-fullscreen {
|
|
97
77
|
padding: 0;
|
|
@@ -99,10 +79,6 @@
|
|
|
99
79
|
width: 100%;
|
|
100
80
|
position: relative;
|
|
101
81
|
|
|
102
|
-
&-toolbar {
|
|
103
|
-
border-radius: 0 0 14px 14px;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
82
|
&-container {
|
|
107
83
|
display: flex;
|
|
108
84
|
flex-direction: column;
|
|
@@ -20,7 +20,6 @@ import { FormDefinitionSelectorCloudService } from '../services/form-definition-
|
|
|
20
20
|
import { MatSelectChange } from '@angular/material/select';
|
|
21
21
|
import { FormRepresentation } from '../../services/form-fields.interfaces';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
23
|
-
/** @deprecated this component will be removed because it's unused https://hyland.atlassian.net/browse/ACS-10178 */
|
|
24
23
|
export declare class FormDefinitionSelectorCloudComponent implements OnInit {
|
|
25
24
|
private formDefinitionCloudService;
|
|
26
25
|
/** Name of the application. If specified, this shows the users who have access to the app. */
|
|
@@ -3,7 +3,6 @@ import { BaseCloudService } from '../../services/base-cloud.service';
|
|
|
3
3
|
import { FormRepresentation } from '../../services/form-fields.interfaces';
|
|
4
4
|
import { FormDefinitionSelectorCloudServiceInterface } from './form-definition-selector-cloud.service.interface';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
/** @deprecated this service will be removed because it's component is unused https://hyland.atlassian.net/browse/ACS-10178 */
|
|
7
6
|
export declare class FormDefinitionSelectorCloudService extends BaseCloudService implements FormDefinitionSelectorCloudServiceInterface {
|
|
8
7
|
/**
|
|
9
8
|
* Get all forms of an app.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-process-services-cloud",
|
|
3
3
|
"description": "Alfresco ADF process services cloud",
|
|
4
|
-
"version": "8.4.0-
|
|
4
|
+
"version": "8.4.0-17855306064",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/platform-browser": ">=14.1.3",
|
|
22
22
|
"@angular/platform-browser-dynamic": ">=14.1.3",
|
|
23
23
|
"@angular/router": ">=14.1.3",
|
|
24
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
25
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
-
"@alfresco/adf-content-services": ">=8.4.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-17855306064",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-17855306064",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-17855306064",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1",
|