aq-fe-framework 0.1.594 → 0.1.597
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/{chunk-5NR2OP5O.mjs → chunk-AR64BQSX.mjs} +4 -0
- package/dist/{chunk-HVH3WL5T.mjs → chunk-BCTZIPA2.mjs} +34 -7
- package/dist/{chunk-QQC6IXHV.mjs → chunk-GFW64WZ2.mjs} +1 -1
- package/dist/{chunk-OFRJJ6TK.mjs → chunk-S4K4K3X3.mjs} +60 -62
- package/dist/components/index.d.mts +3 -2
- package/dist/components/index.mjs +2 -2
- package/dist/core/index.d.mts +1 -1
- package/dist/core/index.mjs +4 -4
- package/dist/coreService/index.mjs +3 -3
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.d.mts +40 -27
- package/dist/modules-features/index.mjs +585 -358
- package/dist/{useMyReactMutation-DdCNebJI.d.mts → useMyReactMutation-CqcrOOF9.d.mts} +3 -2
- package/package.json +1 -1
|
@@ -194,6 +194,7 @@ import { useQueryClient } from "@tanstack/react-query";
|
|
|
194
194
|
import { notifications } from "@mantine/notifications";
|
|
195
195
|
import { useMutation, useQueryClient as useQueryClient2 } from "@tanstack/react-query";
|
|
196
196
|
function useMyReactMutation({
|
|
197
|
+
isPrototype,
|
|
197
198
|
axiosFn,
|
|
198
199
|
options,
|
|
199
200
|
mutationType = "create",
|
|
@@ -204,6 +205,9 @@ function useMyReactMutation({
|
|
|
204
205
|
const queryClient = useQueryClient2();
|
|
205
206
|
return useMutation(__spreadProps(__spreadValues({
|
|
206
207
|
mutationFn: async (values) => {
|
|
208
|
+
if (isPrototype) {
|
|
209
|
+
return [];
|
|
210
|
+
}
|
|
207
211
|
const res = await axiosFn(values);
|
|
208
212
|
if (res.data.isSuccess == 0) throw new Error(res.data.message);
|
|
209
213
|
return res.data.data;
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
baseAxios_default,
|
|
15
15
|
useMyReactMutation,
|
|
16
16
|
useQ_AQ_GetAQModule
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-AR64BQSX.mjs";
|
|
18
18
|
import {
|
|
19
19
|
utils_notification_show
|
|
20
20
|
} from "./chunk-7ZCOFATU.mjs";
|
|
@@ -477,7 +477,7 @@ function MyActionIconDelete(_a) {
|
|
|
477
477
|
{
|
|
478
478
|
crudType: "delete",
|
|
479
479
|
onClick: handleCLick,
|
|
480
|
-
loading:
|
|
480
|
+
loading: mutation.isPending
|
|
481
481
|
}
|
|
482
482
|
),
|
|
483
483
|
/* @__PURE__ */ jsx10(
|
|
@@ -575,7 +575,8 @@ function MyActionIconUpdate(_a) {
|
|
|
575
575
|
MyButton,
|
|
576
576
|
{
|
|
577
577
|
type: "submit",
|
|
578
|
-
crudType: "save"
|
|
578
|
+
crudType: "save",
|
|
579
|
+
loading: mutation.isPending
|
|
579
580
|
}
|
|
580
581
|
)
|
|
581
582
|
] }) })
|
|
@@ -1139,7 +1140,7 @@ function MyButtonCreate(_a) {
|
|
|
1139
1140
|
mutation.mutate(values);
|
|
1140
1141
|
}), children: /* @__PURE__ */ jsxs11(MyFlexColumn, { children: [
|
|
1141
1142
|
children,
|
|
1142
|
-
/* @__PURE__ */ jsx21(MyButton, { type: "submit", crudType: "save" })
|
|
1143
|
+
/* @__PURE__ */ jsx21(MyButton, { type: "submit", crudType: "save", loading: mutation.isPending })
|
|
1143
1144
|
] }) })
|
|
1144
1145
|
})
|
|
1145
1146
|
);
|
|
@@ -7007,12 +7008,13 @@ import { NumberInput as NumberInput2 } from "@mantine/core";
|
|
|
7007
7008
|
import { IconNumbers } from "@tabler/icons-react";
|
|
7008
7009
|
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
7009
7010
|
function MyNumberInput(_a) {
|
|
7010
|
-
var _b = _a, { minValue, label } = _b, rest = __objRest(_b, ["minValue", "label"]);
|
|
7011
|
+
var _b = _a, { minValue, maxValue, label } = _b, rest = __objRest(_b, ["minValue", "maxValue", "label"]);
|
|
7011
7012
|
return /* @__PURE__ */ jsx48(
|
|
7012
7013
|
NumberInput2,
|
|
7013
7014
|
__spreadValues({
|
|
7014
7015
|
label,
|
|
7015
7016
|
min: minValue ? minValue : 0,
|
|
7017
|
+
max: maxValue ? maxValue : 100,
|
|
7016
7018
|
placeholder: label ? `Nh\u1EADp ${label == null ? void 0 : label.toLowerCase()}` : "",
|
|
7017
7019
|
rightSection: /* @__PURE__ */ jsx48(IconNumbers, {})
|
|
7018
7020
|
}, rest)
|
|
@@ -7486,14 +7488,39 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect })
|
|
|
7486
7488
|
/* @__PURE__ */ jsx53(Tooltip5, { label: appShellStore.state.opened ? "\u1EA8n thanh menu" : "Hi\u1EC7n thanh menu", children: /* @__PURE__ */ jsx53(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx53(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx53(IconLayoutSidebarLeftCollapse, {}) }) }),
|
|
7487
7489
|
/* @__PURE__ */ jsx53(Tooltip5, { label: "\u0110\xF3ng t\u1EA5t c\u1EA3 menu", children: /* @__PURE__ */ jsx53(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.clearGroupMenuOpenId, children: /* @__PURE__ */ jsx53(IconLibraryMinus, {}) }) })
|
|
7488
7490
|
] }),
|
|
7489
|
-
/* @__PURE__ */ jsx53(Group16, { style: { position: "absolute", left: "50%", transform: "translateX(-50%)" }, children: /* @__PURE__ */ jsx53(Text15, { c: "green", fw: "bold", size: "sm", children: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}` }) }),
|
|
7491
|
+
/* @__PURE__ */ jsx53(Tooltip5, { label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`, children: /* @__PURE__ */ jsx53(Group16, { style: { position: "absolute", left: "50%", transform: "translateX(-50%)" }, children: /* @__PURE__ */ jsx53(Text15, { c: "green", fw: "bold", size: "sm", children: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}` }) }) }),
|
|
7490
7492
|
/* @__PURE__ */ jsxs30(Group16, { children: [
|
|
7491
7493
|
extraTopRight,
|
|
7492
7494
|
/* @__PURE__ */ jsx53(MySwitchTheme, {})
|
|
7493
7495
|
] })
|
|
7494
7496
|
] }) : /* @__PURE__ */ jsxs30(Group16, { h: "100%", px: "md", justify: "space-between", children: [
|
|
7495
7497
|
/* @__PURE__ */ jsx53(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx53(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx53(IconLayoutSidebarLeftCollapse, {}) }),
|
|
7496
|
-
/* @__PURE__ */ jsx53(
|
|
7498
|
+
/* @__PURE__ */ jsx53(
|
|
7499
|
+
Tooltip5,
|
|
7500
|
+
{
|
|
7501
|
+
label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`,
|
|
7502
|
+
withArrow: true,
|
|
7503
|
+
children: /* @__PURE__ */ jsx53(
|
|
7504
|
+
Text15,
|
|
7505
|
+
{
|
|
7506
|
+
c: "green",
|
|
7507
|
+
fw: "bold",
|
|
7508
|
+
size: "sm",
|
|
7509
|
+
style: {
|
|
7510
|
+
maxWidth: 200,
|
|
7511
|
+
// set a max width (px, rem, or %)
|
|
7512
|
+
whiteSpace: "nowrap",
|
|
7513
|
+
// keep text on one line
|
|
7514
|
+
overflow: "hidden",
|
|
7515
|
+
// hide overflow
|
|
7516
|
+
textOverflow: "ellipsis"
|
|
7517
|
+
// show ...
|
|
7518
|
+
},
|
|
7519
|
+
children: title || `${appShellStore.state.moduleCode}`
|
|
7520
|
+
}
|
|
7521
|
+
)
|
|
7522
|
+
}
|
|
7523
|
+
),
|
|
7497
7524
|
/* @__PURE__ */ jsxs30(Group16, { children: [
|
|
7498
7525
|
extraTopRight,
|
|
7499
7526
|
/* @__PURE__ */ jsx53(MySwitchTheme, {})
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
MyFieldset,
|
|
4
4
|
MyFlexColumn,
|
|
5
5
|
MyFlexRow
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-BCTZIPA2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
useStore_Permission
|
|
9
9
|
} from "./chunk-PW6WTEVB.mjs";
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
baseAxios_default,
|
|
18
18
|
useMyReactMutation,
|
|
19
19
|
useMyReactQuery
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-AR64BQSX.mjs";
|
|
21
21
|
import {
|
|
22
22
|
utils_notification_show
|
|
23
23
|
} from "./chunk-7ZCOFATU.mjs";
|
|
@@ -783,9 +783,7 @@ function MyDayOfWeekPicker({ value = [], onChange }) {
|
|
|
783
783
|
// src/core/input/MyRichTextEditor.tsx
|
|
784
784
|
import { Input, ScrollArea as ScrollArea2 } from "@mantine/core";
|
|
785
785
|
import { Link, RichTextEditor as MantineRichTextEditor, RichTextEditor } from "@mantine/tiptap";
|
|
786
|
-
import FileHandler from "@tiptap-pro/extension-file-handler";
|
|
787
786
|
import Highlight from "@tiptap/extension-highlight";
|
|
788
|
-
import Image2 from "@tiptap/extension-image";
|
|
789
787
|
import SubScript from "@tiptap/extension-subscript";
|
|
790
788
|
import Superscript from "@tiptap/extension-superscript";
|
|
791
789
|
import TextAlign from "@tiptap/extension-text-align";
|
|
@@ -803,64 +801,64 @@ function MyRichTextEditor(props) {
|
|
|
803
801
|
Superscript,
|
|
804
802
|
SubScript,
|
|
805
803
|
Highlight,
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
}),
|
|
828
|
-
TextAlign.configure({ types: ["heading", "paragraph"] })
|
|
829
|
-
FileHandler.configure({
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
})
|
|
804
|
+
// Image.extend({
|
|
805
|
+
// addAttributes() {
|
|
806
|
+
// return {
|
|
807
|
+
// src: {
|
|
808
|
+
// default: null,
|
|
809
|
+
// },
|
|
810
|
+
// alt: {
|
|
811
|
+
// default: null,
|
|
812
|
+
// },
|
|
813
|
+
// };
|
|
814
|
+
// },
|
|
815
|
+
// parseHTML() {
|
|
816
|
+
// return [
|
|
817
|
+
// {
|
|
818
|
+
// tag: 'img[src]',
|
|
819
|
+
// },
|
|
820
|
+
// ];
|
|
821
|
+
// },
|
|
822
|
+
// renderHTML({ HTMLAttributes }) {
|
|
823
|
+
// return ['img', HTMLAttributes];
|
|
824
|
+
// },
|
|
825
|
+
// }),
|
|
826
|
+
TextAlign.configure({ types: ["heading", "paragraph"] })
|
|
827
|
+
// FileHandler.configure({
|
|
828
|
+
// allowedMimeTypes: ['image/png', 'image/jpeg', 'image/gif', 'image/webp'],
|
|
829
|
+
// onDrop: (currentEditor, files, pos) => {
|
|
830
|
+
// files.forEach(file => {
|
|
831
|
+
// const fileReader = new FileReader()
|
|
832
|
+
// fileReader.readAsDataURL(file)
|
|
833
|
+
// fileReader.onload = () => {
|
|
834
|
+
// currentEditor.chain().insertContentAt(pos, {
|
|
835
|
+
// type: 'image',
|
|
836
|
+
// attrs: {
|
|
837
|
+
// src: fileReader.result,
|
|
838
|
+
// },
|
|
839
|
+
// }).focus().run()
|
|
840
|
+
// }
|
|
841
|
+
// })
|
|
842
|
+
// },
|
|
843
|
+
// onPaste: (currentEditor, files, htmlContent) => {
|
|
844
|
+
// files.forEach(file => {
|
|
845
|
+
// if (htmlContent) {
|
|
846
|
+
// console.log(htmlContent)
|
|
847
|
+
// return false
|
|
848
|
+
// }
|
|
849
|
+
// const fileReader = new FileReader()
|
|
850
|
+
// fileReader.readAsDataURL(file)
|
|
851
|
+
// fileReader.onload = () => {
|
|
852
|
+
// currentEditor.chain().insertContentAt(currentEditor.state.selection.anchor, {
|
|
853
|
+
// type: 'image',
|
|
854
|
+
// attrs: {
|
|
855
|
+
// src: fileReader.result,
|
|
856
|
+
// },
|
|
857
|
+
// }).focus().run()
|
|
858
|
+
// }
|
|
859
|
+
// })
|
|
860
|
+
// },
|
|
861
|
+
// }),
|
|
864
862
|
],
|
|
865
863
|
content: props.value,
|
|
866
864
|
onUpdate: ({ editor: editor2 }) => {
|
|
@@ -6,7 +6,7 @@ import { AxiosResponse } from 'axios';
|
|
|
6
6
|
import { M as MyApiResponse } from '../createBaseApi-75GHCO22.mjs';
|
|
7
7
|
import { useDisclosure, useListState } from '@mantine/hooks';
|
|
8
8
|
import { UseFormReturnType, useForm } from '@mantine/form';
|
|
9
|
-
import { M as MyReactMutationProps } from '../useMyReactMutation-
|
|
9
|
+
import { M as MyReactMutationProps } from '../useMyReactMutation-CqcrOOF9.mjs';
|
|
10
10
|
import { I as I_BasicAppShell_LinkItem, B as BasicAppShellProps } from '../types-DcfN8y1h.mjs';
|
|
11
11
|
import { I as IUtils_Excel_ColumnConfig } from '../utils_excel-BYB9qbHd.mjs';
|
|
12
12
|
import { MRT_ColumnDef, MRT_RowData, MRT_TableOptions, MRT_TableInstance } from 'mantine-react-table';
|
|
@@ -373,8 +373,9 @@ declare function MyFileInput({ label, ...rest }: IFileInput): react_jsx_runtime.
|
|
|
373
373
|
interface INumberInput extends NumberInputProps {
|
|
374
374
|
label?: string;
|
|
375
375
|
minValue?: number;
|
|
376
|
+
maxValue?: number;
|
|
376
377
|
}
|
|
377
|
-
declare function MyNumberInput({ minValue, label, ...rest }: INumberInput): react_jsx_runtime.JSX.Element;
|
|
378
|
+
declare function MyNumberInput({ minValue, maxValue, label, ...rest }: INumberInput): react_jsx_runtime.JSX.Element;
|
|
378
379
|
|
|
379
380
|
interface IMyTextArea extends TextareaProps {
|
|
380
381
|
label?: string;
|
|
@@ -68,12 +68,12 @@ import {
|
|
|
68
68
|
useHeaderMegaMenuStore,
|
|
69
69
|
useS_ButtonImport,
|
|
70
70
|
useStore_BasicAppShell
|
|
71
|
-
} from "../chunk-
|
|
71
|
+
} from "../chunk-BCTZIPA2.mjs";
|
|
72
72
|
import "../chunk-PW6WTEVB.mjs";
|
|
73
73
|
import "../chunk-5COIJ2CE.mjs";
|
|
74
74
|
import "../chunk-EWDS5IOF.mjs";
|
|
75
75
|
import "../chunk-OMJJAHOC.mjs";
|
|
76
|
-
import "../chunk-
|
|
76
|
+
import "../chunk-AR64BQSX.mjs";
|
|
77
77
|
import "../chunk-WZ6PXGGC.mjs";
|
|
78
78
|
import "../chunk-7ZCOFATU.mjs";
|
|
79
79
|
import "../chunk-FWCSY2DS.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ import { UseFormReturnType } from '@mantine/form';
|
|
|
6
6
|
import { AxiosResponse } from 'axios';
|
|
7
7
|
import { M as MyApiResponse } from '../createBaseApi-75GHCO22.mjs';
|
|
8
8
|
import { useDisclosure } from '@mantine/hooks';
|
|
9
|
-
import { M as MyReactMutationProps } from '../useMyReactMutation-
|
|
9
|
+
import { M as MyReactMutationProps } from '../useMyReactMutation-CqcrOOF9.mjs';
|
|
10
10
|
import { UseReactToPrintOptions } from 'react-to-print';
|
|
11
11
|
import { UseQueryResult, QueryKey, UseQueryOptions } from '@tanstack/react-query';
|
|
12
12
|
import { MRT_RowData, MRT_ColumnDef } from 'mantine-react-table';
|
package/dist/core/index.mjs
CHANGED
|
@@ -22,18 +22,18 @@ import {
|
|
|
22
22
|
MyStatsCard,
|
|
23
23
|
MyTextInput,
|
|
24
24
|
MyWeeklySessionSchedulerPicker
|
|
25
|
-
} from "../chunk-
|
|
25
|
+
} from "../chunk-S4K4K3X3.mjs";
|
|
26
26
|
import "../chunk-GFEMKKFH.mjs";
|
|
27
27
|
import {
|
|
28
28
|
MyModalDelete
|
|
29
|
-
} from "../chunk-
|
|
30
|
-
import "../chunk-
|
|
29
|
+
} from "../chunk-GFW64WZ2.mjs";
|
|
30
|
+
import "../chunk-BCTZIPA2.mjs";
|
|
31
31
|
import "../chunk-PW6WTEVB.mjs";
|
|
32
32
|
import "../chunk-5COIJ2CE.mjs";
|
|
33
33
|
import "../chunk-EWDS5IOF.mjs";
|
|
34
34
|
import "../chunk-OMJJAHOC.mjs";
|
|
35
35
|
import "../chunk-K6S7R6LU.mjs";
|
|
36
|
-
import "../chunk-
|
|
36
|
+
import "../chunk-AR64BQSX.mjs";
|
|
37
37
|
import "../chunk-WZ6PXGGC.mjs";
|
|
38
38
|
import "../chunk-7ZCOFATU.mjs";
|
|
39
39
|
import "../chunk-FWCSY2DS.mjs";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MyModalDelete
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-GFW64WZ2.mjs";
|
|
4
|
+
import "../chunk-BCTZIPA2.mjs";
|
|
5
5
|
import "../chunk-PW6WTEVB.mjs";
|
|
6
6
|
import "../chunk-5COIJ2CE.mjs";
|
|
7
7
|
import "../chunk-EWDS5IOF.mjs";
|
|
8
8
|
import "../chunk-OMJJAHOC.mjs";
|
|
9
9
|
import {
|
|
10
10
|
useMyReactMutation
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-AR64BQSX.mjs";
|
|
12
12
|
import "../chunk-WZ6PXGGC.mjs";
|
|
13
13
|
import "../chunk-7ZCOFATU.mjs";
|
|
14
14
|
import {
|
package/dist/hooks/index.d.mts
CHANGED
|
@@ -7,7 +7,7 @@ import { M as MyApiResponse } from '../createBaseApi-75GHCO22.mjs';
|
|
|
7
7
|
export { I as IPagingParams, c as createBaseApi } from '../createBaseApi-75GHCO22.mjs';
|
|
8
8
|
import * as next_dist_shared_lib_app_router_context_shared_runtime from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
|
9
9
|
import * as React from 'react';
|
|
10
|
-
export { M as MyReactMutationProps, u as useMyReactMutation } from '../useMyReactMutation-
|
|
10
|
+
export { M as MyReactMutationProps, u as useMyReactMutation } from '../useMyReactMutation-CqcrOOF9.mjs';
|
|
11
11
|
import { I as IAQModule } from '../IAQModule-4U3n2emx.mjs';
|
|
12
12
|
import '../IBaseEntity-ChMy9RzQ.mjs';
|
|
13
13
|
import '../type_mutation-CCtnyeP3.mjs';
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -50,7 +50,7 @@ interface IUserSkillCenters extends IBaseEntity {
|
|
|
50
50
|
userId?: number;
|
|
51
51
|
skillCenterId?: number;
|
|
52
52
|
}
|
|
53
|
-
interface I$
|
|
53
|
+
interface I$l {
|
|
54
54
|
id?: number;
|
|
55
55
|
userName?: string;
|
|
56
56
|
code?: string;
|
|
@@ -60,7 +60,7 @@ interface I$k {
|
|
|
60
60
|
userSkillCenters?: IUserSkillCenters[];
|
|
61
61
|
}
|
|
62
62
|
declare function F_accountManagement_Update({ user }: {
|
|
63
|
-
user: I$
|
|
63
|
+
user: I$l;
|
|
64
64
|
}): react_jsx_runtime.JSX.Element;
|
|
65
65
|
|
|
66
66
|
declare function F_core12196({ FormTypeId }: {
|
|
@@ -109,11 +109,11 @@ interface IDocument$b {
|
|
|
109
109
|
ngayChinhSua?: Date;
|
|
110
110
|
nguoiChinhSua?: string;
|
|
111
111
|
}
|
|
112
|
-
interface I$
|
|
112
|
+
interface I$k extends IDocument$b {
|
|
113
113
|
file?: File;
|
|
114
114
|
}
|
|
115
115
|
declare function F_core12196_Update({ values, FormTypeId, }: {
|
|
116
|
-
values: I$
|
|
116
|
+
values: I$k;
|
|
117
117
|
FormTypeId: number;
|
|
118
118
|
}): react_jsx_runtime.JSX.Element;
|
|
119
119
|
|
|
@@ -159,11 +159,11 @@ interface IDocument$a {
|
|
|
159
159
|
ngayChinhSua?: Date;
|
|
160
160
|
nguoiChinhSua?: string;
|
|
161
161
|
}
|
|
162
|
-
interface I$
|
|
162
|
+
interface I$j extends IDocument$a {
|
|
163
163
|
file?: File;
|
|
164
164
|
}
|
|
165
165
|
declare function F_core16209_Update({ values }: {
|
|
166
|
-
values: I$
|
|
166
|
+
values: I$j;
|
|
167
167
|
}): react_jsx_runtime.JSX.Element;
|
|
168
168
|
|
|
169
169
|
declare function F_core18256(): react_jsx_runtime.JSX.Element;
|
|
@@ -192,13 +192,13 @@ interface ISelect$1 extends SelectProps {
|
|
|
192
192
|
}
|
|
193
193
|
declare function F_core18256_Select({ documentTypeId, label, dataMapper, ...rest }: ISelect$1): react_jsx_runtime.JSX.Element | "Loading...";
|
|
194
194
|
|
|
195
|
-
interface I$
|
|
195
|
+
interface I$i {
|
|
196
196
|
id?: number;
|
|
197
197
|
name?: string;
|
|
198
198
|
code?: string;
|
|
199
199
|
}
|
|
200
200
|
declare function F_core18256_Update({ values }: {
|
|
201
|
-
values: I$
|
|
201
|
+
values: I$i;
|
|
202
202
|
}): react_jsx_runtime.JSX.Element;
|
|
203
203
|
|
|
204
204
|
declare function F_core26965({ RegulationsTypeId }: {
|
|
@@ -243,11 +243,11 @@ interface IDocument$9 {
|
|
|
243
243
|
ngayChinhSua?: Date;
|
|
244
244
|
nguoiChinhSua?: string;
|
|
245
245
|
}
|
|
246
|
-
interface I$
|
|
246
|
+
interface I$h extends IDocument$9 {
|
|
247
247
|
file?: File;
|
|
248
248
|
}
|
|
249
249
|
declare function F_core26965_Update({ values, RegulationsTypeId, }: {
|
|
250
|
-
values: I$
|
|
250
|
+
values: I$h;
|
|
251
251
|
RegulationsTypeId: number;
|
|
252
252
|
}): react_jsx_runtime.JSX.Element;
|
|
253
253
|
|
|
@@ -297,11 +297,11 @@ interface IDocument$8 {
|
|
|
297
297
|
ngayChinhSua?: Date;
|
|
298
298
|
nguoiChinhSua?: string;
|
|
299
299
|
}
|
|
300
|
-
interface I$
|
|
300
|
+
interface I$g extends IDocument$8 {
|
|
301
301
|
file?: File;
|
|
302
302
|
}
|
|
303
303
|
declare function F_core27311_Update({ values, WorkflowTypeId, }: {
|
|
304
|
-
values: I$
|
|
304
|
+
values: I$g;
|
|
305
305
|
WorkflowTypeId: number;
|
|
306
306
|
}): react_jsx_runtime.JSX.Element;
|
|
307
307
|
|
|
@@ -353,11 +353,11 @@ interface IDocument$7 {
|
|
|
353
353
|
ngayChinhSua?: Date;
|
|
354
354
|
nguoiChinhSua?: string;
|
|
355
355
|
}
|
|
356
|
-
interface I$
|
|
356
|
+
interface I$f extends IDocument$7 {
|
|
357
357
|
file?: File;
|
|
358
358
|
}
|
|
359
359
|
declare function F_core40207_Update({ values }: {
|
|
360
|
-
values: I$
|
|
360
|
+
values: I$f;
|
|
361
361
|
}): react_jsx_runtime.JSX.Element;
|
|
362
362
|
|
|
363
363
|
declare function F_core47643(): react_jsx_runtime.JSX.Element;
|
|
@@ -366,13 +366,13 @@ declare function F_core47643_Delete({ values }: {
|
|
|
366
366
|
values: IBaseEntity;
|
|
367
367
|
}): react_jsx_runtime.JSX.Element;
|
|
368
368
|
|
|
369
|
-
interface I$
|
|
369
|
+
interface I$e {
|
|
370
370
|
id?: number;
|
|
371
371
|
code?: string;
|
|
372
372
|
name?: string;
|
|
373
373
|
}
|
|
374
374
|
declare function F_core47643_Form({ values }: {
|
|
375
|
-
values?: I$
|
|
375
|
+
values?: I$e;
|
|
376
376
|
}): react_jsx_runtime.JSX.Element;
|
|
377
377
|
|
|
378
378
|
declare function F_core47643_Read(): react_jsx_runtime.JSX.Element | "Có lỗi xảy ra!" | "Đang tải dữ liệu...";
|
|
@@ -383,11 +383,11 @@ declare function F_core64229_Delete({ values }: {
|
|
|
383
383
|
values: IBaseEntity;
|
|
384
384
|
}): react_jsx_runtime.JSX.Element;
|
|
385
385
|
|
|
386
|
-
interface I$
|
|
386
|
+
interface I$d extends IEmailConfig {
|
|
387
387
|
password?: string;
|
|
388
388
|
}
|
|
389
389
|
declare function F_core64229_Form({ values, emailModule }: {
|
|
390
|
-
values?: I$
|
|
390
|
+
values?: I$d;
|
|
391
391
|
emailModule: (string | {
|
|
392
392
|
value: string;
|
|
393
393
|
label: string;
|
|
@@ -443,11 +443,11 @@ interface IDocument$6 {
|
|
|
443
443
|
ngayChinhSua?: Date;
|
|
444
444
|
nguoiChinhSua?: string;
|
|
445
445
|
}
|
|
446
|
-
interface I$
|
|
446
|
+
interface I$c extends IDocument$6 {
|
|
447
447
|
file?: File;
|
|
448
448
|
}
|
|
449
449
|
declare function F_core76318_Update({ values }: {
|
|
450
|
-
values: I$
|
|
450
|
+
values: I$c;
|
|
451
451
|
}): react_jsx_runtime.JSX.Element;
|
|
452
452
|
|
|
453
453
|
declare function F_documentCategories(): react_jsx_runtime.JSX.Element;
|
|
@@ -474,13 +474,13 @@ interface ISelect extends SelectProps {
|
|
|
474
474
|
}
|
|
475
475
|
declare function F_documentCategories_Select({ documentTypeId, label, dataMapper, ...rest }: ISelect): react_jsx_runtime.JSX.Element | "Loading...";
|
|
476
476
|
|
|
477
|
-
interface I$
|
|
477
|
+
interface I$b {
|
|
478
478
|
id?: number;
|
|
479
479
|
name?: string;
|
|
480
480
|
code?: string;
|
|
481
481
|
}
|
|
482
482
|
declare function F_documentCategories_Update({ values }: {
|
|
483
|
-
values: I$
|
|
483
|
+
values: I$b;
|
|
484
484
|
}): react_jsx_runtime.JSX.Element;
|
|
485
485
|
|
|
486
486
|
declare function F_formTemplateDocs({ FormTypeId }: {
|
|
@@ -529,21 +529,21 @@ interface IDocument$5 {
|
|
|
529
529
|
ngayChinhSua?: Date;
|
|
530
530
|
nguoiChinhSua?: string;
|
|
531
531
|
}
|
|
532
|
-
interface I$
|
|
532
|
+
interface I$a extends IDocument$5 {
|
|
533
533
|
file?: File;
|
|
534
534
|
}
|
|
535
535
|
declare function F_formTemplateDocs_Update({ values, FormTypeId, }: {
|
|
536
|
-
values: I$
|
|
536
|
+
values: I$a;
|
|
537
537
|
FormTypeId: number;
|
|
538
538
|
}): react_jsx_runtime.JSX.Element;
|
|
539
539
|
|
|
540
540
|
declare function F_mailConfig(): react_jsx_runtime.JSX.Element;
|
|
541
541
|
|
|
542
|
-
interface I$
|
|
542
|
+
interface I$9 extends IEmailConfig {
|
|
543
543
|
password?: string;
|
|
544
544
|
}
|
|
545
545
|
declare function F_mailConfig_CreateUpdate({ values, emailModule }: {
|
|
546
|
-
values?: I$
|
|
546
|
+
values?: I$9;
|
|
547
547
|
emailModule: (string | {
|
|
548
548
|
value: string;
|
|
549
549
|
label: string;
|
|
@@ -561,6 +561,19 @@ declare function F_mailConfig_Read({ emailModule }: {
|
|
|
561
561
|
})[];
|
|
562
562
|
}): react_jsx_runtime.JSX.Element | "Đang tải";
|
|
563
563
|
|
|
564
|
+
declare function F_mailTemplate_Delete({ values }: {
|
|
565
|
+
values: IBaseEntity;
|
|
566
|
+
}): react_jsx_runtime.JSX.Element;
|
|
567
|
+
|
|
568
|
+
declare function F_mailTemplate_Read(): react_jsx_runtime.JSX.Element;
|
|
569
|
+
|
|
570
|
+
interface I$8 extends IEmailConfig {
|
|
571
|
+
password?: string;
|
|
572
|
+
}
|
|
573
|
+
declare function F_mailTemplate_CreateUpdate({ values }: {
|
|
574
|
+
values?: I$8;
|
|
575
|
+
}): react_jsx_runtime.JSX.Element;
|
|
576
|
+
|
|
564
577
|
declare function F_moduleConfig({ AQModuleId }: {
|
|
565
578
|
AQModuleId: number;
|
|
566
579
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -908,4 +921,4 @@ interface Feat_TokenExpiredProps {
|
|
|
908
921
|
}
|
|
909
922
|
declare function Feat_TokenExpired({ loginRedirect }: Feat_TokenExpiredProps): react_jsx_runtime.JSX.Element;
|
|
910
923
|
|
|
911
|
-
export { F_accountManagement, F_accountManagement_ChangePermission, F_accountManagement_Create, F_accountManagement_Delete, F_accountManagement_Read, F_accountManagement_Update, F_authenticate_Login, F_authenticate_Logout, F_authenticate_SplashPage, F_core12196, F_core12196_Create, F_core12196_Delete, F_core12196_Read, F_core12196_Update, F_core16209, F_core16209_Create, F_core16209_Delete, F_core16209_Update, F_core18256, F_core18256_Create, F_core18256_Delete, F_core18256_Read, F_core18256_Select, F_core18256_Update, F_core26965, F_core26965_Create, F_core26965_Delete, F_core26965_Update, F_core27311, F_core27311_Create, F_core27311_Delete, F_core27311_Read, F_core27311_Update, F_core35923, F_core40207, F_core40207_Create, F_core40207_Delete, F_core40207_Read, F_core40207_Update, F_core47643, F_core47643_Delete, F_core47643_Form, F_core47643_Read, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_documentCategories, F_documentCategories_Create, F_documentCategories_Delete, F_documentCategories_Read, F_documentCategories_Select, F_documentCategories_Update, F_formTemplateDocs, F_formTemplateDocs_Create, F_formTemplateDocs_Delete, F_formTemplateDocs_Read, F_formTemplateDocs_Update, F_mailConfig, F_mailConfig_CreateUpdate, F_mailConfig_Delete, F_mailConfig_Read, F_moduleConfig, F_organizationPolicyDocs, F_organizationPolicyDocs_Create, F_organizationPolicyDocs_Delete, F_organizationPolicyDocs_Update, F_pageContentConfig, F_roleCatalog, F_roleCatalog_Delete, F_roleCatalog_Form, F_roleCatalog_Read, F_securityPolicyDocs, F_securityPolicyDocs_Create, F_securityPolicyDocs_Delete, F_securityPolicyDocs_Update, F_systemUpdateDocs, F_systemUpdateDocs_Create, F_systemUpdateDocs_Delete, F_systemUpdateDocs_Update, F_userGuideDocs, F_userGuideDocs_Create, F_userGuideDocs_Delete, F_userGuideDocs_Read, F_userGuideDocs_Update, F_workflowProcessDocs, F_workflowProcessDocs_Create, F_workflowProcessDocs_Delete, F_workflowProcessDocs_Read, F_workflowProcessDocs_Update, Feat_RoleManagement, Feat_TokenExpired, Feat_accessControl, Feat_accessControlLevel, type I_accountManagement_Read, type I_moduleConfig_AQModule, useS_authenticate, useS_moduleConfig };
|
|
924
|
+
export { F_accountManagement, F_accountManagement_ChangePermission, F_accountManagement_Create, F_accountManagement_Delete, F_accountManagement_Read, F_accountManagement_Update, F_authenticate_Login, F_authenticate_Logout, F_authenticate_SplashPage, F_core12196, F_core12196_Create, F_core12196_Delete, F_core12196_Read, F_core12196_Update, F_core16209, F_core16209_Create, F_core16209_Delete, F_core16209_Update, F_core18256, F_core18256_Create, F_core18256_Delete, F_core18256_Read, F_core18256_Select, F_core18256_Update, F_core26965, F_core26965_Create, F_core26965_Delete, F_core26965_Update, F_core27311, F_core27311_Create, F_core27311_Delete, F_core27311_Read, F_core27311_Update, F_core35923, F_core40207, F_core40207_Create, F_core40207_Delete, F_core40207_Read, F_core40207_Update, F_core47643, F_core47643_Delete, F_core47643_Form, F_core47643_Read, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_documentCategories, F_documentCategories_Create, F_documentCategories_Delete, F_documentCategories_Read, F_documentCategories_Select, F_documentCategories_Update, F_formTemplateDocs, F_formTemplateDocs_Create, F_formTemplateDocs_Delete, F_formTemplateDocs_Read, F_formTemplateDocs_Update, F_mailConfig, F_mailConfig_CreateUpdate, F_mailConfig_Delete, F_mailConfig_Read, F_mailTemplate_CreateUpdate, F_mailTemplate_Delete, F_mailTemplate_Read, F_moduleConfig, F_organizationPolicyDocs, F_organizationPolicyDocs_Create, F_organizationPolicyDocs_Delete, F_organizationPolicyDocs_Update, F_pageContentConfig, F_roleCatalog, F_roleCatalog_Delete, F_roleCatalog_Form, F_roleCatalog_Read, F_securityPolicyDocs, F_securityPolicyDocs_Create, F_securityPolicyDocs_Delete, F_securityPolicyDocs_Update, F_systemUpdateDocs, F_systemUpdateDocs_Create, F_systemUpdateDocs_Delete, F_systemUpdateDocs_Update, F_userGuideDocs, F_userGuideDocs_Create, F_userGuideDocs_Delete, F_userGuideDocs_Read, F_userGuideDocs_Update, F_workflowProcessDocs, F_workflowProcessDocs_Create, F_workflowProcessDocs_Delete, F_workflowProcessDocs_Read, F_workflowProcessDocs_Update, Feat_RoleManagement, Feat_TokenExpired, Feat_accessControl, Feat_accessControlLevel, type I_accountManagement_Read, type I_moduleConfig_AQModule, useS_authenticate, useS_moduleConfig };
|