aq-fe-framework 0.1.313 → 0.1.315
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-JIPPFPV6.mjs → chunk-BSQT2XIP.mjs} +1 -1
- package/dist/{chunk-TWAQUUQZ.mjs → chunk-FUHOV7NB.mjs} +35 -6
- package/dist/{chunk-QPPD4PQX.mjs → chunk-VECMRDKG.mjs} +1 -0
- package/dist/{chunk-QPNYGFTI.mjs → chunk-YJ32RSH2.mjs} +7 -2
- package/dist/components/index.mjs +4 -4
- package/dist/core/index.mjs +2 -2
- package/dist/hooks/index.d.mts +2 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.d.mts +33 -81
- package/dist/modules-features/index.mjs +584 -897
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import {
|
2
|
-
|
3
|
-
} from "./chunk-
|
2
|
+
utils_pdf_download
|
3
|
+
} from "./chunk-5U2JSHSJ.mjs";
|
4
4
|
import {
|
5
5
|
MyFlexColumn,
|
6
6
|
MyFlexRow
|
@@ -12,13 +12,13 @@ import {
|
|
12
12
|
baseAxios_default,
|
13
13
|
useMyReactMutation,
|
14
14
|
useQ_AQ_GetAQModule
|
15
|
-
} from "./chunk-
|
16
|
-
import {
|
17
|
-
utils_pdf_download
|
18
|
-
} from "./chunk-5U2JSHSJ.mjs";
|
15
|
+
} from "./chunk-YJ32RSH2.mjs";
|
19
16
|
import {
|
20
17
|
utils_notification_show
|
21
18
|
} from "./chunk-7ZCOFATU.mjs";
|
19
|
+
import {
|
20
|
+
createGenericStore
|
21
|
+
} from "./chunk-Y3YGC5IH.mjs";
|
22
22
|
import {
|
23
23
|
__objRest,
|
24
24
|
__spreadProps,
|
@@ -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({
|
@@ -289,6 +289,7 @@ var utils_time_getCurrentTimeString = () => {
|
|
289
289
|
return `${hours}:${minutes}:${seconds}`;
|
290
290
|
};
|
291
291
|
function utils_time_extractHourMinute(isoString) {
|
292
|
+
if (!isoString) return "";
|
292
293
|
const date = new Date(isoString);
|
293
294
|
const hours = String(date.getHours()).padStart(2, "0");
|
294
295
|
const minutes = String(date.getMinutes()).padStart(2, "0");
|
@@ -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,16 +64,16 @@ import {
|
|
64
64
|
useS_BasicAppShell,
|
65
65
|
useS_ButtonImport,
|
66
66
|
utils_layout_getItemsWithoutLinks
|
67
|
-
} from "../chunk-
|
68
|
-
import "../chunk-
|
67
|
+
} from "../chunk-FUHOV7NB.mjs";
|
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-
|
75
|
-
import "../chunk-5U2JSHSJ.mjs";
|
74
|
+
import "../chunk-YJ32RSH2.mjs";
|
76
75
|
import "../chunk-7ZCOFATU.mjs";
|
76
|
+
import "../chunk-Y3YGC5IH.mjs";
|
77
77
|
import "../chunk-FWCSY2DS.mjs";
|
78
78
|
export {
|
79
79
|
AQButtonCreateByImportFile,
|
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-BSQT2XIP.mjs";
|
10
10
|
import "../chunk-HHJFKKE7.mjs";
|
11
11
|
import "../chunk-NWBLJ3W3.mjs";
|
12
12
|
import "../chunk-K6S7R6LU.mjs";
|
13
|
-
import "../chunk-
|
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
@@ -6,28 +6,28 @@ import { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
|
|
6
6
|
import { I as IEmailConfig } from '../EmailConfig-DvTXTBt3.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,13 +369,13 @@ 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...";
|
@@ -389,13 +389,13 @@ interface I_core60524_AQModule extends IAQModule {
|
|
389
389
|
logoFile?: File;
|
390
390
|
}
|
391
391
|
|
392
|
-
interface I$
|
392
|
+
interface I$d {
|
393
393
|
AQModuleId?: number;
|
394
394
|
}
|
395
395
|
declare function useS_core60524(): {
|
396
|
-
state: I$
|
397
|
-
setState: (newState: I$
|
398
|
-
setProperty: <K extends "AQModuleId">(key: K, value: I$
|
396
|
+
state: I$d;
|
397
|
+
setState: (newState: I$d) => void;
|
398
|
+
setProperty: <K extends "AQModuleId">(key: K, value: I$d[K]) => void;
|
399
399
|
resetState: () => void;
|
400
400
|
};
|
401
401
|
|
@@ -405,11 +405,11 @@ declare function F_core64229_Delete({ values }: {
|
|
405
405
|
values: IBaseEntity;
|
406
406
|
}): react_jsx_runtime.JSX.Element;
|
407
407
|
|
408
|
-
interface I$
|
408
|
+
interface I$c extends IEmailConfig {
|
409
409
|
password?: string;
|
410
410
|
}
|
411
411
|
declare function F_core64229_Form({ values, emailModule }: {
|
412
|
-
values?: I$
|
412
|
+
values?: I$c;
|
413
413
|
emailModule: (string | {
|
414
414
|
value: string;
|
415
415
|
label: string;
|
@@ -423,54 +423,6 @@ declare function F_core64229_Read({ emailModule }: {
|
|
423
423
|
})[];
|
424
424
|
}): react_jsx_runtime.JSX.Element | "Đang tải";
|
425
425
|
|
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
426
|
declare function F_core76318({ SecurityTypeId }: {
|
475
427
|
SecurityTypeId: number;
|
476
428
|
}): 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, F_core60524, F_core64229, F_core64229_Delete, F_core64229_Form, F_core64229_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_core60524, 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_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_core60524_AQModule, type I_core83092_RolePermission, useS_authenticate, useS_core60524, useS_core83092, utils_core83092_mergePage };
|