@alfresco/adf-process-services-cloud 8.4.0-17855306064 → 8.4.0-17857335540

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.
@@ -17,6 +17,7 @@
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 */
20
21
  export declare class AppDetailsCloudComponent {
21
22
  applicationInstance: ApplicationInstanceModel;
22
23
  selectedApp: EventEmitter<ApplicationInstanceModel>;
@@ -90,7 +90,9 @@ adf-cloud-app-details {
90
90
  }
91
91
 
92
92
  outline: none;
93
- transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
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);
94
96
  min-height: 200px;
95
97
  flex-direction: column;
96
98
  box-sizing: border-box;
@@ -99,7 +101,10 @@ adf-cloud-app-details {
99
101
  max-width: unset;
100
102
 
101
103
  &:hover {
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);
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);
103
108
  cursor: pointer;
104
109
  transform: scale(1.015);
105
110
  }
@@ -23,6 +23,7 @@ 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 */
26
27
  export declare class AppListCloudComponent implements OnInit, AfterContentInit {
27
28
  private appsProcessCloudService;
28
29
  emptyCustomContent: CustomEmptyContentTemplateDirective;
@@ -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';
19
17
  export * from './services/apps-process-cloud.service';
20
18
  export * from './models/application-instance.model';
21
19
  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,7 +10,14 @@
10
10
  }
11
11
 
12
12
  .adf-cloud-form {
13
+ &-content-standalone-fullscreen {
14
+ background-color: transparent;
15
+ border-radius: 14px;
16
+ }
17
+
13
18
  &-container {
19
+ border-radius: 14px;
20
+
14
21
  .adf-cloud-form-content {
15
22
  @extend .adf-full-screen;
16
23
 
@@ -22,11 +29,22 @@
22
29
  }
23
30
 
24
31
  &-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
+
25
43
  .adf-cloud-form-content {
26
- position: fixed;
27
- top: 0;
28
- left: 0;
29
- z-index: 100000;
44
+ width: calc(100% - 80px);
45
+ max-width: 1366px;
46
+ height: auto;
47
+ margin: 40px auto;
30
48
  }
31
49
  }
32
50
 
@@ -34,9 +52,10 @@
34
52
  @extend .adf-full-screen;
35
53
  }
36
54
 
37
- &-toolbar {
55
+ &-toolbar ::ng-deep {
38
56
  #{ms.$mat-toolbar} {
39
57
  background-color: var(--adf-theme-background-card-color-087);
58
+ border-radius: 14px 14px 0 0;
40
59
  }
41
60
  }
42
61
 
@@ -72,6 +91,7 @@
72
91
  overflow-y: auto;
73
92
  position: static;
74
93
  height: 70%;
94
+ border-radius: 14px;
75
95
 
76
96
  &-fullscreen {
77
97
  padding: 0;
@@ -79,6 +99,10 @@
79
99
  width: 100%;
80
100
  position: relative;
81
101
 
102
+ &-toolbar {
103
+ border-radius: 0 0 14px 14px;
104
+ }
105
+
82
106
  &-container {
83
107
  display: flex;
84
108
  flex-direction: column;
@@ -20,6 +20,7 @@ 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 */
23
24
  export declare class FormDefinitionSelectorCloudComponent implements OnInit {
24
25
  private formDefinitionCloudService;
25
26
  /** Name of the application. If specified, this shows the users who have access to the app. */
@@ -3,6 +3,7 @@ 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 */
6
7
  export declare class FormDefinitionSelectorCloudService extends BaseCloudService implements FormDefinitionSelectorCloudServiceInterface {
7
8
  /**
8
9
  * 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-17855306064",
4
+ "version": "8.4.0-17857335540",
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-17855306064",
25
- "@alfresco/adf-core": ">=8.4.0-17855306064",
26
- "@alfresco/adf-content-services": ">=8.4.0-17855306064",
24
+ "@alfresco/js-api": ">=9.4.0-17857335540",
25
+ "@alfresco/adf-core": ">=8.4.0-17857335540",
26
+ "@alfresco/adf-content-services": ">=8.4.0-17857335540",
27
27
  "@apollo/client": ">=3.7.2",
28
28
  "@ngx-translate/core": ">=14.0.0",
29
29
  "apollo-angular": ">=4.0.1",