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,279 @@
|
|
|
1
|
+
//_toggle-slide
|
|
2
|
+
|
|
3
|
+
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent .mdc-switch__handle {
|
|
4
|
+
border-radius: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
//_popover
|
|
8
|
+
.mat-mdc-elevation-specific {
|
|
9
|
+
--select-panel-bg-even: var(--white);
|
|
10
|
+
--select-panel-bg-odd: var(--white);
|
|
11
|
+
--select-panel-border: 1px solid var(--light-gray);
|
|
12
|
+
--select-panel-fs: 0.85rem;
|
|
13
|
+
--select-panel-fc: var(--black);
|
|
14
|
+
--select-panel-fc-active: var(--black);
|
|
15
|
+
--select-panel-fw: var(--font-regular);
|
|
16
|
+
--select-panel-fw-active: var(--font-medium);
|
|
17
|
+
--select-panel-min-height: 3.125rem;
|
|
18
|
+
--select-panel-min-width: inherit;
|
|
19
|
+
--select-panel-width: 100%;
|
|
20
|
+
--select-line-height: inherit;
|
|
21
|
+
--mdc-theme-primary: var(--select-panel-fc-active);
|
|
22
|
+
border-radius: var(--box-radius) !important;
|
|
23
|
+
box-shadow: var(--box-shadow) !important;
|
|
24
|
+
margin-top: 0.3rem;
|
|
25
|
+
padding: 0 !important;
|
|
26
|
+
.mat-mdc-menu-content {
|
|
27
|
+
padding: 0 !important;
|
|
28
|
+
}
|
|
29
|
+
.mat-mdc-menu-item {
|
|
30
|
+
font-weight: var(--select-panel-fw);
|
|
31
|
+
font-size: var(--select-panel-fs) !important;
|
|
32
|
+
white-space: normal;
|
|
33
|
+
height: auto;
|
|
34
|
+
line-height: var(--select-line-height);
|
|
35
|
+
min-height: var(--select-panel-min-height);
|
|
36
|
+
min-width: var(--select-panel-min-width);
|
|
37
|
+
width: var(--select-panel-width);
|
|
38
|
+
color: var(--select-panel-fc) !important;
|
|
39
|
+
background: var(--select-panel-bg-odd) !important;
|
|
40
|
+
border-bottom: var(--select-panel-border);
|
|
41
|
+
transition: var(--default-transition);
|
|
42
|
+
&:last-child {
|
|
43
|
+
border-bottom: 0px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
//mat sidenav
|
|
49
|
+
|
|
50
|
+
.mat-drawer-backdrop.ng-star-inserted.mat-drawer-shown {
|
|
51
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
52
|
+
}
|
|
53
|
+
mat-error {
|
|
54
|
+
--mat-form-field-error-text-color: var(--red);
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
mat-form-field.mat-mdc-form-field .mdc-text-field--invalid.mat-mdc-text-field-wrapper {
|
|
59
|
+
border: 1px solid var(--red) !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
mat-slide-toggle {
|
|
63
|
+
--mdc-switch-disabled-unselected-track-color: var(--dark-gray);
|
|
64
|
+
--mdc-switch-disabled-track-opacity: 0.4;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// disable input
|
|
68
|
+
.mat-form-field-disabled {
|
|
69
|
+
--mdc-filled-text-field-disabled-container-color: red;
|
|
70
|
+
.mdc-text-field {
|
|
71
|
+
border: 0px !important;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.mat-mdc-checkbox.mat-accent .mdc-checkbox {
|
|
76
|
+
transform: initial;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// datepicker
|
|
80
|
+
.mat-datepicker-content-container {
|
|
81
|
+
background: #fff;
|
|
82
|
+
}
|
|
83
|
+
.mat-calendar-body tr[aria-hidden="true"] {
|
|
84
|
+
display: none;
|
|
85
|
+
}
|
|
86
|
+
.mat-datepicker-content .mat-calendar {
|
|
87
|
+
height: auto;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
//checkbox
|
|
91
|
+
|
|
92
|
+
.mat-mdc-checkbox.mat-accent {
|
|
93
|
+
--mdc-checkbox-disabled-selected-checkmark-color: white;
|
|
94
|
+
|
|
95
|
+
.mdc-checkbox__background {
|
|
96
|
+
border: 3px solid currentColor;
|
|
97
|
+
border-radius: 4px;
|
|
98
|
+
}
|
|
99
|
+
&.mdc-checkbox--disabled {
|
|
100
|
+
opacity: 0.3 !important;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
.mat-mdc-dialog-title {
|
|
104
|
+
&::before {
|
|
105
|
+
display: none !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.mat-calendar-body-cell-content {
|
|
110
|
+
border-width: 0px !important;
|
|
111
|
+
&.mat-calendar-body-today {
|
|
112
|
+
border-width: 1px !important;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.mat-mdc-tab-label-container {
|
|
117
|
+
border-bottom: 0 !important;
|
|
118
|
+
}
|
|
119
|
+
.mat-button-toggle .mat-pseudo-checkbox {
|
|
120
|
+
margin-right: 12px;
|
|
121
|
+
display: none;
|
|
122
|
+
}
|
|
123
|
+
.mat-mdc-checkbox.mat-accent {
|
|
124
|
+
.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate="true"])
|
|
125
|
+
~ .mdc-checkbox__background {
|
|
126
|
+
border-color: transparent !important;
|
|
127
|
+
background-color: #f3f3f1 !important;
|
|
128
|
+
}
|
|
129
|
+
&.white {
|
|
130
|
+
.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate="true"])
|
|
131
|
+
~ .mdc-checkbox__background {
|
|
132
|
+
background-color: #fff !important;
|
|
133
|
+
border-color: var(--light-gray) !important;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
}
|
|
138
|
+
app-autocomplete,
|
|
139
|
+
app-time-picker {
|
|
140
|
+
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-suffix {
|
|
141
|
+
// padding: 0 10px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.info-section.header-info-section,
|
|
146
|
+
.form-section {
|
|
147
|
+
--info-item-bg-striped: transparent;
|
|
148
|
+
--info-item-padding: 0;
|
|
149
|
+
--name-width: auto;
|
|
150
|
+
--disc-width: auto;
|
|
151
|
+
--info-gap: 2px;
|
|
152
|
+
.info-item {
|
|
153
|
+
@media (min-width: 768px) {
|
|
154
|
+
&::after {
|
|
155
|
+
content: "";
|
|
156
|
+
width: 5px;
|
|
157
|
+
height: 5px;
|
|
158
|
+
background-color: var(--black);
|
|
159
|
+
border-radius: 100%;
|
|
160
|
+
margin: 0 12px;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&:last-child {
|
|
165
|
+
&::after {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
.info-section.main-info-section,
|
|
172
|
+
.form-section {
|
|
173
|
+
--info-item-bg-striped: transparent;
|
|
174
|
+
--name-width: 100%;
|
|
175
|
+
--disc-width: 100%;
|
|
176
|
+
--info-gap: 4px;
|
|
177
|
+
--name-fs: 12px;
|
|
178
|
+
--file-width: 230px;
|
|
179
|
+
--info-item-padding: 0;
|
|
180
|
+
}
|
|
181
|
+
ds-button[shape="text"]::part(base) {
|
|
182
|
+
padding: 0;
|
|
183
|
+
text-decoration: none;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.upload-excel {
|
|
187
|
+
input {
|
|
188
|
+
visibility: hidden;
|
|
189
|
+
display: none;
|
|
190
|
+
width: 0;
|
|
191
|
+
height: 0;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
.mdc-switch__track::before,
|
|
195
|
+
.mdc-switch__track::after {
|
|
196
|
+
border: none !important;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.primary-tab,
|
|
200
|
+
.mat-mdc-tab-group {
|
|
201
|
+
--tab-label-padding: 20px;
|
|
202
|
+
--tab-fs: 1rem;
|
|
203
|
+
--tab-fs-active: 1rem;
|
|
204
|
+
.mat-mdc-tab.mdc-tab {
|
|
205
|
+
flex-grow: 0 !important;
|
|
206
|
+
}
|
|
207
|
+
mat-tab-body {
|
|
208
|
+
padding: 1.5rem;
|
|
209
|
+
background: var(--off-white);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.hadPadding {
|
|
214
|
+
padding: 1.5rem;
|
|
215
|
+
}
|
|
216
|
+
@media (min-width: 875px) {
|
|
217
|
+
.main-sidenav {
|
|
218
|
+
&.large-sidenav {
|
|
219
|
+
--sidenav-width: 875px;
|
|
220
|
+
}
|
|
221
|
+
&.medium-sidenav {
|
|
222
|
+
--sidenav-width: 740px;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
.main-button-toggle.secondary-button-toggle {
|
|
227
|
+
--toggle-height: 35px;
|
|
228
|
+
--toggle-width: 44px;
|
|
229
|
+
--toggle-color: var(--dark-gray: );
|
|
230
|
+
--toggle-color-active: var(--white);
|
|
231
|
+
--toggle-bg: var(--light-gray);
|
|
232
|
+
--toggle-bg-active: var(--purple);
|
|
233
|
+
--toggle-border: 0px solid var(--gray);
|
|
234
|
+
--box-radius: 3px;
|
|
235
|
+
--toggle-fw: var(--font-regular);
|
|
236
|
+
--toggle-gap: 0.5rem;
|
|
237
|
+
padding: 1px;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
mat-form-field.mat-mdc-form-field.mat-form-field-number .mat-mdc-form-field-icon-suffix {
|
|
241
|
+
min-width: auto;
|
|
242
|
+
width: auto;
|
|
243
|
+
}
|
|
244
|
+
.progress-container {
|
|
245
|
+
height: 8px;
|
|
246
|
+
min-width: 195px;
|
|
247
|
+
border: 0px;
|
|
248
|
+
box-shadow: none;
|
|
249
|
+
|
|
250
|
+
// .progress-bar {
|
|
251
|
+
// --progress-width: 195px;
|
|
252
|
+
// width: 100%;
|
|
253
|
+
//
|
|
254
|
+
// }
|
|
255
|
+
&::after {
|
|
256
|
+
display: none;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
mat-progress-bar {
|
|
260
|
+
--progress-height: 8px;
|
|
261
|
+
--progress-width: 195px;
|
|
262
|
+
--mdc-linear-progress-active-indicator-color: var(--green);
|
|
263
|
+
--mdc-linear-progress-active-indicator-height: 8px;
|
|
264
|
+
--mdc-linear-progress-track-height: 8px;
|
|
265
|
+
.mdc-linear-progress__bar-inner {
|
|
266
|
+
border-radius: 5px;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.mat-mdc-checkbox.mat-accent
|
|
271
|
+
.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate="true"])
|
|
272
|
+
~ .mdc-checkbox__background {
|
|
273
|
+
border-color: transparent !important;
|
|
274
|
+
background-color: #fff !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
mat-form-field.mat-mdc-form-field.input-disabled {
|
|
278
|
+
--input-bg: var(--light-gray);
|
|
279
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
.user-list-grid {
|
|
2
|
+
display: grid;
|
|
3
|
+
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
4
|
+
grid-gap: 1rem;
|
|
5
|
+
&--item {
|
|
6
|
+
min-width: auto;
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
//box-shadow: 0 7px 10px rgba(var(--rgb-black), .03);
|
|
9
|
+
background-color: var(--light-gray);
|
|
10
|
+
}
|
|
11
|
+
&--item::part(base) {
|
|
12
|
+
--user-card-align: center;
|
|
13
|
+
--user-card-padding: 0.5rem 1rem;
|
|
14
|
+
|
|
15
|
+
--user-card-gap: 0.5rem;
|
|
16
|
+
}
|
|
17
|
+
&--item::part(details) {
|
|
18
|
+
max-width: calc(100% - 50px - 0.6rem);
|
|
19
|
+
width: 100%;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
|
|
22
|
+
--user-details-gap: 0;
|
|
23
|
+
}
|
|
24
|
+
&--item::part(name) {
|
|
25
|
+
--user-fs: 0.75rem;
|
|
26
|
+
margin-bottom: 0.2rem;
|
|
27
|
+
}
|
|
28
|
+
&--item::part(name),
|
|
29
|
+
&--item::part(title) {
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
text-overflow: ellipsis;
|
|
32
|
+
white-space: nowrap;
|
|
33
|
+
width: 100%;
|
|
34
|
+
text-align: start;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
ds-avatar::part(base) {
|
|
38
|
+
min-width: var(--default-size, 45px) !important;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
app-mobile-number-input {
|
|
2
|
+
&.ng-touched.ng-invalid {
|
|
3
|
+
.input-telephone {
|
|
4
|
+
--input-border: var(--input-border-invalid);
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.input-telephone {
|
|
10
|
+
display: block;
|
|
11
|
+
height: var(--input-height);
|
|
12
|
+
border: var(--input-border);
|
|
13
|
+
border-radius: var(--input-radius);
|
|
14
|
+
background-color: var(--input-bc);
|
|
15
|
+
font-size: var(--input-fs);
|
|
16
|
+
//margin-bottom: 1rem;
|
|
17
|
+
transition: all 0.2s linear;
|
|
18
|
+
|
|
19
|
+
&.has-value {
|
|
20
|
+
--input-border: var(--input-border-active);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.input-focused {
|
|
24
|
+
--input-border: var(--input-border-focuse);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.input-disabled {
|
|
28
|
+
--input-bc: var(--input-bg-gray);
|
|
29
|
+
--input-border: var(--input-border-disabled);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.ng-touched.ng-invalid,
|
|
33
|
+
&.input-invalid {
|
|
34
|
+
--input-border: var(--input-border-invalid);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.form-control {
|
|
38
|
+
border: 0;
|
|
39
|
+
font-size: var(--input-fs);
|
|
40
|
+
font-weight: var(--input-fw);
|
|
41
|
+
color: var(--input-fc);
|
|
42
|
+
padding: var(--input-padding) !important;
|
|
43
|
+
width: 100%;
|
|
44
|
+
border-radius: var(--input-radius);
|
|
45
|
+
|
|
46
|
+
[dir='rtl'] & {
|
|
47
|
+
direction: ltr;
|
|
48
|
+
text-align: right;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&::placeholder {
|
|
52
|
+
font-size: var(--placeholder-fs);
|
|
53
|
+
font-weight: var(--placeholder-fw);
|
|
54
|
+
color: var(--placeholder-fc);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.iti {
|
|
59
|
+
width: 100%;
|
|
60
|
+
height: 100%;
|
|
61
|
+
display: flex;
|
|
62
|
+
|
|
63
|
+
.iti__flag-container {
|
|
64
|
+
background-color: transparent !important;
|
|
65
|
+
padding: 0;
|
|
66
|
+
border-right: var(--input-border);
|
|
67
|
+
position: static;
|
|
68
|
+
|
|
69
|
+
[dir='rtl'] & {
|
|
70
|
+
border-left: var(--input-border);
|
|
71
|
+
border-right: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.iti__selected-flag {
|
|
75
|
+
background-color: transparent !important;
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
justify-content: center;
|
|
79
|
+
position: relative;
|
|
80
|
+
padding: 0 0.5rem;
|
|
81
|
+
gap: 0.3rem;
|
|
82
|
+
z-index: 3;
|
|
83
|
+
|
|
84
|
+
.iti__arrow {
|
|
85
|
+
width: 10px;
|
|
86
|
+
height: 10px;
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
justify-content: center;
|
|
90
|
+
border: 0;
|
|
91
|
+
margin: 0;
|
|
92
|
+
|
|
93
|
+
&:before {
|
|
94
|
+
content: '\ea2c';
|
|
95
|
+
font-family: 'stc-font-icons';
|
|
96
|
+
font-size: 0.7rem;
|
|
97
|
+
color: var(--dark-gray);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&.iti__arrow--up {
|
|
101
|
+
transform: rotate(180deg);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.mat-input-element {
|
|
108
|
+
height: calc(100%);
|
|
109
|
+
margin: 0;
|
|
110
|
+
padding: 0 10px;
|
|
111
|
+
|
|
112
|
+
[dir='rtl'] & {
|
|
113
|
+
// margin: 0 3px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.iti__country-list {
|
|
118
|
+
//max-width: 260px;
|
|
119
|
+
font-size: 0.8rem;
|
|
120
|
+
border-radius: 0 !important;
|
|
121
|
+
box-shadow: -1px 3px 14px rgba(0, 0, 0, 0.08) !important;
|
|
122
|
+
border: 1px solid var(--off-white);
|
|
123
|
+
//white-space: normal;
|
|
124
|
+
//margin: 0 -16px;
|
|
125
|
+
z-index: 4;
|
|
126
|
+
|
|
127
|
+
.iti__divider {
|
|
128
|
+
display: none !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.iti__country {
|
|
132
|
+
border-bottom: 1px solid var(--light-gray);
|
|
133
|
+
background: transparent;
|
|
134
|
+
display: flex;
|
|
135
|
+
gap: 0.5rem;
|
|
136
|
+
|
|
137
|
+
&:last-child {
|
|
138
|
+
border-bottom: 0;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
&.iti__highlight {
|
|
142
|
+
background-color: var(--light-gray);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.iti__flag-box,
|
|
146
|
+
.iti__country-name,
|
|
147
|
+
.iti__dial-code {
|
|
148
|
+
margin: 0;
|
|
149
|
+
direction: ltr;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.country-dropdown {
|
|
155
|
+
[dir='rtl'] & {
|
|
156
|
+
right: 0 !important;
|
|
157
|
+
left: auto !important;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|