@pega/angular-sdk-overrides 0.23.1 → 0.23.2
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/LICENSE +201 -0
- package/README.md +3 -0
- package/SECURITY.md +10 -0
- package/lib/designSystemExtension/alert/alert.component.scss +12 -12
- package/lib/designSystemExtension/banner/banner.component.scss +1 -1
- package/lib/designSystemExtension/material-case-summary/material-case-summary.component.scss +7 -9
- package/lib/designSystemExtension/material-details/material-details.component.scss +5 -5
- package/lib/designSystemExtension/material-details-fields/material-details-fields.component.scss +3 -3
- package/lib/designSystemExtension/material-summary-item/material-summary-item.component.html +2 -2
- package/lib/designSystemExtension/material-summary-item/material-summary-item.component.scss +7 -9
- package/lib/designSystemExtension/material-summary-list/material-summary-list.component.scss +0 -1
- package/lib/designSystemExtension/material-utility/material-utility.component.scss +3 -5
- package/lib/designSystemExtension/material-vertical-tabs/material-vertical-tabs.component.scss +1 -3
- package/lib/designSystemExtension/operator/operator.component.scss +7 -9
- package/lib/designSystemExtension/pulse/pulse.component.scss +2 -2
- package/lib/designSystemExtension/rich-text-editor/rich-text-editor.component.scss +2 -3
- package/lib/designSystemExtension/wss-quick-create/wss-quick-create.component.scss +3 -3
- package/lib/field/cancel-alert/cancel-alert.component.scss +4 -4
- package/lib/field/date-time/date-time.component.ts +3 -2
- package/lib/field/dropdown/dropdown.component.ts +1 -1
- package/lib/field/list-view-action-buttons/list-view-action-buttons.component.scss +0 -1
- package/lib/field/semantic-link/semantic-link.component.scss +1 -1
- package/lib/field/text/text.component.scss +1 -1
- package/lib/field/user-reference/user-reference.component.scss +1 -3
- package/lib/infra/Containers/flow-container/flow-container.component.scss +1 -33
- package/lib/infra/Containers/modal-view-container/modal-view-container.component.scss +1 -29
- package/lib/infra/Containers/view-container/view-container.component.scss +1 -7
- package/lib/infra/action-buttons/action-buttons.component.scss +0 -1
- package/lib/infra/assignment-card/assignment-card.component.scss +1 -3
- package/lib/infra/multi-step/multi-step.component.scss +23 -25
- package/lib/infra/navbar/navbar.component.scss +16 -18
- package/lib/infra/root-container/root-container.component.scss +1 -3
- package/lib/infra/stages/stages.component.scss +12 -13
- package/lib/template/app-shell/app-shell.component.scss +4 -6
- package/lib/template/case-summary/case-summary.component.scss +2 -4
- package/lib/template/case-view/case-view.component.scss +6 -8
- package/lib/template/default-form/default-form.component.scss +0 -2
- package/lib/template/field-group-list/field-group-list.component.scss +1 -1
- package/lib/template/list-view/list-view.component.scss +13 -15
- package/lib/template/one-column-tab/one-column-tab.component.scss +1 -3
- package/lib/template/simple-table-manual/simple-table-manual.component.scss +14 -16
- package/lib/template/wss-nav-bar/wss-nav-bar.component.scss +18 -20
- package/lib/widget/app-announcement/app-announcement.component.scss +2 -4
- package/lib/widget/attachment/attachment.component.scss +5 -7
- package/lib/widget/feed-container/feed-container.component.scss +10 -12
- package/lib/widget/file-utility/file-utility.component.scss +9 -11
- package/lib/widget/file-utility/file-utility.component.ts +10 -3
- package/lib/widget/list-utility/list-utility.component.scss +7 -9
- package/lib/widget/todo/todo.component.scss +10 -12
- package/package.json +1 -5
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
/* Adapted from list-view.component.scss */
|
|
4
2
|
|
|
5
3
|
.simple-table-wrapper {
|
|
@@ -23,7 +21,7 @@ table {
|
|
|
23
21
|
::ng-deep th.mat-mdc-header-cell,
|
|
24
22
|
td.mat-mdc-cell,
|
|
25
23
|
td.mat-mdc-footer-cell {
|
|
26
|
-
border-right: 1px solid
|
|
24
|
+
border-right: 1px solid var(--app-neutral-light-color);
|
|
27
25
|
padding: 8px !important;
|
|
28
26
|
}
|
|
29
27
|
|
|
@@ -91,32 +89,32 @@ td.mat-mdc-footer-cell {
|
|
|
91
89
|
width: 1.4rem;
|
|
92
90
|
display: inline-block;
|
|
93
91
|
vertical-align: middle;
|
|
94
|
-
filter:
|
|
92
|
+
filter: var(--app-primary-color-filter);
|
|
95
93
|
}
|
|
96
94
|
|
|
97
95
|
.psdk-filter-svg-icon {
|
|
98
96
|
width: 1rem;
|
|
99
97
|
display: inline-block;
|
|
100
98
|
vertical-align: middle;
|
|
101
|
-
filter:
|
|
99
|
+
filter: var(--app-neutral-color-filter);
|
|
102
100
|
}
|
|
103
101
|
|
|
104
102
|
.psdk-arrow-svg-icon {
|
|
105
103
|
width: 1rem;
|
|
106
104
|
display: inline-block;
|
|
107
105
|
vertical-align: middle;
|
|
108
|
-
filter:
|
|
106
|
+
filter: var(--app-neutral-color-filter);
|
|
109
107
|
}
|
|
110
108
|
|
|
111
109
|
.psdk-filter-popover {
|
|
112
110
|
display: table;
|
|
113
111
|
margin: auto;
|
|
114
112
|
min-width: 100px;
|
|
115
|
-
background-color:
|
|
116
|
-
border: 1px solid
|
|
113
|
+
background-color: var(--app-form-color);
|
|
114
|
+
border: 1px solid var(--app-inverse-form-color);
|
|
117
115
|
border-radius: 10px;
|
|
118
116
|
padding: 20px;
|
|
119
|
-
box-shadow: 0 0 10px 3px
|
|
117
|
+
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
|
|
120
118
|
position: absolute;
|
|
121
119
|
z-index: 99;
|
|
122
120
|
}
|
|
@@ -128,7 +126,7 @@ td.mat-mdc-footer-cell {
|
|
|
128
126
|
align-items: center;
|
|
129
127
|
height: 100%;
|
|
130
128
|
width: 100%;
|
|
131
|
-
background-color:
|
|
129
|
+
background-color: var(--app-dialog-background-color);
|
|
132
130
|
position: fixed;
|
|
133
131
|
z-index: 999;
|
|
134
132
|
top: 0px;
|
|
@@ -139,11 +137,11 @@ td.mat-mdc-footer-cell {
|
|
|
139
137
|
display: table;
|
|
140
138
|
margin: auto;
|
|
141
139
|
min-width: 150px;
|
|
142
|
-
background-color:
|
|
143
|
-
border: 1px solid
|
|
140
|
+
background-color: var(--app-form-color);
|
|
141
|
+
border: 1px solid var(--app-inverse-form-color);
|
|
144
142
|
border-radius: 10px;
|
|
145
143
|
padding: 20px;
|
|
146
|
-
box-shadow: 0 0 10px 3px
|
|
144
|
+
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
|
|
147
145
|
}
|
|
148
146
|
|
|
149
147
|
tr.mat-mdc-row {
|
|
@@ -151,7 +149,7 @@ tr.mat-mdc-row {
|
|
|
151
149
|
}
|
|
152
150
|
|
|
153
151
|
tr.mat-mdc-header-row {
|
|
154
|
-
background:
|
|
152
|
+
background: var(--app-table-header-background-color);
|
|
155
153
|
}
|
|
156
154
|
|
|
157
155
|
.psdk-data-readonly {
|
|
@@ -164,9 +162,9 @@ tr.mat-mdc-header-row {
|
|
|
164
162
|
justify-content: center;
|
|
165
163
|
display: flex;
|
|
166
164
|
align-items: center;
|
|
167
|
-
border: 1px solid
|
|
165
|
+
border: 1px solid var(--app-neutral-light-color);
|
|
168
166
|
border-top: none;
|
|
169
|
-
background:
|
|
167
|
+
background: var(--app-form-color);
|
|
170
168
|
}
|
|
171
169
|
|
|
172
170
|
.psdk-utility-card-action-svg-icon {
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
// // Things related to movement
|
|
4
2
|
// $transition-slow: 0.5s !default;
|
|
5
3
|
// $transition-medium: 0.3s !default;
|
|
@@ -7,7 +5,7 @@
|
|
|
7
5
|
// $natural-ease: cubic-bezier(0.4, 0.6, 0.1, 1) !default;
|
|
8
6
|
|
|
9
7
|
.psdk-nav-divider {
|
|
10
|
-
border-bottom: 0.0625rem solid
|
|
8
|
+
border-bottom: 0.0625rem solid var(--app-divider-color);
|
|
11
9
|
width: 100%;
|
|
12
10
|
align-items: center;
|
|
13
11
|
}
|
|
@@ -18,7 +16,7 @@
|
|
|
18
16
|
cursor: pointer;
|
|
19
17
|
padding-right: 1rem;
|
|
20
18
|
&:hover {
|
|
21
|
-
background-color:
|
|
19
|
+
background-color: var(--app-neutral-color);
|
|
22
20
|
}
|
|
23
21
|
align-items: center;
|
|
24
22
|
}
|
|
@@ -30,7 +28,7 @@
|
|
|
30
28
|
}
|
|
31
29
|
|
|
32
30
|
.psdk-nav-svg-icon {
|
|
33
|
-
filter:
|
|
31
|
+
filter: var(--app-white-color-filter);
|
|
34
32
|
width: 1.6rem;
|
|
35
33
|
padding-right: 0.625rem;
|
|
36
34
|
}
|
|
@@ -41,7 +39,7 @@
|
|
|
41
39
|
|
|
42
40
|
.psdk-nav-portal-app {
|
|
43
41
|
font-size: 1.5rem;
|
|
44
|
-
color:
|
|
42
|
+
color: var(--app-nav-color);
|
|
45
43
|
}
|
|
46
44
|
|
|
47
45
|
.psdk-appshell-nav {
|
|
@@ -50,10 +48,10 @@
|
|
|
50
48
|
display: flex;
|
|
51
49
|
flex-direction: column;
|
|
52
50
|
justify-content: flex-start;
|
|
53
|
-
background:
|
|
54
|
-
width:
|
|
51
|
+
background: var(--app-nav-bg);
|
|
52
|
+
width: var(--app-nav-width);
|
|
55
53
|
height: 100%;
|
|
56
|
-
color:
|
|
54
|
+
color: var(--app-nav-color);
|
|
57
55
|
overflow-y: auto;
|
|
58
56
|
overflow-x: hidden;
|
|
59
57
|
white-space: nowrap;
|
|
@@ -61,17 +59,17 @@
|
|
|
61
59
|
}
|
|
62
60
|
|
|
63
61
|
.psdk-appshell-nav:hover {
|
|
64
|
-
width:
|
|
62
|
+
width: var(--app-nav-width-expanded);
|
|
65
63
|
}
|
|
66
64
|
|
|
67
65
|
.psdk-appshell-topnav {
|
|
68
66
|
display: flex;
|
|
69
67
|
flex-direction: column;
|
|
70
68
|
justify-content: flex-start;
|
|
71
|
-
background:
|
|
72
|
-
width:
|
|
69
|
+
background: var(--app-nav-bg);
|
|
70
|
+
width: var(--app-nav-width);
|
|
73
71
|
height: 15%;
|
|
74
|
-
color:
|
|
72
|
+
color: var(--app-nav-color);
|
|
75
73
|
overflow: hidden;
|
|
76
74
|
white-space: nowrap;
|
|
77
75
|
will-change: width;
|
|
@@ -81,10 +79,10 @@
|
|
|
81
79
|
display: flex;
|
|
82
80
|
flex-direction: column;
|
|
83
81
|
justify-content: space-between;
|
|
84
|
-
background:
|
|
85
|
-
width:
|
|
82
|
+
background: var(--app-nav-bg);
|
|
83
|
+
width: var(--app-nav-width);
|
|
86
84
|
height: 50%;
|
|
87
|
-
color:
|
|
85
|
+
color: var(--app-nav-color);
|
|
88
86
|
overflow: hidden;
|
|
89
87
|
white-space: nowrap;
|
|
90
88
|
// transition: width $transition-medium $natural-ease;
|
|
@@ -110,10 +108,10 @@
|
|
|
110
108
|
|
|
111
109
|
.psdk-nav-button-span {
|
|
112
110
|
padding: 0 1rem;
|
|
113
|
-
color:
|
|
111
|
+
color: var(--app-nav-color);
|
|
114
112
|
|
|
115
113
|
&:hover {
|
|
116
|
-
background-color:
|
|
114
|
+
background-color: var(--app-neutral-color);
|
|
117
115
|
}
|
|
118
116
|
}
|
|
119
117
|
|
|
@@ -129,8 +127,8 @@
|
|
|
129
127
|
align-items: center;
|
|
130
128
|
text-align: center;
|
|
131
129
|
display: inline-flex;
|
|
132
|
-
background:
|
|
133
|
-
color:
|
|
130
|
+
background: var(--app-neutral-color);
|
|
131
|
+
color: var(--app-form-color);
|
|
134
132
|
font-weight: normal;
|
|
135
133
|
font-size: 1rem;
|
|
136
134
|
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
h2 {
|
|
4
2
|
font-size: 1.2rem;
|
|
5
3
|
margin-block-start: 0rem;
|
|
@@ -12,10 +10,10 @@ ul {
|
|
|
12
10
|
padding-inline-start: 20px;
|
|
13
11
|
}
|
|
14
12
|
.psdk-announcement {
|
|
15
|
-
background-color:
|
|
13
|
+
background-color: var(--app-form-color);
|
|
16
14
|
padding: 1rem;
|
|
17
15
|
margin: 1rem 0;
|
|
18
16
|
border-radius: 0.6125rem;
|
|
19
17
|
border-left: 6px solid;
|
|
20
|
-
border-left-color:
|
|
18
|
+
border-left-color: var(--app-primary-color);
|
|
21
19
|
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
.progress-spinner {
|
|
4
2
|
text-align: center;
|
|
5
3
|
position: absolute;
|
|
@@ -7,7 +5,7 @@
|
|
|
7
5
|
}
|
|
8
6
|
|
|
9
7
|
.psdk-modal-file-selector {
|
|
10
|
-
border: 1px dashed
|
|
8
|
+
border: 1px dashed var(--app-neutral-dark-color);
|
|
11
9
|
width: 100%;
|
|
12
10
|
padding: 0.3rem;
|
|
13
11
|
text-align: center;
|
|
@@ -18,15 +16,15 @@
|
|
|
18
16
|
display: inline;
|
|
19
17
|
content: ' *';
|
|
20
18
|
vertical-align: top;
|
|
21
|
-
color:
|
|
19
|
+
color: var(--app-neutral-dark-color);
|
|
22
20
|
}
|
|
23
21
|
|
|
24
22
|
.file-error {
|
|
25
|
-
color:
|
|
23
|
+
color: var(--app-error-light-color);
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
.psdk-modal-file-selector-error {
|
|
29
|
-
border: 1px dashed
|
|
27
|
+
border: 1px dashed var(--app-error-light-color);
|
|
30
28
|
width: 100%;
|
|
31
29
|
padding: 0.3rem;
|
|
32
30
|
text-align: center;
|
|
@@ -49,7 +47,7 @@
|
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
.psdk-attachment-list {
|
|
52
|
-
border: 1px solid
|
|
50
|
+
border: 1px solid var(--app-neutral-color);
|
|
53
51
|
}
|
|
54
52
|
|
|
55
53
|
::ng-deep .mat-mdc-form-field-infix {
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
.psdk-pulse-divider {
|
|
4
|
-
border-bottom: 0.0625rem solid
|
|
2
|
+
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
|
|
5
3
|
}
|
|
6
4
|
|
|
7
5
|
.psdk-full-width {
|
|
@@ -19,7 +17,7 @@
|
|
|
19
17
|
padding: 0rem 0.125rem;
|
|
20
18
|
min-width: unset;
|
|
21
19
|
display: inline-block;
|
|
22
|
-
color:
|
|
20
|
+
color: var(--app-primary-color);
|
|
23
21
|
}
|
|
24
22
|
|
|
25
23
|
.psdk-send-svg-icon {
|
|
@@ -39,7 +37,7 @@
|
|
|
39
37
|
.psdk-liked-by-me-svg-icon {
|
|
40
38
|
width: 1.4rem;
|
|
41
39
|
padding: 0rem 0.3215rem;
|
|
42
|
-
filter:
|
|
40
|
+
filter: var(--app-primary-color-filter);
|
|
43
41
|
}
|
|
44
42
|
|
|
45
43
|
.psdk-avatar {
|
|
@@ -54,8 +52,8 @@
|
|
|
54
52
|
align-items: center;
|
|
55
53
|
text-align: center;
|
|
56
54
|
display: flex;
|
|
57
|
-
background:
|
|
58
|
-
color:
|
|
55
|
+
background: var(--app-primary-color);
|
|
56
|
+
color: var(--app-form-color);
|
|
59
57
|
font-weight: bold;
|
|
60
58
|
font-size: 1.25rem;
|
|
61
59
|
}
|
|
@@ -72,8 +70,8 @@
|
|
|
72
70
|
align-items: center;
|
|
73
71
|
text-align: center;
|
|
74
72
|
display: flex;
|
|
75
|
-
background:
|
|
76
|
-
color:
|
|
73
|
+
background: var(--app-primary-color);
|
|
74
|
+
color: var(--app-form-color);
|
|
77
75
|
font-weight: bold;
|
|
78
76
|
font-size: 1.5625rem;
|
|
79
77
|
}
|
|
@@ -97,7 +95,7 @@
|
|
|
97
95
|
}
|
|
98
96
|
|
|
99
97
|
.psdk-pulse-message-time {
|
|
100
|
-
color:
|
|
98
|
+
color: var(--app-pulse-message-color);
|
|
101
99
|
}
|
|
102
100
|
|
|
103
101
|
.psdk-pulse-message-text {
|
|
@@ -143,7 +141,7 @@
|
|
|
143
141
|
}
|
|
144
142
|
|
|
145
143
|
.psdk-pulse-reply-message {
|
|
146
|
-
background-color:
|
|
144
|
+
background-color: var(--app-pulse-message-background-color);
|
|
147
145
|
border-radius: 0.625rem;
|
|
148
146
|
padding: 0rem 1.25rem;
|
|
149
147
|
white-space: pre-line;
|
|
@@ -172,7 +170,7 @@
|
|
|
172
170
|
}
|
|
173
171
|
|
|
174
172
|
.psdk-pulse-reply-time {
|
|
175
|
-
color:
|
|
173
|
+
color: var(--app-pulse-message-color);
|
|
176
174
|
padding-left: 0.625rem;
|
|
177
175
|
}
|
|
178
176
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
.psdk-dialog-background {
|
|
4
2
|
display: flex;
|
|
5
3
|
flex-direction: column;
|
|
@@ -7,7 +5,7 @@
|
|
|
7
5
|
align-items: center;
|
|
8
6
|
height: 100%;
|
|
9
7
|
width: 100%;
|
|
10
|
-
background-color:
|
|
8
|
+
background-color: var(--app-dialog-background-color);
|
|
11
9
|
position: fixed;
|
|
12
10
|
z-index: 999;
|
|
13
11
|
top: 0px;
|
|
@@ -18,26 +16,26 @@
|
|
|
18
16
|
display: table;
|
|
19
17
|
margin: auto;
|
|
20
18
|
min-width: 650px;
|
|
21
|
-
background-color:
|
|
22
|
-
border: 1px solid
|
|
19
|
+
background-color: var(--app-form-color);
|
|
20
|
+
border: 1px solid var(--app-inverse-form-color);
|
|
23
21
|
border-radius: 10px;
|
|
24
22
|
padding: 20px;
|
|
25
|
-
box-shadow: 0 0 10px 3px
|
|
23
|
+
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
.psdk-modal-link-top {
|
|
29
27
|
display: table;
|
|
30
28
|
margin: auto;
|
|
31
29
|
min-width: 650px;
|
|
32
|
-
background-color:
|
|
33
|
-
border: 1px solid
|
|
30
|
+
background-color: var(--app-form-color);
|
|
31
|
+
border: 1px solid var(--app-inverse-form-color);
|
|
34
32
|
border-radius: 10px;
|
|
35
33
|
padding: 20px;
|
|
36
|
-
box-shadow: 0 0 10px 3px
|
|
34
|
+
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
|
|
37
35
|
}
|
|
38
36
|
|
|
39
37
|
.psdk-modal-file-selector {
|
|
40
|
-
border: 1px dashed
|
|
38
|
+
border: 1px dashed var(--app-neutral-dark-color);
|
|
41
39
|
width: 100%;
|
|
42
40
|
padding: 0.3rem;
|
|
43
41
|
text-align: center;
|
|
@@ -87,7 +85,7 @@
|
|
|
87
85
|
display: grid;
|
|
88
86
|
grid-template-columns: repeat(2, 1fr);
|
|
89
87
|
gap: calc(1rem);
|
|
90
|
-
width:
|
|
88
|
+
width: 85%;
|
|
91
89
|
}
|
|
92
90
|
|
|
93
91
|
.psdk-modal-links-row {
|
|
@@ -691,9 +691,16 @@ export class FileUtilityComponent implements OnInit, OnDestroy {
|
|
|
691
691
|
if (caseID) {
|
|
692
692
|
this.lu_bLoading$ = true;
|
|
693
693
|
|
|
694
|
-
this.fetchCaseAttachments(caseID)
|
|
695
|
-
|
|
696
|
-
|
|
694
|
+
this.fetchCaseAttachments(caseID)
|
|
695
|
+
.then(resp => {
|
|
696
|
+
this.handleAttachmentsResponse(resp);
|
|
697
|
+
})
|
|
698
|
+
.catch(err => {
|
|
699
|
+
console.log(err);
|
|
700
|
+
})
|
|
701
|
+
.finally(() => {
|
|
702
|
+
this.lu_bLoading$ = false;
|
|
703
|
+
});
|
|
697
704
|
}
|
|
698
705
|
}
|
|
699
706
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
.progress-spinner {
|
|
4
2
|
text-align: center;
|
|
5
3
|
position: absolute;
|
|
@@ -13,7 +11,7 @@
|
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
.psdk-utility-divider {
|
|
16
|
-
border-bottom: 0.0625rem solid
|
|
14
|
+
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
.psdk-utility-view-all {
|
|
@@ -23,9 +21,9 @@
|
|
|
23
21
|
}
|
|
24
22
|
|
|
25
23
|
.psdk-utility-count {
|
|
26
|
-
background:
|
|
24
|
+
background: var(--app-primary-light-color);
|
|
27
25
|
border-radius: calc(1.125 * 0.5rem);
|
|
28
|
-
color:
|
|
26
|
+
color: var(--app-inverse-form-color);
|
|
29
27
|
display: inline-block;
|
|
30
28
|
font-size: 0.75rem;
|
|
31
29
|
font-weight: bold;
|
|
@@ -52,7 +50,7 @@
|
|
|
52
50
|
width: 100%;
|
|
53
51
|
padding: 0.625rem 0rem;
|
|
54
52
|
text-align: left;
|
|
55
|
-
background-color:
|
|
53
|
+
background-color: var(--app-form-color);
|
|
56
54
|
border-radius: 0.6125rem;
|
|
57
55
|
margin: 0.3125rem 0rem;
|
|
58
56
|
position: relative;
|
|
@@ -71,7 +69,7 @@
|
|
|
71
69
|
.psdk-settings-svg-icon {
|
|
72
70
|
width: 1.4rem;
|
|
73
71
|
display: inline-block;
|
|
74
|
-
filter:
|
|
72
|
+
filter: var(--app-primary-color-filter);
|
|
75
73
|
}
|
|
76
74
|
|
|
77
75
|
.psdk-utility .message {
|
|
@@ -100,7 +98,7 @@
|
|
|
100
98
|
}
|
|
101
99
|
|
|
102
100
|
.psdk-utility-card-main-primary-url {
|
|
103
|
-
color:
|
|
101
|
+
color: var(--app-primary-color);
|
|
104
102
|
}
|
|
105
103
|
|
|
106
104
|
.psdk-utility-card-main-primary-url .mat-mdc-button.mat-primary {
|
|
@@ -125,7 +123,7 @@
|
|
|
125
123
|
width: 1.4rem;
|
|
126
124
|
display: inline-block;
|
|
127
125
|
vertical-align: middle;
|
|
128
|
-
filter:
|
|
126
|
+
filter: var(--app-primary-color-filter);
|
|
129
127
|
}
|
|
130
128
|
|
|
131
129
|
.psdk-utility-card-action-actions-svg-icon {
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
@import '@pega/angular-sdk-components/_shared/styles.scss';
|
|
2
|
-
|
|
3
1
|
.psdk-display-divider {
|
|
4
|
-
border-bottom: 0.0625rem solid
|
|
2
|
+
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
|
|
5
3
|
}
|
|
6
4
|
|
|
7
5
|
.psdk-todo {
|
|
8
6
|
padding: 1rem;
|
|
9
|
-
background-color:
|
|
7
|
+
background-color: var(--app-form-color);
|
|
10
8
|
border-radius: 0.6125rem;
|
|
11
9
|
border-left: 6px solid;
|
|
12
|
-
border-left-color:
|
|
10
|
+
border-left-color: var(--app-primary-color);
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
.psdk-todo-header {
|
|
@@ -23,14 +21,14 @@
|
|
|
23
21
|
}
|
|
24
22
|
|
|
25
23
|
.psdk-assignment-count {
|
|
26
|
-
background-color:
|
|
24
|
+
background-color: var(--app-primary-light-color);
|
|
27
25
|
margin: 0.5rem;
|
|
28
26
|
border-radius: 45%;
|
|
29
27
|
padding: 0.15rem 0.4rem;
|
|
30
28
|
}
|
|
31
29
|
|
|
32
30
|
.psdk-todo-id {
|
|
33
|
-
color:
|
|
31
|
+
color: var(--app-primary-color);
|
|
34
32
|
padding: 0;
|
|
35
33
|
cursor: pointer;
|
|
36
34
|
border: 0;
|
|
@@ -50,8 +48,8 @@
|
|
|
50
48
|
align-items: center;
|
|
51
49
|
text-align: center;
|
|
52
50
|
display: flex;
|
|
53
|
-
background:
|
|
54
|
-
color:
|
|
51
|
+
background: var(--app-primary-color);
|
|
52
|
+
color: var(--app-form-color);
|
|
55
53
|
font-weight: bold;
|
|
56
54
|
font-size: 1.25rem;
|
|
57
55
|
}
|
|
@@ -67,9 +65,9 @@
|
|
|
67
65
|
}
|
|
68
66
|
|
|
69
67
|
.psdk-todo-assignment-status {
|
|
70
|
-
background-color:
|
|
68
|
+
background-color: var(--app-neutral-light-color);
|
|
71
69
|
border-radius: 0.125rem;
|
|
72
|
-
color:
|
|
70
|
+
color: var(--app-assignment-status-color);
|
|
73
71
|
font-size: 0.75rem;
|
|
74
72
|
font-weight: bold;
|
|
75
73
|
line-height: calc(0.5rem * 2.5);
|
|
@@ -79,7 +77,7 @@
|
|
|
79
77
|
}
|
|
80
78
|
|
|
81
79
|
.psdk-todo-assignment-task {
|
|
82
|
-
color:
|
|
80
|
+
color: var(--app-neutral-color);
|
|
83
81
|
}
|
|
84
82
|
|
|
85
83
|
.psdk-todo-assignment-action {
|
package/package.json
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pega/angular-sdk-overrides",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.2",
|
|
4
4
|
"description": "Angular SDK - Code for overriding components",
|
|
5
|
-
"_filesComment": "During packing, npm ignores everything NOT in the files list",
|
|
6
|
-
"files": [
|
|
7
|
-
"lib"
|
|
8
|
-
],
|
|
9
5
|
"scripts": {
|
|
10
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
7
|
},
|