@alfresco/adf-process-services-cloud 8.4.0-19060916420 → 8.4.0-19063861366
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/fesm2022/adf-process-services-cloud.mjs +48 -48
- package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
- package/lib/app/components/app-details-cloud/app-details-cloud.component.scss +168 -0
- package/lib/form/components/form-cloud.component.scss +2 -11
- package/lib/form/components/spinner/form-spinner.component.scss +1 -1
- package/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.scss +3 -20
- package/lib/form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component.scss +1 -1
- package/lib/form/components/widgets/data-table/data-table.widget.scss +0 -1
- package/lib/form/components/widgets/display-external-property/display-external-property.widget.scss +0 -1
- package/lib/form/components/widgets/display-rich-text/display-rich-text.widget.scss +0 -9
- package/lib/form/components/widgets/dropdown/dropdown-cloud.widget.scss +0 -4
- package/lib/form/components/widgets/properties-viewer/properties-viewer.widget.scss +1 -1
- package/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.scss +0 -9
- package/lib/group/components/group-cloud.component.scss +3 -14
- package/lib/people/components/people-cloud.component.scss +3 -22
- package/lib/process/process-filters/components/edit-process-filter/edit-process-filter-cloud.component.scss +0 -23
- package/lib/process/process-filters/components/process-filters/process-filters-cloud.component.scss +8 -9
- package/lib/process/start-process/components/start-process-cloud.component.scss +0 -4
- package/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter/edit-service-task-filter-cloud.component.scss +0 -24
- package/lib/task/task-filters/components/edit-task-filters/edit-task-filter/edit-task-filter-cloud.component.scss +0 -24
- package/lib/task/task-filters/components/service-task-filters/service-task-filters-cloud.component.scss +8 -8
- package/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.scss +0 -16
- package/lib/task/task-filters/components/task-filters/task-filters-cloud.component.scss +7 -11
- package/lib/task/task-header/components/task-header-cloud.component.scss +2 -2
- package/package.json +4 -4
- package/lib/process/process-header/components/process-header-cloud.component.scss +0 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.adf-task-filters {
|
|
2
|
-
margin-right:
|
|
2
|
+
margin-right: -16px;
|
|
3
3
|
|
|
4
4
|
&__entry {
|
|
5
|
-
font-size: var(--
|
|
6
|
-
color: var(--
|
|
5
|
+
font-size: var(--mat-sys-body-medium-size);
|
|
6
|
+
color: var(--mat-sys-on-surface-variant);
|
|
7
7
|
display: flex;
|
|
8
8
|
justify-content: space-between;
|
|
9
9
|
align-items: center;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
height: 100%;
|
|
12
12
|
|
|
13
13
|
&:hover {
|
|
14
|
-
color: var(--
|
|
14
|
+
color: var(--mat-sys-primary);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
display: flex;
|
|
20
20
|
flex: 1;
|
|
21
21
|
align-items: center;
|
|
22
|
-
gap:
|
|
22
|
+
gap: 16px;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&__entry-counter {
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
border-radius: 15px;
|
|
28
28
|
|
|
29
29
|
&.adf-active {
|
|
30
|
-
background-color: var(--
|
|
31
|
-
color: var(--
|
|
30
|
+
background-color: var(--mat-sys-secondary);
|
|
31
|
+
color: var(--mat-sys-on-secondary);
|
|
32
32
|
font-size: smaller;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.adf-active .adf-task-filters__entry-label {
|
|
37
|
-
color: var(--
|
|
37
|
+
color: var(--mat-sys-primary);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -9,22 +9,6 @@
|
|
|
9
9
|
&-container {
|
|
10
10
|
width: 100%;
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
&-label {
|
|
14
|
-
color: var(--adf-theme-foreground-secondary-text-color);
|
|
15
|
-
|
|
16
|
-
&.adf-task-assignment-filter-label--focus {
|
|
17
|
-
color: var(--theme-primary-color);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&-option {
|
|
22
|
-
color: var(--adf-theme-foreground-text-color);
|
|
23
|
-
|
|
24
|
-
&.adf-task-assignment-filter-option--selected:not(&:disabled) {
|
|
25
|
-
color: var(--theme-primary-color);
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
12
|
}
|
|
29
13
|
|
|
30
14
|
.adf-group-cloud-filter {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.adf-task-filters {
|
|
2
|
-
margin-right:
|
|
2
|
+
margin-right: -16px;
|
|
3
3
|
|
|
4
4
|
&__entry {
|
|
5
|
-
font-size: var(--
|
|
6
|
-
color: var(--
|
|
5
|
+
font-size: var(--mat-sys-body-medium-size);
|
|
6
|
+
color: var(--mat-sys-on-surface-variant);
|
|
7
7
|
display: flex;
|
|
8
8
|
justify-content: space-between;
|
|
9
9
|
align-items: center;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
height: 100%;
|
|
12
12
|
|
|
13
13
|
&:hover {
|
|
14
|
-
color: var(--
|
|
14
|
+
color: var(--mat-sys-primary);
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
display: flex;
|
|
20
20
|
flex: 1;
|
|
21
21
|
align-items: center;
|
|
22
|
-
gap:
|
|
22
|
+
gap: 16px;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&__entry-counter {
|
|
@@ -27,13 +27,9 @@
|
|
|
27
27
|
border-radius: 15px;
|
|
28
28
|
|
|
29
29
|
&.adf-active {
|
|
30
|
-
background-color: var(--
|
|
31
|
-
color: var(--
|
|
30
|
+
background-color: var(--mat-sys-secondary);
|
|
31
|
+
color: var(--mat-sys-on-secondary);
|
|
32
32
|
font-size: smaller;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
|
|
36
|
-
.adf-active .adf-task-filters__entry-label {
|
|
37
|
-
color: var(--theme-primary-color);
|
|
38
|
-
}
|
|
39
35
|
}
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
&-switch-to-edit-mode,
|
|
16
16
|
&-save-edit-mode {
|
|
17
|
-
color: var(--
|
|
17
|
+
color: var(--mat-sys-primary);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&-cancel-edit-mode,
|
|
21
21
|
&-claim-controls {
|
|
22
|
-
color:
|
|
22
|
+
color: var(--mat-sys-on-surface-variant);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&-task-header-loading {
|
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-19063861366",
|
|
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-19063861366",
|
|
25
|
+
"@alfresco/adf-core": ">=8.4.0-19063861366",
|
|
26
|
+
"@alfresco/adf-content-services": ">=8.4.0-19063861366",
|
|
27
27
|
"@apollo/client": ">=3.7.2",
|
|
28
28
|
"@ngx-translate/core": ">=14.0.0",
|
|
29
29
|
"apollo-angular": ">=4.0.1",
|