sccoreui 3.5.3 → 3.5.5
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/dist/App.scss +271 -1
- package/dist/assets/flex.css +21618 -0
- package/dist/assets/sccoreicons.css +1105 -0
- package/dist/assets/sccoreui.css +8871 -0
- package/dist/assets/theme.css +6459 -0
- package/dist/components/date-picker/date-picker.js +132 -0
- package/dist/components/multi-select-dropdown/multi-select-dropdown.js +2 -2
- package/dist/index.js +3 -1
- package/dist/types/components/date-picker/date-picker.d.ts +2 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/assets/flex.min.css +0 -1
- package/dist/assets/sccoreicons.min.css +0 -1
- package/dist/assets/sccoreui.min.css +0 -1
- package/dist/assets/theme.min.css +0 -6
package/dist/App.scss
CHANGED
|
@@ -127,4 +127,274 @@ h3 {
|
|
|
127
127
|
transform: translateY(100%);
|
|
128
128
|
}
|
|
129
129
|
}
|
|
130
|
-
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// CUSTOM multiselect style started
|
|
133
|
+
.p-multiselect-panel {
|
|
134
|
+
.p-multiselect-header {
|
|
135
|
+
display: block;
|
|
136
|
+
padding: 8px 0;
|
|
137
|
+
|
|
138
|
+
.p-checkbox,
|
|
139
|
+
.p-multiselect-close {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.p-multiselect-filter-container {
|
|
144
|
+
.p-inputtext {
|
|
145
|
+
padding-right: 12px;
|
|
146
|
+
padding-left: 1.75rem;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.p-multiselect-filter-icon {
|
|
150
|
+
left: 0.55rem;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.p-multiselect-items-wrapper {
|
|
156
|
+
.p-multiselect-item.p-highlight {
|
|
157
|
+
&::after {
|
|
158
|
+
content: "";
|
|
159
|
+
width: 14px;
|
|
160
|
+
height: 6px;
|
|
161
|
+
border-left: 2px solid #132067;
|
|
162
|
+
border-bottom: 2px solid #132067;
|
|
163
|
+
transform: rotate(-45deg);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.sc_custom_multiselect {
|
|
170
|
+
// max-width: 197px;
|
|
171
|
+
margin: 0 4px;
|
|
172
|
+
width: max-content;
|
|
173
|
+
|
|
174
|
+
* {
|
|
175
|
+
color: #344054;
|
|
176
|
+
font-weight: 700;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.left_section_item {
|
|
180
|
+
left: 1rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.right_section_item {
|
|
184
|
+
right: 1rem;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.selected_moreThan_one {
|
|
188
|
+
right: 44px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.p-inputwrapper-filled {
|
|
192
|
+
background: #F5F6FD;
|
|
193
|
+
border: 1px solid #8190E8;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.p-multiselect {
|
|
197
|
+
max-width: 100%;
|
|
198
|
+
width: max-content !important;
|
|
199
|
+
|
|
200
|
+
.p-multiselect-label {
|
|
201
|
+
padding: 0;
|
|
202
|
+
padding-left: 44px;
|
|
203
|
+
max-width: 100%;
|
|
204
|
+
|
|
205
|
+
.p-multiselect-token {
|
|
206
|
+
border: none;
|
|
207
|
+
width: max-content;
|
|
208
|
+
min-width: max-content;
|
|
209
|
+
background: none;
|
|
210
|
+
padding-left: 0;
|
|
211
|
+
|
|
212
|
+
.p-multiselect-token-label {
|
|
213
|
+
width: 100%;
|
|
214
|
+
white-space: nowrap;
|
|
215
|
+
overflow: hidden;
|
|
216
|
+
text-overflow: ellipsis;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
svg {
|
|
221
|
+
display: none;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.p-multiselect-trigger {
|
|
227
|
+
width: 2rem;
|
|
228
|
+
|
|
229
|
+
svg {
|
|
230
|
+
display: none;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.status_dropdown {
|
|
236
|
+
.p-multiselect {
|
|
237
|
+
.p-multiselect-label {
|
|
238
|
+
padding-left: 34px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.select_status_prv {
|
|
243
|
+
ul {
|
|
244
|
+
li {
|
|
245
|
+
width: 10px;
|
|
246
|
+
height: 10px;
|
|
247
|
+
border-radius: 8px;
|
|
248
|
+
position: absolute;
|
|
249
|
+
transform: translateY(-50%);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
li.all {
|
|
253
|
+
background: #667085;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
li.active {
|
|
257
|
+
background: #12B76A;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
li.inactive {
|
|
261
|
+
background: #F04438;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
li.draft {
|
|
265
|
+
background: #162578;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
li:nth-child(2) {
|
|
269
|
+
left: 6px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
li:nth-child(3) {
|
|
273
|
+
left: 12px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.selected_multile {
|
|
281
|
+
.p-multiselect-token-label {
|
|
282
|
+
padding-right: 18px;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.selected_multile.selected_num_2 {
|
|
287
|
+
.p-multiselect .p-multiselect-label {
|
|
288
|
+
padding-left: 40px;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.selected_multile.selected_num_3 {
|
|
293
|
+
.p-multiselect .p-multiselect-label {
|
|
294
|
+
padding-left: 44px;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.status_dropdown.selected_multile {
|
|
299
|
+
.left_section_item {
|
|
300
|
+
max-width: 28px;
|
|
301
|
+
overflow: hidden;
|
|
302
|
+
height: 11px;
|
|
303
|
+
width: -webkit-fill-available;
|
|
304
|
+
align-items: center;
|
|
305
|
+
display: flex;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.status_dropdown_item:before {
|
|
310
|
+
content: '';
|
|
311
|
+
width: 10px;
|
|
312
|
+
height: 10px;
|
|
313
|
+
position: absolute;
|
|
314
|
+
transform: translateY(-50%);
|
|
315
|
+
top: 50%;
|
|
316
|
+
left: 0px;
|
|
317
|
+
border-radius: 50px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.status_dropdown_item.Active::before {
|
|
321
|
+
background: #12B76A;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.status_dropdown_item.Inactive::before {
|
|
325
|
+
background: #F04438;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.status_dropdown_item.Draft::before {
|
|
329
|
+
background: #162578;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.custom_date_picker {
|
|
333
|
+
// padding-left: 134px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.date_filter {
|
|
337
|
+
margin: 0;
|
|
338
|
+
position: absolute;
|
|
339
|
+
top: 0;
|
|
340
|
+
left: 0px;
|
|
341
|
+
background: #fff;
|
|
342
|
+
height: 100%;
|
|
343
|
+
padding: 4px 16px;
|
|
344
|
+
li {
|
|
345
|
+
height: 40px;
|
|
346
|
+
&:hover{
|
|
347
|
+
background: #F9FAFB;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.active {
|
|
352
|
+
background: #F9FAFB;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
div:has(ul.date_filter) .p-datepicker-group-container {
|
|
359
|
+
padding-left: 116px;
|
|
360
|
+
margin: -8px;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.bottom_date_filters {
|
|
364
|
+
width: calc(100% - 116px);
|
|
365
|
+
border-left: 1px solid #dee2e6;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker table td>span {
|
|
369
|
+
width: 40px;
|
|
370
|
+
height: 40px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// .date_item {
|
|
374
|
+
// height: 40px;
|
|
375
|
+
// }
|
|
376
|
+
|
|
377
|
+
div:has(ul.date_filter) .p-datepicker-group-container .p-datepicker-group {
|
|
378
|
+
width: 328px;
|
|
379
|
+
max-width: 328px;
|
|
380
|
+
padding: 8px 20px !important;
|
|
381
|
+
border: 1px solid #dee2e6;
|
|
382
|
+
border-top: 0;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
div:has(ul.date_filter) .p-datepicker-group-container div:nth-child(2){
|
|
386
|
+
border-right: 0;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
div:has(ul.date_filter) .p-datepicker-group-container table td {
|
|
390
|
+
padding: 0;
|
|
391
|
+
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
div:has(ul.date_filter) .p-datepicker-footer {
|
|
395
|
+
margin: -8px;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
// div:has(ul.date_filter) .p-datepicker-group-container {
|
|
399
|
+
// padding: 0;
|
|
400
|
+
// }
|