@addsign/moje-agenda-shared-lib 1.0.26 → 1.0.28
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/ConfirmationModalDialog-CM6ONyzM.js +121 -0
- package/dist/ConfirmationModalDialog-CM6ONyzM.js.map +1 -0
- package/dist/assets/tailwind.css +12 -0
- package/dist/components/ConfirmationModalDialog.js +1 -4
- package/dist/components/ConfirmationModalDialog.js.map +1 -1
- package/dist/components/Modal.js.map +1 -1
- package/dist/components/ModalDialog.d.ts +11 -0
- package/dist/components/ModalDialog.js +72 -0
- package/dist/components/ModalDialog.js.map +1 -0
- package/dist/components/datatable/DataTableServer.js +8 -4
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/components/datatable/types.d.ts +3 -1
- package/dist/index-G6UUAXAq.js +8 -0
- package/dist/index-G6UUAXAq.js.map +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +4 -3
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/assets/tailwind.css
CHANGED
|
@@ -798,6 +798,9 @@ video {
|
|
|
798
798
|
.h-24 {
|
|
799
799
|
height: 6rem;
|
|
800
800
|
}
|
|
801
|
+
.h-28 {
|
|
802
|
+
height: 7rem;
|
|
803
|
+
}
|
|
801
804
|
.h-36 {
|
|
802
805
|
height: 9rem;
|
|
803
806
|
}
|
|
@@ -852,12 +855,18 @@ video {
|
|
|
852
855
|
.max-h-\[400px\] {
|
|
853
856
|
max-height: 400px;
|
|
854
857
|
}
|
|
858
|
+
.max-h-\[calc\(100vh_-_20px\)\] {
|
|
859
|
+
max-height: calc(100vh - 20px);
|
|
860
|
+
}
|
|
855
861
|
.max-h-full {
|
|
856
862
|
max-height: 100%;
|
|
857
863
|
}
|
|
858
864
|
.min-h-5 {
|
|
859
865
|
min-height: 1.25rem;
|
|
860
866
|
}
|
|
867
|
+
.min-h-64 {
|
|
868
|
+
min-height: 16rem;
|
|
869
|
+
}
|
|
861
870
|
.min-h-\[285px\] {
|
|
862
871
|
min-height: 285px;
|
|
863
872
|
}
|
|
@@ -940,6 +949,9 @@ video {
|
|
|
940
949
|
.min-w-20 {
|
|
941
950
|
min-width: 5rem;
|
|
942
951
|
}
|
|
952
|
+
.min-w-96 {
|
|
953
|
+
min-width: 24rem;
|
|
954
|
+
}
|
|
943
955
|
.min-w-\[100px\] {
|
|
944
956
|
min-width: 100px;
|
|
945
957
|
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useEffect } from "react";
|
|
3
3
|
import { F as FaRegTrashAlt } from "../index-DH-TC1O6.js";
|
|
4
|
-
import {
|
|
4
|
+
import { I as IoCloseOutline } from "../index-G6UUAXAq.js";
|
|
5
5
|
import Button from "./Button.js";
|
|
6
|
-
function IoCloseOutline(props) {
|
|
7
|
-
return GenIcon({ "tag": "svg", "attr": { "viewBox": "0 0 512 512" }, "child": [{ "tag": "path", "attr": { "fill": "none", "strokeLinecap": "round", "strokeLinejoin": "round", "strokeWidth": "32", "d": "M368 368 144 144m224 0L144 368" }, "child": [] }] })(props);
|
|
8
|
-
}
|
|
9
6
|
function ConfirmationModalDialog({
|
|
10
7
|
title,
|
|
11
8
|
confirmAction,
|