bpm-core 0.0.14 → 0.0.16
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/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +5 -6
- package/esm2022/lib/components/app-component-sections/layout/layout.component.mjs +1 -4
- package/esm2022/lib/components/app-component-sections/main-request-details/main-request-details.component.mjs +3 -3
- package/esm2022/lib/components/app-component-sections/service-header/service-header.component.mjs +1 -1
- package/esm2022/lib/components/app-component-sections/workflow-section/workflow-section.component.mjs +3 -3
- package/fesm2022/bpm-core.mjs +9 -13
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +2 -2
- package/lib/components/app-component-sections/service-header/service-header.component.d.ts +1 -1
- package/lib/components/app-component-sections/workflow-section/workflow-section.component.d.ts +1 -1
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +1 -1
- package/lib/services/core.service.ts.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/assets/scss/_bootstrap.scss +39 -0
- package/src/lib/assets/scss/_bottom-sheet.scss +33 -0
- package/src/lib/assets/scss/_categories.scss +159 -0
- package/src/lib/assets/scss/_charts.scss +190 -0
- package/src/lib/assets/scss/_custom-popover.scss +302 -0
- package/src/lib/assets/scss/_font-custom.scss +0 -0
- package/src/lib/assets/scss/_general.scss +2011 -0
- package/src/lib/assets/scss/_main-sidenav.scss +350 -0
- package/src/lib/assets/scss/_settings.scss +93 -0
- package/src/lib/assets/scss/_stepper.scss +39 -0
- package/src/lib/assets/scss/_swiper.scss +115 -0
- package/src/lib/assets/scss/_toaster.scss +9 -0
- package/src/lib/assets/scss/_upgrade.scss +279 -0
- package/src/lib/assets/scss/_user-list.scss +40 -0
- package/src/lib/assets/scss/input-telephone.scss +160 -0
- package/src/lib/assets/scss/base.css +0 -451
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
.add-menu {
|
|
2
|
+
--select-panel-min-height: 74px;
|
|
3
|
+
--select-panel-min-width: 270px;
|
|
4
|
+
--select-panel-width: 270px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.user-menu {
|
|
8
|
+
--select-panel-min-height: 50px;
|
|
9
|
+
--select-panel-min-width: 210px;
|
|
10
|
+
--select-panel-width: 210px;
|
|
11
|
+
.mat-mdc-menu-item[disabled] {
|
|
12
|
+
opacity: 1 !important;
|
|
13
|
+
.mdc-list-item__primary-text {
|
|
14
|
+
line-height: 1.2;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
.mdc-list-item__primary-text {
|
|
19
|
+
line-height: 1.2 !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.main-app-popover {
|
|
23
|
+
position: static !important;
|
|
24
|
+
left: 0px !important;
|
|
25
|
+
top: 0px !important;
|
|
26
|
+
|
|
27
|
+
&--backdrop {
|
|
28
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
29
|
+
filter: blur(4);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.main-apps {
|
|
33
|
+
position: fixed !important;
|
|
34
|
+
left: 0 !important;
|
|
35
|
+
right: 0 !important;
|
|
36
|
+
top: 0 !important;
|
|
37
|
+
width: 100vw;
|
|
38
|
+
background-color: var(--white);
|
|
39
|
+
padding: 40px 80px;
|
|
40
|
+
|
|
41
|
+
display: grid;
|
|
42
|
+
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
43
|
+
gap: 1rem;
|
|
44
|
+
box-shadow: 0 14px 20px rgba(var(--rgb-black), 0.15);
|
|
45
|
+
|
|
46
|
+
@media (max-width: 1024px) {
|
|
47
|
+
padding: 1rem;
|
|
48
|
+
position: relative !important;
|
|
49
|
+
height: Calc(100% - 67px);
|
|
50
|
+
overflow: scroll;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&--item {
|
|
54
|
+
background-color: var(--light-gray);
|
|
55
|
+
border-radius: 4px;
|
|
56
|
+
padding: 1rem;
|
|
57
|
+
min-height: 110px;
|
|
58
|
+
display: flex;
|
|
59
|
+
align-items: center;
|
|
60
|
+
//justify-content: center;
|
|
61
|
+
gap: 1rem;
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
|
|
64
|
+
box-shadow: none;
|
|
65
|
+
|
|
66
|
+
figure {
|
|
67
|
+
min-width: 70px;
|
|
68
|
+
width: 70px;
|
|
69
|
+
height: 70px;
|
|
70
|
+
display: inline-flex;
|
|
71
|
+
align-items: center;
|
|
72
|
+
justify-content: center;
|
|
73
|
+
padding: 0.5rem;
|
|
74
|
+
border-radius: 4px;
|
|
75
|
+
background-color: var(--white);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&:hover {
|
|
79
|
+
.main-apps--details {
|
|
80
|
+
transform: translateY(-10px);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&--description {
|
|
86
|
+
max-height: 42px;
|
|
87
|
+
overflow: hidden;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
&--details {
|
|
91
|
+
position: relative;
|
|
92
|
+
transition: var(--default-transition);
|
|
93
|
+
|
|
94
|
+
.arrow-icon {
|
|
95
|
+
//position: static;
|
|
96
|
+
bottom: -1.5rem;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.service-card-popover {
|
|
102
|
+
width: 300px;
|
|
103
|
+
padding: 1rem;
|
|
104
|
+
--popover-bc: var(--black);
|
|
105
|
+
--popover-before-width: 0.5rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.cdk-overlay-container .main-app-popover--backdrop + .cdk-overlay-connected-position-bounding-box {
|
|
109
|
+
left: 0px !important;
|
|
110
|
+
top: 0px !important;
|
|
111
|
+
// animation: main-app-off-popover;
|
|
112
|
+
animation-duration: 300ms;
|
|
113
|
+
.sat-popover-container.sat-popover-center.sat-popover-below {
|
|
114
|
+
transform: scale(1) !important;
|
|
115
|
+
opacity: 1 !important;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.cdk-overlay-container .main-app-popover--backdrop + .cdk-overlay-connected-position-bounding-box {
|
|
120
|
+
animation: main-app-off-popover;
|
|
121
|
+
animation-duration: 300ms;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.cdk-global-scrollblock .cdk-overlay-container .main-app-popover--backdrop + .cdk-overlay-connected-position-bounding-box {
|
|
125
|
+
animation: main-app-popover;
|
|
126
|
+
animation-duration: 300ms;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@keyframes main-app-popover {
|
|
130
|
+
from {
|
|
131
|
+
transform: translateY(-500px);
|
|
132
|
+
}
|
|
133
|
+
to {
|
|
134
|
+
transform: translateY(0);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
@keyframes main-app-off-popover {
|
|
139
|
+
from {
|
|
140
|
+
transform: translateY(0);
|
|
141
|
+
}
|
|
142
|
+
to {
|
|
143
|
+
transform: translateY(-500px);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.mat-tooltip-panel {
|
|
148
|
+
.mat-tooltip {
|
|
149
|
+
background: #1d252d;
|
|
150
|
+
// overflow: initial;
|
|
151
|
+
position: relative;
|
|
152
|
+
}
|
|
153
|
+
&.mat-tooltip-panel-right {
|
|
154
|
+
mat-tooltip-component {
|
|
155
|
+
.mat-tooltip {
|
|
156
|
+
&::before {
|
|
157
|
+
content: '';
|
|
158
|
+
position: absolute;
|
|
159
|
+
top: 50%;
|
|
160
|
+
margin: -7px calc(0% - 7px);
|
|
161
|
+
width: 0;
|
|
162
|
+
height: 0;
|
|
163
|
+
border-top: 7px solid transparent;
|
|
164
|
+
border-right: 7px solid var(--black);
|
|
165
|
+
border-bottom: 7px solid transparent;
|
|
166
|
+
left: -7px;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
&.mat-tooltip-panel-left {
|
|
172
|
+
mat-tooltip-component {
|
|
173
|
+
.mat-tooltip {
|
|
174
|
+
&::before {
|
|
175
|
+
display: none;
|
|
176
|
+
}
|
|
177
|
+
&::after {
|
|
178
|
+
content: '';
|
|
179
|
+
position: absolute;
|
|
180
|
+
top: calc(50% - 7px);
|
|
181
|
+
/* margin: -7px calc(50% - 7px - 0.6rem); */
|
|
182
|
+
width: 0;
|
|
183
|
+
height: 0;
|
|
184
|
+
border-top: 7px solid transparent;
|
|
185
|
+
border-left: 7px solid var(--black);
|
|
186
|
+
border-bottom: 7px solid transparent;
|
|
187
|
+
right: -7px;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.mat-menu-panel.categories-menu {
|
|
195
|
+
min-width: 305px !important;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.default-popover {
|
|
199
|
+
max-width: 320px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.attachment-sidenav {
|
|
203
|
+
position: fixed;
|
|
204
|
+
top: 0 !important;
|
|
205
|
+
bottom: 0;
|
|
206
|
+
right: 0;
|
|
207
|
+
left: auto !important;
|
|
208
|
+
height: 100vh;
|
|
209
|
+
max-height: 100vh;
|
|
210
|
+
|
|
211
|
+
[dir='rtl'] & {
|
|
212
|
+
left: 0 !important;
|
|
213
|
+
right: auto !important;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.add-comment-popup {
|
|
218
|
+
background-color: var(--white);
|
|
219
|
+
box-shadow: var(--box-shadow);
|
|
220
|
+
|
|
221
|
+
z-index: 1;
|
|
222
|
+
max-width: 550px;
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: calc(100vh - 2rem);
|
|
225
|
+
display: flex;
|
|
226
|
+
flex-direction: column;
|
|
227
|
+
@media (max-width: 768px) {
|
|
228
|
+
height: 100vh;
|
|
229
|
+
}
|
|
230
|
+
@media (min-width: 768px) {
|
|
231
|
+
min-width: 550px;
|
|
232
|
+
margin: 1rem;
|
|
233
|
+
border-radius: 10px;
|
|
234
|
+
height: calc(100vh - 2rem);
|
|
235
|
+
}
|
|
236
|
+
.add-comment-title {
|
|
237
|
+
border-bottom: 1px solid #f3f3f1;
|
|
238
|
+
//background-color: var(--light-gray);
|
|
239
|
+
padding: 1.5rem;
|
|
240
|
+
display: flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
justify-content: space-between;
|
|
243
|
+
.close-comment {
|
|
244
|
+
min-width: 35px;
|
|
245
|
+
width: 35px;
|
|
246
|
+
height: 35px;
|
|
247
|
+
background-color: #f3f3f1;
|
|
248
|
+
display: flex;
|
|
249
|
+
align-items: center;
|
|
250
|
+
justify-content: center;
|
|
251
|
+
cursor: pointer;
|
|
252
|
+
&:hover {
|
|
253
|
+
opacity: 0.9;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.add-comment-body {
|
|
259
|
+
padding: 1.5rem;
|
|
260
|
+
display: flex;
|
|
261
|
+
flex-direction: column;
|
|
262
|
+
align-items: baseline;
|
|
263
|
+
overflow: auto;
|
|
264
|
+
flex-grow: 1;
|
|
265
|
+
.custom-textarea {
|
|
266
|
+
--input-height: 100px;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.info-section {
|
|
270
|
+
--name-width: 100%;
|
|
271
|
+
--disc-width: 100%;
|
|
272
|
+
--info-gap: 0.3rem;
|
|
273
|
+
margin: 0 -1rem;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.attachment-sidenav-backdrop {
|
|
279
|
+
background-color: rgba(var(--rgb-black), 0.6);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.support-menu {
|
|
283
|
+
--select-panel-min-height: 74px;
|
|
284
|
+
--select-panel-min-width: 280px;
|
|
285
|
+
--select-panel-width: 280px;
|
|
286
|
+
.mat-mdc-menu-item[disabled] {
|
|
287
|
+
opacity: 1 !important;
|
|
288
|
+
.mdc-list-item__primary-text {
|
|
289
|
+
line-height: 1.2;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.autocompleteSupport {
|
|
295
|
+
.mat-mdc-form-field-icon-prefix span {
|
|
296
|
+
color: var(--dark-gray);
|
|
297
|
+
}
|
|
298
|
+
.mat-mdc-form-field-infix label {
|
|
299
|
+
width: 100%;
|
|
300
|
+
margin-top: 4px;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
File without changes
|