@bagelink/vue 0.0.1218 → 0.0.1220
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/components/Calendar/Index.vue.d.ts +510 -0
- package/dist/components/Calendar/Index.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts +117 -0
- package/dist/components/Calendar/components/header/Header.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEventTile.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts +37 -0
- package/dist/components/Calendar/components/month/AgendaEvents.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts +84 -0
- package/dist/components/Calendar/components/month/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts +69 -0
- package/dist/components/Calendar/components/month/Event.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts +134 -0
- package/dist/components/Calendar/components/month/Month.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts +7 -0
- package/dist/components/Calendar/components/month/WeekDay.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts +122 -0
- package/dist/components/Calendar/components/partials/EventFlyout.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts +152 -0
- package/dist/components/Calendar/components/week/Day.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts +136 -0
- package/dist/components/Calendar/components/week/DayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts +23 -0
- package/dist/components/Calendar/components/week/DayTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts +42 -0
- package/dist/components/Calendar/components/week/FullDayEvent.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts +196 -0
- package/dist/components/Calendar/components/week/Week.vue.d.ts.map +1 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts +21 -0
- package/dist/components/Calendar/components/week/WeekTimeline.vue.d.ts.map +1 -0
- package/dist/components/Calendar/constants.d.ts +13 -0
- package/dist/components/Calendar/constants.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts +17 -0
- package/dist/components/Calendar/helpers/DayIntervals.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EDate.d.ts +10 -0
- package/dist/components/Calendar/helpers/EDate.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Errors.d.ts +18 -0
- package/dist/components/Calendar/helpers/Errors.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts +19 -0
- package/dist/components/Calendar/helpers/EventChange.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts +12 -0
- package/dist/components/Calendar/helpers/EventConcurrency.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts +14 -0
- package/dist/components/Calendar/helpers/EventFlyoutPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventPosition.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts +11 -0
- package/dist/components/Calendar/helpers/EventsFilter.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts +19 -0
- package/dist/components/Calendar/helpers/Helpers.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Time.d.ts +118 -0
- package/dist/components/Calendar/helpers/Time.d.ts.map +1 -0
- package/dist/components/Calendar/helpers/Week.d.ts +10 -0
- package/dist/components/Calendar/helpers/Week.d.ts.map +1 -0
- package/dist/components/Calendar/index.d.ts +4 -0
- package/dist/components/Calendar/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/index.d.ts +6 -0
- package/dist/components/Calendar/language/index.d.ts.map +1 -0
- package/dist/components/Calendar/language/keys.d.ts +90 -0
- package/dist/components/Calendar/language/keys.d.ts.map +1 -0
- package/dist/components/Calendar/models/Event.d.ts +50 -0
- package/dist/components/Calendar/models/Event.d.ts.map +1 -0
- package/dist/components/Calendar/typings/config.interface.d.ts +77 -0
- package/dist/components/Calendar/typings/config.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts +10 -0
- package/dist/components/Calendar/typings/interfaces/day.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts +32 -0
- package/dist/components/Calendar/typings/interfaces/event.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts +7 -0
- package/dist/components/Calendar/typings/interfaces/full-day-events-week.type.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/period.interface.d.ts.map +1 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts +6 -0
- package/dist/components/Calendar/typings/interfaces/time-modes.d.ts.map +1 -0
- package/dist/components/Calendar/typings/types.d.ts +21 -0
- package/dist/components/Calendar/typings/types.d.ts.map +1 -0
- package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePick.vue.d.ts +8 -0
- package/dist/components/form/inputs/DatePick.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/directives/index.d.ts +2 -0
- package/dist/directives/index.d.ts.map +1 -1
- package/dist/directives/vResize.d.ts +18 -0
- package/dist/directives/vResize.d.ts.map +1 -0
- package/dist/index.cjs +3583 -111
- package/dist/index.mjs +3584 -112
- package/dist/style.css +843 -77
- package/package.json +2 -1
- package/src/components/Calendar/Index.vue +420 -0
- package/src/components/Calendar/assets/base.css +60 -0
- package/src/components/Calendar/components/header/Header.vue +274 -0
- package/src/components/Calendar/components/month/AgendaEventTile.vue +137 -0
- package/src/components/Calendar/components/month/AgendaEvents.vue +107 -0
- package/src/components/Calendar/components/month/Day.vue +271 -0
- package/src/components/Calendar/components/month/Event.vue +221 -0
- package/src/components/Calendar/components/month/Month.vue +278 -0
- package/src/components/Calendar/components/month/WeekDay.vue +25 -0
- package/src/components/Calendar/components/partials/EventFlyout.vue +429 -0
- package/src/components/Calendar/components/week/Day.vue +212 -0
- package/src/components/Calendar/components/week/DayEvent.vue +585 -0
- package/src/components/Calendar/components/week/DayTimeline.vue +86 -0
- package/src/components/Calendar/components/week/FullDayEvent.vue +121 -0
- package/src/components/Calendar/components/week/Week.vue +414 -0
- package/src/components/Calendar/components/week/WeekTimeline.vue +126 -0
- package/src/components/Calendar/constants.ts +13 -0
- package/src/components/Calendar/env.d.ts +8 -0
- package/src/components/Calendar/helpers/DayIntervals.ts +48 -0
- package/src/components/Calendar/helpers/EDate.ts +18 -0
- package/src/components/Calendar/helpers/Errors.ts +69 -0
- package/src/components/Calendar/helpers/EventChange.ts +88 -0
- package/src/components/Calendar/helpers/EventConcurrency.ts +69 -0
- package/src/components/Calendar/helpers/EventFlyoutPosition.ts +96 -0
- package/src/components/Calendar/helpers/EventPosition.ts +154 -0
- package/src/components/Calendar/helpers/EventsFilter.ts +50 -0
- package/src/components/Calendar/helpers/Helpers.ts +86 -0
- package/src/components/Calendar/helpers/Time.ts +588 -0
- package/src/components/Calendar/helpers/Week.ts +37 -0
- package/src/components/Calendar/index.ts +4 -0
- package/src/components/Calendar/language/index.ts +37 -0
- package/src/components/Calendar/language/keys.ts +90 -0
- package/src/components/Calendar/models/Event.ts +112 -0
- package/src/components/Calendar/styles/_mixins.css +21 -0
- package/src/components/Calendar/styles/_variables.css +51 -0
- package/src/components/Calendar/typings/config.interface.ts +87 -0
- package/src/components/Calendar/typings/interfaces/day.interface.ts +10 -0
- package/src/components/Calendar/typings/interfaces/event.interface.ts +32 -0
- package/src/components/Calendar/typings/interfaces/full-day-events-week.type.ts +8 -0
- package/src/components/Calendar/typings/interfaces/period.interface.ts +5 -0
- package/src/components/Calendar/typings/interfaces/time-modes.ts +9 -0
- package/src/components/Calendar/typings/types.ts +23 -0
- package/src/components/DataTable/DataTable.vue +4 -0
- package/src/components/form/inputs/DatePick.vue +189 -152
- package/src/components/form/inputs/NumberInput.vue +1 -3
- package/src/components/index.ts +3 -6
- package/src/directives/index.ts +2 -0
- package/src/directives/vResize.ts +205 -0
package/dist/style.css
CHANGED
|
@@ -307,6 +307,765 @@ display: block;
|
|
|
307
307
|
border-radius: var(--input-border-radius);
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
+
.calendar-header[data-v-34cb97da] {
|
|
311
|
+
display: flex;
|
|
312
|
+
flex-wrap: wrap;
|
|
313
|
+
align-items: center;
|
|
314
|
+
justify-content: space-between;
|
|
315
|
+
padding: var(--qalendar-spacing-half);
|
|
316
|
+
border-radius: var(--qalendar-border-radius);
|
|
317
|
+
}
|
|
318
|
+
@media (min-width: 768px) {
|
|
319
|
+
.calendar-header[data-v-34cb97da] {
|
|
320
|
+
justify-content: space-between;
|
|
321
|
+
gap: var(--qalendar-spacing);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
.dark {
|
|
325
|
+
color: var(--qalendar-dark-mode-text-hint);
|
|
326
|
+
}
|
|
327
|
+
.calendar-header__period-name[data-v-34cb97da] {
|
|
328
|
+
font-size: var(--qalendar-font-l);
|
|
329
|
+
text-align: center;
|
|
330
|
+
}
|
|
331
|
+
@media (min-width: 768px) {
|
|
332
|
+
.calendar-header__period-name[data-v-34cb97da] {
|
|
333
|
+
margin-bottom: 0;
|
|
334
|
+
text-align: left;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
.calendar-header__multiselects[data-v-34cb97da] {
|
|
338
|
+
display: flex;
|
|
339
|
+
flex-wrap: wrap;
|
|
340
|
+
align-items: center;
|
|
341
|
+
gap: var(--qalendar-spacing);
|
|
342
|
+
}
|
|
343
|
+
.calendar-header__chevron-arrows[data-v-34cb97da] {
|
|
344
|
+
display: flex;
|
|
345
|
+
align-items: center;
|
|
346
|
+
gap: 20px;
|
|
347
|
+
}
|
|
348
|
+
.calendar-header__chevron-arrow[data-v-34cb97da] {
|
|
349
|
+
cursor: pointer;
|
|
350
|
+
transition: color 0.2s ease;
|
|
351
|
+
font-size: var(--qalendar-font-m);
|
|
352
|
+
}
|
|
353
|
+
.calendar-header__chevron-arrow[data-v-34cb97da]:hover {
|
|
354
|
+
color: var(--qalendar-gray-quite-dark);
|
|
355
|
+
}
|
|
356
|
+
.calendar-header__mode-picker[data-v-34cb97da] {
|
|
357
|
+
position: relative;
|
|
358
|
+
display: flex;
|
|
359
|
+
align-items: center;
|
|
360
|
+
justify-content: center;
|
|
361
|
+
width: fit-content;
|
|
362
|
+
height: 36px;
|
|
363
|
+
border-radius: 4px;
|
|
364
|
+
font-size: var(--qalendar-font-m);
|
|
365
|
+
cursor: pointer;
|
|
366
|
+
border: var(--qalendar-border-gray-thin);
|
|
367
|
+
}
|
|
368
|
+
.dark {
|
|
369
|
+
border-color: transparent;
|
|
370
|
+
}
|
|
371
|
+
.calendar-header__mode-value[data-v-34cb97da] {
|
|
372
|
+
padding: 0 var(--qalendar-spacing);
|
|
373
|
+
width: 100%;
|
|
374
|
+
height: 100%;
|
|
375
|
+
display: flex;
|
|
376
|
+
align-items: center;
|
|
377
|
+
user-select: none;
|
|
378
|
+
border-radius: 4px;
|
|
379
|
+
}
|
|
380
|
+
.dark {
|
|
381
|
+
background-color: var(--qalendar-dark-mode-lightly-elevated-surface);
|
|
382
|
+
}
|
|
383
|
+
.calendar-header__mode-options[data-v-34cb97da] {
|
|
384
|
+
position: absolute;
|
|
385
|
+
z-index: 51;
|
|
386
|
+
top: 100%;
|
|
387
|
+
left: 50%;
|
|
388
|
+
transform: translateX(-50%);
|
|
389
|
+
border: var(--qalendar-border-gray-thin);
|
|
390
|
+
background-color: #fff;
|
|
391
|
+
}
|
|
392
|
+
.dark {
|
|
393
|
+
border-color: transparent;
|
|
394
|
+
background-color: var(--qalendar-dark-mode-elevated-surface);
|
|
395
|
+
}
|
|
396
|
+
.calendar-header__mode-option[data-v-34cb97da] {
|
|
397
|
+
padding: var(--qalendar-spacing-half) var(--qalendar-spacing);
|
|
398
|
+
}
|
|
399
|
+
.calendar-header__mode-option[data-v-34cb97da]:hover {
|
|
400
|
+
background-color: var(--qalendar-option-hover);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.event-flyout {
|
|
404
|
+
position: fixed;
|
|
405
|
+
z-index: 50;
|
|
406
|
+
background-color: #fff;
|
|
407
|
+
max-height: 100%;
|
|
408
|
+
width: var(--2bf9b46b);
|
|
409
|
+
max-width: 98%;
|
|
410
|
+
border: var(--qalendar-border-gray-thin);
|
|
411
|
+
border-radius: 8px;
|
|
412
|
+
box-shadow: 0 12px 24px rgb(0 0 0 / 9%), 0 6px 12px rgb(0 0 0 / 18%);
|
|
413
|
+
overflow: hidden;
|
|
414
|
+
transition: all 0.2s ease;
|
|
415
|
+
transition-property: opacity, transform;
|
|
416
|
+
transform: translateY(-40px);
|
|
417
|
+
opacity: 0;
|
|
418
|
+
pointer-events: none;
|
|
419
|
+
}
|
|
420
|
+
@media (prefers-color-scheme: dark) {
|
|
421
|
+
.event-flyout {
|
|
422
|
+
background-color: var(--qalendar-dark-mode-elevated-surface);
|
|
423
|
+
border-color: transparent;
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
.event-flyout.is-visible {
|
|
427
|
+
opacity: 1;
|
|
428
|
+
transform: translateY(0);
|
|
429
|
+
pointer-events: initial;
|
|
430
|
+
}
|
|
431
|
+
.event-flyout__relative-wrapper {
|
|
432
|
+
position: relative;
|
|
433
|
+
}
|
|
434
|
+
.event-flyout__menu {
|
|
435
|
+
display: flex;
|
|
436
|
+
justify-content: space-between;
|
|
437
|
+
align-items: center;
|
|
438
|
+
}
|
|
439
|
+
.event-flyout__menu-editable,
|
|
440
|
+
.event-flyout__menu-close {
|
|
441
|
+
padding: var(--qalendar-spacing) var(--qalendar-spacing) 0 var(--qalendar-spacing);
|
|
442
|
+
display: flex;
|
|
443
|
+
gap: 20px;
|
|
444
|
+
}
|
|
445
|
+
.is-not-editable .event-flyout__menu-close {
|
|
446
|
+
position: absolute;
|
|
447
|
+
top: 0;
|
|
448
|
+
right: 0;
|
|
449
|
+
}
|
|
450
|
+
.event-flyout__menu-item {
|
|
451
|
+
font-size: var(--qalendar-font-l);
|
|
452
|
+
color: gray;
|
|
453
|
+
}
|
|
454
|
+
@media (prefers-color-scheme: dark) {
|
|
455
|
+
.event-flyout__menu-item {
|
|
456
|
+
color: var(--qalendar-dark-mode-text-hint);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
.event-flyout__menu-item:hover {
|
|
460
|
+
color: var(--qalendar-theme-color);
|
|
461
|
+
cursor: pointer;
|
|
462
|
+
}
|
|
463
|
+
.is-trash-icon:hover {
|
|
464
|
+
color: red;
|
|
465
|
+
}
|
|
466
|
+
.event-flyout__info-wrapper {
|
|
467
|
+
padding: var(--qalendar-spacing);
|
|
468
|
+
}
|
|
469
|
+
.event-flyout__row {
|
|
470
|
+
display: flex;
|
|
471
|
+
gap: var(--qalendar-spacing);
|
|
472
|
+
margin-bottom: 0.25em;
|
|
473
|
+
font-weight: 400;
|
|
474
|
+
}
|
|
475
|
+
.event-flyout__row p {
|
|
476
|
+
margin: 0;
|
|
477
|
+
padding: 0;
|
|
478
|
+
}
|
|
479
|
+
.event-flyout__row svg {
|
|
480
|
+
margin-top: 0.1rem;
|
|
481
|
+
color: #5f6368;
|
|
482
|
+
width: 14px;
|
|
483
|
+
}
|
|
484
|
+
@media (prefers-color-scheme: dark) {
|
|
485
|
+
.event-flyout__row svg {
|
|
486
|
+
color: var(--qalendar-dark-mode-text-hint);
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
.event-flyout__color-icon {
|
|
490
|
+
--icon-height: 16px;
|
|
491
|
+
border-radius: 50%;
|
|
492
|
+
height: var(--icon-height);
|
|
493
|
+
width: var(--icon-height);
|
|
494
|
+
}
|
|
495
|
+
.is-title {
|
|
496
|
+
font-size: var(--qalendar-font-l);
|
|
497
|
+
align-items: center;
|
|
498
|
+
}
|
|
499
|
+
.is-not-editable .is-title {
|
|
500
|
+
max-width: 90%;
|
|
501
|
+
}
|
|
502
|
+
.is-time {
|
|
503
|
+
font-size: var(--qalendar-font-s);
|
|
504
|
+
margin-bottom: 0.75em;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.agenda__event[data-v-eb2ab566] {
|
|
508
|
+
background-color: var(--6b656230);
|
|
509
|
+
color: var(--2507007e);
|
|
510
|
+
display: flex;
|
|
511
|
+
flex-flow: column;
|
|
512
|
+
justify-content: flex-start;
|
|
513
|
+
border-radius: 4px;
|
|
514
|
+
font-size: var(--qalendar-font-2xs);
|
|
515
|
+
margin-bottom: 4px;
|
|
516
|
+
padding: var(--qalendar-spacing);
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
user-select: none;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.agenda__wrapper[data-v-25f23df1] {
|
|
522
|
+
display: flex;
|
|
523
|
+
flex-flow: row;
|
|
524
|
+
padding: 10px 5px 0;
|
|
525
|
+
}
|
|
526
|
+
.agenda__header[data-v-25f23df1] {
|
|
527
|
+
padding-right: 10px;
|
|
528
|
+
}
|
|
529
|
+
.agenda__header-day-name[data-v-25f23df1] {
|
|
530
|
+
text-align: center;
|
|
531
|
+
color: var(--qalendar-theme-color);
|
|
532
|
+
font-size: var(--qalendar-font-xs);
|
|
533
|
+
font-weight: bold;
|
|
534
|
+
}
|
|
535
|
+
.agenda__header-date[data-v-25f23df1] {
|
|
536
|
+
height: fit-content;
|
|
537
|
+
display: flex;
|
|
538
|
+
justify-content: center;
|
|
539
|
+
align-items: center;
|
|
540
|
+
padding: 5px;
|
|
541
|
+
border-radius: 4px;
|
|
542
|
+
background-color: var(--qalendar-theme-color);
|
|
543
|
+
color: white;
|
|
544
|
+
font-weight: 600;
|
|
545
|
+
font-size: var(--qalendar-font-m);
|
|
546
|
+
}
|
|
547
|
+
.agenda__content[data-v-25f23df1] {
|
|
548
|
+
display: flex;
|
|
549
|
+
flex-flow: column;
|
|
550
|
+
width: 100%;
|
|
551
|
+
height: auto;
|
|
552
|
+
}
|
|
553
|
+
.agenda__content .is-empty[data-v-25f23df1] {
|
|
554
|
+
min-height: 70px;
|
|
555
|
+
display: flex;
|
|
556
|
+
justify-content: center;
|
|
557
|
+
align-items: center;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.calendar-month__event {
|
|
561
|
+
--event-inline-padding: 4px;
|
|
562
|
+
display: flex;
|
|
563
|
+
align-items: center;
|
|
564
|
+
overflow: hidden;
|
|
565
|
+
border-radius: 4px;
|
|
566
|
+
font-size: var(--qalendar-font-2xs);
|
|
567
|
+
width: calc(100% - (var(--event-inline-padding) * 2));
|
|
568
|
+
margin-bottom: 4px;
|
|
569
|
+
padding: 0.25rem var(--event-inline-padding);
|
|
570
|
+
cursor: pointer;
|
|
571
|
+
user-select: none;
|
|
572
|
+
}
|
|
573
|
+
.calendar-month__event .calendar-month__event-time {
|
|
574
|
+
margin-right: 6px;
|
|
575
|
+
}
|
|
576
|
+
.calendar-month__event .calendar-month__event-time,
|
|
577
|
+
.calendar-month__event .calendar-month__event-title,
|
|
578
|
+
.calendar-month__event .calendar-month__event-color {
|
|
579
|
+
flex-shrink: 0;
|
|
580
|
+
}
|
|
581
|
+
.qalendar-is-small .calendar-month__event .calendar-month__event-time,
|
|
582
|
+
.qalendar-is-small .calendar-month__event .calendar-month__event-title {
|
|
583
|
+
display: none;
|
|
584
|
+
}
|
|
585
|
+
.qalendar-is-small .calendar-month__event {
|
|
586
|
+
background-color: var(--2920aa71);
|
|
587
|
+
width: 4px;
|
|
588
|
+
height: 4px;
|
|
589
|
+
border-radius: 50%;
|
|
590
|
+
padding: 1px;
|
|
591
|
+
margin-right: 1px;
|
|
592
|
+
}
|
|
593
|
+
.calendar-month__event.is-draggable {
|
|
594
|
+
cursor: grab;
|
|
595
|
+
}
|
|
596
|
+
.calendar-month__event:active {
|
|
597
|
+
z-index: 100;
|
|
598
|
+
}
|
|
599
|
+
.calendar-month__event:not(.is-draggable):active {
|
|
600
|
+
cursor: not-allowed;
|
|
601
|
+
}
|
|
602
|
+
.calendar-month__event:hover {
|
|
603
|
+
background-color: var(--qalendar-light-gray);
|
|
604
|
+
}
|
|
605
|
+
.calendar-month__event:hover:hover {
|
|
606
|
+
background-color: var(--qalendar-option-hover);
|
|
607
|
+
}
|
|
608
|
+
.calendar-month__event .calendar-month__event-color {
|
|
609
|
+
background-color: var(--2920aa71);
|
|
610
|
+
width: 6px;
|
|
611
|
+
height: 6px;
|
|
612
|
+
border-radius: 50%;
|
|
613
|
+
margin-right: 4px;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.calendar-month__weekday[data-v-057882e2] {
|
|
617
|
+
height: 100%;
|
|
618
|
+
flex: 1;
|
|
619
|
+
display: flex;
|
|
620
|
+
flex-flow: column;
|
|
621
|
+
align-items: center;
|
|
622
|
+
border-right: var(--qalendar-border-gray-thin);
|
|
623
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
624
|
+
overflow: hidden;
|
|
625
|
+
transition: background-color 0.2s ease-in-out;
|
|
626
|
+
}
|
|
627
|
+
.calendar-month__weekday.is-droppable[data-v-057882e2] {
|
|
628
|
+
background-color: var(--qalendar-light-gray);
|
|
629
|
+
}
|
|
630
|
+
.calendar-month__weekday[data-v-057882e2]:last-child {
|
|
631
|
+
border-right: 0;
|
|
632
|
+
}
|
|
633
|
+
.qalendar-is-small .calendar-month__weekday.is-selected[data-v-057882e2] {
|
|
634
|
+
-webkit-box-shadow: inset 0 0 0 3px var(--qalendar-theme-color);
|
|
635
|
+
-moz-box-shadow: inset 0 0 0 3px var(--qalendar-theme-color);
|
|
636
|
+
box-shadow: inset 0 0 0 3px var(--qalendar-theme-color);
|
|
637
|
+
border-radius: 5px;
|
|
638
|
+
}
|
|
639
|
+
.qalendar-is-small .calendar-month__weekday[data-v-057882e2] {
|
|
640
|
+
height: 45px;
|
|
641
|
+
width: 45px;
|
|
642
|
+
display: flex;
|
|
643
|
+
flex-flow: column;
|
|
644
|
+
justify-content: space-around;
|
|
645
|
+
}
|
|
646
|
+
.calendar-month__day-date[data-v-057882e2] {
|
|
647
|
+
font-size: var(--qalendar-font-xs);
|
|
648
|
+
color: var(--qalendar-gray-quite-dark);
|
|
649
|
+
}
|
|
650
|
+
.calendar-month__day-date[data-v-057882e2]:first-child {
|
|
651
|
+
margin-top: 6px;
|
|
652
|
+
}
|
|
653
|
+
.calendar-month__weekday-more[data-v-057882e2] {
|
|
654
|
+
font-size: var(--qalendar-font-2xs);
|
|
655
|
+
width: 100%;
|
|
656
|
+
padding-left: 4px;
|
|
657
|
+
color: var(--qalendar-gray-quite-dark);
|
|
658
|
+
cursor: pointer;
|
|
659
|
+
}
|
|
660
|
+
.calendar-month_events[data-v-057882e2] {
|
|
661
|
+
width: 100%;
|
|
662
|
+
}
|
|
663
|
+
.qalendar-is-small .calendar-month_events[data-v-057882e2] {
|
|
664
|
+
display: flex;
|
|
665
|
+
flex-flow: row;
|
|
666
|
+
justify-content: center;
|
|
667
|
+
}
|
|
668
|
+
.qalendar-is-small .calendar-month_events .calendar-month__weekday-more[data-v-057882e2] {
|
|
669
|
+
display: none;
|
|
670
|
+
}
|
|
671
|
+
.calendar-month__weekday.is-today .calendar-month__day-date[data-v-057882e2] {
|
|
672
|
+
background-color: var(--qalendar-theme-color);
|
|
673
|
+
color: #fff;
|
|
674
|
+
border-radius: 50%;
|
|
675
|
+
padding: 4px 6px;
|
|
676
|
+
}
|
|
677
|
+
.qalendar-is-small .calendar-month__weekday.is-today .calendar-month__day-date[data-v-057882e2] {
|
|
678
|
+
padding: 2px 4px;
|
|
679
|
+
}
|
|
680
|
+
.space-reserver[data-v-057882e2] {
|
|
681
|
+
height: 100%;
|
|
682
|
+
flex: 1;
|
|
683
|
+
display: flex;
|
|
684
|
+
flex-flow: column;
|
|
685
|
+
align-items: center;
|
|
686
|
+
border-right: var(--qalendar-border-gray-thin);
|
|
687
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
688
|
+
border-right-color: transparent;
|
|
689
|
+
}
|
|
690
|
+
.space-reserver + .calendar-month__weekday[data-v-057882e2]:not(.trailing-or-leading) {
|
|
691
|
+
border-left: var(--qalendar-border-gray-thin);
|
|
692
|
+
}
|
|
693
|
+
@media (prefers-color-scheme: dark) {
|
|
694
|
+
.calendar-month__weekday[data-v-057882e2],
|
|
695
|
+
.space-reserver[data-v-057882e2] {
|
|
696
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.calendar-month__day-name[data-v-d96cc47c] {
|
|
701
|
+
display: block;
|
|
702
|
+
font-size: 12px;
|
|
703
|
+
font-weight: 500;
|
|
704
|
+
color: var(--qalendar-gray-quite-dark);
|
|
705
|
+
margin-bottom: var(--qalendar-spacing-half);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.calendar-month {
|
|
709
|
+
position: relative;
|
|
710
|
+
display: flex;
|
|
711
|
+
flex-flow: column;
|
|
712
|
+
width: 100%;
|
|
713
|
+
height: 100%;
|
|
714
|
+
overflow-y: auto;
|
|
715
|
+
}
|
|
716
|
+
:global(.qalendar-is-small) .calendar-month {
|
|
717
|
+
height: initial;
|
|
718
|
+
}
|
|
719
|
+
.calendar-month__week-day-names {
|
|
720
|
+
display: flex;
|
|
721
|
+
justify-content: space-between;
|
|
722
|
+
}
|
|
723
|
+
.calendar-month__week-day-name {
|
|
724
|
+
flex: 1;
|
|
725
|
+
text-align: center;
|
|
726
|
+
}
|
|
727
|
+
.calendar-month__weeks {
|
|
728
|
+
height: 100%;
|
|
729
|
+
flex-grow: 1;
|
|
730
|
+
display: flex;
|
|
731
|
+
flex-flow: column;
|
|
732
|
+
justify-content: space-between;
|
|
733
|
+
}
|
|
734
|
+
.calendar-month__week {
|
|
735
|
+
display: flex;
|
|
736
|
+
flex: 1;
|
|
737
|
+
}
|
|
738
|
+
.calendar-month__week:first-child {
|
|
739
|
+
border-top: var(--qalendar-border-gray-thin);
|
|
740
|
+
}
|
|
741
|
+
@media (prefers-color-scheme: dark) {
|
|
742
|
+
.calendar-month__week:first-child {
|
|
743
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
.calendar-month__day_events {
|
|
747
|
+
height: 100%;
|
|
748
|
+
display: none;
|
|
749
|
+
}
|
|
750
|
+
:global(.qalendar-is-small) .calendar-month__day_events {
|
|
751
|
+
display: block;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.calendar-week__event[data-v-7f22cf49] {
|
|
755
|
+
position: absolute;
|
|
756
|
+
width: 100%;
|
|
757
|
+
border-radius: 4px;
|
|
758
|
+
cursor: pointer;
|
|
759
|
+
box-sizing: content-box;
|
|
760
|
+
user-select: none;
|
|
761
|
+
overflow: hidden;
|
|
762
|
+
}
|
|
763
|
+
.calendar-week__event.is-editable[data-v-7f22cf49] {
|
|
764
|
+
cursor: grab;
|
|
765
|
+
}
|
|
766
|
+
.calendar-week__event.has-disabled-dnd[data-v-7f22cf49] {
|
|
767
|
+
cursor: initial;
|
|
768
|
+
}
|
|
769
|
+
.calendar-week__event .calendar-week__event-row[data-v-7f22cf49] {
|
|
770
|
+
display: flex;
|
|
771
|
+
align-items: flex-start;
|
|
772
|
+
margin-bottom: 0.25em;
|
|
773
|
+
}
|
|
774
|
+
.calendar-week__event .calendar-week__event-row p[data-v-7f22cf49] {
|
|
775
|
+
margin: 0;
|
|
776
|
+
padding: 0;
|
|
777
|
+
}
|
|
778
|
+
.calendar-week__event .calendar-week__event-info-wrapper[data-v-7f22cf49] {
|
|
779
|
+
position: relative;
|
|
780
|
+
padding: var(--qalendar-spacing-half);
|
|
781
|
+
font-size: var(--qalendar-font-xs);
|
|
782
|
+
height: 100%;
|
|
783
|
+
box-sizing: border-box;
|
|
784
|
+
user-select: none;
|
|
785
|
+
}
|
|
786
|
+
.calendar-week__event .calendar-week__event-blend-out[data-v-7f22cf49] {
|
|
787
|
+
position: absolute;
|
|
788
|
+
bottom: 0;
|
|
789
|
+
height: 20px;
|
|
790
|
+
width: 100%;
|
|
791
|
+
transform: translateX(calc(var(--qalendar-spacing-half) * -1));
|
|
792
|
+
}
|
|
793
|
+
.calendar-week__event .calendar-week__event-icon[data-v-7f22cf49] {
|
|
794
|
+
margin: 2px 4px 0 0;
|
|
795
|
+
font-size: var(--qalendar-font-xs);
|
|
796
|
+
}
|
|
797
|
+
.calendar-week__event .calendar-week__event-resize[data-v-7f22cf49] {
|
|
798
|
+
position: absolute;
|
|
799
|
+
width: 100%;
|
|
800
|
+
cursor: ns-resize;
|
|
801
|
+
height: 5px;
|
|
802
|
+
}
|
|
803
|
+
.calendar-week__event .calendar-week__event-resize-up[data-v-7f22cf49] {
|
|
804
|
+
top: 0;
|
|
805
|
+
}
|
|
806
|
+
.calendar-week__event .calendar-week__event-resize-down[data-v-7f22cf49] {
|
|
807
|
+
bottom: 0;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.calendar-week__day[data-v-12350119] {
|
|
811
|
+
position: relative;
|
|
812
|
+
width: 100%;
|
|
813
|
+
height: 100%;
|
|
814
|
+
display: flex;
|
|
815
|
+
flex-direction: column;
|
|
816
|
+
}
|
|
817
|
+
.calendar-week__day .calendar-week__day-interval[data-v-12350119] {
|
|
818
|
+
flex: 1;
|
|
819
|
+
font-size: var(--qalendar-font-xs);
|
|
820
|
+
color: var(--qalendar-gray);
|
|
821
|
+
padding: 2px;
|
|
822
|
+
}
|
|
823
|
+
.calendar-week__day .calendar-week__day-interval.has-border[data-v-12350119] {
|
|
824
|
+
border-bottom: var(--qalendar-border-dashed-gray-thin);
|
|
825
|
+
}
|
|
826
|
+
.calendar-week__day[data-v-12350119]:first-child {
|
|
827
|
+
border-left: 1px dashed rgb(224 224 224);
|
|
828
|
+
}
|
|
829
|
+
@media (prefers-color-scheme: dark) {
|
|
830
|
+
.calendar-week__day[data-v-12350119]:first-child {
|
|
831
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
.calendar-week__day[data-v-12350119]:not(:last-child) {
|
|
835
|
+
border-right: 1px dashed rgb(224 224 224);
|
|
836
|
+
}
|
|
837
|
+
@media (prefers-color-scheme: dark) {
|
|
838
|
+
.calendar-week__day[data-v-12350119]:not(:last-child) {
|
|
839
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.day-timeline[data-v-a4d8d28d] {
|
|
844
|
+
position: absolute;
|
|
845
|
+
top: 0;
|
|
846
|
+
left: 0;
|
|
847
|
+
width: calc(100% + 10px);
|
|
848
|
+
height: var(--73f3c772);
|
|
849
|
+
transform: translateX(-10px);
|
|
850
|
+
display: flex;
|
|
851
|
+
flex-flow: column;
|
|
852
|
+
justify-content: space-evenly;
|
|
853
|
+
}
|
|
854
|
+
.day-timeline__hour[data-v-a4d8d28d] {
|
|
855
|
+
padding-left: 4px;
|
|
856
|
+
display: flex;
|
|
857
|
+
flex-flow: column;
|
|
858
|
+
justify-content: flex-start;
|
|
859
|
+
height: 100%;
|
|
860
|
+
font-size: clamp(10px, 0.625rem, 14px);
|
|
861
|
+
color: var(--qalendar-gray-quite-dark);
|
|
862
|
+
}
|
|
863
|
+
.day-timeline__hour-text[data-v-a4d8d28d] {
|
|
864
|
+
line-height: 0;
|
|
865
|
+
transform: translate(-40px, 0);
|
|
866
|
+
}
|
|
867
|
+
.day-timeline__hour:first-child .day-timeline__hour-text[data-v-a4d8d28d] {
|
|
868
|
+
display: none;
|
|
869
|
+
}
|
|
870
|
+
.day-timeline__hour[data-v-a4d8d28d]:not(:last-child) {
|
|
871
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
872
|
+
}
|
|
873
|
+
@media (prefers-color-scheme: dark) {
|
|
874
|
+
.day-timeline__hour[data-v-a4d8d28d]:not(:last-child) {
|
|
875
|
+
border-color: var(--qalendar-dark-mode-line-color);
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.week-timeline__event[data-v-511747c2] {
|
|
880
|
+
position: relative;
|
|
881
|
+
--event-padding: 3px;
|
|
882
|
+
display: flex;
|
|
883
|
+
align-items: center;
|
|
884
|
+
height: 0.9rem;
|
|
885
|
+
width: calc(100% - var(--event-padding));
|
|
886
|
+
font-size: var(--qalendar-font-2xs);
|
|
887
|
+
border-radius: 4px;
|
|
888
|
+
padding: var(--event-padding);
|
|
889
|
+
margin-bottom: 0.25em;
|
|
890
|
+
text-align: left;
|
|
891
|
+
cursor: pointer;
|
|
892
|
+
user-select: none;
|
|
893
|
+
overflow: hidden;
|
|
894
|
+
}
|
|
895
|
+
.week-timeline__event[data-v-511747c2]:active {
|
|
896
|
+
cursor: not-allowed;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.week-timeline[data-v-0e7c9832] {
|
|
900
|
+
height: fit-content;
|
|
901
|
+
display: flex;
|
|
902
|
+
justify-content: space-evenly;
|
|
903
|
+
padding-bottom: var(--qalendar-spacing-half);
|
|
904
|
+
padding-left: var(--qalendar-week-padding-left);
|
|
905
|
+
border-bottom: var(--qalendar-border-gray-thin);
|
|
906
|
+
}
|
|
907
|
+
.mode-is-day .week-timeline[data-v-0e7c9832] {
|
|
908
|
+
width: 100%;
|
|
909
|
+
padding-left: 0;
|
|
910
|
+
}
|
|
911
|
+
.week-timeline__day[data-v-0e7c9832] {
|
|
912
|
+
width: 100%;
|
|
913
|
+
display: flex;
|
|
914
|
+
flex-flow: column;
|
|
915
|
+
align-items: center;
|
|
916
|
+
justify-content: flex-start;
|
|
917
|
+
}
|
|
918
|
+
.week-timeline__day-name[data-v-0e7c9832] {
|
|
919
|
+
font-size: var(--qalendar-font-3xs);
|
|
920
|
+
font-weight: 400;
|
|
921
|
+
margin-bottom: 4px;
|
|
922
|
+
color: var(--qalendar-gray-quite-dark);
|
|
923
|
+
}
|
|
924
|
+
.week-timeline__date[data-v-0e7c9832] {
|
|
925
|
+
font-size: 1.2rem;
|
|
926
|
+
margin-bottom: 4px;
|
|
927
|
+
height: 2rem;
|
|
928
|
+
width: 2rem;
|
|
929
|
+
border-radius: 50%;
|
|
930
|
+
display: flex;
|
|
931
|
+
align-items: center;
|
|
932
|
+
justify-content: center;
|
|
933
|
+
}
|
|
934
|
+
.is-today .week-timeline__date[data-v-0e7c9832] {
|
|
935
|
+
background-color: var(--qalendar-blue);
|
|
936
|
+
color: #fff;
|
|
937
|
+
}
|
|
938
|
+
.week-timeline__events[data-v-0e7c9832] {
|
|
939
|
+
width: 100%;
|
|
940
|
+
flex: 1;
|
|
941
|
+
border-right: 1px dashed rgb(224 224 224);
|
|
942
|
+
}
|
|
943
|
+
.week-timeline__day:first-child .week-timeline__events[data-v-0e7c9832] {
|
|
944
|
+
border-left: 1px dashed rgb(224 224 224);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.calendar-week__wrapper[data-v-21b8e443] {
|
|
948
|
+
position: relative;
|
|
949
|
+
padding-left: var(--qalendar-week-padding-left);
|
|
950
|
+
overflow-y: auto;
|
|
951
|
+
}
|
|
952
|
+
.calendar-week[data-v-21b8e443] {
|
|
953
|
+
position: relative;
|
|
954
|
+
width: 100%;
|
|
955
|
+
flex: 1 1 auto;
|
|
956
|
+
}
|
|
957
|
+
.calendar-week__events[data-v-21b8e443] {
|
|
958
|
+
display: flex;
|
|
959
|
+
width: 100%;
|
|
960
|
+
height: var(--6f3e0f98);
|
|
961
|
+
overflow: hidden;
|
|
962
|
+
}
|
|
963
|
+
.calendar-week .current-time-line[data-v-21b8e443] {
|
|
964
|
+
position: absolute;
|
|
965
|
+
left: 0;
|
|
966
|
+
width: 100%;
|
|
967
|
+
height: 2px;
|
|
968
|
+
z-index: 1;
|
|
969
|
+
background-color: red;
|
|
970
|
+
}
|
|
971
|
+
.calendar-week .current-time-line__circle[data-v-21b8e443] {
|
|
972
|
+
position: relative;
|
|
973
|
+
}
|
|
974
|
+
.calendar-week .current-time-line__circle[data-v-21b8e443]::before {
|
|
975
|
+
content: '';
|
|
976
|
+
position: absolute;
|
|
977
|
+
transform: translate(-45%, -45%);
|
|
978
|
+
width: 10px;
|
|
979
|
+
height: 10px;
|
|
980
|
+
border-radius: 50%;
|
|
981
|
+
background-color: red;
|
|
982
|
+
}
|
|
983
|
+
.calendar-week .custom-current-time[data-v-21b8e443] {
|
|
984
|
+
position: absolute;
|
|
985
|
+
left: 0;
|
|
986
|
+
width: 100%;
|
|
987
|
+
z-index: 1;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.calendar-root-wrapper {
|
|
991
|
+
width: 100%;
|
|
992
|
+
max-width: 100vw;
|
|
993
|
+
height: 100%;
|
|
994
|
+
display: flex;
|
|
995
|
+
}
|
|
996
|
+
.calendar-root-wrapper .calendar-root {
|
|
997
|
+
flex: 1;
|
|
998
|
+
border: var(--qalendar-border-gray-thin);
|
|
999
|
+
border-radius: var(--qalendar-border-radius);
|
|
1000
|
+
position: relative;
|
|
1001
|
+
width: 100%;
|
|
1002
|
+
margin: 0 auto;
|
|
1003
|
+
display: flex;
|
|
1004
|
+
flex-flow: column;
|
|
1005
|
+
}
|
|
1006
|
+
/*
|
|
1007
|
+
@media (prefers-color-scheme: dark) {
|
|
1008
|
+
.calendar-root-wrapper .calendar-root {
|
|
1009
|
+
background: #121212;
|
|
1010
|
+
color: #fff;
|
|
1011
|
+
border-color: transparent;
|
|
1012
|
+
}
|
|
1013
|
+
} */
|
|
1014
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader {
|
|
1015
|
+
position: absolute;
|
|
1016
|
+
top: 1px;
|
|
1017
|
+
left: 2px;
|
|
1018
|
+
width: calc(100% - 4px);
|
|
1019
|
+
height: 3px;
|
|
1020
|
+
background: rgba(241, 241, 241, 0.2);
|
|
1021
|
+
border-radius: 16px;
|
|
1022
|
+
overflow: hidden;
|
|
1023
|
+
}
|
|
1024
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader:before {
|
|
1025
|
+
content: '';
|
|
1026
|
+
height: 4px;
|
|
1027
|
+
width: calc(100% - 4px);
|
|
1028
|
+
position: absolute;
|
|
1029
|
+
top: 1px;
|
|
1030
|
+
left: 2px;
|
|
1031
|
+
background: rgb(38, 132, 255);
|
|
1032
|
+
background: linear-gradient(
|
|
1033
|
+
90deg,
|
|
1034
|
+
rgba(38, 132, 255, 1) 0%,
|
|
1035
|
+
rgba(38, 132, 255, 0.5088410364145659) 48%,
|
|
1036
|
+
rgba(38, 132, 255, 1) 100%
|
|
1037
|
+
);
|
|
1038
|
+
animation: load 1.8s infinite;
|
|
1039
|
+
border-radius: 16px;
|
|
1040
|
+
}
|
|
1041
|
+
@media (prefers-color-scheme: dark) {
|
|
1042
|
+
.calendar-root-wrapper .calendar-root .top-bar-loader:before {
|
|
1043
|
+
background: rgb(229, 224, 245);
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
@keyframes load {
|
|
1047
|
+
0% {
|
|
1048
|
+
width: 0;
|
|
1049
|
+
left: -100%;
|
|
1050
|
+
}
|
|
1051
|
+
50% {
|
|
1052
|
+
left: 0;
|
|
1053
|
+
width: 100%;
|
|
1054
|
+
}
|
|
1055
|
+
100% {
|
|
1056
|
+
width: 0;
|
|
1057
|
+
left: 100%;
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
.calendar-root-wrapper .calendar-root .loading-enter-active,
|
|
1061
|
+
.calendar-root-wrapper .calendar-root .loading-leave-active {
|
|
1062
|
+
transition: background 0.5s ease;
|
|
1063
|
+
}
|
|
1064
|
+
.calendar-root-wrapper .calendar-root .loading-leave-to,
|
|
1065
|
+
.calendar-root-wrapper .calendar-root .loading-enter-from {
|
|
1066
|
+
background-color: rgba(255, 255, 255, 0);
|
|
1067
|
+
}
|
|
1068
|
+
|
|
310
1069
|
.card_label {
|
|
311
1070
|
font-size: 1rem;
|
|
312
1071
|
position: relative;
|
|
@@ -473,22 +1232,22 @@ display: block;
|
|
|
473
1232
|
font-size: 0.95rem;
|
|
474
1233
|
}
|
|
475
1234
|
|
|
476
|
-
.table-list-wrap[data-v-
|
|
1235
|
+
.table-list-wrap[data-v-3668ec69] {
|
|
477
1236
|
min-height: 150px;
|
|
478
1237
|
}
|
|
479
|
-
.selected[data-v-
|
|
1238
|
+
.selected[data-v-3668ec69] {
|
|
480
1239
|
background: var(--bgl-primary-tint);
|
|
481
1240
|
}
|
|
482
|
-
tbody tr.selected[data-v-
|
|
1241
|
+
tbody tr.selected[data-v-3668ec69]:hover {
|
|
483
1242
|
background: var(--bgl-primary-light);
|
|
484
1243
|
}
|
|
485
|
-
.loading-table[data-v-
|
|
1244
|
+
.loading-table[data-v-3668ec69] {
|
|
486
1245
|
position: relative;
|
|
487
1246
|
}
|
|
488
|
-
.inset[data-v-
|
|
1247
|
+
.inset[data-v-3668ec69] {
|
|
489
1248
|
inset: 0;
|
|
490
1249
|
}
|
|
491
|
-
.loading-table-animation[data-v-
|
|
1250
|
+
.loading-table-animation[data-v-3668ec69] {
|
|
492
1251
|
--size: 60px;
|
|
493
1252
|
top: 30vh;
|
|
494
1253
|
inset-inline-start: calc(50% - var(--size));
|
|
@@ -496,9 +1255,9 @@ tbody tr.selected[data-v-a1cf8002]:hover {
|
|
|
496
1255
|
border-top: 4px solid var(--bgl-primary);
|
|
497
1256
|
width: var(--size);
|
|
498
1257
|
height: var(--size);
|
|
499
|
-
animation: loading-table-
|
|
1258
|
+
animation: loading-table-3668ec69 1s linear infinite;
|
|
500
1259
|
}
|
|
501
|
-
@keyframes loading-table-
|
|
1260
|
+
@keyframes loading-table-3668ec69 {
|
|
502
1261
|
0% {
|
|
503
1262
|
transform: translate(-50%, -50%) rotate(0deg);
|
|
504
1263
|
}
|
|
@@ -506,51 +1265,55 @@ tbody tr.selected[data-v-a1cf8002]:hover {
|
|
|
506
1265
|
transform: translate(-50%, -50%) rotate(360deg);
|
|
507
1266
|
}
|
|
508
1267
|
}
|
|
509
|
-
.list-arrows[data-v-
|
|
1268
|
+
.list-arrows[data-v-3668ec69] {
|
|
510
1269
|
opacity: 0;
|
|
511
1270
|
}
|
|
512
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
1271
|
+
.list-arrows .bgl_icon-font[data-v-3668ec69] {
|
|
513
1272
|
transition: all ease-in-out 0.2s;
|
|
514
1273
|
}
|
|
515
|
-
.list-arrows.sorted[data-v-
|
|
1274
|
+
.list-arrows.sorted[data-v-3668ec69] {
|
|
516
1275
|
opacity: 1;
|
|
517
1276
|
}
|
|
518
|
-
.col img[data-v-
|
|
1277
|
+
.col img[data-v-3668ec69] {
|
|
519
1278
|
height: 35px;
|
|
520
1279
|
margin-top: -14px;
|
|
521
1280
|
margin-bottom: -14px;
|
|
522
1281
|
border-radius: 5px;
|
|
1282
|
+
object-fit: cover;
|
|
1283
|
+
}
|
|
1284
|
+
.col[data-v-3668ec69]:has(img) {
|
|
1285
|
+
padding-inline-end: 0.5rem;
|
|
523
1286
|
}
|
|
524
|
-
.list-arrows.sorted .desc[data-v-
|
|
1287
|
+
.list-arrows.sorted .desc[data-v-3668ec69] {
|
|
525
1288
|
transform: rotate(180deg);
|
|
526
1289
|
display: inline-block;
|
|
527
1290
|
}
|
|
528
|
-
table[data-v-
|
|
1291
|
+
table[data-v-3668ec69] {
|
|
529
1292
|
border-spacing: 0 15px;
|
|
530
1293
|
border-collapse: collapse;
|
|
531
1294
|
width: 100%;
|
|
532
1295
|
}
|
|
533
|
-
th[data-v-
|
|
1296
|
+
th[data-v-3668ec69] {
|
|
534
1297
|
font-size: 0.8rem;
|
|
535
1298
|
color: var(--bgl-black-tint);
|
|
536
1299
|
position: sticky;
|
|
537
1300
|
top: 0;
|
|
538
1301
|
z-index: 2;
|
|
539
1302
|
background: var(--bgl-box-bg);
|
|
540
|
-
height: var(--
|
|
1303
|
+
height: var(--3ee4947a);
|
|
541
1304
|
vertical-align: bottom;
|
|
542
1305
|
font-weight: 400;
|
|
543
1306
|
text-align: start;
|
|
544
1307
|
}
|
|
545
|
-
.embedded-field[data-v-
|
|
1308
|
+
.embedded-field[data-v-3668ec69] {
|
|
546
1309
|
margin-bottom: -0.2rem;
|
|
547
1310
|
margin-top: -0.2rem;
|
|
548
1311
|
}
|
|
549
|
-
.row[data-v-
|
|
1312
|
+
.row[data-v-3668ec69] {
|
|
550
1313
|
border-bottom: 1px solid var(--border-color);
|
|
551
1314
|
cursor: pointer;
|
|
552
1315
|
}
|
|
553
|
-
.row.first-row[data-v-
|
|
1316
|
+
.row.first-row[data-v-3668ec69] {
|
|
554
1317
|
font-size: 0.8rem;
|
|
555
1318
|
color: var(--bgl-black-tint);
|
|
556
1319
|
position: sticky;
|
|
@@ -559,7 +1322,7 @@ th[data-v-a1cf8002] {
|
|
|
559
1322
|
background: var(--bgl-box-bg);
|
|
560
1323
|
vertical-align: bottom;
|
|
561
1324
|
}
|
|
562
|
-
.row.first-row[data-v-
|
|
1325
|
+
.row.first-row[data-v-3668ec69]::after {
|
|
563
1326
|
content: '';
|
|
564
1327
|
border-bottom: 1px solid var(--border-color);
|
|
565
1328
|
position: absolute;
|
|
@@ -567,11 +1330,11 @@ th[data-v-a1cf8002] {
|
|
|
567
1330
|
right: 0;
|
|
568
1331
|
bottom: -1px;
|
|
569
1332
|
}
|
|
570
|
-
.first-row .col[data-v-
|
|
1333
|
+
.first-row .col[data-v-3668ec69] {
|
|
571
1334
|
cursor: pointer;
|
|
572
1335
|
background: var(--bgl-box-bg);
|
|
573
1336
|
}
|
|
574
|
-
.col[data-v-
|
|
1337
|
+
.col[data-v-3668ec69] {
|
|
575
1338
|
white-space: nowrap;
|
|
576
1339
|
padding: 0.75rem 1rem;
|
|
577
1340
|
transition: var(--bgl-transition);
|
|
@@ -581,19 +1344,19 @@ th[data-v-a1cf8002] {
|
|
|
581
1344
|
overflow: hidden;
|
|
582
1345
|
max-width: 30vw;
|
|
583
1346
|
}
|
|
584
|
-
.col[data-v-
|
|
1347
|
+
.col[data-v-3668ec69]:has(.bagel-input) {
|
|
585
1348
|
padding: 0rem 0.25rem;
|
|
586
1349
|
}
|
|
587
|
-
.col > div[data-v-
|
|
1350
|
+
.col > div[data-v-3668ec69] {
|
|
588
1351
|
display: flex;
|
|
589
1352
|
gap: 0.5rem;
|
|
590
1353
|
}
|
|
591
|
-
.max-col-width[data-v-
|
|
1354
|
+
.max-col-width[data-v-3668ec69] {
|
|
592
1355
|
max-width: 30vw;
|
|
593
1356
|
overflow: hidden;
|
|
594
1357
|
text-overflow: ellipsis;
|
|
595
1358
|
}
|
|
596
|
-
.col.check .bgl_icon-font[data-v-
|
|
1359
|
+
.col.check .bgl_icon-font[data-v-3668ec69] {
|
|
597
1360
|
border-radius: 100%;
|
|
598
1361
|
background: var(--bgl-blue-20);
|
|
599
1362
|
color: var(--bgl-primary);
|
|
@@ -604,35 +1367,35 @@ th[data-v-a1cf8002] {
|
|
|
604
1367
|
justify-content: center;
|
|
605
1368
|
margin-top: -2px;
|
|
606
1369
|
}
|
|
607
|
-
.rows[data-v-
|
|
1370
|
+
.rows[data-v-3668ec69] {
|
|
608
1371
|
font-size: 0.88em;
|
|
609
1372
|
}
|
|
610
|
-
.table-list[data-v-
|
|
1373
|
+
.table-list[data-v-3668ec69] {
|
|
611
1374
|
height: 100%;
|
|
612
1375
|
position: relative;
|
|
613
1376
|
padding-left: 0 !important;
|
|
614
1377
|
padding-right: 0 !important;
|
|
615
1378
|
overflow: auto;
|
|
616
1379
|
}
|
|
617
|
-
.BagelTable .table-list[data-v-
|
|
1380
|
+
.BagelTable .table-list[data-v-3668ec69] {
|
|
618
1381
|
overflow: unset;
|
|
619
1382
|
}
|
|
620
|
-
.row-item[data-v-
|
|
621
|
-
height: var(--
|
|
1383
|
+
.row-item[data-v-3668ec69] {
|
|
1384
|
+
height: var(--3ee4947a);
|
|
622
1385
|
transition: all 200ms ease;
|
|
623
1386
|
}
|
|
624
|
-
.row-item[data-v-
|
|
1387
|
+
.row-item[data-v-3668ec69]:hover {
|
|
625
1388
|
background: var(--bgl-gray-light);
|
|
626
1389
|
}
|
|
627
|
-
.row-item input[type='checkbox'][data-v-
|
|
1390
|
+
.row-item input[type='checkbox'][data-v-3668ec69] {
|
|
628
1391
|
margin-top: 0.45rem !important;
|
|
629
1392
|
accent-color: var(--bgl-accent-color);
|
|
630
1393
|
}
|
|
631
|
-
.infinite-wrapper[data-v-
|
|
1394
|
+
.infinite-wrapper[data-v-3668ec69] {
|
|
632
1395
|
overflow-y: auto;
|
|
633
1396
|
width: 100%;
|
|
634
1397
|
}
|
|
635
|
-
input[type='checkbox'][data-v-
|
|
1398
|
+
input[type='checkbox'][data-v-3668ec69] {
|
|
636
1399
|
margin-top: 0.3rem !important;
|
|
637
1400
|
accent-color: var(--bgl-accent-color);
|
|
638
1401
|
transform: scale(1.2);
|
|
@@ -644,7 +1407,7 @@ input[type='checkbox'][data-v-a1cf8002] {
|
|
|
644
1407
|
height: 0.85rem;
|
|
645
1408
|
width: 0.85rem;
|
|
646
1409
|
}
|
|
647
|
-
input[type='checkbox'][data-v-
|
|
1410
|
+
input[type='checkbox'][data-v-3668ec69]::before {
|
|
648
1411
|
content: '';
|
|
649
1412
|
height: 0.85rem;
|
|
650
1413
|
width: 0.85rem;
|
|
@@ -657,18 +1420,18 @@ input[type='checkbox'][data-v-a1cf8002]::before {
|
|
|
657
1420
|
transform: scale(1);
|
|
658
1421
|
position: absolute;
|
|
659
1422
|
}
|
|
660
|
-
input[type='checkbox'][data-v-
|
|
1423
|
+
input[type='checkbox'][data-v-3668ec69]:hover::before {
|
|
661
1424
|
opacity: 0.2;
|
|
662
1425
|
transform: scale(2);
|
|
663
1426
|
}
|
|
664
|
-
[lang='he'] [dir='ltr'][data-v-
|
|
1427
|
+
[lang='he'] [dir='ltr'][data-v-3668ec69] {
|
|
665
1428
|
text-align: right;
|
|
666
1429
|
}
|
|
667
|
-
th input[type='checkbox'][data-v-
|
|
1430
|
+
th input[type='checkbox'][data-v-3668ec69] {
|
|
668
1431
|
transform: translateY(0.2rem) scale(1.2);
|
|
669
1432
|
accent-color: var(--bgl-accent-color);
|
|
670
1433
|
}
|
|
671
|
-
th[data-v-
|
|
1434
|
+
th[data-v-3668ec69]::after {
|
|
672
1435
|
content: '';
|
|
673
1436
|
border-bottom: 1px solid var(--border-color);
|
|
674
1437
|
position: absolute;
|
|
@@ -676,24 +1439,24 @@ th[data-v-a1cf8002]::after {
|
|
|
676
1439
|
right: 0;
|
|
677
1440
|
bottom: -1px;
|
|
678
1441
|
}
|
|
679
|
-
tr[data-v-
|
|
1442
|
+
tr[data-v-3668ec69] {
|
|
680
1443
|
border-bottom: 1px solid var(--border-color);
|
|
681
1444
|
cursor: pointer;
|
|
682
1445
|
align-items: center;
|
|
683
1446
|
}
|
|
684
|
-
td[data-v-
|
|
685
|
-
th[data-v-
|
|
1447
|
+
td[data-v-3668ec69],
|
|
1448
|
+
th[data-v-3668ec69] {
|
|
686
1449
|
white-space: nowrap;
|
|
687
1450
|
padding: 0.75rem 0.65rem;
|
|
688
1451
|
transition: var(--bgl-transition);
|
|
689
1452
|
line-height: 1;
|
|
690
1453
|
}
|
|
691
|
-
tbody tr[data-v-
|
|
1454
|
+
tbody tr[data-v-3668ec69] {
|
|
692
1455
|
font-size: 0.88em;
|
|
693
|
-
height: var(--
|
|
1456
|
+
height: var(--3ee4947a);
|
|
694
1457
|
transition: all 200ms ease;
|
|
695
1458
|
}
|
|
696
|
-
tbody tr[data-v-
|
|
1459
|
+
tbody tr[data-v-3668ec69]:hover {
|
|
697
1460
|
background: var(--bgl-gray-light);
|
|
698
1461
|
}
|
|
699
1462
|
|
|
@@ -865,67 +1628,70 @@ pre code.hljs{
|
|
|
865
1628
|
direction: ltr;
|
|
866
1629
|
}
|
|
867
1630
|
|
|
868
|
-
.calendar-container[data-v-
|
|
1631
|
+
.calendar-container[data-v-ca905332] {
|
|
869
1632
|
max-width: 90vw;
|
|
870
1633
|
}
|
|
871
|
-
.calendar-section[data-v-
|
|
1634
|
+
.calendar-section[data-v-ca905332] {
|
|
872
1635
|
min-width: 280px;
|
|
873
1636
|
}
|
|
874
|
-
.calendar-grid[data-v-
|
|
1637
|
+
.calendar-grid[data-v-ca905332] {
|
|
875
1638
|
grid-template-columns: repeat(7, 1fr);
|
|
876
1639
|
}
|
|
877
|
-
.month-grid[data-v-
|
|
1640
|
+
.month-grid[data-v-ca905332] {
|
|
878
1641
|
grid-template-columns: repeat(3, 1fr);
|
|
879
1642
|
grid-template-rows: repeat(4, 1fr);
|
|
880
1643
|
}
|
|
881
|
-
.year-grid[data-v-
|
|
1644
|
+
.year-grid[data-v-ca905332] {
|
|
882
1645
|
grid-template-columns: repeat(3, 1fr);
|
|
883
1646
|
grid-template-rows: repeat(7, 1fr);
|
|
884
1647
|
}
|
|
885
|
-
.month-item[data-v-
|
|
886
|
-
.year-item[data-v-
|
|
1648
|
+
.month-item[data-v-ca905332],
|
|
1649
|
+
.year-item[data-v-ca905332] {
|
|
887
1650
|
background: none;
|
|
888
1651
|
color: var(--bgl-text-color);
|
|
889
1652
|
}
|
|
890
|
-
.month-item[data-v-
|
|
891
|
-
.year-item[data-v-
|
|
1653
|
+
.month-item[data-v-ca905332]:hover:not(.disabled),
|
|
1654
|
+
.year-item[data-v-ca905332]:hover:not(.disabled) {
|
|
892
1655
|
background: var(--bgl-box-bg);
|
|
893
|
-
filter:var(--bgl-hover-filter);
|
|
1656
|
+
filter: var(--bgl-hover-filter);
|
|
894
1657
|
}
|
|
895
|
-
.month-item[data-v-
|
|
896
|
-
.year-item[data-v-
|
|
1658
|
+
.month-item[data-v-ca905332]:active:not(.disabled),
|
|
1659
|
+
.year-item[data-v-ca905332]:active:not(.disabled) {
|
|
897
1660
|
background: var(--bgl-box-bg);
|
|
898
|
-
filter:var(--bgl-active-filter);
|
|
1661
|
+
filter: var(--bgl-active-filter);
|
|
899
1662
|
}
|
|
900
|
-
.month-item.selected[data-v-
|
|
901
|
-
.year-item.selected[data-v-
|
|
1663
|
+
.month-item.selected[data-v-ca905332],
|
|
1664
|
+
.year-item.selected[data-v-ca905332] {
|
|
902
1665
|
background-color: var(--bgl-primary);
|
|
903
1666
|
color: white;
|
|
904
1667
|
}
|
|
905
|
-
.month-item.disabled[data-v-
|
|
906
|
-
.year-item.disabled[data-v-
|
|
1668
|
+
.month-item.disabled[data-v-ca905332],
|
|
1669
|
+
.year-item.disabled[data-v-ca905332] {
|
|
907
1670
|
opacity: 0.6;
|
|
908
1671
|
filter: grayscale(0.3);
|
|
909
1672
|
}
|
|
910
|
-
.day[data-v-
|
|
1673
|
+
.day[data-v-ca905332] {
|
|
911
1674
|
border: none;
|
|
912
1675
|
background: none;
|
|
913
1676
|
color: var(--bgl-text-color);
|
|
914
1677
|
}
|
|
915
|
-
.day[data-v-
|
|
1678
|
+
.day[data-v-ca905332]:hover:not(.disabled) {
|
|
916
1679
|
background-color: var(--input-bg);
|
|
917
1680
|
}
|
|
918
|
-
.day.selected[data-v-
|
|
1681
|
+
.day.selected[data-v-ca905332] {
|
|
919
1682
|
background-color: var(--bgl-primary);
|
|
920
1683
|
color: var(--bgl-white);
|
|
921
1684
|
}
|
|
922
|
-
.day.today[data-v-
|
|
1685
|
+
.day.today[data-v-ca905332]:not(.selected) {
|
|
923
1686
|
border: 1px solid var(--bgl-primary);
|
|
924
1687
|
}
|
|
925
|
-
.day.disabled[data-v-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
1688
|
+
.day.disabled[data-v-ca905332] {
|
|
1689
|
+
opacity: 0.6;
|
|
1690
|
+
filter: grayscale(0.3);
|
|
1691
|
+
cursor: not-allowed;
|
|
1692
|
+
}
|
|
1693
|
+
.day.not-in-month[data-v-ca905332] {
|
|
1694
|
+
opacity: 0.4;
|
|
929
1695
|
}
|
|
930
1696
|
|
|
931
1697
|
.datetime-wrap {
|
|
@@ -1241,14 +2007,14 @@ pre code.hljs{
|
|
|
1241
2007
|
direction: ltr;
|
|
1242
2008
|
}
|
|
1243
2009
|
|
|
1244
|
-
.txtInputIconStart .iconStart[data-v-
|
|
2010
|
+
.txtInputIconStart .iconStart[data-v-ce1f6e76] {
|
|
1245
2011
|
color: var(--input-color);
|
|
1246
2012
|
position: absolute;
|
|
1247
2013
|
inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
|
|
1248
2014
|
margin-top: calc(var(--input-height) / 2 );
|
|
1249
2015
|
line-height: 0;
|
|
1250
2016
|
}
|
|
1251
|
-
.textInputSpinnerWrap .spinner[data-v-
|
|
2017
|
+
.textInputSpinnerWrap .spinner[data-v-ce1f6e76] {
|
|
1252
2018
|
color: var(--input-color);
|
|
1253
2019
|
position: absolute;
|
|
1254
2020
|
inset-inline-end: 0;
|
|
@@ -1258,18 +2024,18 @@ pre code.hljs{
|
|
|
1258
2024
|
flex-direction: column;
|
|
1259
2025
|
gap: 0;
|
|
1260
2026
|
}
|
|
1261
|
-
.top-bgl-ctrl-num-btn[data-v-
|
|
2027
|
+
.top-bgl-ctrl-num-btn[data-v-ce1f6e76]{
|
|
1262
2028
|
margin-top: calc(var(--input-height) / 10) !important;
|
|
1263
2029
|
}
|
|
1264
|
-
.bgl-ctrl-num-btn[data-v-
|
|
2030
|
+
.bgl-ctrl-num-btn[data-v-ce1f6e76]{
|
|
1265
2031
|
height: calc(var(--input-height) / 2.5) !important;
|
|
1266
2032
|
isolation: isolate;
|
|
1267
2033
|
}
|
|
1268
|
-
.bgl-big-ctrl-num-btn[data-v-
|
|
2034
|
+
.bgl-big-ctrl-num-btn[data-v-ce1f6e76]{
|
|
1269
2035
|
width: 100% !important;
|
|
1270
2036
|
isolation: isolate;
|
|
1271
2037
|
}
|
|
1272
|
-
.bgl-number-input[data-v-
|
|
2038
|
+
.bgl-number-input[data-v-ce1f6e76]{
|
|
1273
2039
|
padding-inline-end: 1.75rem !important;
|
|
1274
2040
|
}
|
|
1275
2041
|
|