@trackunit/css-tailwind 1.3.171 → 1.3.173
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/package.json +5 -5
- package/tailwind-base.generated.css +111 -217
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/css-tailwind",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.173",
|
|
4
4
|
"main": "./index.cjs.js",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"tailwindcss": "3.4.3",
|
|
12
|
-
"@trackunit/css-component-tokens": "1.3.
|
|
13
|
-
"@trackunit/css-tailwind-custom-properties-plugin": "1.3.
|
|
14
|
-
"@trackunit/ui-design-tokens": "1.3.
|
|
15
|
-
"@trackunit/css-core": "1.3.
|
|
12
|
+
"@trackunit/css-component-tokens": "1.3.166",
|
|
13
|
+
"@trackunit/css-tailwind-custom-properties-plugin": "1.3.166",
|
|
14
|
+
"@trackunit/ui-design-tokens": "1.3.164",
|
|
15
|
+
"@trackunit/css-core": "1.3.166",
|
|
16
16
|
"@tailwindcss/typography": "^0.5.10"
|
|
17
17
|
},
|
|
18
18
|
"type": "commonjs",
|
|
@@ -448,257 +448,151 @@
|
|
|
448
448
|
}
|
|
449
449
|
}
|
|
450
450
|
|
|
451
|
-
/* libs/css/core/src/lib/
|
|
452
|
-
.
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
--rdp-day_button-border-radius: 100%;
|
|
458
|
-
--rdp-day_button-border: 2px solid transparent;
|
|
459
|
-
--rdp-day_button-height: 42px;
|
|
460
|
-
--rdp-day_button-width: 42px;
|
|
461
|
-
--rdp-selected-border: 2px solid var(--rdp-accent-color);
|
|
462
|
-
--rdp-disabled-opacity: 0.5;
|
|
463
|
-
--rdp-outside-opacity: 0.75;
|
|
464
|
-
--rdp-today-color: var(--rdp-accent-color);
|
|
465
|
-
--rdp-dropdown-gap: 0.5rem;
|
|
466
|
-
--rdp-months-gap: 2rem;
|
|
467
|
-
--rdp-nav_button-disabled-opacity: 0.5;
|
|
468
|
-
--rdp-nav_button-height: 2.25rem;
|
|
469
|
-
--rdp-nav_button-width: 2.25rem;
|
|
470
|
-
--rdp-nav-height: 2.75rem;
|
|
471
|
-
--rdp-range_middle-background-color: var(--rdp-accent-background-color);
|
|
472
|
-
--rdp-range_middle-color: inherit;
|
|
473
|
-
--rdp-range_start-color: white;
|
|
474
|
-
--rdp-range_start-background: linear-gradient(
|
|
475
|
-
var(--rdp-gradient-direction),
|
|
476
|
-
transparent 50%,
|
|
477
|
-
var(--rdp-range_middle-background-color) 50%
|
|
478
|
-
);
|
|
479
|
-
--rdp-range_start-date-background-color: var(--rdp-accent-color);
|
|
480
|
-
--rdp-range_end-background: linear-gradient(
|
|
481
|
-
var(--rdp-gradient-direction),
|
|
482
|
-
var(--rdp-range_middle-background-color) 50%,
|
|
483
|
-
transparent 50%
|
|
484
|
-
);
|
|
485
|
-
--rdp-range_end-color: white;
|
|
486
|
-
--rdp-range_end-date-background-color: var(--rdp-accent-color);
|
|
487
|
-
--rdp-week_number-border-radius: 100%;
|
|
488
|
-
--rdp-week_number-border: 2px solid transparent;
|
|
489
|
-
--rdp-week_number-height: var(--rdp-day-height);
|
|
490
|
-
--rdp-week_number-opacity: 0.75;
|
|
491
|
-
--rdp-week_number-width: var(--rdp-day-width);
|
|
492
|
-
--rdp-weeknumber-text-align: center;
|
|
493
|
-
--rdp-weekday-opacity: 0.75;
|
|
494
|
-
--rdp-weekday-padding: 0.5rem 0rem;
|
|
495
|
-
--rdp-weekday-text-align: center;
|
|
496
|
-
--rdp-gradient-direction: 90deg;
|
|
497
|
-
}
|
|
498
|
-
.rdp-root[dir="rtl"] {
|
|
499
|
-
--rdp-gradient-direction: -90deg;
|
|
500
|
-
}
|
|
501
|
-
.rdp-root[data-broadcast-calendar="true"] {
|
|
502
|
-
--rdp-outside-opacity: unset;
|
|
503
|
-
}
|
|
504
|
-
.rdp-root {
|
|
505
|
-
position: relative;
|
|
506
|
-
box-sizing: border-box;
|
|
451
|
+
/* libs/css/core/src/lib/react-calendar.css */
|
|
452
|
+
.react-calendar {
|
|
453
|
+
width: 350px;
|
|
454
|
+
max-width: 100%;
|
|
455
|
+
background: white;
|
|
456
|
+
line-height: 1.125em;
|
|
507
457
|
}
|
|
508
|
-
.
|
|
509
|
-
|
|
510
|
-
}
|
|
511
|
-
.rdp-day {
|
|
512
|
-
width: var(--rdp-day-width);
|
|
513
|
-
height: var(--rdp-day-height);
|
|
514
|
-
text-align: center;
|
|
458
|
+
.react-calendar--doubleView {
|
|
459
|
+
width: 700px;
|
|
515
460
|
}
|
|
516
|
-
.
|
|
517
|
-
background: none;
|
|
518
|
-
padding: 0;
|
|
519
|
-
margin: 0;
|
|
520
|
-
cursor: pointer;
|
|
521
|
-
font: inherit;
|
|
522
|
-
color: inherit;
|
|
523
|
-
justify-content: center;
|
|
524
|
-
align-items: center;
|
|
461
|
+
.react-calendar--doubleView .react-calendar__viewContainer {
|
|
525
462
|
display: flex;
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
463
|
+
margin: -0.5em;
|
|
464
|
+
}
|
|
465
|
+
.react-calendar--doubleView .react-calendar__viewContainer > * {
|
|
466
|
+
width: 50%;
|
|
467
|
+
margin: 0.5em;
|
|
468
|
+
}
|
|
469
|
+
.react-calendar,
|
|
470
|
+
.react-calendar *,
|
|
471
|
+
.react-calendar *:before,
|
|
472
|
+
.react-calendar *:after {
|
|
473
|
+
-moz-box-sizing: border-box;
|
|
474
|
+
-webkit-box-sizing: border-box;
|
|
475
|
+
box-sizing: border-box;
|
|
533
476
|
}
|
|
534
|
-
.
|
|
535
|
-
|
|
536
|
-
position: relative;
|
|
537
|
-
display: inline-flex;
|
|
538
|
-
align-items: center;
|
|
539
|
-
white-space: nowrap;
|
|
477
|
+
.react-calendar button {
|
|
478
|
+
margin: 0;
|
|
540
479
|
border: 0;
|
|
480
|
+
outline: none;
|
|
541
481
|
}
|
|
542
|
-
.
|
|
543
|
-
outline: 5px auto Highlight;
|
|
544
|
-
outline: 5px auto -webkit-focus-ring-color;
|
|
545
|
-
}
|
|
546
|
-
.rdp-button_next,
|
|
547
|
-
.rdp-button_previous {
|
|
548
|
-
border: none;
|
|
549
|
-
background: none;
|
|
550
|
-
padding: 0;
|
|
551
|
-
margin: 0;
|
|
482
|
+
.react-calendar button:enabled:hover {
|
|
552
483
|
cursor: pointer;
|
|
553
|
-
font: inherit;
|
|
554
|
-
color: inherit;
|
|
555
|
-
-moz-appearance: none;
|
|
556
|
-
-webkit-appearance: none;
|
|
557
|
-
display: inline-flex;
|
|
558
|
-
align-items: center;
|
|
559
|
-
justify-content: center;
|
|
560
|
-
position: relative;
|
|
561
|
-
appearance: none;
|
|
562
|
-
width: var(--rdp-nav_button-width);
|
|
563
|
-
height: var(--rdp-nav_button-height);
|
|
564
484
|
}
|
|
565
|
-
.
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
}
|
|
570
|
-
.rdp-chevron {
|
|
571
|
-
display: inline-block;
|
|
572
|
-
fill: var(--rdp-accent-color);
|
|
573
|
-
}
|
|
574
|
-
.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
|
|
575
|
-
transform: rotate(180deg);
|
|
576
|
-
}
|
|
577
|
-
.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
|
|
578
|
-
transform: rotate(180deg);
|
|
579
|
-
transform-origin: 50%;
|
|
580
|
-
}
|
|
581
|
-
.rdp-dropdowns {
|
|
582
|
-
position: relative;
|
|
583
|
-
display: inline-flex;
|
|
584
|
-
align-items: center;
|
|
585
|
-
gap: var(--rdp-dropdown-gap);
|
|
485
|
+
.react-calendar__navigation {
|
|
486
|
+
display: flex;
|
|
487
|
+
height: 44px;
|
|
488
|
+
margin-bottom: 1em;
|
|
586
489
|
}
|
|
587
|
-
.
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
appearance: none;
|
|
591
|
-
position: absolute;
|
|
592
|
-
inset-block-start: 0;
|
|
593
|
-
inset-block-end: 0;
|
|
594
|
-
inset-inline-start: 0;
|
|
595
|
-
width: 100%;
|
|
596
|
-
margin: 0;
|
|
597
|
-
padding: 0;
|
|
598
|
-
cursor: inherit;
|
|
599
|
-
border: none;
|
|
600
|
-
line-height: inherit;
|
|
490
|
+
.react-calendar__navigation button {
|
|
491
|
+
min-width: 44px;
|
|
492
|
+
background: none;
|
|
601
493
|
}
|
|
602
|
-
.
|
|
603
|
-
|
|
604
|
-
display: inline-flex;
|
|
605
|
-
align-items: center;
|
|
494
|
+
.react-calendar__navigation button:disabled {
|
|
495
|
+
background-color: #f0f0f0;
|
|
606
496
|
}
|
|
607
|
-
.
|
|
608
|
-
|
|
497
|
+
.react-calendar__navigation button:enabled:hover,
|
|
498
|
+
.react-calendar__navigation button:enabled:focus {
|
|
499
|
+
background-color: #e6e6e6;
|
|
609
500
|
}
|
|
610
|
-
.
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
501
|
+
.react-calendar__month-view__weekdays {
|
|
502
|
+
text-align: center;
|
|
503
|
+
font: inherit;
|
|
504
|
+
font-size: 0.75em;
|
|
505
|
+
color: #94a3b8;
|
|
614
506
|
font-weight: bold;
|
|
615
|
-
font-size: large;
|
|
616
507
|
}
|
|
617
|
-
.
|
|
618
|
-
|
|
619
|
-
display: flex;
|
|
620
|
-
flex-wrap: wrap;
|
|
621
|
-
gap: var(--rdp-months-gap);
|
|
622
|
-
max-width: fit-content;
|
|
508
|
+
.react-calendar__viewContainer abbr:where([title]) {
|
|
509
|
+
text-decoration: none !important;
|
|
623
510
|
}
|
|
624
|
-
.
|
|
625
|
-
|
|
511
|
+
.react-calendar__month-view__weekdays__weekday {
|
|
512
|
+
padding: 0.5em;
|
|
626
513
|
}
|
|
627
|
-
.
|
|
628
|
-
position: absolute;
|
|
629
|
-
inset-block-start: 0;
|
|
630
|
-
inset-inline-end: 0;
|
|
514
|
+
.react-calendar__month-view__weekNumbers .react-calendar__tile {
|
|
631
515
|
display: flex;
|
|
632
516
|
align-items: center;
|
|
633
|
-
|
|
517
|
+
justify-content: center;
|
|
518
|
+
font: inherit;
|
|
519
|
+
font-size: 0.75em;
|
|
520
|
+
font-weight: 600;
|
|
634
521
|
}
|
|
635
|
-
.
|
|
636
|
-
|
|
637
|
-
padding: var(--rdp-weekday-padding);
|
|
638
|
-
font-weight: 500;
|
|
639
|
-
font-size: smaller;
|
|
640
|
-
text-align: var(--rdp-weekday-text-align);
|
|
641
|
-
text-transform: var(--rdp-weekday-text-transform);
|
|
522
|
+
.react-calendar__month-view__days {
|
|
523
|
+
row-gap: 8px;
|
|
642
524
|
}
|
|
643
|
-
.
|
|
644
|
-
opacity: var(--rdp-week_number-opacity);
|
|
645
|
-
font-weight: 400;
|
|
646
|
-
font-size: small;
|
|
647
|
-
height: var(--rdp-week_number-height);
|
|
648
|
-
width: var(--rdp-week_number-width);
|
|
649
|
-
border: var(--rdp-week_number-border);
|
|
650
|
-
border-radius: var(--rdp-week_number-border-radius);
|
|
651
|
-
text-align: var(--rdp-weeknumber-text-align);
|
|
525
|
+
.react-calendar__month-view__days__day--weekend {
|
|
652
526
|
}
|
|
653
|
-
.
|
|
654
|
-
|
|
527
|
+
.react-calendar__month-view__days__day--neighboringMonth,
|
|
528
|
+
.react-calendar__decade-view__years__year--neighboringDecade,
|
|
529
|
+
.react-calendar__century-view__decades__decade--neighboringCentury {
|
|
530
|
+
color: #757575;
|
|
655
531
|
}
|
|
656
|
-
.
|
|
657
|
-
|
|
658
|
-
|
|
532
|
+
.react-calendar__year-view .react-calendar__tile,
|
|
533
|
+
.react-calendar__decade-view .react-calendar__tile,
|
|
534
|
+
.react-calendar__century-view .react-calendar__tile {
|
|
535
|
+
padding: 2em 0.5em;
|
|
536
|
+
}
|
|
537
|
+
.react-calendar__tile {
|
|
538
|
+
max-width: 100%;
|
|
539
|
+
padding: 10px 6.6667px;
|
|
540
|
+
background: none;
|
|
541
|
+
text-align: center;
|
|
542
|
+
font: inherit;
|
|
543
|
+
font-size: 0.833em;
|
|
659
544
|
}
|
|
660
|
-
.
|
|
661
|
-
|
|
545
|
+
.react-calendar__tile:disabled {
|
|
546
|
+
background-color: #f0f0f0;
|
|
547
|
+
color: #ababab;
|
|
662
548
|
}
|
|
663
|
-
.
|
|
664
|
-
|
|
549
|
+
.react-calendar__month-view__days__day--neighboringMonth:disabled,
|
|
550
|
+
.react-calendar__decade-view__years__year--neighboringDecade:disabled,
|
|
551
|
+
.react-calendar__century-view__decades__decade--neighboringCentury:disabled {
|
|
552
|
+
color: #cdcdcd;
|
|
665
553
|
}
|
|
666
|
-
.
|
|
667
|
-
|
|
554
|
+
.react-calendar__tile:enabled:hover,
|
|
555
|
+
.react-calendar__tile:enabled:focus {
|
|
556
|
+
background-color: #e6e6e6;
|
|
668
557
|
}
|
|
669
|
-
.
|
|
670
|
-
|
|
671
|
-
color: var(--rdp-range_start-color);
|
|
558
|
+
.react-calendar__tile--now:not(.react-calendar__tile--active) {
|
|
559
|
+
color: #2563eb;
|
|
672
560
|
}
|
|
673
|
-
.
|
|
674
|
-
|
|
561
|
+
.react-calendar__tile--now:enabled:hover,
|
|
562
|
+
.react-calendar__tile--now:enabled:focus {
|
|
563
|
+
background: #1d50bc;
|
|
675
564
|
}
|
|
676
|
-
.
|
|
677
|
-
background
|
|
678
|
-
color: var(--rdp-range_start-color);
|
|
565
|
+
.react-calendar__tile--hasActive {
|
|
566
|
+
background: #76baff;
|
|
679
567
|
}
|
|
680
|
-
.
|
|
681
|
-
|
|
568
|
+
.react-calendar__tile--hasActive:enabled:hover,
|
|
569
|
+
.react-calendar__tile--hasActive:enabled:focus {
|
|
570
|
+
background: #a9d4ff;
|
|
682
571
|
}
|
|
683
|
-
.
|
|
684
|
-
|
|
685
|
-
border: unset;
|
|
686
|
-
border-radius: unset;
|
|
687
|
-
color: var(--rdp-range_middle-color);
|
|
572
|
+
.react-calendar__tile--active {
|
|
573
|
+
background: #eff6ff;
|
|
688
574
|
}
|
|
689
|
-
.
|
|
690
|
-
|
|
691
|
-
color: var(--rdp-range_end-color);
|
|
575
|
+
.react-calendar__tile:not(.react-calendar__tile--active):enabled:hover {
|
|
576
|
+
border-radius: 8px 8px 8px 8px;
|
|
692
577
|
}
|
|
693
|
-
.
|
|
694
|
-
|
|
695
|
-
background
|
|
578
|
+
.react-calendar__tile--active:enabled:hover,
|
|
579
|
+
.react-calendar__tile--active:enabled:focus {
|
|
580
|
+
background: #eff6ff;
|
|
581
|
+
border-radius: none !important;
|
|
696
582
|
}
|
|
697
|
-
.
|
|
698
|
-
background:
|
|
583
|
+
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
584
|
+
background-color: #eff6ff;
|
|
585
|
+
border-radius: none !important;
|
|
699
586
|
}
|
|
700
|
-
.
|
|
701
|
-
|
|
587
|
+
.react-calendar__tile--rangeStart {
|
|
588
|
+
background: #006edc !important;
|
|
589
|
+
border-radius: 8px 8px 8px 8px;
|
|
590
|
+
color: white;
|
|
591
|
+
}
|
|
592
|
+
.react-calendar__tile--rangeEnd {
|
|
593
|
+
background: #006edc !important;
|
|
594
|
+
border-radius: 8px 8px 8px 8px;
|
|
595
|
+
color: white;
|
|
702
596
|
}
|
|
703
597
|
|
|
704
598
|
/* libs/css/core/src/lib/fonts.css */
|