@addsign/moje-agenda-shared-lib 1.0.24 → 1.0.26

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.
@@ -656,8 +656,8 @@ video {
656
656
  .col-span-1 {
657
657
  grid-column: span 1 / span 1;
658
658
  }
659
- .col-span-12 {
660
- grid-column: span 12 / span 12;
659
+ .col-span-2 {
660
+ grid-column: span 2 / span 2;
661
661
  }
662
662
  .col-span-3 {
663
663
  grid-column: span 3 / span 3;
@@ -837,9 +837,6 @@ video {
837
837
  .h-\[300px\] {
838
838
  height: 300px;
839
839
  }
840
- .h-\[400px\] {
841
- height: 400px;
842
- }
843
840
  .h-\[52px\] {
844
841
  height: 52px;
845
842
  }
@@ -852,6 +849,9 @@ video {
852
849
  .max-h-\[390px\] {
853
850
  max-height: 390px;
854
851
  }
852
+ .max-h-\[400px\] {
853
+ max-height: 400px;
854
+ }
855
855
  .max-h-full {
856
856
  max-height: 100%;
857
857
  }
@@ -1089,6 +1089,10 @@ video {
1089
1089
  .gap-8 {
1090
1090
  gap: 2rem;
1091
1091
  }
1092
+ .gap-x-4 {
1093
+ -moz-column-gap: 1rem;
1094
+ column-gap: 1rem;
1095
+ }
1092
1096
  .gap-y-0 {
1093
1097
  row-gap: 0px;
1094
1098
  }
@@ -1744,9 +1748,6 @@ video {
1744
1748
  .pr-2 {
1745
1749
  padding-right: 0.5rem;
1746
1750
  }
1747
- .pr-2\.5 {
1748
- padding-right: 0.625rem;
1749
- }
1750
1751
  .pr-20 {
1751
1752
  padding-right: 5rem;
1752
1753
  }
@@ -21927,10 +21927,8 @@ function DataTableServer({
21927
21927
  };
21928
21928
  useEffect(() => {
21929
21929
  if (!hasMounted) {
21930
- console.log("useEffect ran on mount");
21931
21930
  setHasMounted(true);
21932
21931
  } else {
21933
- console.log("useEffect ran due to prop change");
21934
21932
  setCurrentPage(0);
21935
21933
  }
21936
21934
  }, [filters]);