@overmap-ai/blocks 1.0.19-master.0 → 1.0.20-table-row-disabled-prop.0
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/Table/typings.d.ts +2 -0
- package/dist/blocks.js +50 -42
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +50 -42
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +34 -29
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -539,134 +539,139 @@
|
|
|
539
539
|
|
|
540
540
|
._checkboxHidden_pb9za_51 {
|
|
541
541
|
visibility: hidden;
|
|
542
|
-
}.
|
|
542
|
+
}._disabled_n3la2_1 {
|
|
543
|
+
color: var(--gray-a10);
|
|
544
|
+
cursor: default !important;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
._outerTableContainer_n3la2_6 {
|
|
543
548
|
padding: 30px;
|
|
544
549
|
border: 1px solid var(--gray-a4);
|
|
545
550
|
border-radius: 0.5rem;
|
|
546
551
|
box-shadow: var(--shadow-4);
|
|
547
552
|
}
|
|
548
553
|
@media only screen and (max-width: 600px) {
|
|
549
|
-
.
|
|
554
|
+
._outerTableContainer_n3la2_6 {
|
|
550
555
|
padding: 10px;
|
|
551
556
|
}
|
|
552
557
|
}
|
|
553
558
|
|
|
554
|
-
.
|
|
559
|
+
._headerContainer_n3la2_18 {
|
|
555
560
|
padding-bottom: 1rem;
|
|
556
561
|
}
|
|
557
562
|
|
|
558
|
-
.
|
|
563
|
+
._tableTopContainer_n3la2_22 {
|
|
559
564
|
padding: 10px 0;
|
|
560
565
|
}
|
|
561
566
|
|
|
562
|
-
.
|
|
567
|
+
._tableContainer_n3la2_26 {
|
|
563
568
|
flex: 1;
|
|
564
569
|
overflow-y: auto;
|
|
565
570
|
}
|
|
566
571
|
|
|
567
|
-
.
|
|
572
|
+
._searchContainer_n3la2_31 {
|
|
568
573
|
display: block;
|
|
569
574
|
width: 250px;
|
|
570
575
|
}
|
|
571
576
|
@media only screen and (max-width: 600px) {
|
|
572
|
-
.
|
|
577
|
+
._searchContainer_n3la2_31 {
|
|
573
578
|
width: auto;
|
|
574
579
|
}
|
|
575
580
|
}
|
|
576
581
|
|
|
577
|
-
.
|
|
582
|
+
._columnFilterSelect_n3la2_41 {
|
|
578
583
|
display: block;
|
|
579
584
|
box-shadow: none;
|
|
580
585
|
}
|
|
581
|
-
.
|
|
586
|
+
._columnFilterSelect_n3la2_41 svg {
|
|
582
587
|
display: none;
|
|
583
588
|
}
|
|
584
|
-
.
|
|
589
|
+
._columnFilterSelect_n3la2_41:hover {
|
|
585
590
|
background-color: rgba(0, 0, 0, 0.01);
|
|
586
591
|
cursor: pointer;
|
|
587
592
|
}
|
|
588
593
|
|
|
589
|
-
.
|
|
594
|
+
._table_n3la2_22 {
|
|
590
595
|
border: 1px solid var(--gray-a4);
|
|
591
596
|
border-radius: 3px !important;
|
|
592
597
|
background-color: inherit;
|
|
593
598
|
}
|
|
594
599
|
|
|
595
|
-
.
|
|
600
|
+
._tableHeaderCell_n3la2_59 {
|
|
596
601
|
background-color: var(--color-background) !important;
|
|
597
602
|
padding: 10px !important;
|
|
598
603
|
border-bottom: 1px solid var(--gray-4);
|
|
599
604
|
max-height: 110px;
|
|
600
605
|
}
|
|
601
|
-
.
|
|
606
|
+
._tableHeaderCell_n3la2_59 svg {
|
|
602
607
|
visibility: hidden;
|
|
603
608
|
}
|
|
604
609
|
@media only screen and (max-width: 600px) {
|
|
605
|
-
.
|
|
610
|
+
._tableHeaderCell_n3la2_59 div[title] > div:first-child {
|
|
606
611
|
overflow: visible;
|
|
607
612
|
white-space: normal;
|
|
608
613
|
}
|
|
609
614
|
}
|
|
610
615
|
|
|
611
|
-
.
|
|
616
|
+
._showSortIcon_n3la2_75 svg {
|
|
612
617
|
visibility: visible;
|
|
613
618
|
}
|
|
614
619
|
|
|
615
|
-
.
|
|
620
|
+
._tableRow_n3la2_79 {
|
|
616
621
|
background-color: inherit;
|
|
617
622
|
/* This for the CellSelect checkbox component as it does not accept a className prop */
|
|
618
623
|
}
|
|
619
|
-
.
|
|
624
|
+
._tableRow_n3la2_79 span, ._tableRow_n3la2_79 i {
|
|
620
625
|
display: inline-flex;
|
|
621
626
|
place-self: center;
|
|
622
627
|
}
|
|
623
|
-
.
|
|
628
|
+
._tableRow_n3la2_79 td {
|
|
624
629
|
padding-left: 10px !important;
|
|
625
630
|
}
|
|
626
|
-
.
|
|
631
|
+
._tableRow_n3la2_79:hover:not(._disabled_n3la2_1) {
|
|
627
632
|
background-color: var(--gray-a4);
|
|
628
633
|
}
|
|
629
634
|
|
|
630
|
-
.
|
|
635
|
+
._tableCell_n3la2_94 {
|
|
631
636
|
padding: 10px !important;
|
|
632
637
|
}
|
|
633
|
-
.
|
|
638
|
+
._tableCell_n3la2_94 > div > span:first-child {
|
|
634
639
|
width: 100%;
|
|
635
640
|
}
|
|
636
|
-
.
|
|
641
|
+
._tableCell_n3la2_94:not(:last-of-type) {
|
|
637
642
|
padding-right: 20px !important;
|
|
638
643
|
}
|
|
639
644
|
|
|
640
|
-
.
|
|
645
|
+
._noDataTextContainer_n3la2_104 {
|
|
641
646
|
padding: 0.5rem 10px;
|
|
642
647
|
color: #616161;
|
|
643
648
|
width: max-content;
|
|
644
649
|
}
|
|
645
650
|
|
|
646
|
-
.
|
|
651
|
+
._tableBottomContainer_n3la2_110 {
|
|
647
652
|
padding: 15px 0;
|
|
648
653
|
}
|
|
649
654
|
|
|
650
|
-
.
|
|
655
|
+
._rowsPerPageContainer_n3la2_114 {
|
|
651
656
|
flex: 1;
|
|
652
657
|
}
|
|
653
658
|
@media only screen and (max-width: 600px) {
|
|
654
|
-
.
|
|
659
|
+
._rowsPerPageContainer_n3la2_114 {
|
|
655
660
|
justify-content: center;
|
|
656
661
|
padding-top: 5px;
|
|
657
662
|
}
|
|
658
663
|
}
|
|
659
664
|
|
|
660
|
-
.
|
|
665
|
+
._rowsPerPageText_n3la2_124 {
|
|
661
666
|
padding-right: 10px;
|
|
662
667
|
padding-top: 4px;
|
|
663
668
|
}
|
|
664
669
|
|
|
665
|
-
.
|
|
670
|
+
._pageText_n3la2_129 {
|
|
666
671
|
padding-top: 4px;
|
|
667
672
|
}
|
|
668
673
|
|
|
669
|
-
.
|
|
674
|
+
._descriptionSecondLine_n3la2_133 {
|
|
670
675
|
white-space: nowrap;
|
|
671
676
|
overflow: hidden;
|
|
672
677
|
text-overflow: ellipsis;
|
package/package.json
CHANGED