aq-fe-framework 0.1.593 → 0.1.596

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.
@@ -1,18 +1,18 @@
1
- import {
2
- enum_daysOfWeek
3
- } from "./chunk-K6S7R6LU.mjs";
4
1
  import {
5
2
  MyDataTable,
6
3
  MyFieldset,
7
4
  MyFlexColumn,
8
5
  MyFlexRow
9
- } from "./chunk-TVESDOLY.mjs";
6
+ } from "./chunk-VGZ2UE3K.mjs";
10
7
  import {
11
8
  useStore_Permission
12
9
  } from "./chunk-PW6WTEVB.mjs";
13
10
  import {
14
11
  const_object_colors
15
12
  } from "./chunk-OMJJAHOC.mjs";
13
+ import {
14
+ enum_daysOfWeek
15
+ } from "./chunk-K6S7R6LU.mjs";
16
16
  import {
17
17
  baseAxios_default,
18
18
  useMyReactMutation,
@@ -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
- Image2.extend({
807
- addAttributes() {
808
- return {
809
- src: {
810
- default: null
811
- },
812
- alt: {
813
- default: null
814
- }
815
- };
816
- },
817
- parseHTML() {
818
- return [
819
- {
820
- tag: "img[src]"
821
- }
822
- ];
823
- },
824
- renderHTML({ HTMLAttributes }) {
825
- return ["img", HTMLAttributes];
826
- }
827
- }),
828
- TextAlign.configure({ types: ["heading", "paragraph"] }),
829
- FileHandler.configure({
830
- allowedMimeTypes: ["image/png", "image/jpeg", "image/gif", "image/webp"],
831
- onDrop: (currentEditor, files, pos) => {
832
- files.forEach((file) => {
833
- const fileReader = new FileReader();
834
- fileReader.readAsDataURL(file);
835
- fileReader.onload = () => {
836
- currentEditor.chain().insertContentAt(pos, {
837
- type: "image",
838
- attrs: {
839
- src: fileReader.result
840
- }
841
- }).focus().run();
842
- };
843
- });
844
- },
845
- onPaste: (currentEditor, files, htmlContent) => {
846
- files.forEach((file) => {
847
- if (htmlContent) {
848
- console.log(htmlContent);
849
- return false;
850
- }
851
- const fileReader = new FileReader();
852
- fileReader.readAsDataURL(file);
853
- fileReader.onload = () => {
854
- currentEditor.chain().insertContentAt(currentEditor.state.selection.anchor, {
855
- type: "image",
856
- attrs: {
857
- src: fileReader.result
858
- }
859
- }).focus().run();
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 }) => {
@@ -7007,12 +7007,13 @@ import { NumberInput as NumberInput2 } from "@mantine/core";
7007
7007
  import { IconNumbers } from "@tabler/icons-react";
7008
7008
  import { jsx as jsx48 } from "react/jsx-runtime";
7009
7009
  function MyNumberInput(_a) {
7010
- var _b = _a, { minValue, label } = _b, rest = __objRest(_b, ["minValue", "label"]);
7010
+ var _b = _a, { minValue, maxValue, label } = _b, rest = __objRest(_b, ["minValue", "maxValue", "label"]);
7011
7011
  return /* @__PURE__ */ jsx48(
7012
7012
  NumberInput2,
7013
7013
  __spreadValues({
7014
7014
  label,
7015
7015
  min: minValue ? minValue : 0,
7016
+ max: maxValue ? maxValue : 100,
7016
7017
  placeholder: label ? `Nh\u1EADp ${label == null ? void 0 : label.toLowerCase()}` : "",
7017
7018
  rightSection: /* @__PURE__ */ jsx48(IconNumbers, {})
7018
7019
  }, rest)
@@ -7457,17 +7458,6 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect })
7457
7458
  useEffect10(() => {
7458
7459
  var _a;
7459
7460
  const currentItem = allChildItems.find((item) => pathname.includes(item.link));
7460
- if (isDev) {
7461
- permissionStore.setProperty("currentPermissionPage", {
7462
- isCreate: true,
7463
- isRead: true,
7464
- isDelete: true,
7465
- isExport: true,
7466
- isPrint: true,
7467
- isUpdate: true,
7468
- pageId: currentItem == null ? void 0 : currentItem.pageId
7469
- });
7470
- }
7471
7461
  const currentPermission = (_a = permissionStore.state.permission) == null ? void 0 : _a.find((item) => item.pageId == (currentItem == null ? void 0 : currentItem.pageId));
7472
7462
  setIsLoadingPermission(false);
7473
7463
  if (!currentItem) return;
@@ -7480,20 +7470,56 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect })
7480
7470
  appShellStore.setProperty("status", currentItem.status);
7481
7471
  setIsAccessible(currentItem.pageId ? readablePageIds.has(currentItem.pageId) : false);
7482
7472
  permissionStore.setProperty("currentPermissionPage", currentPermission);
7473
+ if (isDev) {
7474
+ permissionStore.setProperty("currentPermissionPage", {
7475
+ isCreate: true,
7476
+ isRead: true,
7477
+ isDelete: true,
7478
+ isExport: true,
7479
+ isPrint: true,
7480
+ isUpdate: true,
7481
+ pageId: currentItem == null ? void 0 : currentItem.pageId
7482
+ });
7483
+ }
7483
7484
  }, [pathname, allChildItems, filteredMenu, readablePageIds]);
7484
7485
  const renderHeader = () => /* @__PURE__ */ jsx53(AppShell.Header, { children: media ? /* @__PURE__ */ jsxs30(Group16, { h: "100%", px: "md", justify: "space-between", children: [
7485
7486
  /* @__PURE__ */ jsxs30(Group16, { h: "100%", children: [
7486
7487
  /* @__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
7488
  /* @__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
7489
  ] }),
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}` }) }),
7490
+ /* @__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
7491
  /* @__PURE__ */ jsxs30(Group16, { children: [
7491
7492
  extraTopRight,
7492
7493
  /* @__PURE__ */ jsx53(MySwitchTheme, {})
7493
7494
  ] })
7494
7495
  ] }) : /* @__PURE__ */ jsxs30(Group16, { h: "100%", px: "md", justify: "space-between", children: [
7495
7496
  /* @__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(Text15, { c: "green", fw: "bold", size: "sm", children: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}` }),
7497
+ /* @__PURE__ */ jsx53(
7498
+ Tooltip5,
7499
+ {
7500
+ label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`,
7501
+ withArrow: true,
7502
+ children: /* @__PURE__ */ jsx53(
7503
+ Text15,
7504
+ {
7505
+ c: "green",
7506
+ fw: "bold",
7507
+ size: "sm",
7508
+ style: {
7509
+ maxWidth: 200,
7510
+ // set a max width (px, rem, or %)
7511
+ whiteSpace: "nowrap",
7512
+ // keep text on one line
7513
+ overflow: "hidden",
7514
+ // hide overflow
7515
+ textOverflow: "ellipsis"
7516
+ // show ...
7517
+ },
7518
+ children: title || `${appShellStore.state.moduleCode}`
7519
+ }
7520
+ )
7521
+ }
7522
+ ),
7497
7523
  /* @__PURE__ */ jsxs30(Group16, { children: [
7498
7524
  extraTopRight,
7499
7525
  /* @__PURE__ */ jsx53(MySwitchTheme, {})
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  MyButton
3
- } from "./chunk-TVESDOLY.mjs";
3
+ } from "./chunk-VGZ2UE3K.mjs";
4
4
  import {
5
5
  __objRest,
6
6
  __spreadProps,
@@ -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,7 +68,7 @@ import {
68
68
  useHeaderMegaMenuStore,
69
69
  useS_ButtonImport,
70
70
  useStore_BasicAppShell
71
- } from "../chunk-TVESDOLY.mjs";
71
+ } from "../chunk-VGZ2UE3K.mjs";
72
72
  import "../chunk-PW6WTEVB.mjs";
73
73
  import "../chunk-5COIJ2CE.mjs";
74
74
  import "../chunk-EWDS5IOF.mjs";
@@ -22,17 +22,17 @@ import {
22
22
  MyStatsCard,
23
23
  MyTextInput,
24
24
  MyWeeklySessionSchedulerPicker
25
- } from "../chunk-5NGEH244.mjs";
25
+ } from "../chunk-TM5KDO5S.mjs";
26
26
  import "../chunk-GFEMKKFH.mjs";
27
- import "../chunk-K6S7R6LU.mjs";
28
27
  import {
29
28
  MyModalDelete
30
- } from "../chunk-MWDKPP74.mjs";
31
- import "../chunk-TVESDOLY.mjs";
29
+ } from "../chunk-YXBTBZCE.mjs";
30
+ import "../chunk-VGZ2UE3K.mjs";
32
31
  import "../chunk-PW6WTEVB.mjs";
33
32
  import "../chunk-5COIJ2CE.mjs";
34
33
  import "../chunk-EWDS5IOF.mjs";
35
34
  import "../chunk-OMJJAHOC.mjs";
35
+ import "../chunk-K6S7R6LU.mjs";
36
36
  import "../chunk-5NR2OP5O.mjs";
37
37
  import "../chunk-WZ6PXGGC.mjs";
38
38
  import "../chunk-7ZCOFATU.mjs";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  MyModalDelete
3
- } from "../chunk-MWDKPP74.mjs";
4
- import "../chunk-TVESDOLY.mjs";
3
+ } from "../chunk-YXBTBZCE.mjs";
4
+ import "../chunk-VGZ2UE3K.mjs";
5
5
  import "../chunk-PW6WTEVB.mjs";
6
6
  import "../chunk-5COIJ2CE.mjs";
7
7
  import "../chunk-EWDS5IOF.mjs";
@@ -50,7 +50,7 @@ interface IUserSkillCenters extends IBaseEntity {
50
50
  userId?: number;
51
51
  skillCenterId?: number;
52
52
  }
53
- interface I$k {
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$k;
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$j extends IDocument$b {
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$j;
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$i extends IDocument$a {
162
+ interface I$j extends IDocument$a {
163
163
  file?: File;
164
164
  }
165
165
  declare function F_core16209_Update({ values }: {
166
- values: I$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$h {
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$h;
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$g extends IDocument$9 {
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$g;
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$f extends IDocument$8 {
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$f;
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$e extends IDocument$7 {
356
+ interface I$f extends IDocument$7 {
357
357
  file?: File;
358
358
  }
359
359
  declare function F_core40207_Update({ values }: {
360
- values: I$e;
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$d {
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$d;
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$c extends IEmailConfig {
386
+ interface I$d extends IEmailConfig {
387
387
  password?: string;
388
388
  }
389
389
  declare function F_core64229_Form({ values, emailModule }: {
390
- values?: I$c;
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$b extends IDocument$6 {
446
+ interface I$c extends IDocument$6 {
447
447
  file?: File;
448
448
  }
449
449
  declare function F_core76318_Update({ values }: {
450
- values: I$b;
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$a {
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$a;
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$9 extends IDocument$5 {
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$9;
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$8 extends IEmailConfig {
542
+ interface I$9 extends IEmailConfig {
543
543
  password?: string;
544
544
  }
545
545
  declare function F_mailConfig_CreateUpdate({ values, emailModule }: {
546
- values?: I$8;
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 };