@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.
- package/dist/assets/tailwind.css +9 -8
- package/dist/components/datatable/DataTableServer.js +0 -2
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/components/form/InputField.d.ts +1 -1
- package/dist/components/form/InputField.js +8 -9
- package/dist/components/form/InputField.js.map +1 -1
- package/dist/components/form/PositionsSelectorSingle.js +18 -24
- package/dist/components/form/PositionsSelectorSingle.js.map +1 -1
- package/dist/components/form/SelectField.d.ts +2 -1
- package/dist/components/form/SelectField.js +44 -9
- package/dist/components/form/SelectField.js.map +1 -1
- package/dist/index.es-BGLrEmwj.js +9454 -0
- package/dist/index.es-BGLrEmwj.js.map +1 -0
- package/dist/jspdf.plugin.autotable-DZeSn-7J.js +11475 -0
- package/dist/jspdf.plugin.autotable-DZeSn-7J.js.map +1 -0
- package/package.json +1 -1
package/dist/assets/tailwind.css
CHANGED
|
@@ -656,8 +656,8 @@ video {
|
|
|
656
656
|
.col-span-1 {
|
|
657
657
|
grid-column: span 1 / span 1;
|
|
658
658
|
}
|
|
659
|
-
.col-span-
|
|
660
|
-
grid-column: span
|
|
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]);
|