aq-fe-framework 0.1.360 → 0.1.361
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.
|
@@ -644,13 +644,13 @@ import {
|
|
|
644
644
|
Text as Text3
|
|
645
645
|
} from "@mantine/core";
|
|
646
646
|
import { IconPlus as IconPlus4, IconTrash as IconTrash3 } from "@tabler/icons-react";
|
|
647
|
-
import { useState
|
|
647
|
+
import { useState } from "react";
|
|
648
648
|
import { jsx as jsx12, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
649
649
|
function MyWeeklySessionSchedulerPicker({
|
|
650
650
|
value = [],
|
|
651
651
|
onChange
|
|
652
652
|
}) {
|
|
653
|
-
const [selectedDays, setSelectedDays] =
|
|
653
|
+
const [selectedDays, setSelectedDays] = useState([]);
|
|
654
654
|
const handleAddSession = (dayOfWeek) => {
|
|
655
655
|
const newSession = {
|
|
656
656
|
dayOfWeek,
|
package/dist/core/index.mjs
CHANGED
|
@@ -2,10 +2,6 @@ export { I as IEmailConfig } from '../EmailConfig-Bza2PzTi.mjs';
|
|
|
2
2
|
export { I as IAQModule } from '../IAQModule-DfONsRwE.mjs';
|
|
3
3
|
import { I as IBaseEntity } from '../IBaseEntity-BprRafT5.mjs';
|
|
4
4
|
|
|
5
|
-
interface IPageContent extends IBaseEntity {
|
|
6
|
-
description?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
5
|
interface IFile {
|
|
10
6
|
fileName?: string | undefined;
|
|
11
7
|
fileExtension?: string | undefined;
|
|
@@ -55,4 +51,8 @@ interface IUser extends IBaseEntity {
|
|
|
55
51
|
email?: string;
|
|
56
52
|
}
|
|
57
53
|
|
|
54
|
+
interface IPageContent extends IBaseEntity {
|
|
55
|
+
description?: string;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
58
|
export { IBaseEntity, type IDocument, type IFile, type IPageContent, type IPagePermission, type IRole, type IUser };
|
|
@@ -11,6 +11,9 @@ import {
|
|
|
11
11
|
import {
|
|
12
12
|
U0DateToDDMMYYYString
|
|
13
13
|
} from "../chunk-I2XIN2R3.mjs";
|
|
14
|
+
import {
|
|
15
|
+
const_object_documentTypes
|
|
16
|
+
} from "../chunk-BZMQOGL6.mjs";
|
|
14
17
|
import {
|
|
15
18
|
F_authenticate_Logout,
|
|
16
19
|
MyActionIconDelete,
|
|
@@ -38,17 +41,11 @@ import {
|
|
|
38
41
|
createGenericStore
|
|
39
42
|
} from "../chunk-Y3YGC5IH.mjs";
|
|
40
43
|
import "../chunk-5U2JSHSJ.mjs";
|
|
41
|
-
import {
|
|
42
|
-
const_object_documentTypes
|
|
43
|
-
} from "../chunk-BZMQOGL6.mjs";
|
|
44
|
-
import {
|
|
45
|
-
enum_emailConfigModule
|
|
46
|
-
} from "../chunk-VH4ZAD6M.mjs";
|
|
47
44
|
import {
|
|
48
45
|
MyButton as MyButton2,
|
|
49
46
|
MyDataTableSelectOne,
|
|
50
47
|
MyTextInput as MyTextInput2
|
|
51
|
-
} from "../chunk-
|
|
48
|
+
} from "../chunk-FOM7K3QT.mjs";
|
|
52
49
|
import {
|
|
53
50
|
MyDataTable,
|
|
54
51
|
MyFlexColumn,
|
|
@@ -57,6 +54,9 @@ import {
|
|
|
57
54
|
import {
|
|
58
55
|
const_object_colors
|
|
59
56
|
} from "../chunk-7ORPZMGL.mjs";
|
|
57
|
+
import {
|
|
58
|
+
enum_emailConfigModule
|
|
59
|
+
} from "../chunk-VH4ZAD6M.mjs";
|
|
60
60
|
import "../chunk-K6S7R6LU.mjs";
|
|
61
61
|
import {
|
|
62
62
|
baseAxios_default,
|