aq-fe-framework 0.1.314 → 0.1.316
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-MLYVD4EV.mjs → chunk-FUHOV7NB.mjs} +30 -1
- package/dist/{chunk-JIPPFPV6.mjs → chunk-PSV5MULK.mjs} +4 -4
- package/dist/{chunk-QPNYGFTI.mjs → chunk-YJ32RSH2.mjs} +7 -2
- package/dist/components/index.mjs +2 -2
- package/dist/core/index.mjs +3 -3
- package/dist/hooks/index.d.mts +2 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.d.mts +55 -103
- package/dist/modules-features/index.mjs +908 -1176
- package/package.json +1 -1
@@ -12,7 +12,7 @@ import {
|
|
12
12
|
baseAxios_default,
|
13
13
|
useMyReactMutation,
|
14
14
|
useQ_AQ_GetAQModule
|
15
|
-
} from "./chunk-
|
15
|
+
} from "./chunk-YJ32RSH2.mjs";
|
16
16
|
import {
|
17
17
|
utils_notification_show
|
18
18
|
} from "./chunk-7ZCOFATU.mjs";
|
@@ -393,6 +393,20 @@ function MyActionIconDelete(_a) {
|
|
393
393
|
const loadingState = useState2();
|
394
394
|
const mutation = useMyReactMutation({
|
395
395
|
axiosFn: () => {
|
396
|
+
if (process.env.NEXT_PUBLIC_APP_PROTOTYPE == "1") {
|
397
|
+
console.log("X\xF3a th\xE0nh c\xF4ng (gi\u1EA3 l\u1EADp)");
|
398
|
+
return Promise.resolve({
|
399
|
+
data: {
|
400
|
+
message: "X\xF3a th\xE0nh c\xF4ng (gi\u1EA3 l\u1EADp)",
|
401
|
+
data: {},
|
402
|
+
isSuccess: 1
|
403
|
+
},
|
404
|
+
status: 200,
|
405
|
+
statusText: "OK",
|
406
|
+
headers: {},
|
407
|
+
config: {}
|
408
|
+
});
|
409
|
+
}
|
396
410
|
const result = onSubmit();
|
397
411
|
if (result === void 0) {
|
398
412
|
return Promise.resolve({
|
@@ -412,6 +426,7 @@ function MyActionIconDelete(_a) {
|
|
412
426
|
options: __spreadValues(__spreadValues({
|
413
427
|
onSuccess: () => {
|
414
428
|
queryClient.invalidateQueries();
|
429
|
+
loadingState[1](false);
|
415
430
|
utils_notification_show({ crudType: "delete" });
|
416
431
|
disc[1].close();
|
417
432
|
}
|
@@ -496,6 +511,20 @@ function MyActionIconUpdate(_a) {
|
|
496
511
|
const queryClient = useQueryClient2();
|
497
512
|
const mutation = useMyReactMutation({
|
498
513
|
axiosFn: (values) => {
|
514
|
+
if (process.env.NEXT_PUBLIC_APP_PROTOTYPE == "1") {
|
515
|
+
console.log("S\u1EEDa th\xE0nh c\xF4ng (gi\u1EA3 l\u1EADp)");
|
516
|
+
return Promise.resolve({
|
517
|
+
data: {
|
518
|
+
message: "S\u1EEDa th\xE0nh c\xF4ng (gi\u1EA3 l\u1EADp)",
|
519
|
+
data: {},
|
520
|
+
isSuccess: 1
|
521
|
+
},
|
522
|
+
status: 200,
|
523
|
+
statusText: "OK",
|
524
|
+
headers: {},
|
525
|
+
config: {}
|
526
|
+
});
|
527
|
+
}
|
499
528
|
const result = onSubmit(values);
|
500
529
|
if (result === void 0) {
|
501
530
|
return Promise.resolve({
|
@@ -1,3 +1,6 @@
|
|
1
|
+
import {
|
2
|
+
enum_daysOfWeek
|
3
|
+
} from "./chunk-K6S7R6LU.mjs";
|
1
4
|
import {
|
2
5
|
MyFlexColumn,
|
3
6
|
MyFlexRow
|
@@ -5,12 +8,9 @@ import {
|
|
5
8
|
import {
|
6
9
|
const_object_colors
|
7
10
|
} from "./chunk-NWBLJ3W3.mjs";
|
8
|
-
import {
|
9
|
-
enum_daysOfWeek
|
10
|
-
} from "./chunk-K6S7R6LU.mjs";
|
11
11
|
import {
|
12
12
|
useMyReactMutation
|
13
|
-
} from "./chunk-
|
13
|
+
} from "./chunk-YJ32RSH2.mjs";
|
14
14
|
import {
|
15
15
|
utils_notification_show
|
16
16
|
} from "./chunk-7ZCOFATU.mjs";
|
@@ -161,12 +161,17 @@ import { useQuery } from "@tanstack/react-query";
|
|
161
161
|
function useMyReactQuery({
|
162
162
|
queryKey,
|
163
163
|
axiosFn,
|
164
|
-
options
|
164
|
+
options,
|
165
|
+
mockData = []
|
165
166
|
}) {
|
166
167
|
return useQuery(__spreadValues({
|
167
168
|
queryKey,
|
168
|
-
// bạn tự thêm queryKey khi dùng nhé
|
169
169
|
queryFn: async () => {
|
170
|
+
const mockResponese = {
|
171
|
+
isSuccess: 1,
|
172
|
+
data: mockData
|
173
|
+
};
|
174
|
+
if (process.env.NEXT_PUBLIC_APP_PROTOTYPE == "1") return mockResponese.data;
|
170
175
|
const res = await axiosFn();
|
171
176
|
if (res.data.isSuccess == 0) throw new Error(res.data.message);
|
172
177
|
return res.data.data;
|
@@ -64,14 +64,14 @@ import {
|
|
64
64
|
useS_BasicAppShell,
|
65
65
|
useS_ButtonImport,
|
66
66
|
utils_layout_getItemsWithoutLinks
|
67
|
-
} from "../chunk-
|
67
|
+
} from "../chunk-FUHOV7NB.mjs";
|
68
68
|
import "../chunk-5U2JSHSJ.mjs";
|
69
69
|
import {
|
70
70
|
MyFlexColumn,
|
71
71
|
MyFlexRow
|
72
72
|
} from "../chunk-HHJFKKE7.mjs";
|
73
73
|
import "../chunk-NWBLJ3W3.mjs";
|
74
|
-
import "../chunk-
|
74
|
+
import "../chunk-YJ32RSH2.mjs";
|
75
75
|
import "../chunk-7ZCOFATU.mjs";
|
76
76
|
import "../chunk-Y3YGC5IH.mjs";
|
77
77
|
import "../chunk-FWCSY2DS.mjs";
|
package/dist/core/index.mjs
CHANGED
@@ -6,11 +6,11 @@ import {
|
|
6
6
|
MyDayOfWeekPicker,
|
7
7
|
MyTextInput,
|
8
8
|
MyWeeklySessionSchedulerPicker
|
9
|
-
} from "../chunk-
|
9
|
+
} from "../chunk-PSV5MULK.mjs";
|
10
|
+
import "../chunk-K6S7R6LU.mjs";
|
10
11
|
import "../chunk-HHJFKKE7.mjs";
|
11
12
|
import "../chunk-NWBLJ3W3.mjs";
|
12
|
-
import "../chunk-
|
13
|
-
import "../chunk-QPNYGFTI.mjs";
|
13
|
+
import "../chunk-YJ32RSH2.mjs";
|
14
14
|
import "../chunk-7ZCOFATU.mjs";
|
15
15
|
import "../chunk-FWCSY2DS.mjs";
|
16
16
|
export {
|
package/dist/hooks/index.d.mts
CHANGED
@@ -37,8 +37,9 @@ interface MyReactQueryProps<IRes, IBody> {
|
|
37
37
|
queryKey: QueryKey;
|
38
38
|
axiosFn: () => Promise<AxiosResponse<MyApiResponse<IRes>, IBody>>;
|
39
39
|
options?: Partial<UseQueryOptions<IRes, Error>>;
|
40
|
+
mockData?: IRes[];
|
40
41
|
}
|
41
|
-
declare function useMyReactQuery<IRes, IBody>({ queryKey, axiosFn, options }: MyReactQueryProps<IRes, IBody>): _tanstack_react_query.UseQueryResult<IRes, Error>;
|
42
|
+
declare function useMyReactQuery<IRes, IBody>({ queryKey, axiosFn, options, mockData }: MyReactQueryProps<IRes, IBody>): _tanstack_react_query.UseQueryResult<IRes, Error>;
|
42
43
|
|
43
44
|
declare function useQ_AQ_GetAQModule(): _tanstack_react_query.UseQueryResult<IAQModule, Error>;
|
44
45
|
|
package/dist/hooks/index.mjs
CHANGED
@@ -2,32 +2,32 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { I as IBaseEntity } from '../base-BprRafT5.mjs';
|
3
3
|
import { SelectProps } from '@mantine/core';
|
4
4
|
import { I as I_BasicAppShell_LinkItem } from '../BasicAppShell-CGKvZ5wV.mjs';
|
5
|
-
import { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
|
6
5
|
import { I as IEmailConfig } from '../EmailConfig-DvTXTBt3.mjs';
|
6
|
+
import { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
|
7
7
|
import { ReactNode } from 'react';
|
8
8
|
|
9
|
-
interface IProps
|
9
|
+
interface IProps {
|
10
10
|
isRequireSkillCenter?: boolean;
|
11
11
|
}
|
12
|
-
declare function F_accountManagement({ isRequireSkillCenter }: IProps
|
12
|
+
declare function F_accountManagement({ isRequireSkillCenter }: IProps): react_jsx_runtime.JSX.Element;
|
13
13
|
|
14
|
-
interface IUserSkillCenters$
|
14
|
+
interface IUserSkillCenters$1 extends IBaseEntity {
|
15
15
|
userId?: number;
|
16
16
|
skillCenterId?: number;
|
17
17
|
}
|
18
|
-
interface IRoles
|
18
|
+
interface IRoles extends IBaseEntity {
|
19
19
|
}
|
20
20
|
interface I_accountManagement_Read extends IBaseEntity {
|
21
21
|
userName?: string;
|
22
22
|
fullName?: string;
|
23
23
|
email?: string;
|
24
|
-
roles?: IRoles
|
25
|
-
userSkillCenters?: IUserSkillCenters$
|
24
|
+
roles?: IRoles[];
|
25
|
+
userSkillCenters?: IUserSkillCenters$1[];
|
26
26
|
}
|
27
27
|
declare function F_accountManagement_Read(): react_jsx_runtime.JSX.Element;
|
28
28
|
|
29
29
|
declare function F_accountManagement_ChangePermission({ user }: {
|
30
|
-
user
|
30
|
+
user?: I_accountManagement_Read;
|
31
31
|
}): react_jsx_runtime.JSX.Element;
|
32
32
|
|
33
33
|
declare function F_accountManagement_Create(): react_jsx_runtime.JSX.Element;
|
@@ -37,21 +37,21 @@ declare function F_accountManagement_Delete({ id, code }: {
|
|
37
37
|
code: string;
|
38
38
|
}): react_jsx_runtime.JSX.Element;
|
39
39
|
|
40
|
-
interface IUserSkillCenters
|
40
|
+
interface IUserSkillCenters extends IBaseEntity {
|
41
41
|
userId?: number;
|
42
42
|
skillCenterId?: number;
|
43
43
|
}
|
44
|
-
interface I$
|
44
|
+
interface I$l {
|
45
45
|
id?: number;
|
46
46
|
userName?: string;
|
47
47
|
code?: string;
|
48
48
|
fullName?: string;
|
49
49
|
email?: string;
|
50
50
|
phoneNumber?: string;
|
51
|
-
userSkillCenters?: IUserSkillCenters
|
51
|
+
userSkillCenters?: IUserSkillCenters[];
|
52
52
|
}
|
53
53
|
declare function F_accountManagement_Update({ user }: {
|
54
|
-
user: I$
|
54
|
+
user: I$l;
|
55
55
|
}): react_jsx_runtime.JSX.Element;
|
56
56
|
|
57
57
|
declare function F_core12196({ FormTypeId }: {
|
@@ -100,11 +100,11 @@ interface IDocument$b {
|
|
100
100
|
ngayChinhSua?: Date;
|
101
101
|
nguoiChinhSua?: string;
|
102
102
|
}
|
103
|
-
interface I$
|
103
|
+
interface I$k extends IDocument$b {
|
104
104
|
file?: File;
|
105
105
|
}
|
106
106
|
declare function F_core12196_Update({ values, FormTypeId, }: {
|
107
|
-
values: I$
|
107
|
+
values: I$k;
|
108
108
|
FormTypeId: number;
|
109
109
|
}): react_jsx_runtime.JSX.Element;
|
110
110
|
|
@@ -150,11 +150,11 @@ interface IDocument$a {
|
|
150
150
|
ngayChinhSua?: Date;
|
151
151
|
nguoiChinhSua?: string;
|
152
152
|
}
|
153
|
-
interface I$
|
153
|
+
interface I$j extends IDocument$a {
|
154
154
|
file?: File;
|
155
155
|
}
|
156
156
|
declare function F_core16209_Update({ values }: {
|
157
|
-
values: I$
|
157
|
+
values: I$j;
|
158
158
|
}): react_jsx_runtime.JSX.Element;
|
159
159
|
|
160
160
|
declare function F_core18256(): react_jsx_runtime.JSX.Element;
|
@@ -181,13 +181,13 @@ interface ISelect extends SelectProps {
|
|
181
181
|
}
|
182
182
|
declare function F_core18256_Select({ documentTypeId, label, dataMapper, ...rest }: ISelect): react_jsx_runtime.JSX.Element | "Loading...";
|
183
183
|
|
184
|
-
interface I$
|
184
|
+
interface I$i {
|
185
185
|
id?: number;
|
186
186
|
name?: string;
|
187
187
|
code?: string;
|
188
188
|
}
|
189
189
|
declare function F_core18256_Update({ values }: {
|
190
|
-
values: I$
|
190
|
+
values: I$i;
|
191
191
|
}): react_jsx_runtime.JSX.Element;
|
192
192
|
|
193
193
|
declare function F_core26965({ RegulationsTypeId }: {
|
@@ -232,11 +232,11 @@ interface IDocument$9 {
|
|
232
232
|
ngayChinhSua?: Date;
|
233
233
|
nguoiChinhSua?: string;
|
234
234
|
}
|
235
|
-
interface I$
|
235
|
+
interface I$h extends IDocument$9 {
|
236
236
|
file?: File;
|
237
237
|
}
|
238
238
|
declare function F_core26965_Update({ values, RegulationsTypeId, }: {
|
239
|
-
values: I$
|
239
|
+
values: I$h;
|
240
240
|
RegulationsTypeId: number;
|
241
241
|
}): react_jsx_runtime.JSX.Element;
|
242
242
|
|
@@ -286,11 +286,11 @@ interface IDocument$8 {
|
|
286
286
|
ngayChinhSua?: Date;
|
287
287
|
nguoiChinhSua?: string;
|
288
288
|
}
|
289
|
-
interface I$
|
289
|
+
interface I$g extends IDocument$8 {
|
290
290
|
file?: File;
|
291
291
|
}
|
292
292
|
declare function F_core27311_Update({ values, WorkflowTypeId, }: {
|
293
|
-
values: I$
|
293
|
+
values: I$g;
|
294
294
|
WorkflowTypeId: number;
|
295
295
|
}): react_jsx_runtime.JSX.Element;
|
296
296
|
|
@@ -356,11 +356,11 @@ interface IDocument$7 {
|
|
356
356
|
ngayChinhSua?: Date;
|
357
357
|
nguoiChinhSua?: string;
|
358
358
|
}
|
359
|
-
interface I$
|
359
|
+
interface I$f extends IDocument$7 {
|
360
360
|
file?: File;
|
361
361
|
}
|
362
362
|
declare function F_core40207_Update({ values }: {
|
363
|
-
values: I$
|
363
|
+
values: I$f;
|
364
364
|
}): react_jsx_runtime.JSX.Element;
|
365
365
|
|
366
366
|
declare function F_core47643(): react_jsx_runtime.JSX.Element;
|
@@ -369,36 +369,17 @@ declare function F_core47643_Delete({ values }: {
|
|
369
369
|
values: IBaseEntity;
|
370
370
|
}): react_jsx_runtime.JSX.Element;
|
371
371
|
|
372
|
-
interface I$
|
372
|
+
interface I$e {
|
373
373
|
id?: number;
|
374
374
|
code?: string;
|
375
375
|
name?: string;
|
376
376
|
}
|
377
377
|
declare function F_core47643_Form({ values }: {
|
378
|
-
values?: I$
|
378
|
+
values?: I$e;
|
379
379
|
}): react_jsx_runtime.JSX.Element;
|
380
380
|
|
381
381
|
declare function F_core47643_Read(): react_jsx_runtime.JSX.Element | "Có lỗi xảy ra!" | "Đang tải dữ liệu...";
|
382
382
|
|
383
|
-
declare function F_core60524({ AQModuleId }: {
|
384
|
-
AQModuleId: number;
|
385
|
-
}): react_jsx_runtime.JSX.Element;
|
386
|
-
|
387
|
-
interface I_core60524_AQModule extends IAQModule {
|
388
|
-
faviconFile?: File;
|
389
|
-
logoFile?: File;
|
390
|
-
}
|
391
|
-
|
392
|
-
interface I$e {
|
393
|
-
AQModuleId?: number;
|
394
|
-
}
|
395
|
-
declare function useS_core60524(): {
|
396
|
-
state: I$e;
|
397
|
-
setState: (newState: I$e) => void;
|
398
|
-
setProperty: <K extends "AQModuleId">(key: K, value: I$e[K]) => void;
|
399
|
-
resetState: () => void;
|
400
|
-
};
|
401
|
-
|
402
383
|
declare function F_core64229(): react_jsx_runtime.JSX.Element;
|
403
384
|
|
404
385
|
declare function F_core64229_Delete({ values }: {
|
@@ -423,54 +404,6 @@ declare function F_core64229_Read({ emailModule }: {
|
|
423
404
|
})[];
|
424
405
|
}): react_jsx_runtime.JSX.Element | "Đang tải";
|
425
406
|
|
426
|
-
interface IProps {
|
427
|
-
isRequireSkillCenter?: boolean;
|
428
|
-
}
|
429
|
-
declare function F_core71678({ isRequireSkillCenter }: IProps): react_jsx_runtime.JSX.Element;
|
430
|
-
|
431
|
-
interface IUserSkillCenters$1 extends IBaseEntity {
|
432
|
-
userId?: number;
|
433
|
-
skillCenterId?: number;
|
434
|
-
}
|
435
|
-
interface IRoles extends IBaseEntity {
|
436
|
-
}
|
437
|
-
interface I_core71678_Read extends IBaseEntity {
|
438
|
-
userName?: string;
|
439
|
-
fullName?: string;
|
440
|
-
email?: string;
|
441
|
-
roles?: IRoles[];
|
442
|
-
userSkillCenters?: IUserSkillCenters$1[];
|
443
|
-
}
|
444
|
-
declare function F_core71678_Read(): react_jsx_runtime.JSX.Element;
|
445
|
-
|
446
|
-
declare function F_core71678_ChangePermission({ user }: {
|
447
|
-
user: I_core71678_Read;
|
448
|
-
}): react_jsx_runtime.JSX.Element;
|
449
|
-
|
450
|
-
declare function F_core71678_Create(): react_jsx_runtime.JSX.Element;
|
451
|
-
|
452
|
-
declare function F_core71678_Delete({ id, code }: {
|
453
|
-
id: number;
|
454
|
-
code: string;
|
455
|
-
}): react_jsx_runtime.JSX.Element;
|
456
|
-
|
457
|
-
interface IUserSkillCenters extends IBaseEntity {
|
458
|
-
userId?: number;
|
459
|
-
skillCenterId?: number;
|
460
|
-
}
|
461
|
-
interface I$c {
|
462
|
-
id?: number;
|
463
|
-
userName?: string;
|
464
|
-
code?: string;
|
465
|
-
fullName?: string;
|
466
|
-
email?: string;
|
467
|
-
phoneNumber?: string;
|
468
|
-
userSkillCenters?: IUserSkillCenters[];
|
469
|
-
}
|
470
|
-
declare function F_core71678_Update({ user }: {
|
471
|
-
user: I$c;
|
472
|
-
}): react_jsx_runtime.JSX.Element;
|
473
|
-
|
474
407
|
declare function F_core76318({ SecurityTypeId }: {
|
475
408
|
SecurityTypeId: number;
|
476
409
|
}): react_jsx_runtime.JSX.Element;
|
@@ -513,11 +446,11 @@ interface IDocument$6 {
|
|
513
446
|
ngayChinhSua?: Date;
|
514
447
|
nguoiChinhSua?: string;
|
515
448
|
}
|
516
|
-
interface I$
|
449
|
+
interface I$c extends IDocument$6 {
|
517
450
|
file?: File;
|
518
451
|
}
|
519
452
|
declare function F_core76318_Update({ values }: {
|
520
|
-
values: I$
|
453
|
+
values: I$c;
|
521
454
|
}): react_jsx_runtime.JSX.Element;
|
522
455
|
|
523
456
|
declare function F_core83092({ menuData }: {
|
@@ -541,7 +474,7 @@ interface I_core83092_RolePermission {
|
|
541
474
|
isPrint?: boolean;
|
542
475
|
isExport?: boolean;
|
543
476
|
}
|
544
|
-
interface I$
|
477
|
+
interface I$b {
|
545
478
|
roleId?: number;
|
546
479
|
rolePermissions?: I_core83092_RolePermission[];
|
547
480
|
}
|
@@ -550,9 +483,9 @@ declare function useS_core83092(): {
|
|
550
483
|
findByPageId: (pageId: number) => I_core83092_RolePermission | undefined;
|
551
484
|
updatePermission: (pageId: number, updatedPermission: Partial<I_core83092_RolePermission>) => void;
|
552
485
|
isAllPermission: (field: keyof I_core83092_RolePermission) => boolean;
|
553
|
-
state: I$
|
554
|
-
setState: (newState: I$
|
555
|
-
setProperty: <K extends keyof I$
|
486
|
+
state: I$b;
|
487
|
+
setState: (newState: I$b) => void;
|
488
|
+
setProperty: <K extends keyof I$b>(key: K, value: I$b[K]) => void;
|
556
489
|
resetState: () => void;
|
557
490
|
};
|
558
491
|
declare function utils_core83092_mergePage(arr1: I_core83092_RolePermission[], arr2: I_core83092_RolePermission[]): I_core83092_RolePermission[];
|
@@ -603,14 +536,33 @@ interface IDocument$5 {
|
|
603
536
|
ngayChinhSua?: Date;
|
604
537
|
nguoiChinhSua?: string;
|
605
538
|
}
|
606
|
-
interface I$
|
539
|
+
interface I$a extends IDocument$5 {
|
607
540
|
file?: File;
|
608
541
|
}
|
609
542
|
declare function F_formTemplateDocs_Update({ values, FormTypeId, }: {
|
610
|
-
values: I$
|
543
|
+
values: I$a;
|
611
544
|
FormTypeId: number;
|
612
545
|
}): react_jsx_runtime.JSX.Element;
|
613
546
|
|
547
|
+
declare function F_moduleConfig({ AQModuleId }: {
|
548
|
+
AQModuleId: number;
|
549
|
+
}): react_jsx_runtime.JSX.Element;
|
550
|
+
|
551
|
+
interface I_moduleConfig_AQModule extends IAQModule {
|
552
|
+
faviconFile?: File;
|
553
|
+
logoFile?: File;
|
554
|
+
}
|
555
|
+
|
556
|
+
interface I$9 {
|
557
|
+
AQModuleId?: number;
|
558
|
+
}
|
559
|
+
declare function useS_moduleConfig(): {
|
560
|
+
state: I$9;
|
561
|
+
setState: (newState: I$9) => void;
|
562
|
+
setProperty: <K extends "AQModuleId">(key: K, value: I$9[K]) => void;
|
563
|
+
resetState: () => void;
|
564
|
+
};
|
565
|
+
|
614
566
|
declare function F_organizationPolicyDocs({ RegulationsTypeId }: {
|
615
567
|
RegulationsTypeId: number;
|
616
568
|
}): react_jsx_runtime.JSX.Element;
|
@@ -678,7 +630,7 @@ declare function F_roleCatalog_Form({ values }: {
|
|
678
630
|
values?: I$7;
|
679
631
|
}): react_jsx_runtime.JSX.Element;
|
680
632
|
|
681
|
-
declare function F_roleCatalog_Read(): react_jsx_runtime.JSX.Element
|
633
|
+
declare function F_roleCatalog_Read(): react_jsx_runtime.JSX.Element;
|
682
634
|
|
683
635
|
declare function F_securityPolicyDocs({ SecurityTypeId }: {
|
684
636
|
SecurityTypeId: number;
|
@@ -920,4 +872,4 @@ interface I {
|
|
920
872
|
}
|
921
873
|
declare function F_authenticate_Login({ header, redirectUrlAfterLogin, additionalActions, backgroundImage, onSuccess, showLoginButton, showSaveLogin, showForgotPassword }: I): react_jsx_runtime.JSX.Element;
|
922
874
|
|
923
|
-
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_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,
|
875
|
+
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_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_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_Read, 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_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, type I_accountManagement_Read, type I_core38677_User, type I_core83092_RolePermission, type I_moduleConfig_AQModule, useS_authenticate, useS_core83092, useS_moduleConfig, utils_core83092_mergePage };
|