@addsign/moje-agenda-shared-lib 0.0.77 → 0.0.80
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 +30 -2
- package/dist/components/datatable/DataTable.js +1 -1
- package/dist/components/datatable/DataTableServer.d.ts +1 -1
- package/dist/components/datatable/DataTableServer.js +21818 -72
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/components/datatable/DatatableSettings.d.ts +6 -0
- package/dist/components/datatable/DatatableSettings.js +55 -0
- package/dist/components/datatable/DatatableSettings.js.map +1 -0
- package/dist/components/datatable/Resizable.d.ts +8 -0
- package/dist/components/datatable/Resizable.js +81 -0
- package/dist/components/datatable/Resizable.js.map +1 -0
- package/dist/components/form/AutocompleteSearchBar.js +1 -6
- package/dist/components/form/AutocompleteSearchBar.js.map +1 -1
- package/dist/components/form/FileInput.js +1 -1
- package/dist/components/form/FormField.js +1 -1
- package/dist/components/form/InputField.js +1 -1
- package/dist/components/form/PositionsSelectorSingle.js +1 -1
- package/dist/components/form/SelectField.js +1 -1
- package/dist/components/layout/IconInCircle.js +1 -1
- package/dist/{index-ClXm2PIX.js → index-CxF6lTek.js} +15 -11
- package/dist/{index-ClXm2PIX.js.map → index-CxF6lTek.js.map} +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +5 -2
package/dist/assets/tailwind.css
CHANGED
|
@@ -831,8 +831,8 @@ video {
|
|
|
831
831
|
.h-\[400px\] {
|
|
832
832
|
height: 400px;
|
|
833
833
|
}
|
|
834
|
-
.h-\[
|
|
835
|
-
height:
|
|
834
|
+
.h-\[52px\] {
|
|
835
|
+
height: 52px;
|
|
836
836
|
}
|
|
837
837
|
.h-full {
|
|
838
838
|
height: 100%;
|
|
@@ -855,6 +855,9 @@ video {
|
|
|
855
855
|
.min-h-\[285px\] {
|
|
856
856
|
min-height: 285px;
|
|
857
857
|
}
|
|
858
|
+
.w-0 {
|
|
859
|
+
width: 0px;
|
|
860
|
+
}
|
|
858
861
|
.w-1 {
|
|
859
862
|
width: 0.25rem;
|
|
860
863
|
}
|
|
@@ -867,6 +870,9 @@ video {
|
|
|
867
870
|
.w-12 {
|
|
868
871
|
width: 3rem;
|
|
869
872
|
}
|
|
873
|
+
.w-2 {
|
|
874
|
+
width: 0.5rem;
|
|
875
|
+
}
|
|
870
876
|
.w-24 {
|
|
871
877
|
width: 6rem;
|
|
872
878
|
}
|
|
@@ -964,6 +970,9 @@ video {
|
|
|
964
970
|
.animate-spin {
|
|
965
971
|
animation: spin 1s linear infinite;
|
|
966
972
|
}
|
|
973
|
+
.cursor-col-resize {
|
|
974
|
+
cursor: col-resize;
|
|
975
|
+
}
|
|
967
976
|
.cursor-no-drop {
|
|
968
977
|
cursor: no-drop;
|
|
969
978
|
}
|
|
@@ -973,6 +982,11 @@ video {
|
|
|
973
982
|
.cursor-pointer {
|
|
974
983
|
cursor: pointer;
|
|
975
984
|
}
|
|
985
|
+
.select-none {
|
|
986
|
+
-webkit-user-select: none;
|
|
987
|
+
-moz-user-select: none;
|
|
988
|
+
user-select: none;
|
|
989
|
+
}
|
|
976
990
|
.grid-cols-12 {
|
|
977
991
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
978
992
|
}
|
|
@@ -2102,6 +2116,13 @@ video {
|
|
|
2102
2116
|
|
|
2103
2117
|
|
|
2104
2118
|
|
|
2119
|
+
.hover\:border-x:hover {
|
|
2120
|
+
border-left-width: 1px;
|
|
2121
|
+
border-right-width: 1px;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
|
|
2105
2126
|
.hover\:border-gray-200:hover {
|
|
2106
2127
|
--tw-border-opacity: 1;
|
|
2107
2128
|
border-color: rgb(229 231 235 / var(--tw-border-opacity));
|
|
@@ -2287,6 +2308,13 @@ video {
|
|
|
2287
2308
|
|
|
2288
2309
|
|
|
2289
2310
|
|
|
2311
|
+
.hover\:text-black:hover {
|
|
2312
|
+
--tw-text-opacity: 1;
|
|
2313
|
+
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
|
|
2290
2318
|
.hover\:text-blue-700:hover {
|
|
2291
2319
|
--tw-text-opacity: 1;
|
|
2292
2320
|
color: rgb(29 78 216 / var(--tw-text-opacity));
|
|
@@ -2,7 +2,7 @@ import { jsx, Fragment, jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState, useEffect } from "react";
|
|
3
3
|
import '../../assets/tailwind.css';/* empty css */
|
|
4
4
|
import Button from "../Button.js";
|
|
5
|
-
import {
|
|
5
|
+
import { d as MdOutlineFilterAlt, e as MdOutlineFilterAltOff, f as MdSearch, b as MdClose, g as MdArrowBack, h as MdArrowForward, i as MdArrowUpward, j as MdArrowDownward } from "../../index-CxF6lTek.js";
|
|
6
6
|
import FormField from "../form/FormField.js";
|
|
7
7
|
import Spinner from "../Spinner.js";
|
|
8
8
|
import "../profiles/ProfileOverview.js";
|