@addsign/moje-agenda-shared-lib 0.0.77 → 0.0.79

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.
@@ -831,8 +831,8 @@ video {
831
831
  .h-\[400px\] {
832
832
  height: 400px;
833
833
  }
834
- .h-\[72px\] {
835
- height: 72px;
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 { c as MdOutlineFilterAlt, d as MdOutlineFilterAltOff, e as MdSearch, b as MdClose, f as MdArrowBack, g as MdArrowForward, h as MdArrowUpward, i as MdArrowDownward } from "../../index-ClXm2PIX.js";
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";
@@ -6,7 +6,7 @@ interface BulkAction<T> {
6
6
  icon?: any;
7
7
  }
8
8
  interface DataTableServerProps<T> {
9
- id?: string;
9
+ id: string;
10
10
  url: string;
11
11
  columns: DataTableColumn<T | "actions">[];
12
12
  itemsPerPage?: number;