@addsign/moje-agenda-shared-lib 1.0.38 → 1.0.40
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 +11 -2
- package/dist/components/datatable/DataTableServer.js +4 -1
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/components/form/DateRangeField.js +1 -1
- package/dist/components/form/DateRangeField.js.map +1 -1
- package/dist/components/form/InputField.js +1 -1
- package/dist/components/form/InputField.js.map +1 -1
- package/dist/components/form/SelectField.js +1 -1
- package/dist/components/form/SelectField.js.map +1 -1
- package/package.json +2 -2
package/dist/assets/tailwind.css
CHANGED
|
@@ -2103,8 +2103,8 @@ video {
|
|
|
2103
2103
|
--tw-placeholder-opacity: 1;
|
|
2104
2104
|
color: rgb(156 163 175 / var(--tw-placeholder-opacity));
|
|
2105
2105
|
}
|
|
2106
|
-
.\!opacity-
|
|
2107
|
-
opacity: 0.
|
|
2106
|
+
.\!opacity-80 {
|
|
2107
|
+
opacity: 0.8 !important;
|
|
2108
2108
|
}
|
|
2109
2109
|
.opacity-0 {
|
|
2110
2110
|
opacity: 0;
|
|
@@ -2118,6 +2118,9 @@ video {
|
|
|
2118
2118
|
.opacity-75 {
|
|
2119
2119
|
opacity: 0.75;
|
|
2120
2120
|
}
|
|
2121
|
+
.opacity-80 {
|
|
2122
|
+
opacity: 0.8;
|
|
2123
|
+
}
|
|
2121
2124
|
.shadow {
|
|
2122
2125
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2123
2126
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -3147,6 +3150,12 @@ video {
|
|
|
3147
3150
|
|
|
3148
3151
|
|
|
3149
3152
|
|
|
3153
|
+
.disabled\:opacity-80:disabled {
|
|
3154
|
+
opacity: 0.8;
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
|
|
3158
|
+
|
|
3150
3159
|
.group:hover .group-hover\:visible {
|
|
3151
3160
|
visibility: visible;
|
|
3152
3161
|
}
|
|
@@ -21859,6 +21859,9 @@ function DataTableServer({
|
|
|
21859
21859
|
};
|
|
21860
21860
|
updateFilterOptions();
|
|
21861
21861
|
}, [columns, federationContext.apiClient]);
|
|
21862
|
+
const hasSomeColFilters = useMemo(() => {
|
|
21863
|
+
return columns.some((column) => !!column.filterParam);
|
|
21864
|
+
}, [columns]);
|
|
21862
21865
|
const requestSort = (sortParam) => {
|
|
21863
21866
|
setSortConfig((prevSortConfig) => {
|
|
21864
21867
|
if ((prevSortConfig == null ? void 0 : prevSortConfig.sortParam) === sortParam && prevSortConfig.direction !== null) {
|
|
@@ -22037,7 +22040,7 @@ function DataTableServer({
|
|
|
22037
22040
|
onExport: exportToXLSX
|
|
22038
22041
|
}
|
|
22039
22042
|
),
|
|
22040
|
-
/* @__PURE__ */ jsxs(
|
|
22043
|
+
hasSomeColFilters && /* @__PURE__ */ jsxs(
|
|
22041
22044
|
"div",
|
|
22042
22045
|
{
|
|
22043
22046
|
className: "flex items-center text-xl h-full p-3 cursor-pointer text-gray-500 hover:text-black",
|