aq-fe-framework 0.1.268 → 0.1.270
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-X2PWPQDD.mjs → chunk-JCIYZBMG.mjs} +1 -1
- package/dist/{chunk-L6J7NXDQ.mjs → chunk-KKJ3OEEW.mjs} +5 -1
- package/dist/components/index.d.mts +1 -1
- package/dist/components/index.mjs +2 -2
- package/dist/{createBaseApi-BJ2TH3XA.d.mts → createBaseApi-LggLpM1P.d.mts} +3 -0
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.d.mts +349 -40
- package/dist/modules-features/index.mjs +1757 -170
- package/package.json +1 -1
@@ -6,6 +6,9 @@ import {
|
|
6
6
|
// src/hooks/custom-hooks/createBaseApi.ts
|
7
7
|
function createBaseApi(baseUrl, axiosInstance) {
|
8
8
|
return {
|
9
|
+
get: ({ params = "" } = {}) => {
|
10
|
+
return axiosInstance.get(`${baseUrl}/get` + params);
|
11
|
+
},
|
9
12
|
getAll: ({ params = "" } = {}) => {
|
10
13
|
return axiosInstance.get(`${baseUrl}/GetAll` + params);
|
11
14
|
},
|
@@ -96,7 +99,8 @@ function useMyReactMutation({
|
|
96
99
|
return res.data.data;
|
97
100
|
},
|
98
101
|
onError: (e) => {
|
99
|
-
|
102
|
+
console.log();
|
103
|
+
if (e.message === null || e.message === "null") {
|
100
104
|
notifications.show({
|
101
105
|
message: "Kh\xF4ng th\u1EC3 thao t\xE1c, l\u1ED7i ch\u01B0a x\xE1c \u0111\u1ECBnh!",
|
102
106
|
color: "red"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
2
|
import React$1, { ReactNode, ComponentProps } from 'react';
|
3
3
|
import { MantineSize, ActionIconProps, ButtonProps, useModalsStack, CheckboxProps, SelectProps, NumberFormatterProps, FieldsetProps, FileInputProps, NumberInputProps, TextareaProps, TextInputProps, ContainerProps, FlexProps, GroupProps, TypographyStylesProviderProps, TabsProps, SkeletonProps } from '@mantine/core';
|
4
|
-
import { M as MyApiResponse } from '../createBaseApi-
|
4
|
+
import { M as MyApiResponse } from '../createBaseApi-LggLpM1P.mjs';
|
5
5
|
import { AxiosResponse } from 'axios';
|
6
6
|
import { useDisclosure, useListState } from '@mantine/hooks';
|
7
7
|
import { UseFormReturnType, useForm } from '@mantine/form';
|
@@ -68,10 +68,10 @@ import {
|
|
68
68
|
useS_BasicAppShell,
|
69
69
|
useS_ButtonImport,
|
70
70
|
utils_layout_getItemsWithoutLinks
|
71
|
-
} from "../chunk-
|
71
|
+
} from "../chunk-JCIYZBMG.mjs";
|
72
72
|
import "../chunk-NWBLJ3W3.mjs";
|
73
73
|
import "../chunk-K6S7R6LU.mjs";
|
74
|
-
import "../chunk-
|
74
|
+
import "../chunk-KKJ3OEEW.mjs";
|
75
75
|
import "../chunk-Y3YGC5IH.mjs";
|
76
76
|
import "../chunk-5U2JSHSJ.mjs";
|
77
77
|
import "../chunk-7ZCOFATU.mjs";
|
@@ -8,6 +8,9 @@ interface MyApiResponse<IRes> {
|
|
8
8
|
data: IRes;
|
9
9
|
}
|
10
10
|
declare function createBaseApi<T>(baseUrl: string, axiosInstance: AxiosInstance): {
|
11
|
+
get: ({ params }?: {
|
12
|
+
params?: string;
|
13
|
+
}) => Promise<axios.AxiosResponse<MyApiResponse<T[]>, any>>;
|
11
14
|
getAll: ({ params }?: {
|
12
15
|
params?: string;
|
13
16
|
}) => Promise<axios.AxiosResponse<MyApiResponse<T[]>, any>>;
|
package/dist/hooks/index.d.mts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { M as MyApiResponse } from '../createBaseApi-
|
2
|
-
export { c as createBaseApi } from '../createBaseApi-
|
1
|
+
import { M as MyApiResponse } from '../createBaseApi-LggLpM1P.mjs';
|
2
|
+
export { c as createBaseApi } from '../createBaseApi-LggLpM1P.mjs';
|
3
3
|
import { AxiosInstance, AxiosResponse } from 'axios';
|
4
4
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
5
5
|
import { UseMutationOptions, QueryKey, UseQueryOptions } from '@tanstack/react-query';
|
package/dist/hooks/index.mjs
CHANGED
@@ -21,9 +21,9 @@ declare function F_core12196_Delete({ id, contextData, }: {
|
|
21
21
|
|
22
22
|
declare function F_core12196_Read({ FormTypeId }: {
|
23
23
|
FormTypeId: number;
|
24
|
-
}): react_jsx_runtime.JSX.Element
|
24
|
+
}): react_jsx_runtime.JSX.Element;
|
25
25
|
|
26
|
-
interface IDocument$
|
26
|
+
interface IDocument$b {
|
27
27
|
path?: string;
|
28
28
|
orderBy?: number;
|
29
29
|
documentType?: number;
|
@@ -52,17 +52,17 @@ interface IDocument$5 {
|
|
52
52
|
ngayChinhSua?: Date;
|
53
53
|
nguoiChinhSua?: string;
|
54
54
|
}
|
55
|
-
interface I$
|
55
|
+
interface I$k extends IDocument$b {
|
56
56
|
file?: File;
|
57
57
|
}
|
58
58
|
declare function F_core12196_Update({ values, FormTypeId, }: {
|
59
|
-
values: I$
|
59
|
+
values: I$k;
|
60
60
|
FormTypeId: number;
|
61
61
|
}): react_jsx_runtime.JSX.Element;
|
62
62
|
|
63
63
|
declare function F_core16209({ RefinementTypeId }: {
|
64
64
|
RefinementTypeId: number;
|
65
|
-
}): react_jsx_runtime.JSX.Element
|
65
|
+
}): react_jsx_runtime.JSX.Element;
|
66
66
|
|
67
67
|
declare function F_core16209_Create({ RefinementTypeId, }: {
|
68
68
|
RefinementTypeId: number;
|
@@ -73,7 +73,7 @@ declare function F_core16209_Delete({ id, contextData, }: {
|
|
73
73
|
contextData: string;
|
74
74
|
}): react_jsx_runtime.JSX.Element;
|
75
75
|
|
76
|
-
interface IDocument$
|
76
|
+
interface IDocument$a {
|
77
77
|
path?: string;
|
78
78
|
orderBy?: number;
|
79
79
|
documentType?: number;
|
@@ -102,11 +102,11 @@ interface IDocument$4 {
|
|
102
102
|
ngayChinhSua?: Date;
|
103
103
|
nguoiChinhSua?: string;
|
104
104
|
}
|
105
|
-
interface I$
|
105
|
+
interface I$j extends IDocument$a {
|
106
106
|
file?: File;
|
107
107
|
}
|
108
108
|
declare function F_core16209_Update({ values }: {
|
109
|
-
values: I$
|
109
|
+
values: I$j;
|
110
110
|
}): react_jsx_runtime.JSX.Element;
|
111
111
|
|
112
112
|
declare function F_core18256(): react_jsx_runtime.JSX.Element;
|
@@ -121,7 +121,7 @@ declare function F_core18256_Delete({ id }: {
|
|
121
121
|
|
122
122
|
declare function F_core18256_Read({ documentType }: {
|
123
123
|
documentType: number;
|
124
|
-
}): react_jsx_runtime.JSX.Element
|
124
|
+
}): react_jsx_runtime.JSX.Element;
|
125
125
|
|
126
126
|
interface ISelect extends SelectProps {
|
127
127
|
documentTypeId?: number;
|
@@ -133,13 +133,13 @@ interface ISelect extends SelectProps {
|
|
133
133
|
}
|
134
134
|
declare function F_core18256_Select({ documentTypeId, label, dataMapper, ...rest }: ISelect): react_jsx_runtime.JSX.Element | "Loading...";
|
135
135
|
|
136
|
-
interface I$
|
136
|
+
interface I$i {
|
137
137
|
id?: number;
|
138
138
|
name?: string;
|
139
139
|
code?: string;
|
140
140
|
}
|
141
141
|
declare function F_core18256_Update({ values }: {
|
142
|
-
values: I$
|
142
|
+
values: I$i;
|
143
143
|
}): react_jsx_runtime.JSX.Element;
|
144
144
|
|
145
145
|
declare function F_core26965({ RegulationsTypeId }: {
|
@@ -155,7 +155,7 @@ declare function F_core26965_Delete({ id, contextData, }: {
|
|
155
155
|
contextData: string;
|
156
156
|
}): react_jsx_runtime.JSX.Element;
|
157
157
|
|
158
|
-
interface IDocument$
|
158
|
+
interface IDocument$9 {
|
159
159
|
path?: string;
|
160
160
|
orderBy?: number;
|
161
161
|
documentType?: number;
|
@@ -184,11 +184,11 @@ interface IDocument$3 {
|
|
184
184
|
ngayChinhSua?: Date;
|
185
185
|
nguoiChinhSua?: string;
|
186
186
|
}
|
187
|
-
interface I$
|
187
|
+
interface I$h extends IDocument$9 {
|
188
188
|
file?: File;
|
189
189
|
}
|
190
190
|
declare function F_core26965_Update({ values, RegulationsTypeId, }: {
|
191
|
-
values: I$
|
191
|
+
values: I$h;
|
192
192
|
RegulationsTypeId: number;
|
193
193
|
}): react_jsx_runtime.JSX.Element;
|
194
194
|
|
@@ -207,9 +207,9 @@ declare function F_core27311_Delete({ id, contextData, }: {
|
|
207
207
|
|
208
208
|
declare function F_core27311_Read({ WorkflowTypeId, }: {
|
209
209
|
WorkflowTypeId: number;
|
210
|
-
}): react_jsx_runtime.JSX.Element
|
210
|
+
}): react_jsx_runtime.JSX.Element;
|
211
211
|
|
212
|
-
interface IDocument$
|
212
|
+
interface IDocument$8 {
|
213
213
|
path?: string;
|
214
214
|
orderBy?: number;
|
215
215
|
documentType?: number;
|
@@ -238,11 +238,11 @@ interface IDocument$2 {
|
|
238
238
|
ngayChinhSua?: Date;
|
239
239
|
nguoiChinhSua?: string;
|
240
240
|
}
|
241
|
-
interface I$
|
241
|
+
interface I$g extends IDocument$8 {
|
242
242
|
file?: File;
|
243
243
|
}
|
244
244
|
declare function F_core27311_Update({ values, WorkflowTypeId, }: {
|
245
|
-
values: I$
|
245
|
+
values: I$g;
|
246
246
|
WorkflowTypeId: number;
|
247
247
|
}): react_jsx_runtime.JSX.Element;
|
248
248
|
|
@@ -277,9 +277,9 @@ declare function F_core40207_Delete({ id, contextData, }: {
|
|
277
277
|
|
278
278
|
declare function F_core40207_Read({ GuidelineTypeId }: {
|
279
279
|
GuidelineTypeId: number;
|
280
|
-
}): react_jsx_runtime.JSX.Element
|
280
|
+
}): react_jsx_runtime.JSX.Element;
|
281
281
|
|
282
|
-
interface IDocument$
|
282
|
+
interface IDocument$7 {
|
283
283
|
path?: string;
|
284
284
|
orderBy?: number;
|
285
285
|
documentType?: number;
|
@@ -308,11 +308,11 @@ interface IDocument$1 {
|
|
308
308
|
ngayChinhSua?: Date;
|
309
309
|
nguoiChinhSua?: string;
|
310
310
|
}
|
311
|
-
interface I$
|
311
|
+
interface I$f extends IDocument$7 {
|
312
312
|
file?: File;
|
313
313
|
}
|
314
314
|
declare function F_core40207_Update({ values }: {
|
315
|
-
values: I$
|
315
|
+
values: I$f;
|
316
316
|
}): react_jsx_runtime.JSX.Element;
|
317
317
|
|
318
318
|
declare function F_core47643(): react_jsx_runtime.JSX.Element;
|
@@ -321,13 +321,13 @@ declare function F_core47643_Delete({ values }: {
|
|
321
321
|
values: IBaseEntity;
|
322
322
|
}): react_jsx_runtime.JSX.Element;
|
323
323
|
|
324
|
-
interface I$
|
324
|
+
interface I$e {
|
325
325
|
id?: number;
|
326
326
|
code?: string;
|
327
327
|
name?: string;
|
328
328
|
}
|
329
329
|
declare function F_core47643_Form({ values }: {
|
330
|
-
values?: I$
|
330
|
+
values?: I$e;
|
331
331
|
}): react_jsx_runtime.JSX.Element;
|
332
332
|
|
333
333
|
declare function F_core47643_Read(): react_jsx_runtime.JSX.Element | "Có lỗi xảy ra!" | "Đang tải dữ liệu...";
|
@@ -341,13 +341,13 @@ interface I_core60524_AQModule extends IAQModule {
|
|
341
341
|
logoFile?: File;
|
342
342
|
}
|
343
343
|
|
344
|
-
interface I$
|
344
|
+
interface I$d {
|
345
345
|
AQModuleId?: number;
|
346
346
|
}
|
347
347
|
declare function useS_core60524(): {
|
348
|
-
state: I$
|
349
|
-
setState: (newState: I$
|
350
|
-
setProperty: <K extends "AQModuleId">(key: K, value: I$
|
348
|
+
state: I$d;
|
349
|
+
setState: (newState: I$d) => void;
|
350
|
+
setProperty: <K extends "AQModuleId">(key: K, value: I$d[K]) => void;
|
351
351
|
resetState: () => void;
|
352
352
|
};
|
353
353
|
|
@@ -357,11 +357,11 @@ declare function F_core64229_Delete({ values }: {
|
|
357
357
|
values: IBaseEntity;
|
358
358
|
}): react_jsx_runtime.JSX.Element;
|
359
359
|
|
360
|
-
interface I$
|
360
|
+
interface I$c extends IEmailConfig {
|
361
361
|
password?: string;
|
362
362
|
}
|
363
363
|
declare function F_core64229_Form({ values, emailModule }: {
|
364
|
-
values?: I$
|
364
|
+
values?: I$c;
|
365
365
|
emailModule: (string | {
|
366
366
|
value: string;
|
367
367
|
label: string;
|
@@ -410,7 +410,7 @@ interface IUserSkillCenters extends IBaseEntity {
|
|
410
410
|
userId?: number;
|
411
411
|
skillCenterId?: number;
|
412
412
|
}
|
413
|
-
interface I$
|
413
|
+
interface I$b {
|
414
414
|
id?: number;
|
415
415
|
userName?: string;
|
416
416
|
code?: string;
|
@@ -420,7 +420,7 @@ interface I$5 {
|
|
420
420
|
userSkillCenters?: IUserSkillCenters[];
|
421
421
|
}
|
422
422
|
declare function F_core71678_Update({ user }: {
|
423
|
-
user: I$
|
423
|
+
user: I$b;
|
424
424
|
}): react_jsx_runtime.JSX.Element;
|
425
425
|
|
426
426
|
declare function F_core76318({ SecurityTypeId }: {
|
@@ -436,7 +436,7 @@ declare function F_core76318_Delete({ id, contextData, }: {
|
|
436
436
|
contextData: string;
|
437
437
|
}): react_jsx_runtime.JSX.Element;
|
438
438
|
|
439
|
-
interface IDocument {
|
439
|
+
interface IDocument$6 {
|
440
440
|
path?: string;
|
441
441
|
orderBy?: number;
|
442
442
|
documentType?: number;
|
@@ -465,11 +465,11 @@ interface IDocument {
|
|
465
465
|
ngayChinhSua?: Date;
|
466
466
|
nguoiChinhSua?: string;
|
467
467
|
}
|
468
|
-
interface I$
|
468
|
+
interface I$a extends IDocument$6 {
|
469
469
|
file?: File;
|
470
470
|
}
|
471
471
|
declare function F_core76318_Update({ values }: {
|
472
|
-
values: I$
|
472
|
+
values: I$a;
|
473
473
|
}): react_jsx_runtime.JSX.Element;
|
474
474
|
|
475
475
|
declare function F_core83092({ menuData }: {
|
@@ -493,7 +493,7 @@ interface I_core83092_RolePermission {
|
|
493
493
|
isPrint?: boolean;
|
494
494
|
isExport?: boolean;
|
495
495
|
}
|
496
|
-
interface I$
|
496
|
+
interface I$9 {
|
497
497
|
roleId?: number;
|
498
498
|
rolePermissions?: I_core83092_RolePermission[];
|
499
499
|
}
|
@@ -502,13 +502,322 @@ declare function useS_core83092(): {
|
|
502
502
|
findByPageId: (pageId: number) => I_core83092_RolePermission | undefined;
|
503
503
|
updatePermission: (pageId: number, updatedPermission: Partial<I_core83092_RolePermission>) => void;
|
504
504
|
isAllPermission: (field: keyof I_core83092_RolePermission) => boolean;
|
505
|
-
state: I$
|
506
|
-
setState: (newState: I$
|
507
|
-
setProperty: <K extends keyof I$
|
505
|
+
state: I$9;
|
506
|
+
setState: (newState: I$9) => void;
|
507
|
+
setProperty: <K extends keyof I$9>(key: K, value: I$9[K]) => void;
|
508
508
|
resetState: () => void;
|
509
509
|
};
|
510
510
|
declare function utils_core83092_mergePage(arr1: I_core83092_RolePermission[], arr2: I_core83092_RolePermission[]): I_core83092_RolePermission[];
|
511
511
|
|
512
|
+
declare function F_formTemplateDocs({ FormTypeId }: {
|
513
|
+
FormTypeId: number;
|
514
|
+
}): react_jsx_runtime.JSX.Element;
|
515
|
+
|
516
|
+
declare function F_formTemplateDocs_Create({ FormTypeId }: {
|
517
|
+
FormTypeId: number;
|
518
|
+
}): react_jsx_runtime.JSX.Element;
|
519
|
+
|
520
|
+
declare function F_formTemplateDocs_Delete({ id, contextData, }: {
|
521
|
+
id: number;
|
522
|
+
contextData: string;
|
523
|
+
}): react_jsx_runtime.JSX.Element;
|
524
|
+
|
525
|
+
declare function F_formTemplateDocs_Read({ FormTypeId }: {
|
526
|
+
FormTypeId: number;
|
527
|
+
}): react_jsx_runtime.JSX.Element;
|
528
|
+
|
529
|
+
interface IDocument$5 {
|
530
|
+
path?: string;
|
531
|
+
orderBy?: number;
|
532
|
+
documentType?: number;
|
533
|
+
promulgateDate?: Date;
|
534
|
+
decisionCode?: string;
|
535
|
+
departmentName?: string;
|
536
|
+
description?: string;
|
537
|
+
startDate?: Date;
|
538
|
+
endDate?: Date;
|
539
|
+
conclusion?: string;
|
540
|
+
note?: string;
|
541
|
+
documentAttributeId?: number;
|
542
|
+
documentAttributeName?: string;
|
543
|
+
isCycleCheck?: boolean;
|
544
|
+
meetingDate?: Date;
|
545
|
+
fileDetail?: {
|
546
|
+
fileBase64String?: string;
|
547
|
+
fileExtension?: string;
|
548
|
+
fileName?: string;
|
549
|
+
};
|
550
|
+
id?: number;
|
551
|
+
code?: string;
|
552
|
+
name?: string;
|
553
|
+
concurrencyStamp?: string;
|
554
|
+
isEnabled?: boolean;
|
555
|
+
ngayChinhSua?: Date;
|
556
|
+
nguoiChinhSua?: string;
|
557
|
+
}
|
558
|
+
interface I$8 extends IDocument$5 {
|
559
|
+
file?: File;
|
560
|
+
}
|
561
|
+
declare function F_formTemplateDocs_Update({ values, FormTypeId, }: {
|
562
|
+
values: I$8;
|
563
|
+
FormTypeId: number;
|
564
|
+
}): react_jsx_runtime.JSX.Element;
|
565
|
+
|
566
|
+
declare function F_organizationPolicyDocs({ RegulationsTypeId }: {
|
567
|
+
RegulationsTypeId: number;
|
568
|
+
}): react_jsx_runtime.JSX.Element;
|
569
|
+
|
570
|
+
declare function F_organizationPolicyDocs_Create({ RegulationsTypeId, }: {
|
571
|
+
RegulationsTypeId: number;
|
572
|
+
}): react_jsx_runtime.JSX.Element;
|
573
|
+
|
574
|
+
declare function F_organizationPolicyDocs_Delete({ id, contextData, }: {
|
575
|
+
id: number;
|
576
|
+
contextData: string;
|
577
|
+
}): react_jsx_runtime.JSX.Element;
|
578
|
+
|
579
|
+
interface IDocument$4 {
|
580
|
+
path?: string;
|
581
|
+
orderBy?: number;
|
582
|
+
documentType?: number;
|
583
|
+
promulgateDate?: Date;
|
584
|
+
decisionCode?: string;
|
585
|
+
departmentName?: string;
|
586
|
+
description?: string;
|
587
|
+
startDate?: Date;
|
588
|
+
endDate?: Date;
|
589
|
+
conclusion?: string;
|
590
|
+
note?: string;
|
591
|
+
documentAttributeId?: number;
|
592
|
+
documentAttributeName?: string;
|
593
|
+
isCycleCheck?: boolean;
|
594
|
+
meetingDate?: Date;
|
595
|
+
fileDetail?: {
|
596
|
+
fileBase64String?: string;
|
597
|
+
fileExtension?: string;
|
598
|
+
fileName?: string;
|
599
|
+
};
|
600
|
+
id?: number;
|
601
|
+
code?: string;
|
602
|
+
name?: string;
|
603
|
+
concurrencyStamp?: string;
|
604
|
+
isEnabled?: boolean;
|
605
|
+
ngayChinhSua?: Date;
|
606
|
+
nguoiChinhSua?: string;
|
607
|
+
}
|
608
|
+
interface I$7 extends IDocument$4 {
|
609
|
+
file?: File;
|
610
|
+
}
|
611
|
+
declare function F_organizationPolicyDocs_Update({ values, RegulationsTypeId, }: {
|
612
|
+
values: I$7;
|
613
|
+
RegulationsTypeId: number;
|
614
|
+
}): react_jsx_runtime.JSX.Element;
|
615
|
+
|
616
|
+
declare function F_securityPolicyDocs({ SecurityTypeId }: {
|
617
|
+
SecurityTypeId: number;
|
618
|
+
}): react_jsx_runtime.JSX.Element;
|
619
|
+
|
620
|
+
declare function F_securityPolicyDocs_Create({ SecurityTypeId }: {
|
621
|
+
SecurityTypeId: number;
|
622
|
+
}): react_jsx_runtime.JSX.Element;
|
623
|
+
|
624
|
+
declare function F_securityPolicyDocs_Delete({ id, contextData, }: {
|
625
|
+
id: number;
|
626
|
+
contextData: string;
|
627
|
+
}): react_jsx_runtime.JSX.Element;
|
628
|
+
|
629
|
+
interface IDocument$3 {
|
630
|
+
path?: string;
|
631
|
+
orderBy?: number;
|
632
|
+
documentType?: number;
|
633
|
+
promulgateDate?: Date;
|
634
|
+
decisionCode?: string;
|
635
|
+
departmentName?: string;
|
636
|
+
description?: string;
|
637
|
+
startDate?: Date;
|
638
|
+
endDate?: Date;
|
639
|
+
conclusion?: string;
|
640
|
+
note?: string;
|
641
|
+
documentAttributeId?: number;
|
642
|
+
documentAttributeName?: string;
|
643
|
+
isCycleCheck?: boolean;
|
644
|
+
meetingDate?: Date;
|
645
|
+
fileDetail?: {
|
646
|
+
fileBase64String?: string;
|
647
|
+
fileExtension?: string;
|
648
|
+
fileName?: string;
|
649
|
+
};
|
650
|
+
id?: number;
|
651
|
+
code?: string;
|
652
|
+
name?: string;
|
653
|
+
concurrencyStamp?: string;
|
654
|
+
isEnabled?: boolean;
|
655
|
+
ngayChinhSua?: Date;
|
656
|
+
nguoiChinhSua?: string;
|
657
|
+
}
|
658
|
+
interface I$6 extends IDocument$3 {
|
659
|
+
file?: File;
|
660
|
+
}
|
661
|
+
declare function F_securityPolicyDocs_Update({ values }: {
|
662
|
+
values: I$6;
|
663
|
+
}): react_jsx_runtime.JSX.Element;
|
664
|
+
|
665
|
+
declare function F_systemUpdateDocs({ RefinementTypeId }: {
|
666
|
+
RefinementTypeId: number;
|
667
|
+
}): react_jsx_runtime.JSX.Element;
|
668
|
+
|
669
|
+
declare function F_systemUpdateDocs_Create({ RefinementTypeId, }: {
|
670
|
+
RefinementTypeId: number;
|
671
|
+
}): react_jsx_runtime.JSX.Element;
|
672
|
+
|
673
|
+
declare function F_systemUpdateDocs_Delete({ id, contextData, }: {
|
674
|
+
id: number;
|
675
|
+
contextData: string;
|
676
|
+
}): react_jsx_runtime.JSX.Element;
|
677
|
+
|
678
|
+
interface IDocument$2 {
|
679
|
+
path?: string;
|
680
|
+
orderBy?: number;
|
681
|
+
documentType?: number;
|
682
|
+
promulgateDate?: Date;
|
683
|
+
decisionCode?: string;
|
684
|
+
departmentName?: string;
|
685
|
+
description?: string;
|
686
|
+
startDate?: Date;
|
687
|
+
endDate?: Date;
|
688
|
+
conclusion?: string;
|
689
|
+
note?: string;
|
690
|
+
documentAttributeId?: number;
|
691
|
+
documentAttributeName?: string;
|
692
|
+
isCycleCheck?: boolean;
|
693
|
+
meetingDate?: Date;
|
694
|
+
fileDetail?: {
|
695
|
+
fileBase64String?: string;
|
696
|
+
fileExtension?: string;
|
697
|
+
fileName?: string;
|
698
|
+
};
|
699
|
+
id?: number;
|
700
|
+
code?: string;
|
701
|
+
name?: string;
|
702
|
+
concurrencyStamp?: string;
|
703
|
+
isEnabled?: boolean;
|
704
|
+
ngayChinhSua?: Date;
|
705
|
+
nguoiChinhSua?: string;
|
706
|
+
}
|
707
|
+
interface I$5 extends IDocument$2 {
|
708
|
+
file?: File;
|
709
|
+
}
|
710
|
+
declare function F_systemUpdateDocs_Update({ values }: {
|
711
|
+
values: I$5;
|
712
|
+
}): react_jsx_runtime.JSX.Element;
|
713
|
+
|
714
|
+
declare function F_userGuideDocs({ GuidelineTypeId }: {
|
715
|
+
GuidelineTypeId: number;
|
716
|
+
}): react_jsx_runtime.JSX.Element;
|
717
|
+
|
718
|
+
declare function F_userGuideDocs_Create({ GuidelineTypeId }: {
|
719
|
+
GuidelineTypeId: number;
|
720
|
+
}): react_jsx_runtime.JSX.Element;
|
721
|
+
|
722
|
+
declare function F_userGuideDocs_Delete({ id, contextData, }: {
|
723
|
+
id: number;
|
724
|
+
contextData: string;
|
725
|
+
}): react_jsx_runtime.JSX.Element;
|
726
|
+
|
727
|
+
declare function F_userGuideDocs_Read({ GuidelineTypeId }: {
|
728
|
+
GuidelineTypeId: number;
|
729
|
+
}): react_jsx_runtime.JSX.Element;
|
730
|
+
|
731
|
+
interface IDocument$1 {
|
732
|
+
path?: string;
|
733
|
+
orderBy?: number;
|
734
|
+
documentType?: number;
|
735
|
+
promulgateDate?: Date;
|
736
|
+
decisionCode?: string;
|
737
|
+
departmentName?: string;
|
738
|
+
description?: string;
|
739
|
+
startDate?: Date;
|
740
|
+
endDate?: Date;
|
741
|
+
conclusion?: string;
|
742
|
+
note?: string;
|
743
|
+
documentAttributeId?: number;
|
744
|
+
documentAttributeName?: string;
|
745
|
+
isCycleCheck?: boolean;
|
746
|
+
meetingDate?: Date;
|
747
|
+
fileDetail?: {
|
748
|
+
fileBase64String?: string;
|
749
|
+
fileExtension?: string;
|
750
|
+
fileName?: string;
|
751
|
+
};
|
752
|
+
id?: number;
|
753
|
+
code?: string;
|
754
|
+
name?: string;
|
755
|
+
concurrencyStamp?: string;
|
756
|
+
isEnabled?: boolean;
|
757
|
+
ngayChinhSua?: Date;
|
758
|
+
nguoiChinhSua?: string;
|
759
|
+
}
|
760
|
+
interface I$4 extends IDocument$1 {
|
761
|
+
file?: File;
|
762
|
+
}
|
763
|
+
declare function F_userGuideDocs_Update({ values }: {
|
764
|
+
values: I$4;
|
765
|
+
}): react_jsx_runtime.JSX.Element;
|
766
|
+
|
767
|
+
declare function F_workflowProcessDocs({ WorkflowTypeId }: {
|
768
|
+
WorkflowTypeId: number;
|
769
|
+
}): react_jsx_runtime.JSX.Element;
|
770
|
+
|
771
|
+
declare function F_workflowProcessDocs_Create({ WorkflowTypeId, }: {
|
772
|
+
WorkflowTypeId: number;
|
773
|
+
}): react_jsx_runtime.JSX.Element;
|
774
|
+
|
775
|
+
declare function F_workflowProcessDocs_Delete({ id, contextData, }: {
|
776
|
+
id: number;
|
777
|
+
contextData: string;
|
778
|
+
}): react_jsx_runtime.JSX.Element;
|
779
|
+
|
780
|
+
declare function F_workflowProcessDocs_Read({ WorkflowTypeId, }: {
|
781
|
+
WorkflowTypeId: number;
|
782
|
+
}): react_jsx_runtime.JSX.Element;
|
783
|
+
|
784
|
+
interface IDocument {
|
785
|
+
path?: string;
|
786
|
+
orderBy?: number;
|
787
|
+
documentType?: number;
|
788
|
+
promulgateDate?: Date;
|
789
|
+
decisionCode?: string;
|
790
|
+
departmentName?: string;
|
791
|
+
description?: string;
|
792
|
+
startDate?: Date;
|
793
|
+
endDate?: Date;
|
794
|
+
conclusion?: string;
|
795
|
+
note?: string;
|
796
|
+
documentAttributeId?: number;
|
797
|
+
documentAttributeName?: string;
|
798
|
+
isCycleCheck?: boolean;
|
799
|
+
meetingDate?: Date;
|
800
|
+
fileDetail?: {
|
801
|
+
fileBase64String?: string;
|
802
|
+
fileExtension?: string;
|
803
|
+
fileName?: string;
|
804
|
+
};
|
805
|
+
id?: number;
|
806
|
+
code?: string;
|
807
|
+
name?: string;
|
808
|
+
concurrencyStamp?: string;
|
809
|
+
isEnabled?: boolean;
|
810
|
+
ngayChinhSua?: Date;
|
811
|
+
nguoiChinhSua?: string;
|
812
|
+
}
|
813
|
+
interface I$3 extends IDocument {
|
814
|
+
file?: File;
|
815
|
+
}
|
816
|
+
declare function F_workflowProcessDocs_Update({ values, WorkflowTypeId, }: {
|
817
|
+
values: I$3;
|
818
|
+
WorkflowTypeId: number;
|
819
|
+
}): react_jsx_runtime.JSX.Element;
|
820
|
+
|
512
821
|
interface I$2 {
|
513
822
|
redirectURL?: string;
|
514
823
|
}
|
@@ -540,4 +849,4 @@ interface I {
|
|
540
849
|
}
|
541
850
|
declare function F_authenticate_Login({ redirectUrlAfterLogin, additionalActions, backgroundImage, onSuccess }: I): react_jsx_runtime.JSX.Element;
|
542
851
|
|
543
|
-
export { 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_core38677, F_core38677_ReadUser, F_core38677_Save, F_core38677_ViewMenuPermissions, 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_core60524, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core71678, F_core71678_ChangePermission, F_core71678_Create, F_core71678_Delete, F_core71678_Read, F_core71678_Update, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_core83092, F_core83092_ReadUser, F_core83092_Save, F_core83092_ViewMenuPermissions, type I_core38677_User, type I_core60524_AQModule, type I_core71678_Read, type I_core83092_RolePermission, useS_authenticate, useS_core60524, useS_core83092, utils_core83092_mergePage };
|
852
|
+
export { 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_core38677, F_core38677_ReadUser, F_core38677_Save, F_core38677_ViewMenuPermissions, 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_core60524, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, F_core71678, F_core71678_ChangePermission, F_core71678_Create, F_core71678_Delete, F_core71678_Read, F_core71678_Update, F_core76318, F_core76318_Create, F_core76318_Delete, F_core76318_Update, F_core83092, F_core83092_ReadUser, F_core83092_Save, F_core83092_ViewMenuPermissions, F_formTemplateDocs, F_formTemplateDocs_Create, F_formTemplateDocs_Delete, F_formTemplateDocs_Read, F_formTemplateDocs_Update, F_organizationPolicyDocs, F_organizationPolicyDocs_Create, F_organizationPolicyDocs_Delete, F_organizationPolicyDocs_Update, 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, type I_core38677_User, type I_core60524_AQModule, type I_core71678_Read, type I_core83092_RolePermission, useS_authenticate, useS_core60524, useS_core83092, utils_core83092_mergePage };
|