@alfresco/adf-process-services-cloud 8.4.0-19302006691 → 8.4.0-19303130849

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.
Files changed (26) hide show
  1. package/fesm2022/adf-process-services-cloud.mjs +48 -48
  2. package/fesm2022/adf-process-services-cloud.mjs.map +1 -1
  3. package/lib/form/components/form-cloud.component.scss +11 -2
  4. package/lib/form/components/spinner/form-spinner.component.scss +1 -1
  5. package/lib/form/components/widgets/attach-file/attach-file-cloud-widget.component.scss +20 -3
  6. package/lib/form/components/widgets/attach-file/file-properties-table/file-properties-table-cloud.component.scss +1 -1
  7. package/lib/form/components/widgets/data-table/data-table.widget.scss +1 -0
  8. package/lib/form/components/widgets/display-external-property/display-external-property.widget.scss +1 -0
  9. package/lib/form/components/widgets/display-rich-text/display-rich-text.widget.scss +9 -0
  10. package/lib/form/components/widgets/dropdown/dropdown-cloud.widget.scss +4 -0
  11. package/lib/form/components/widgets/properties-viewer/properties-viewer.widget.scss +1 -1
  12. package/lib/form/components/widgets/radio-buttons/radio-buttons-cloud.widget.scss +9 -0
  13. package/lib/group/components/group-cloud.component.scss +14 -3
  14. package/lib/people/components/people-cloud.component.scss +22 -3
  15. package/lib/process/process-filters/components/edit-process-filter/edit-process-filter-cloud.component.scss +23 -0
  16. package/lib/process/process-filters/components/process-filters/process-filters-cloud.component.scss +9 -8
  17. package/lib/process/process-header/components/process-header-cloud.component.scss +3 -0
  18. package/lib/process/start-process/components/start-process-cloud.component.scss +4 -0
  19. package/lib/task/task-filters/components/edit-task-filters/edit-service-task-filter/edit-service-task-filter-cloud.component.scss +24 -0
  20. package/lib/task/task-filters/components/edit-task-filters/edit-task-filter/edit-task-filter-cloud.component.scss +24 -0
  21. package/lib/task/task-filters/components/service-task-filters/service-task-filters-cloud.component.scss +8 -8
  22. package/lib/task/task-filters/components/task-assignment-filter/task-assignment-filter.component.scss +16 -0
  23. package/lib/task/task-filters/components/task-filters/task-filters-cloud.component.scss +11 -7
  24. package/lib/task/task-header/components/task-header-cloud.component.scss +2 -2
  25. package/package.json +4 -4
  26. package/lib/app/components/app-details-cloud/app-details-cloud.component.scss +0 -168
@@ -1,168 +0,0 @@
1
- /* stylelint-disable scss/no-global-function-names */
2
- @mixin adf-line-clamp($line-height: 1.25, $lines: 3) {
3
- position: relative;
4
- line-height: $line-height;
5
- padding: 0;
6
- overflow: hidden;
7
- text-overflow: ellipsis;
8
-
9
- /* stylelint-disable */
10
- @supports (-webkit-line-clamp: 1) {
11
- display: -webkit-box;
12
- -webkit-box-orient: vertical;
13
- -webkit-line-clamp: $lines;
14
- height: calc(0.99em * #{$line-height} * #{$lines});
15
- }
16
-
17
- @supports not (-webkit-line-clamp: 1) {
18
- white-space: nowrap;
19
- width: 100%;
20
- }
21
-
22
- /* stylelint-enable */
23
- }
24
-
25
- $tile-themes: (
26
- theme-1: (
27
- bg: #269abc,
28
- color: #168aac
29
- ),
30
- theme-2: (
31
- bg: #7da9b0,
32
- color: #6d99a0
33
- ),
34
- theme-3: (
35
- bg: #7689ab,
36
- color: #66799b
37
- ),
38
- theme-4: (
39
- bg: #c74e3e,
40
- color: #b73e2e
41
- ),
42
- theme-5: (
43
- bg: #fab96c,
44
- color: #eaa95c
45
- ),
46
- theme-6: (
47
- bg: #759d4c,
48
- color: #658d3c
49
- ),
50
- theme-7: (
51
- bg: #b1b489,
52
- color: #a1a479
53
- ),
54
- theme-8: (
55
- bg: #a17299,
56
- color: #916289
57
- ),
58
- theme-9: (
59
- bg: #696c67,
60
- color: #595c57
61
- ),
62
- theme-10: (
63
- bg: #cabb33,
64
- color: #baab23
65
- )
66
- );
67
-
68
- adf-cloud-app-details {
69
- .adf-app-listgrid {
70
- padding: 8px;
71
- display: block;
72
-
73
- .adf-app-listgrid-item {
74
- outline: none;
75
- padding: 8px;
76
- box-sizing: border-box;
77
- flex: unset;
78
- max-width: unset;
79
-
80
- &-card {
81
- @for $i from 1 through 10 {
82
- &.theme-#{$i} {
83
- $tile-theme: map-get($tile-themes, theme-#{$i});
84
-
85
- background-color: map-get($tile-theme, bg);
86
-
87
- .adf-app-listgrid-item-card-logo-icon {
88
- color: map-get($tile-theme, color);
89
- }
90
- }
91
- }
92
-
93
- outline: none;
94
- transition:
95
- transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
96
- box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
97
- min-height: 200px;
98
- flex-direction: column;
99
- box-sizing: border-box;
100
- display: flex;
101
- padding: 0;
102
- max-width: unset;
103
-
104
- &:hover {
105
- box-shadow:
106
- 0 8px 10px 1px rgba(0, 0, 0, 0.14),
107
- 0 3px 14px 2px rgba(0, 0, 0, 0.12),
108
- 0 5px 5px -3px rgba(0, 0, 0, 0.2);
109
- cursor: pointer;
110
- transform: scale(1.015);
111
- }
112
-
113
- &-logo {
114
- position: absolute;
115
- right: 20px;
116
- top: 20px;
117
- padding: 16px;
118
- z-index: 9;
119
-
120
- .adf-app-listgrid-item-card-logo-icon {
121
- font-size: 70px;
122
- width: 1em;
123
- height: 1em;
124
- }
125
- }
126
-
127
- &-title:has(.adf-app-listgrid-item-card-title-text) {
128
- padding: 16px;
129
- margin-bottom: 0;
130
- z-index: 9999;
131
-
132
- h1 {
133
- color: white;
134
- width: 80%;
135
- font-size: var(--mat-sys-headline-small-size);
136
- margin: 0;
137
- line-height: normal;
138
- white-space: nowrap;
139
- text-overflow: ellipsis;
140
- overflow: hidden;
141
- }
142
- }
143
-
144
- &-subtitle:has(.adf-line-clamp) {
145
- color: white;
146
- z-index: 9999;
147
- padding: 16px;
148
- flex: 1 0 auto;
149
-
150
- .adf-line-clamp {
151
- @include adf-line-clamp(1.25, 3);
152
- }
153
- }
154
-
155
- &-actions {
156
- padding: 0 16px 16px;
157
- border-top: 1px solid rgba(0, 0, 0, 0.1);
158
- min-height: 48px;
159
- box-sizing: border-box;
160
-
161
- &-icon {
162
- color: #e9f1f3;
163
- }
164
- }
165
- }
166
- }
167
- }
168
- }