@adaptabletools/adaptable-react-aggrid 10.0.4-canary.3 → 10.0.4-canary.4
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/base.css +169 -48
- package/index.css +191 -55
- package/package.json +2 -2
package/base.css
CHANGED
|
@@ -372,22 +372,30 @@
|
|
|
372
372
|
--rdp-background-color-dark: #180270;
|
|
373
373
|
/* Outline border for focused elements */
|
|
374
374
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
375
|
+
/* Outline border for focused and selected elements */
|
|
376
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
375
377
|
}
|
|
376
378
|
.rdp {
|
|
377
|
-
display: inline-block;
|
|
378
|
-
font-size: 1rem;
|
|
379
379
|
margin: 1em;
|
|
380
380
|
}
|
|
381
381
|
/* Hide elements for devices that are not screen readers */
|
|
382
382
|
.rdp-vhidden {
|
|
383
|
-
|
|
384
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
385
|
-
height: 1px;
|
|
386
|
-
overflow: hidden;
|
|
383
|
+
box-sizing: border-box;
|
|
387
384
|
padding: 0;
|
|
388
|
-
|
|
385
|
+
margin: 0;
|
|
386
|
+
background: transparent;
|
|
387
|
+
border: 0;
|
|
388
|
+
-moz-appearance: none;
|
|
389
|
+
-webkit-appearance: none;
|
|
390
|
+
appearance: none;
|
|
391
|
+
position: absolute !important;
|
|
389
392
|
top: 0;
|
|
390
|
-
width: 1px;
|
|
393
|
+
width: 1px !important;
|
|
394
|
+
height: 1px !important;
|
|
395
|
+
padding: 0 !important;
|
|
396
|
+
overflow: hidden !important;
|
|
397
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
398
|
+
border: 0 !important
|
|
391
399
|
}
|
|
392
400
|
/* Buttons */
|
|
393
401
|
.rdp-button_reset {
|
|
@@ -477,13 +485,13 @@
|
|
|
477
485
|
.rdp-nav {
|
|
478
486
|
white-space: nowrap;
|
|
479
487
|
}
|
|
480
|
-
.rdp-multiple_months .rdp-
|
|
488
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
481
489
|
position: absolute;
|
|
482
490
|
top: 50%;
|
|
483
491
|
left: 0;
|
|
484
492
|
transform: translateY(-50%);
|
|
485
493
|
}
|
|
486
|
-
.rdp-multiple_months .rdp-
|
|
494
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
487
495
|
position: absolute;
|
|
488
496
|
top: 50%;
|
|
489
497
|
right: 0;
|
|
@@ -529,8 +537,8 @@
|
|
|
529
537
|
opacity: unset;
|
|
530
538
|
color: unset;
|
|
531
539
|
}
|
|
532
|
-
.rdp-dropdown:focus:not([disabled])
|
|
533
|
-
.rdp-dropdown:active:not([disabled])
|
|
540
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
541
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
534
542
|
border: var(--rdp-outline);
|
|
535
543
|
border-radius: 6px;
|
|
536
544
|
background-color: var(--rdp-background-color);
|
|
@@ -595,26 +603,78 @@
|
|
|
595
603
|
color: white;
|
|
596
604
|
background-color: var(--rdp-accent-color);
|
|
597
605
|
}
|
|
598
|
-
.rdp-
|
|
606
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
607
|
+
border: var(--rdp-outline-selected);
|
|
608
|
+
}
|
|
609
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
599
610
|
border-top-right-radius: 0;
|
|
600
611
|
border-bottom-right-radius: 0;
|
|
601
612
|
}
|
|
602
|
-
.rdp-day_range_end {
|
|
613
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
614
|
+
border-top-left-radius: 0;
|
|
615
|
+
border-bottom-left-radius: 0;
|
|
616
|
+
}
|
|
617
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
603
618
|
border-top-left-radius: 0;
|
|
604
619
|
border-bottom-left-radius: 0;
|
|
605
620
|
}
|
|
621
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
622
|
+
border-top-right-radius: 0;
|
|
623
|
+
border-bottom-right-radius: 0;
|
|
624
|
+
}
|
|
606
625
|
.rdp-day_range_end.rdp-day_range_start {
|
|
607
626
|
border-radius: 100%;
|
|
608
627
|
}
|
|
609
628
|
.rdp-day_range_middle {
|
|
610
629
|
border-radius: 0;
|
|
611
630
|
}
|
|
631
|
+
:root {
|
|
632
|
+
--toastify-color-light: #fff;
|
|
633
|
+
--toastify-color-dark: #121212;
|
|
634
|
+
--toastify-color-info: #3498db;
|
|
635
|
+
--toastify-color-success: #07bc0c;
|
|
636
|
+
--toastify-color-warning: #f1c40f;
|
|
637
|
+
--toastify-color-error: #e74c3c;
|
|
638
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
639
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
640
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
641
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
642
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
643
|
+
--toastify-toast-width: 320px;
|
|
644
|
+
--toastify-toast-background: #fff;
|
|
645
|
+
--toastify-toast-min-height: 64px;
|
|
646
|
+
--toastify-toast-max-height: 800px;
|
|
647
|
+
--toastify-font-family: sans-serif;
|
|
648
|
+
--toastify-z-index: 9999;
|
|
649
|
+
--toastify-text-color-light: #757575;
|
|
650
|
+
--toastify-text-color-dark: #fff;
|
|
651
|
+
--toastify-text-color-info: #fff;
|
|
652
|
+
--toastify-text-color-success: #fff;
|
|
653
|
+
--toastify-text-color-warning: #fff;
|
|
654
|
+
--toastify-text-color-error: #fff;
|
|
655
|
+
--toastify-spinner-color: #616161;
|
|
656
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
657
|
+
--toastify-color-progress-light: linear-gradient(
|
|
658
|
+
to right,
|
|
659
|
+
#4cd964,
|
|
660
|
+
#5ac8fa,
|
|
661
|
+
#007aff,
|
|
662
|
+
#34aadc,
|
|
663
|
+
#5856d6,
|
|
664
|
+
#ff2d55
|
|
665
|
+
);
|
|
666
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
667
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
668
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
669
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
670
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
671
|
+
}
|
|
612
672
|
.Toastify__toast-container {
|
|
613
|
-
z-index:
|
|
614
|
-
-webkit-transform: translate3d(0, 0,
|
|
673
|
+
z-index: var(--toastify-z-index);
|
|
674
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
615
675
|
position: fixed;
|
|
616
676
|
padding: 4px;
|
|
617
|
-
width:
|
|
677
|
+
width: var(--toastify-toast-width);
|
|
618
678
|
box-sizing: border-box;
|
|
619
679
|
color: #fff;
|
|
620
680
|
}
|
|
@@ -666,7 +726,7 @@
|
|
|
666
726
|
}
|
|
667
727
|
.Toastify__toast {
|
|
668
728
|
position: relative;
|
|
669
|
-
min-height:
|
|
729
|
+
min-height: var(--toastify-toast-min-height);
|
|
670
730
|
box-sizing: border-box;
|
|
671
731
|
margin-bottom: 1rem;
|
|
672
732
|
padding: 8px;
|
|
@@ -676,51 +736,101 @@
|
|
|
676
736
|
display: flex;
|
|
677
737
|
-ms-flex-pack: justify;
|
|
678
738
|
justify-content: space-between;
|
|
679
|
-
max-height:
|
|
739
|
+
max-height: var(--toastify-toast-max-height);
|
|
680
740
|
overflow: hidden;
|
|
681
|
-
font-family:
|
|
741
|
+
font-family: var(--toastify-font-family);
|
|
682
742
|
cursor: pointer;
|
|
683
743
|
direction: ltr;
|
|
684
744
|
}
|
|
685
745
|
.Toastify__toast--rtl {
|
|
686
746
|
direction: rtl;
|
|
687
747
|
}
|
|
688
|
-
.Toastify__toast--dark {
|
|
689
|
-
background: #121212;
|
|
690
|
-
color: #fff;
|
|
691
|
-
}
|
|
692
|
-
.Toastify__toast--default {
|
|
693
|
-
background: #fff;
|
|
694
|
-
color: #aaa;
|
|
695
|
-
}
|
|
696
|
-
.Toastify__toast--info {
|
|
697
|
-
background: #3498db;
|
|
698
|
-
}
|
|
699
|
-
.Toastify__toast--success {
|
|
700
|
-
background: #07bc0c;
|
|
701
|
-
}
|
|
702
|
-
.Toastify__toast--warning {
|
|
703
|
-
background: #f1c40f;
|
|
704
|
-
}
|
|
705
|
-
.Toastify__toast--error {
|
|
706
|
-
background: #e74c3c;
|
|
707
|
-
}
|
|
708
748
|
.Toastify__toast-body {
|
|
709
749
|
margin: auto 0;
|
|
710
750
|
-ms-flex: 1 1 auto;
|
|
711
751
|
flex: 1 1 auto;
|
|
712
752
|
padding: 6px;
|
|
753
|
+
display: -ms-flexbox;
|
|
754
|
+
display: flex;
|
|
755
|
+
-ms-flex-align: center;
|
|
756
|
+
align-items: center;
|
|
757
|
+
}
|
|
758
|
+
.Toastify__toast-body > div:last-child {
|
|
759
|
+
-ms-flex: 1;
|
|
760
|
+
flex: 1;
|
|
761
|
+
}
|
|
762
|
+
.Toastify__toast-icon {
|
|
763
|
+
-webkit-margin-end: 10px;
|
|
764
|
+
margin-inline-end: 10px;
|
|
765
|
+
width: 20px;
|
|
766
|
+
-ms-flex-negative: 0;
|
|
767
|
+
flex-shrink: 0;
|
|
768
|
+
display: -ms-flexbox;
|
|
769
|
+
display: flex;
|
|
713
770
|
}
|
|
714
771
|
.Toastify--animate {
|
|
715
772
|
animation-fill-mode: both;
|
|
716
773
|
animation-duration: 0.7s;
|
|
717
774
|
}
|
|
775
|
+
.Toastify--animate-icon {
|
|
776
|
+
animation-fill-mode: both;
|
|
777
|
+
animation-duration: 0.3s;
|
|
778
|
+
}
|
|
718
779
|
@media only screen and (max-width : 480px) {
|
|
719
780
|
.Toastify__toast {
|
|
720
781
|
margin-bottom: 0;
|
|
721
782
|
border-radius: 0;
|
|
722
783
|
}
|
|
723
784
|
}
|
|
785
|
+
.Toastify__toast-theme--dark {
|
|
786
|
+
background: var(--toastify-color-dark);
|
|
787
|
+
color: var(--toastify-text-color-dark);
|
|
788
|
+
}
|
|
789
|
+
.Toastify__toast-theme--light {
|
|
790
|
+
background: var(--toastify-color-light);
|
|
791
|
+
color: var(--toastify-text-color-light);
|
|
792
|
+
}
|
|
793
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
794
|
+
background: var(--toastify-color-light);
|
|
795
|
+
color: var(--toastify-text-color-light);
|
|
796
|
+
}
|
|
797
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
798
|
+
color: var(--toastify-text-color-info);
|
|
799
|
+
background: var(--toastify-color-info);
|
|
800
|
+
}
|
|
801
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
802
|
+
color: var(--toastify-text-color-success);
|
|
803
|
+
background: var(--toastify-color-success);
|
|
804
|
+
}
|
|
805
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
806
|
+
color: var(--toastify-text-color-warning);
|
|
807
|
+
background: var(--toastify-color-warning);
|
|
808
|
+
}
|
|
809
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
810
|
+
color: var(--toastify-text-color-error);
|
|
811
|
+
background: var(--toastify-color-error);
|
|
812
|
+
}
|
|
813
|
+
.Toastify__progress-bar-theme--light {
|
|
814
|
+
background: var(--toastify-color-progress-light);
|
|
815
|
+
}
|
|
816
|
+
.Toastify__progress-bar-theme--dark {
|
|
817
|
+
background: var(--toastify-color-progress-dark);
|
|
818
|
+
}
|
|
819
|
+
.Toastify__progress-bar--info {
|
|
820
|
+
background: var(--toastify-color-progress-info);
|
|
821
|
+
}
|
|
822
|
+
.Toastify__progress-bar--success {
|
|
823
|
+
background: var(--toastify-color-progress-success);
|
|
824
|
+
}
|
|
825
|
+
.Toastify__progress-bar--warning {
|
|
826
|
+
background: var(--toastify-color-progress-warning);
|
|
827
|
+
}
|
|
828
|
+
.Toastify__progress-bar--error {
|
|
829
|
+
background: var(--toastify-color-progress-error);
|
|
830
|
+
}
|
|
831
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
832
|
+
background: var(--toastify-color-transparent);
|
|
833
|
+
}
|
|
724
834
|
.Toastify__close-button {
|
|
725
835
|
color: #fff;
|
|
726
836
|
background: transparent;
|
|
@@ -733,7 +843,7 @@
|
|
|
733
843
|
-ms-flex-item-align: start;
|
|
734
844
|
align-self: flex-start;
|
|
735
845
|
}
|
|
736
|
-
.Toastify__close-button--
|
|
846
|
+
.Toastify__close-button--light {
|
|
737
847
|
color: #000;
|
|
738
848
|
opacity: 0.3;
|
|
739
849
|
}
|
|
@@ -759,9 +869,8 @@
|
|
|
759
869
|
left: 0;
|
|
760
870
|
width: 100%;
|
|
761
871
|
height: 5px;
|
|
762
|
-
z-index:
|
|
872
|
+
z-index: var(--toastify-z-index);
|
|
763
873
|
opacity: 0.7;
|
|
764
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
765
874
|
transform-origin: left;
|
|
766
875
|
}
|
|
767
876
|
.Toastify__progress-bar--animated {
|
|
@@ -775,11 +884,15 @@
|
|
|
775
884
|
left: initial;
|
|
776
885
|
transform-origin: right;
|
|
777
886
|
}
|
|
778
|
-
.
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
887
|
+
.Toastify__spinner {
|
|
888
|
+
width: 20px;
|
|
889
|
+
height: 20px;
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
border: 2px solid;
|
|
892
|
+
border-radius: 100%;
|
|
893
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
894
|
+
border-right-color: var(--toastify-spinner-color);
|
|
895
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
783
896
|
}
|
|
784
897
|
@keyframes Toastify__bounceInRight {
|
|
785
898
|
from, 60%, 75%, 90%, to {
|
|
@@ -1102,6 +1215,14 @@
|
|
|
1102
1215
|
.Toastify__slide-exit--bottom-center {
|
|
1103
1216
|
animation-name: Toastify__slideOutDown;
|
|
1104
1217
|
}
|
|
1218
|
+
@keyframes Toastify__spin {
|
|
1219
|
+
from {
|
|
1220
|
+
transform: rotate(0deg);
|
|
1221
|
+
}
|
|
1222
|
+
to {
|
|
1223
|
+
transform: rotate(360deg);
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1105
1226
|
:root {
|
|
1106
1227
|
--ab-space-0: 0px;
|
|
1107
1228
|
--ab-space-1: 4px;
|
package/index.css
CHANGED
|
@@ -801,25 +801,33 @@ template {
|
|
|
801
801
|
--rdp-background-color-dark: #180270;
|
|
802
802
|
/* Outline border for focused elements */
|
|
803
803
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
804
|
+
/* Outline border for focused and selected elements */
|
|
805
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
804
806
|
}
|
|
805
807
|
|
|
806
808
|
.rdp {
|
|
807
|
-
display: inline-block;
|
|
808
|
-
font-size: 1rem;
|
|
809
809
|
margin: 1em;
|
|
810
810
|
}
|
|
811
811
|
|
|
812
812
|
/* Hide elements for devices that are not screen readers */
|
|
813
813
|
|
|
814
814
|
.rdp-vhidden {
|
|
815
|
-
|
|
816
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
817
|
-
height: 1px;
|
|
818
|
-
overflow: hidden;
|
|
815
|
+
box-sizing: border-box;
|
|
819
816
|
padding: 0;
|
|
820
|
-
|
|
817
|
+
margin: 0;
|
|
818
|
+
background: transparent;
|
|
819
|
+
border: 0;
|
|
820
|
+
-moz-appearance: none;
|
|
821
|
+
-webkit-appearance: none;
|
|
822
|
+
appearance: none;
|
|
823
|
+
position: absolute !important;
|
|
821
824
|
top: 0;
|
|
822
|
-
width: 1px;
|
|
825
|
+
width: 1px !important;
|
|
826
|
+
height: 1px !important;
|
|
827
|
+
padding: 0 !important;
|
|
828
|
+
overflow: hidden !important;
|
|
829
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
830
|
+
border: 0 !important
|
|
823
831
|
}
|
|
824
832
|
|
|
825
833
|
/* Buttons */
|
|
@@ -928,14 +936,14 @@ template {
|
|
|
928
936
|
white-space: nowrap;
|
|
929
937
|
}
|
|
930
938
|
|
|
931
|
-
.rdp-multiple_months .rdp-
|
|
939
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
932
940
|
position: absolute;
|
|
933
941
|
top: 50%;
|
|
934
942
|
left: 0;
|
|
935
943
|
transform: translateY(-50%);
|
|
936
944
|
}
|
|
937
945
|
|
|
938
|
-
.rdp-multiple_months .rdp-
|
|
946
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
939
947
|
position: absolute;
|
|
940
948
|
top: 50%;
|
|
941
949
|
right: 0;
|
|
@@ -989,8 +997,8 @@ template {
|
|
|
989
997
|
color: unset;
|
|
990
998
|
}
|
|
991
999
|
|
|
992
|
-
.rdp-dropdown:focus:not([disabled])
|
|
993
|
-
.rdp-dropdown:active:not([disabled])
|
|
1000
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
1001
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
994
1002
|
border: var(--rdp-outline);
|
|
995
1003
|
border-radius: 6px;
|
|
996
1004
|
background-color: var(--rdp-background-color);
|
|
@@ -1067,16 +1075,30 @@ template {
|
|
|
1067
1075
|
background-color: var(--rdp-accent-color);
|
|
1068
1076
|
}
|
|
1069
1077
|
|
|
1070
|
-
.rdp-
|
|
1078
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
1079
|
+
border: var(--rdp-outline-selected);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1071
1083
|
border-top-right-radius: 0;
|
|
1072
1084
|
border-bottom-right-radius: 0;
|
|
1073
1085
|
}
|
|
1074
1086
|
|
|
1075
|
-
.rdp-day_range_end {
|
|
1087
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1088
|
+
border-top-left-radius: 0;
|
|
1089
|
+
border-bottom-left-radius: 0;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1076
1093
|
border-top-left-radius: 0;
|
|
1077
1094
|
border-bottom-left-radius: 0;
|
|
1078
1095
|
}
|
|
1079
1096
|
|
|
1097
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1098
|
+
border-top-right-radius: 0;
|
|
1099
|
+
border-bottom-right-radius: 0;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1080
1102
|
.rdp-day_range_end.rdp-day_range_start {
|
|
1081
1103
|
border-radius: 100%;
|
|
1082
1104
|
}
|
|
@@ -1085,12 +1107,54 @@ template {
|
|
|
1085
1107
|
border-radius: 0;
|
|
1086
1108
|
}
|
|
1087
1109
|
|
|
1110
|
+
:root {
|
|
1111
|
+
--toastify-color-light: #fff;
|
|
1112
|
+
--toastify-color-dark: #121212;
|
|
1113
|
+
--toastify-color-info: #3498db;
|
|
1114
|
+
--toastify-color-success: #07bc0c;
|
|
1115
|
+
--toastify-color-warning: #f1c40f;
|
|
1116
|
+
--toastify-color-error: #e74c3c;
|
|
1117
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
1118
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
1119
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
1120
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
1121
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
1122
|
+
--toastify-toast-width: 320px;
|
|
1123
|
+
--toastify-toast-background: #fff;
|
|
1124
|
+
--toastify-toast-min-height: 64px;
|
|
1125
|
+
--toastify-toast-max-height: 800px;
|
|
1126
|
+
--toastify-font-family: sans-serif;
|
|
1127
|
+
--toastify-z-index: 9999;
|
|
1128
|
+
--toastify-text-color-light: #757575;
|
|
1129
|
+
--toastify-text-color-dark: #fff;
|
|
1130
|
+
--toastify-text-color-info: #fff;
|
|
1131
|
+
--toastify-text-color-success: #fff;
|
|
1132
|
+
--toastify-text-color-warning: #fff;
|
|
1133
|
+
--toastify-text-color-error: #fff;
|
|
1134
|
+
--toastify-spinner-color: #616161;
|
|
1135
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
1136
|
+
--toastify-color-progress-light: linear-gradient(
|
|
1137
|
+
to right,
|
|
1138
|
+
#4cd964,
|
|
1139
|
+
#5ac8fa,
|
|
1140
|
+
#007aff,
|
|
1141
|
+
#34aadc,
|
|
1142
|
+
#5856d6,
|
|
1143
|
+
#ff2d55
|
|
1144
|
+
);
|
|
1145
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
1146
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
1147
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
1148
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
1149
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1088
1152
|
.Toastify__toast-container {
|
|
1089
|
-
z-index:
|
|
1090
|
-
-webkit-transform: translate3d(0, 0,
|
|
1153
|
+
z-index: var(--toastify-z-index);
|
|
1154
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
1091
1155
|
position: fixed;
|
|
1092
1156
|
padding: 4px;
|
|
1093
|
-
width:
|
|
1157
|
+
width: var(--toastify-toast-width);
|
|
1094
1158
|
box-sizing: border-box;
|
|
1095
1159
|
color: #fff;
|
|
1096
1160
|
}
|
|
@@ -1150,7 +1214,7 @@ template {
|
|
|
1150
1214
|
|
|
1151
1215
|
.Toastify__toast {
|
|
1152
1216
|
position: relative;
|
|
1153
|
-
min-height:
|
|
1217
|
+
min-height: var(--toastify-toast-min-height);
|
|
1154
1218
|
box-sizing: border-box;
|
|
1155
1219
|
margin-bottom: 1rem;
|
|
1156
1220
|
padding: 8px;
|
|
@@ -1160,9 +1224,9 @@ template {
|
|
|
1160
1224
|
display: flex;
|
|
1161
1225
|
-ms-flex-pack: justify;
|
|
1162
1226
|
justify-content: space-between;
|
|
1163
|
-
max-height:
|
|
1227
|
+
max-height: var(--toastify-toast-max-height);
|
|
1164
1228
|
overflow: hidden;
|
|
1165
|
-
font-family:
|
|
1229
|
+
font-family: var(--toastify-font-family);
|
|
1166
1230
|
cursor: pointer;
|
|
1167
1231
|
direction: ltr;
|
|
1168
1232
|
}
|
|
@@ -1171,37 +1235,30 @@ template {
|
|
|
1171
1235
|
direction: rtl;
|
|
1172
1236
|
}
|
|
1173
1237
|
|
|
1174
|
-
.Toastify__toast--dark {
|
|
1175
|
-
background: #121212;
|
|
1176
|
-
color: #fff;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.Toastify__toast--default {
|
|
1180
|
-
background: #fff;
|
|
1181
|
-
color: #aaa;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.Toastify__toast--info {
|
|
1185
|
-
background: #3498db;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.Toastify__toast--success {
|
|
1189
|
-
background: #07bc0c;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.Toastify__toast--warning {
|
|
1193
|
-
background: #f1c40f;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.Toastify__toast--error {
|
|
1197
|
-
background: #e74c3c;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
1238
|
.Toastify__toast-body {
|
|
1201
1239
|
margin: auto 0;
|
|
1202
1240
|
-ms-flex: 1 1 auto;
|
|
1203
1241
|
flex: 1 1 auto;
|
|
1204
1242
|
padding: 6px;
|
|
1243
|
+
display: -ms-flexbox;
|
|
1244
|
+
display: flex;
|
|
1245
|
+
-ms-flex-align: center;
|
|
1246
|
+
align-items: center;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.Toastify__toast-body > div:last-child {
|
|
1250
|
+
-ms-flex: 1;
|
|
1251
|
+
flex: 1;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.Toastify__toast-icon {
|
|
1255
|
+
-webkit-margin-end: 10px;
|
|
1256
|
+
margin-inline-end: 10px;
|
|
1257
|
+
width: 20px;
|
|
1258
|
+
-ms-flex-negative: 0;
|
|
1259
|
+
flex-shrink: 0;
|
|
1260
|
+
display: -ms-flexbox;
|
|
1261
|
+
display: flex;
|
|
1205
1262
|
}
|
|
1206
1263
|
|
|
1207
1264
|
.Toastify--animate {
|
|
@@ -1209,6 +1266,11 @@ template {
|
|
|
1209
1266
|
animation-duration: 0.7s;
|
|
1210
1267
|
}
|
|
1211
1268
|
|
|
1269
|
+
.Toastify--animate-icon {
|
|
1270
|
+
animation-fill-mode: both;
|
|
1271
|
+
animation-duration: 0.3s;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1212
1274
|
@media only screen and (max-width : 480px) {
|
|
1213
1275
|
.Toastify__toast {
|
|
1214
1276
|
margin-bottom: 0;
|
|
@@ -1216,6 +1278,69 @@ template {
|
|
|
1216
1278
|
}
|
|
1217
1279
|
}
|
|
1218
1280
|
|
|
1281
|
+
.Toastify__toast-theme--dark {
|
|
1282
|
+
background: var(--toastify-color-dark);
|
|
1283
|
+
color: var(--toastify-text-color-dark);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.Toastify__toast-theme--light {
|
|
1287
|
+
background: var(--toastify-color-light);
|
|
1288
|
+
color: var(--toastify-text-color-light);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
1292
|
+
background: var(--toastify-color-light);
|
|
1293
|
+
color: var(--toastify-text-color-light);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
1297
|
+
color: var(--toastify-text-color-info);
|
|
1298
|
+
background: var(--toastify-color-info);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
1302
|
+
color: var(--toastify-text-color-success);
|
|
1303
|
+
background: var(--toastify-color-success);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
1307
|
+
color: var(--toastify-text-color-warning);
|
|
1308
|
+
background: var(--toastify-color-warning);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
1312
|
+
color: var(--toastify-text-color-error);
|
|
1313
|
+
background: var(--toastify-color-error);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.Toastify__progress-bar-theme--light {
|
|
1317
|
+
background: var(--toastify-color-progress-light);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.Toastify__progress-bar-theme--dark {
|
|
1321
|
+
background: var(--toastify-color-progress-dark);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.Toastify__progress-bar--info {
|
|
1325
|
+
background: var(--toastify-color-progress-info);
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.Toastify__progress-bar--success {
|
|
1329
|
+
background: var(--toastify-color-progress-success);
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.Toastify__progress-bar--warning {
|
|
1333
|
+
background: var(--toastify-color-progress-warning);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.Toastify__progress-bar--error {
|
|
1337
|
+
background: var(--toastify-color-progress-error);
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
1341
|
+
background: var(--toastify-color-transparent);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1219
1344
|
.Toastify__close-button {
|
|
1220
1345
|
color: #fff;
|
|
1221
1346
|
background: transparent;
|
|
@@ -1229,7 +1354,7 @@ template {
|
|
|
1229
1354
|
align-self: flex-start;
|
|
1230
1355
|
}
|
|
1231
1356
|
|
|
1232
|
-
.Toastify__close-button--
|
|
1357
|
+
.Toastify__close-button--light {
|
|
1233
1358
|
color: #000;
|
|
1234
1359
|
opacity: 0.3;
|
|
1235
1360
|
}
|
|
@@ -1259,9 +1384,8 @@ template {
|
|
|
1259
1384
|
left: 0;
|
|
1260
1385
|
width: 100%;
|
|
1261
1386
|
height: 5px;
|
|
1262
|
-
z-index:
|
|
1387
|
+
z-index: var(--toastify-z-index);
|
|
1263
1388
|
opacity: 0.7;
|
|
1264
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
1265
1389
|
transform-origin: left;
|
|
1266
1390
|
}
|
|
1267
1391
|
|
|
@@ -1279,12 +1403,15 @@ template {
|
|
|
1279
1403
|
transform-origin: right;
|
|
1280
1404
|
}
|
|
1281
1405
|
|
|
1282
|
-
.
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1406
|
+
.Toastify__spinner {
|
|
1407
|
+
width: 20px;
|
|
1408
|
+
height: 20px;
|
|
1409
|
+
box-sizing: border-box;
|
|
1410
|
+
border: 2px solid;
|
|
1411
|
+
border-radius: 100%;
|
|
1412
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
1413
|
+
border-right-color: var(--toastify-spinner-color);
|
|
1414
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
1288
1415
|
}
|
|
1289
1416
|
|
|
1290
1417
|
@keyframes Toastify__bounceInRight {
|
|
@@ -1648,6 +1775,15 @@ template {
|
|
|
1648
1775
|
animation-name: Toastify__slideOutDown;
|
|
1649
1776
|
}
|
|
1650
1777
|
|
|
1778
|
+
@keyframes Toastify__spin {
|
|
1779
|
+
from {
|
|
1780
|
+
transform: rotate(0deg);
|
|
1781
|
+
}
|
|
1782
|
+
to {
|
|
1783
|
+
transform: rotate(360deg);
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1651
1787
|
:root {
|
|
1652
1788
|
--ab-space-0: 0px;
|
|
1653
1789
|
--ab-space-1: 4px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid",
|
|
3
|
-
"version": "10.0.4-canary.
|
|
3
|
+
"version": "10.0.4-canary.4",
|
|
4
4
|
"description": "React version of the powerful data-agnostic HTML5 datagrid add-on that sits on top of the agGrid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@adaptabletools/adaptable": "10.0.4-canary.
|
|
23
|
+
"@adaptabletools/adaptable": "10.0.4-canary.4"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@ag-grid-community/all-modules": ">=26.0.0",
|