aq-fe-framework 0.1.325 → 0.1.327

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.
@@ -2,6 +2,10 @@ import { I as IBaseEntity } from '../base-BprRafT5.mjs';
2
2
  export { I as IEmailConfig } from '../EmailConfig-DvTXTBt3.mjs';
3
3
  export { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
4
4
 
5
+ interface IPageContent extends IBaseEntity {
6
+ description?: string;
7
+ }
8
+
5
9
  interface IFile {
6
10
  fileName?: string | undefined;
7
11
  fileExtension?: string | undefined;
@@ -51,8 +55,4 @@ interface IUser extends IBaseEntity {
51
55
  email?: string;
52
56
  }
53
57
 
54
- interface IPageContent extends IBaseEntity {
55
- description?: string;
56
- }
57
-
58
58
  export { IBaseEntity, type IDocument, type IFile, type IPageContent, type IPagePermission, type IRole, type IUser };
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { I as I_BasicAppShell_LinkItem } from '../BasicAppShell-CGKvZ5wV.mjs';
3
3
  import { I as IBaseEntity } from '../base-BprRafT5.mjs';
4
- import { SelectProps } from '@mantine/core';
4
+ import { SelectProps, ButtonProps } from '@mantine/core';
5
5
  import { I as IEmailConfig } from '../EmailConfig-DvTXTBt3.mjs';
6
6
  import { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
7
7
  import { ReactNode } from 'react';
@@ -920,6 +920,7 @@ interface IData {
920
920
  userId?: number;
921
921
  userFullName?: string;
922
922
  token?: string;
923
+ roleIds?: number[];
923
924
  }
924
925
  interface IResponseData {
925
926
  data?: IData;
@@ -936,7 +937,8 @@ interface F_authenticate_Login_Props {
936
937
  showForgotPassword?: boolean;
937
938
  onSuccess?: (data?: IResponseData) => void;
938
939
  customSubmit?: (username?: string, password?: string) => void;
940
+ loginButtonProps?: ButtonProps;
939
941
  }
940
- declare function F_authenticate_Login({ header, redirectUrlAfterLogin, additionalActions, backgroundImage, onSuccess, showLoginButton, showSaveLogin, showForgotPassword, customSubmit }: F_authenticate_Login_Props): react_jsx_runtime.JSX.Element;
942
+ declare function F_authenticate_Login({ header, redirectUrlAfterLogin, additionalActions, backgroundImage, onSuccess, showLoginButton, showSaveLogin, showForgotPassword, customSubmit, loginButtonProps }: F_authenticate_Login_Props): react_jsx_runtime.JSX.Element;
941
943
 
942
944
  export { F_accessControl, F_accessControlLevel, F_accessControlLevel_ReadUser, F_accessControlLevel_Save, F_accessControlLevel_ViewMenuPermissions, F_accessControl_ReadUser, F_accessControl_Save, F_accessControl_ViewMenuPermissions, 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_Delete, F_mailConfig_Form, 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, type I_accessControl_RolePermission, type I_accountManagement_Read, type I_moduleConfig_AQModule, useS_accessControl, useS_authenticate, useS_moduleConfig, utils_accessControl_mergePage };
@@ -11,20 +11,12 @@ import {
11
11
  import {
12
12
  U0DateToDDMMYYYString
13
13
  } from "../chunk-I2XIN2R3.mjs";
14
- import {
15
- MyButton,
16
- MyDataTableSelectOne,
17
- MyTextInput
18
- } from "../chunk-HEW5D3R4.mjs";
19
- import {
20
- const_object_documentTypes
21
- } from "../chunk-BZMQOGL6.mjs";
22
14
  import {
23
15
  F_authenticate_Logout,
24
16
  MyActionIconDelete,
25
17
  MyActionIconUpdate,
26
18
  MyBoxesBackground,
27
- MyButton as MyButton2,
19
+ MyButton,
28
20
  MyButtonCreate,
29
21
  MyButtonModal,
30
22
  MyButtonViewPDF,
@@ -37,7 +29,7 @@ import {
37
29
  MyPageContent,
38
30
  MySelect,
39
31
  MyTab,
40
- MyTextInput as MyTextInput2,
32
+ MyTextInput,
41
33
  groupToTwoLevels,
42
34
  useS_authenticate,
43
35
  utils_layout_getItemsWithoutLinks
@@ -46,6 +38,14 @@ import {
46
38
  createGenericStore
47
39
  } from "../chunk-Y3YGC5IH.mjs";
48
40
  import "../chunk-5U2JSHSJ.mjs";
41
+ import {
42
+ const_object_documentTypes
43
+ } from "../chunk-BZMQOGL6.mjs";
44
+ import {
45
+ MyButton as MyButton2,
46
+ MyDataTableSelectOne,
47
+ MyTextInput as MyTextInput2
48
+ } from "../chunk-HEW5D3R4.mjs";
49
49
  import {
50
50
  MyDataTable,
51
51
  MyFlexColumn,
@@ -468,7 +468,7 @@ function F_accessControl_Save() {
468
468
  }
469
469
  disable[1](false);
470
470
  }, [store.state.rolePermissions]);
471
- return /* @__PURE__ */ jsx3(MyButton2, { disabled: disable[0], crudType: "save", onClick: handleSave });
471
+ return /* @__PURE__ */ jsx3(MyButton, { disabled: disable[0], crudType: "save", onClick: handleSave });
472
472
  }
473
473
 
474
474
  // src/modules-features/admin/core/accessControl/F_accessControl.tsx
@@ -833,7 +833,7 @@ function F_accessControlLevel_Save() {
833
833
  }
834
834
  disable[1](false);
835
835
  }, [store.state.rolePermissions]);
836
- return /* @__PURE__ */ jsx7(MyButton2, { disabled: disable[0], crudType: "save", onClick: handleSave });
836
+ return /* @__PURE__ */ jsx7(MyButton, { disabled: disable[0], crudType: "save", onClick: handleSave });
837
837
  }
838
838
 
839
839
  // src/modules-features/admin/core/accessControlLevel/F_accessControlLevel.tsx
@@ -1037,12 +1037,12 @@ function F_accountManagement_Create() {
1037
1037
  }));
1038
1038
  }
1039
1039
  return /* @__PURE__ */ jsxs6(MyButtonCreate, { form, onSubmit: handleSubmit, objectName: "ng\u01B0\u1EDDi d\xF9ng", children: [
1040
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "M\xE3 t\xE0i kho\u1EA3n" }, form.getInputProps("code"))),
1041
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "T\xEAn t\xE0i kho\u1EA3n" }, form.getInputProps("userName"))),
1042
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "M\u1EADt kh\u1EA9u" }, form.getInputProps("password"))),
1043
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "H\u1ECD v\xE0 t\xEAn" }, form.getInputProps("fullName"))),
1044
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "Email" }, form.getInputProps("email"))),
1045
- /* @__PURE__ */ jsx10(MyTextInput2, __spreadValues({ label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }, form.getInputProps("phoneNumber"))),
1040
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "M\xE3 t\xE0i kho\u1EA3n" }, form.getInputProps("code"))),
1041
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "T\xEAn t\xE0i kho\u1EA3n" }, form.getInputProps("userName"))),
1042
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "M\u1EADt kh\u1EA9u" }, form.getInputProps("password"))),
1043
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "H\u1ECD v\xE0 t\xEAn" }, form.getInputProps("fullName"))),
1044
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "Email" }, form.getInputProps("email"))),
1045
+ /* @__PURE__ */ jsx10(MyTextInput, __spreadValues({ label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }, form.getInputProps("phoneNumber"))),
1046
1046
  skillCenter_getAll_query.data && store.state.isRequireSkillCenter == true && /* @__PURE__ */ jsx10(
1047
1047
  MultiSelect,
1048
1048
  {
@@ -1121,11 +1121,11 @@ function F_accountManagement_Update({ user }) {
1121
1121
  })
1122
1122
  );
1123
1123
  }, children: /* @__PURE__ */ jsxs7(MyFlexColumn, { children: [
1124
- /* @__PURE__ */ jsx12(MyTextInput2, __spreadValues({ disabled: true, label: "M\xE3 t\xE0i kho\u1EA3n" }, form.getInputProps("code"))),
1125
- /* @__PURE__ */ jsx12(MyTextInput2, __spreadValues({ disabled: true, label: "T\xEAn t\xE0i kho\u1EA3n" }, form.getInputProps("userName"))),
1126
- /* @__PURE__ */ jsx12(MyTextInput2, __spreadValues({ label: "H\u1ECD v\xE0 t\xEAn" }, form.getInputProps("fullName"))),
1127
- /* @__PURE__ */ jsx12(MyTextInput2, __spreadValues({ label: "Email" }, form.getInputProps("email"))),
1128
- /* @__PURE__ */ jsx12(MyTextInput2, __spreadValues({ label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }, form.getInputProps("phoneNumber"))),
1124
+ /* @__PURE__ */ jsx12(MyTextInput, __spreadValues({ disabled: true, label: "M\xE3 t\xE0i kho\u1EA3n" }, form.getInputProps("code"))),
1125
+ /* @__PURE__ */ jsx12(MyTextInput, __spreadValues({ disabled: true, label: "T\xEAn t\xE0i kho\u1EA3n" }, form.getInputProps("userName"))),
1126
+ /* @__PURE__ */ jsx12(MyTextInput, __spreadValues({ label: "H\u1ECD v\xE0 t\xEAn" }, form.getInputProps("fullName"))),
1127
+ /* @__PURE__ */ jsx12(MyTextInput, __spreadValues({ label: "Email" }, form.getInputProps("email"))),
1128
+ /* @__PURE__ */ jsx12(MyTextInput, __spreadValues({ label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }, form.getInputProps("phoneNumber"))),
1129
1129
  skillCenter_getAll_query.data && store.state.isRequireSkillCenter == true && /* @__PURE__ */ jsx12(
1130
1130
  MultiSelect2,
1131
1131
  {
@@ -1383,7 +1383,7 @@ function F_core12196_Update({
1383
1383
  },
1384
1384
  children: [
1385
1385
  /* @__PURE__ */ jsx17(
1386
- MyTextInput2,
1386
+ MyTextInput,
1387
1387
  __spreadValues({
1388
1388
  withAsterisk: true,
1389
1389
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -1397,7 +1397,7 @@ function F_core12196_Update({
1397
1397
  }, form.getInputProps("promulgateDate"))
1398
1398
  ),
1399
1399
  /* @__PURE__ */ jsx17(
1400
- MyTextInput2,
1400
+ MyTextInput,
1401
1401
  __spreadValues({
1402
1402
  withAsterisk: true,
1403
1403
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -1566,7 +1566,7 @@ function F_core12196_Create({ FormTypeId }) {
1566
1566
  },
1567
1567
  children: [
1568
1568
  /* @__PURE__ */ jsx19(
1569
- MyTextInput2,
1569
+ MyTextInput,
1570
1570
  __spreadValues({
1571
1571
  withAsterisk: true,
1572
1572
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -1580,7 +1580,7 @@ function F_core12196_Create({ FormTypeId }) {
1580
1580
  }, form.getInputProps("promulgateDate"))
1581
1581
  ),
1582
1582
  /* @__PURE__ */ jsx19(
1583
- MyTextInput2,
1583
+ MyTextInput,
1584
1584
  __spreadValues({
1585
1585
  withAsterisk: true,
1586
1586
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -1668,20 +1668,20 @@ function F_core16209_Create({
1668
1668
  }, form.getInputProps("meetingDate"))
1669
1669
  ),
1670
1670
  /* @__PURE__ */ jsx21(
1671
- MyTextInput2,
1671
+ MyTextInput,
1672
1672
  __spreadValues({
1673
1673
  withAsterisk: true,
1674
1674
  label: "\u0110\u01A1n v\u1ECB y\xEAu c\u1EA7u"
1675
1675
  }, form.getInputProps("departmentName"))
1676
1676
  ),
1677
1677
  /* @__PURE__ */ jsx21(
1678
- MyTextInput2,
1678
+ MyTextInput,
1679
1679
  __spreadValues({
1680
1680
  withAsterisk: true,
1681
1681
  label: "N\u1ED9i dung c\u1EA3i ti\u1EBFn"
1682
1682
  }, form.getInputProps("description"))
1683
1683
  ),
1684
- /* @__PURE__ */ jsx21(MyTextInput2, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
1684
+ /* @__PURE__ */ jsx21(MyTextInput, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
1685
1685
  /* @__PURE__ */ jsx21(
1686
1686
  MyDateInput,
1687
1687
  __spreadValues({
@@ -1769,20 +1769,20 @@ function F_core16209_Update({ values }) {
1769
1769
  }, form.getInputProps("meetingDate"))
1770
1770
  ),
1771
1771
  /* @__PURE__ */ jsx23(
1772
- MyTextInput2,
1772
+ MyTextInput,
1773
1773
  __spreadValues({
1774
1774
  withAsterisk: true,
1775
1775
  label: "\u0110\u01A1n v\u1ECB y\xEAu c\u1EA7u"
1776
1776
  }, form.getInputProps("departmentName"))
1777
1777
  ),
1778
1778
  /* @__PURE__ */ jsx23(
1779
- MyTextInput2,
1779
+ MyTextInput,
1780
1780
  __spreadValues({
1781
1781
  withAsterisk: true,
1782
1782
  label: "N\u1ED9i dung c\u1EA3i ti\u1EBFn"
1783
1783
  }, form.getInputProps("description"))
1784
1784
  ),
1785
- /* @__PURE__ */ jsx23(MyTextInput2, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
1785
+ /* @__PURE__ */ jsx23(MyTextInput, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
1786
1786
  /* @__PURE__ */ jsx23(
1787
1787
  MyDateInput,
1788
1788
  __spreadValues({
@@ -1898,8 +1898,8 @@ function F_core18256_Create({ documentType }) {
1898
1898
  }
1899
1899
  });
1900
1900
  return /* @__PURE__ */ jsxs16(MyButtonCreate, { objectName: "Lo\u1EA1i v\u0103n b\u1EA3n", form, onSubmit: (values) => baseAxios_default.post("/DocumentAttribute/Create", values), children: [
1901
- /* @__PURE__ */ jsx25(MyTextInput2, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
1902
- /* @__PURE__ */ jsx25(MyTextInput2, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
1901
+ /* @__PURE__ */ jsx25(MyTextInput, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
1902
+ /* @__PURE__ */ jsx25(MyTextInput, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
1903
1903
  ] });
1904
1904
  }
1905
1905
 
@@ -1922,8 +1922,8 @@ function F_core18256_Update({ values }) {
1922
1922
  initialValues: values
1923
1923
  });
1924
1924
  return /* @__PURE__ */ jsxs17(MyActionIconUpdate, { form, onSubmit: async (values2) => await baseAxios_default.post("/DocumentAttribute/Update", values2), children: [
1925
- /* @__PURE__ */ jsx27(MyTextInput2, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
1926
- /* @__PURE__ */ jsx27(MyTextInput2, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
1925
+ /* @__PURE__ */ jsx27(MyTextInput, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
1926
+ /* @__PURE__ */ jsx27(MyTextInput, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
1927
1927
  ] });
1928
1928
  }
1929
1929
 
@@ -2017,7 +2017,7 @@ function F_core26965_Create({
2017
2017
  },
2018
2018
  children: [
2019
2019
  /* @__PURE__ */ jsx30(
2020
- MyTextInput2,
2020
+ MyTextInput,
2021
2021
  __spreadValues({
2022
2022
  withAsterisk: true,
2023
2023
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -2031,7 +2031,7 @@ function F_core26965_Create({
2031
2031
  }, form.getInputProps("promulgateDate"))
2032
2032
  ),
2033
2033
  /* @__PURE__ */ jsx30(
2034
- MyTextInput2,
2034
+ MyTextInput,
2035
2035
  __spreadValues({
2036
2036
  withAsterisk: true,
2037
2037
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2119,7 +2119,7 @@ function F_core26965_Update({
2119
2119
  },
2120
2120
  children: [
2121
2121
  /* @__PURE__ */ jsx32(
2122
- MyTextInput2,
2122
+ MyTextInput,
2123
2123
  __spreadValues({
2124
2124
  withAsterisk: true,
2125
2125
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -2133,7 +2133,7 @@ function F_core26965_Update({
2133
2133
  }, form.getInputProps("promulgateDate"))
2134
2134
  ),
2135
2135
  /* @__PURE__ */ jsx32(
2136
- MyTextInput2,
2136
+ MyTextInput,
2137
2137
  __spreadValues({
2138
2138
  withAsterisk: true,
2139
2139
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2314,7 +2314,7 @@ function F_core27311_Create({
2314
2314
  },
2315
2315
  children: [
2316
2316
  /* @__PURE__ */ jsx35(
2317
- MyTextInput2,
2317
+ MyTextInput,
2318
2318
  __spreadValues({
2319
2319
  withAsterisk: true,
2320
2320
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -2328,7 +2328,7 @@ function F_core27311_Create({
2328
2328
  }, form.getInputProps("promulgateDate"))
2329
2329
  ),
2330
2330
  /* @__PURE__ */ jsx35(
2331
- MyTextInput2,
2331
+ MyTextInput,
2332
2332
  __spreadValues({
2333
2333
  withAsterisk: true,
2334
2334
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2416,7 +2416,7 @@ function F_core27311_Update({
2416
2416
  },
2417
2417
  children: [
2418
2418
  /* @__PURE__ */ jsx37(
2419
- MyTextInput2,
2419
+ MyTextInput,
2420
2420
  __spreadValues({
2421
2421
  withAsterisk: true,
2422
2422
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -2430,7 +2430,7 @@ function F_core27311_Update({
2430
2430
  }, form.getInputProps("promulgateDate"))
2431
2431
  ),
2432
2432
  /* @__PURE__ */ jsx37(
2433
- MyTextInput2,
2433
+ MyTextInput,
2434
2434
  __spreadValues({
2435
2435
  withAsterisk: true,
2436
2436
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2591,17 +2591,17 @@ import { jsx as jsx40, jsxs as jsxs28 } from "react/jsx-runtime";
2591
2591
  function F_core35923() {
2592
2592
  return /* @__PURE__ */ jsxs28(MyFieldset, { title: "C\u1EADp nh\u1EADt th\xF4ng tin \u0111\u01A1n v\u1ECB ch\u1EE7 qu\u1EA3n", children: [
2593
2593
  /* @__PURE__ */ jsxs28(Grid3, { children: [
2594
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 5 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "M\xE3 module", disabled: true }) }),
2595
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 7 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "T\xEAn module" }) }),
2596
- /* @__PURE__ */ jsx40(Grid3.Col, { span: 12, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "T\xEAn \u0111\u01A1n v\u1ECB ch\u1EE7 qu\u1EA3n" }) }),
2597
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "Email" }) }),
2598
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }) }),
2599
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "Ng\xE0y \u0111\u0103ng k\xFD" }) }),
2600
- /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput2, { label: "Ng\xE0y h\u1EBFt h\u1EA1n" }) }),
2594
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 5 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "M\xE3 module", disabled: true }) }),
2595
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 7 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "T\xEAn module" }) }),
2596
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: 12, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "T\xEAn \u0111\u01A1n v\u1ECB ch\u1EE7 qu\u1EA3n" }) }),
2597
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "Email" }) }),
2598
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" }) }),
2599
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "Ng\xE0y \u0111\u0103ng k\xFD" }) }),
2600
+ /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyTextInput, { label: "Ng\xE0y h\u1EBFt h\u1EA1n" }) }),
2601
2601
  /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyFileInput, { label: "Favicon (16px x 16px)" }) }),
2602
2602
  /* @__PURE__ */ jsx40(Grid3.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx40(MyFileInput, { label: "Logo (330px x 115px)" }) })
2603
2603
  ] }),
2604
- /* @__PURE__ */ jsx40(MyFlexEnd, { children: /* @__PURE__ */ jsx40(MyButton2, { crudType: "save" }) })
2604
+ /* @__PURE__ */ jsx40(MyFlexEnd, { children: /* @__PURE__ */ jsx40(MyButton, { crudType: "save" }) })
2605
2605
  ] });
2606
2606
  }
2607
2607
 
@@ -2636,14 +2636,14 @@ function F_core40207_Create({ GuidelineTypeId }) {
2636
2636
  },
2637
2637
  children: [
2638
2638
  /* @__PURE__ */ jsx41(
2639
- MyTextInput2,
2639
+ MyTextInput,
2640
2640
  __spreadValues({
2641
2641
  withAsterisk: true,
2642
2642
  label: "M\xE3 t\xE0i li\u1EC7u"
2643
2643
  }, form.getInputProps("code"))
2644
2644
  ),
2645
2645
  /* @__PURE__ */ jsx41(
2646
- MyTextInput2,
2646
+ MyTextInput,
2647
2647
  __spreadValues({
2648
2648
  withAsterisk: true,
2649
2649
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2708,14 +2708,14 @@ function F_core40207_Update({ values }) {
2708
2708
  },
2709
2709
  children: [
2710
2710
  /* @__PURE__ */ jsx43(
2711
- MyTextInput2,
2711
+ MyTextInput,
2712
2712
  __spreadValues({
2713
2713
  withAsterisk: true,
2714
2714
  label: "M\xE3 t\xE0i li\u1EC7u"
2715
2715
  }, form.getInputProps("code"))
2716
2716
  ),
2717
2717
  /* @__PURE__ */ jsx43(
2718
- MyTextInput2,
2718
+ MyTextInput,
2719
2719
  __spreadValues({
2720
2720
  withAsterisk: true,
2721
2721
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -2825,14 +2825,14 @@ function F_core47643_Form({ values }) {
2825
2825
  if (values) return /* @__PURE__ */ jsxs32(MyActionIconUpdate, { form, onSubmit: async () => {
2826
2826
  return await baseAxios_default.post("/Role/Update", form.getValues());
2827
2827
  }, children: [
2828
- /* @__PURE__ */ jsx47(MyTextInput2, __spreadValues({ readOnly: true, variant: "filled", label: "M\xE3" }, form.getInputProps("code"))),
2829
- /* @__PURE__ */ jsx47(MyTextInput2, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
2828
+ /* @__PURE__ */ jsx47(MyTextInput, __spreadValues({ readOnly: true, variant: "filled", label: "M\xE3" }, form.getInputProps("code"))),
2829
+ /* @__PURE__ */ jsx47(MyTextInput, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
2830
2830
  ] });
2831
2831
  return /* @__PURE__ */ jsxs32(MyButtonCreate, { form, onSubmit: async () => {
2832
2832
  return await baseAxios_default.post("/Role/Create", form.getValues());
2833
2833
  }, children: [
2834
- /* @__PURE__ */ jsx47(MyTextInput2, __spreadValues({ label: "M\xE3" }, form.getInputProps("code"))),
2835
- /* @__PURE__ */ jsx47(MyTextInput2, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
2834
+ /* @__PURE__ */ jsx47(MyTextInput, __spreadValues({ label: "M\xE3" }, form.getInputProps("code"))),
2835
+ /* @__PURE__ */ jsx47(MyTextInput, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
2836
2836
  ] });
2837
2837
  }
2838
2838
 
@@ -2961,7 +2961,7 @@ function FormInput({ form, emailModule }) {
2961
2961
  })
2962
2962
  ),
2963
2963
  /* @__PURE__ */ jsx51(
2964
- MyTextInput2,
2964
+ MyTextInput,
2965
2965
  __spreadValues({
2966
2966
  label: "Host mail server"
2967
2967
  }, form.getInputProps("hostMailServer"))
@@ -2988,7 +2988,7 @@ function FormInput({ form, emailModule }) {
2988
2988
  }
2989
2989
  ),
2990
2990
  /* @__PURE__ */ jsx51(
2991
- MyTextInput2,
2991
+ MyTextInput,
2992
2992
  __spreadValues({
2993
2993
  label: "Username"
2994
2994
  }, form.getInputProps("userName"))
@@ -3101,7 +3101,7 @@ function F_core76318_Create({ SecurityTypeId }) {
3101
3101
  },
3102
3102
  children: [
3103
3103
  /* @__PURE__ */ jsx54(
3104
- MyTextInput2,
3104
+ MyTextInput,
3105
3105
  __spreadValues({
3106
3106
  withAsterisk: true,
3107
3107
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -3115,7 +3115,7 @@ function F_core76318_Create({ SecurityTypeId }) {
3115
3115
  }, form.getInputProps("promulgateDate"))
3116
3116
  ),
3117
3117
  /* @__PURE__ */ jsx54(
3118
- MyTextInput2,
3118
+ MyTextInput,
3119
3119
  __spreadValues({
3120
3120
  withAsterisk: true,
3121
3121
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -3304,8 +3304,8 @@ function F_documentCategories_Create({ documentType }) {
3304
3304
  }
3305
3305
  });
3306
3306
  return /* @__PURE__ */ jsxs39(MyButtonCreate, { objectName: "Lo\u1EA1i v\u0103n b\u1EA3n", form, onSubmit: (values) => baseAxios_default.post("/DocumentAttribute/Create", values), children: [
3307
- /* @__PURE__ */ jsx59(MyTextInput2, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
3308
- /* @__PURE__ */ jsx59(MyTextInput2, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
3307
+ /* @__PURE__ */ jsx59(MyTextInput, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
3308
+ /* @__PURE__ */ jsx59(MyTextInput, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
3309
3309
  ] });
3310
3310
  }
3311
3311
 
@@ -3328,8 +3328,8 @@ function F_documentCategories_Update({ values }) {
3328
3328
  initialValues: values
3329
3329
  });
3330
3330
  return /* @__PURE__ */ jsxs40(MyActionIconUpdate, { form, onSubmit: async (values2) => await baseAxios_default.post("/DocumentAttribute/Update", values2), children: [
3331
- /* @__PURE__ */ jsx61(MyTextInput2, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
3332
- /* @__PURE__ */ jsx61(MyTextInput2, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
3331
+ /* @__PURE__ */ jsx61(MyTextInput, __spreadValues({ label: "M\xE3 lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("code"))),
3332
+ /* @__PURE__ */ jsx61(MyTextInput, __spreadValues({ label: "T\xEAn lo\u1EA1i v\u0103n b\u1EA3n" }, form.getInputProps("name")))
3333
3333
  ] });
3334
3334
  }
3335
3335
 
@@ -3456,7 +3456,7 @@ function F_formTemplateDocs_Create({ FormTypeId }) {
3456
3456
  },
3457
3457
  children: [
3458
3458
  /* @__PURE__ */ jsx65(
3459
- MyTextInput2,
3459
+ MyTextInput,
3460
3460
  __spreadValues({
3461
3461
  withAsterisk: true,
3462
3462
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -3470,7 +3470,7 @@ function F_formTemplateDocs_Create({ FormTypeId }) {
3470
3470
  }, form.getInputProps("promulgateDate"))
3471
3471
  ),
3472
3472
  /* @__PURE__ */ jsx65(
3473
- MyTextInput2,
3473
+ MyTextInput,
3474
3474
  __spreadValues({
3475
3475
  withAsterisk: true,
3476
3476
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -3558,7 +3558,7 @@ function F_formTemplateDocs_Update({
3558
3558
  },
3559
3559
  children: [
3560
3560
  /* @__PURE__ */ jsx67(
3561
- MyTextInput2,
3561
+ MyTextInput,
3562
3562
  __spreadValues({
3563
3563
  withAsterisk: true,
3564
3564
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -3572,7 +3572,7 @@ function F_formTemplateDocs_Update({
3572
3572
  }, form.getInputProps("promulgateDate"))
3573
3573
  ),
3574
3574
  /* @__PURE__ */ jsx67(
3575
- MyTextInput2,
3575
+ MyTextInput,
3576
3576
  __spreadValues({
3577
3577
  withAsterisk: true,
3578
3578
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -3805,7 +3805,7 @@ function FormInput2({ form, emailModule }) {
3805
3805
  })
3806
3806
  ),
3807
3807
  /* @__PURE__ */ jsx71(
3808
- MyTextInput2,
3808
+ MyTextInput,
3809
3809
  __spreadValues({
3810
3810
  label: "Host mail server"
3811
3811
  }, form.getInputProps("hostMailServer"))
@@ -3832,7 +3832,7 @@ function FormInput2({ form, emailModule }) {
3832
3832
  }
3833
3833
  ),
3834
3834
  /* @__PURE__ */ jsx71(
3835
- MyTextInput2,
3835
+ MyTextInput,
3836
3836
  __spreadValues({
3837
3837
  label: "Username"
3838
3838
  }, form.getInputProps("userName"))
@@ -3969,7 +3969,7 @@ function F_moduleConfig_Save({
3969
3969
  });
3970
3970
  }
3971
3971
  return /* @__PURE__ */ jsx74(
3972
- MyButton2,
3972
+ MyButton,
3973
3973
  {
3974
3974
  disabled: !form.isDirty(),
3975
3975
  crudType: "save",
@@ -4013,11 +4013,11 @@ function F_moduleConfig_Form() {
4013
4013
  }, [query.data]);
4014
4014
  return /* @__PURE__ */ jsxs49(Paper7, { p: "md", children: [
4015
4015
  /* @__PURE__ */ jsxs49(Grid4, { children: [
4016
- /* @__PURE__ */ jsx75(Grid4.Col, { span: 5, children: /* @__PURE__ */ jsx75(MyTextInput2, __spreadProps(__spreadValues({}, form.getInputProps("code")), { label: "M\xE3 module", disabled: true })) }),
4017
- /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 7 }, children: /* @__PURE__ */ jsx75(MyTextInput2, __spreadProps(__spreadValues({}, form.getInputProps("name")), { label: "T\xEAn module" })) }),
4018
- /* @__PURE__ */ jsx75(Grid4.Col, { span: 12, children: /* @__PURE__ */ jsx75(MyTextInput2, __spreadProps(__spreadValues({}, form.getInputProps("officelName")), { label: "T\xEAn \u0111\u01A1n v\u1ECB ch\u1EE7 qu\u1EA3n" })) }),
4019
- /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx75(MyTextInput2, __spreadProps(__spreadValues({}, form.getInputProps("email")), { label: "Email" })) }),
4020
- /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx75(MyTextInput2, __spreadProps(__spreadValues({ isPhoneNumber: true }, form.getInputProps("phoneNumber")), { label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" })) }),
4016
+ /* @__PURE__ */ jsx75(Grid4.Col, { span: 5, children: /* @__PURE__ */ jsx75(MyTextInput, __spreadProps(__spreadValues({}, form.getInputProps("code")), { label: "M\xE3 module", disabled: true })) }),
4017
+ /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 7 }, children: /* @__PURE__ */ jsx75(MyTextInput, __spreadProps(__spreadValues({}, form.getInputProps("name")), { label: "T\xEAn module" })) }),
4018
+ /* @__PURE__ */ jsx75(Grid4.Col, { span: 12, children: /* @__PURE__ */ jsx75(MyTextInput, __spreadProps(__spreadValues({}, form.getInputProps("officelName")), { label: "T\xEAn \u0111\u01A1n v\u1ECB ch\u1EE7 qu\u1EA3n" })) }),
4019
+ /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx75(MyTextInput, __spreadProps(__spreadValues({}, form.getInputProps("email")), { label: "Email" })) }),
4020
+ /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx75(MyTextInput, __spreadProps(__spreadValues({ isPhoneNumber: true }, form.getInputProps("phoneNumber")), { label: "S\u1ED1 \u0111i\u1EC7n tho\u1EA1i" })) }),
4021
4021
  /* @__PURE__ */ jsx75(Grid4.Col, { span: { base: 12, md: 6 }, children: /* @__PURE__ */ jsx75(
4022
4022
  MyDateInput,
4023
4023
  {
@@ -4135,7 +4135,7 @@ function F_organizationPolicyDocs_Create({
4135
4135
  },
4136
4136
  children: [
4137
4137
  /* @__PURE__ */ jsx77(
4138
- MyTextInput2,
4138
+ MyTextInput,
4139
4139
  __spreadValues({
4140
4140
  withAsterisk: true,
4141
4141
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -4149,7 +4149,7 @@ function F_organizationPolicyDocs_Create({
4149
4149
  }, form.getInputProps("promulgateDate"))
4150
4150
  ),
4151
4151
  /* @__PURE__ */ jsx77(
4152
- MyTextInput2,
4152
+ MyTextInput,
4153
4153
  __spreadValues({
4154
4154
  withAsterisk: true,
4155
4155
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -4237,7 +4237,7 @@ function F_organizationPolicyDocs_Update({
4237
4237
  },
4238
4238
  children: [
4239
4239
  /* @__PURE__ */ jsx79(
4240
- MyTextInput2,
4240
+ MyTextInput,
4241
4241
  __spreadValues({
4242
4242
  withAsterisk: true,
4243
4243
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -4251,7 +4251,7 @@ function F_organizationPolicyDocs_Update({
4251
4251
  }, form.getInputProps("promulgateDate"))
4252
4252
  ),
4253
4253
  /* @__PURE__ */ jsx79(
4254
- MyTextInput2,
4254
+ MyTextInput,
4255
4255
  __spreadValues({
4256
4256
  withAsterisk: true,
4257
4257
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -4414,13 +4414,13 @@ import { useMemo as useMemo18 } from "react";
4414
4414
  // src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_DeleteDescription.tsx
4415
4415
  import { jsx as jsx82 } from "react/jsx-runtime";
4416
4416
  function F_pageContentConfig_DeleteDescription() {
4417
- return /* @__PURE__ */ jsx82(MyButton, { actionType: "delete" });
4417
+ return /* @__PURE__ */ jsx82(MyButton2, { actionType: "delete" });
4418
4418
  }
4419
4419
 
4420
4420
  // src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_Export.tsx
4421
4421
  import { jsx as jsx83 } from "react/jsx-runtime";
4422
4422
  function F_pageContentConfig_Export() {
4423
- return /* @__PURE__ */ jsx83(MyButton, { actionType: "export" });
4423
+ return /* @__PURE__ */ jsx83(MyButton2, { actionType: "export" });
4424
4424
  }
4425
4425
 
4426
4426
  // src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_Save.tsx
@@ -4432,7 +4432,7 @@ function F_pageContentConfig_Save({ menuValues }) {
4432
4432
  return service_pageContent.updateList([{ id: 1 }]);
4433
4433
  }
4434
4434
  });
4435
- return /* @__PURE__ */ jsx84(MyButton, { actionType: "save", onClick: () => updatePageConfigMutation.mutate({}) });
4435
+ return /* @__PURE__ */ jsx84(MyButton2, { actionType: "save", onClick: () => updatePageConfigMutation.mutate({}) });
4436
4436
  }
4437
4437
 
4438
4438
  // src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_ReadMenu.tsx
@@ -4453,7 +4453,7 @@ function F_pageContentConfig_ReadMenu() {
4453
4453
  accessorKey: "description",
4454
4454
  size: device.isPc ? 400 : 0,
4455
4455
  Cell: () => {
4456
- return /* @__PURE__ */ jsx85(MyTextInput, { placeholder: "Nh\u1EADp m\xF4 t\u1EA3 menu" });
4456
+ return /* @__PURE__ */ jsx85(MyTextInput2, { placeholder: "Nh\u1EADp m\xF4 t\u1EA3 menu" });
4457
4457
  }
4458
4458
  }
4459
4459
  ], []);
@@ -4508,14 +4508,14 @@ function F_roleCatalog_Form({ values }) {
4508
4508
  if (values) return /* @__PURE__ */ jsxs55(MyActionIconUpdate, { form, onSubmit: async () => {
4509
4509
  return await baseAxios_default.post("/Role/Update", form.getValues());
4510
4510
  }, children: [
4511
- /* @__PURE__ */ jsx88(MyTextInput2, __spreadValues({ readOnly: true, variant: "filled", label: "M\xE3" }, form.getInputProps("code"))),
4512
- /* @__PURE__ */ jsx88(MyTextInput2, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
4511
+ /* @__PURE__ */ jsx88(MyTextInput, __spreadValues({ readOnly: true, variant: "filled", label: "M\xE3" }, form.getInputProps("code"))),
4512
+ /* @__PURE__ */ jsx88(MyTextInput, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
4513
4513
  ] });
4514
4514
  return /* @__PURE__ */ jsxs55(MyButtonCreate, { form, onSubmit: async () => {
4515
4515
  return await baseAxios_default.post("/Role/Create", form.getValues());
4516
4516
  }, children: [
4517
- /* @__PURE__ */ jsx88(MyTextInput2, __spreadValues({ label: "M\xE3" }, form.getInputProps("code"))),
4518
- /* @__PURE__ */ jsx88(MyTextInput2, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
4517
+ /* @__PURE__ */ jsx88(MyTextInput, __spreadValues({ label: "M\xE3" }, form.getInputProps("code"))),
4518
+ /* @__PURE__ */ jsx88(MyTextInput, __spreadValues({ label: "Quy\u1EC1n" }, form.getInputProps("name")))
4519
4519
  ] });
4520
4520
  }
4521
4521
 
@@ -4632,7 +4632,7 @@ function F_securityPolicyDocs_Create({ SecurityTypeId }) {
4632
4632
  },
4633
4633
  children: [
4634
4634
  /* @__PURE__ */ jsx91(
4635
- MyTextInput2,
4635
+ MyTextInput,
4636
4636
  __spreadValues({
4637
4637
  withAsterisk: true,
4638
4638
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -4646,7 +4646,7 @@ function F_securityPolicyDocs_Create({ SecurityTypeId }) {
4646
4646
  }, form.getInputProps("promulgateDate"))
4647
4647
  ),
4648
4648
  /* @__PURE__ */ jsx91(
4649
- MyTextInput2,
4649
+ MyTextInput,
4650
4650
  __spreadValues({
4651
4651
  withAsterisk: true,
4652
4652
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -4855,20 +4855,20 @@ function F_systemUpdateDocs_Create({
4855
4855
  }, form.getInputProps("meetingDate"))
4856
4856
  ),
4857
4857
  /* @__PURE__ */ jsx96(
4858
- MyTextInput2,
4858
+ MyTextInput,
4859
4859
  __spreadValues({
4860
4860
  withAsterisk: true,
4861
4861
  label: "\u0110\u01A1n v\u1ECB y\xEAu c\u1EA7u"
4862
4862
  }, form.getInputProps("departmentName"))
4863
4863
  ),
4864
4864
  /* @__PURE__ */ jsx96(
4865
- MyTextInput2,
4865
+ MyTextInput,
4866
4866
  __spreadValues({
4867
4867
  withAsterisk: true,
4868
4868
  label: "N\u1ED9i dung c\u1EA3i ti\u1EBFn"
4869
4869
  }, form.getInputProps("description"))
4870
4870
  ),
4871
- /* @__PURE__ */ jsx96(MyTextInput2, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
4871
+ /* @__PURE__ */ jsx96(MyTextInput, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
4872
4872
  /* @__PURE__ */ jsx96(
4873
4873
  MyDateInput,
4874
4874
  __spreadValues({
@@ -4956,20 +4956,20 @@ function F_systemUpdateDocs_Update({ values }) {
4956
4956
  }, form.getInputProps("meetingDate"))
4957
4957
  ),
4958
4958
  /* @__PURE__ */ jsx98(
4959
- MyTextInput2,
4959
+ MyTextInput,
4960
4960
  __spreadValues({
4961
4961
  withAsterisk: true,
4962
4962
  label: "\u0110\u01A1n v\u1ECB y\xEAu c\u1EA7u"
4963
4963
  }, form.getInputProps("departmentName"))
4964
4964
  ),
4965
4965
  /* @__PURE__ */ jsx98(
4966
- MyTextInput2,
4966
+ MyTextInput,
4967
4967
  __spreadValues({
4968
4968
  withAsterisk: true,
4969
4969
  label: "N\u1ED9i dung c\u1EA3i ti\u1EBFn"
4970
4970
  }, form.getInputProps("description"))
4971
4971
  ),
4972
- /* @__PURE__ */ jsx98(MyTextInput2, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
4972
+ /* @__PURE__ */ jsx98(MyTextInput, __spreadValues({ label: "K\u1EBFt lu\u1EADn" }, form.getInputProps("conclusion"))),
4973
4973
  /* @__PURE__ */ jsx98(
4974
4974
  MyDateInput,
4975
4975
  __spreadValues({
@@ -5093,14 +5093,14 @@ function F_userGuideDocs_Create({ GuidelineTypeId }) {
5093
5093
  },
5094
5094
  children: [
5095
5095
  /* @__PURE__ */ jsx100(
5096
- MyTextInput2,
5096
+ MyTextInput,
5097
5097
  __spreadValues({
5098
5098
  withAsterisk: true,
5099
5099
  label: "M\xE3 t\xE0i li\u1EC7u"
5100
5100
  }, form.getInputProps("code"))
5101
5101
  ),
5102
5102
  /* @__PURE__ */ jsx100(
5103
- MyTextInput2,
5103
+ MyTextInput,
5104
5104
  __spreadValues({
5105
5105
  withAsterisk: true,
5106
5106
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -5165,14 +5165,14 @@ function F_userGuideDocs_Update({ values }) {
5165
5165
  },
5166
5166
  children: [
5167
5167
  /* @__PURE__ */ jsx102(
5168
- MyTextInput2,
5168
+ MyTextInput,
5169
5169
  __spreadValues({
5170
5170
  withAsterisk: true,
5171
5171
  label: "M\xE3 t\xE0i li\u1EC7u"
5172
5172
  }, form.getInputProps("code"))
5173
5173
  ),
5174
5174
  /* @__PURE__ */ jsx102(
5175
- MyTextInput2,
5175
+ MyTextInput,
5176
5176
  __spreadValues({
5177
5177
  withAsterisk: true,
5178
5178
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -5285,7 +5285,7 @@ function F_workflowProcessDocs_Create({
5285
5285
  },
5286
5286
  children: [
5287
5287
  /* @__PURE__ */ jsx105(
5288
- MyTextInput2,
5288
+ MyTextInput,
5289
5289
  __spreadValues({
5290
5290
  withAsterisk: true,
5291
5291
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -5299,7 +5299,7 @@ function F_workflowProcessDocs_Create({
5299
5299
  }, form.getInputProps("promulgateDate"))
5300
5300
  ),
5301
5301
  /* @__PURE__ */ jsx105(
5302
- MyTextInput2,
5302
+ MyTextInput,
5303
5303
  __spreadValues({
5304
5304
  withAsterisk: true,
5305
5305
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -5387,7 +5387,7 @@ function F_workflowProcessDocs_Update({
5387
5387
  },
5388
5388
  children: [
5389
5389
  /* @__PURE__ */ jsx107(
5390
- MyTextInput2,
5390
+ MyTextInput,
5391
5391
  __spreadValues({
5392
5392
  withAsterisk: true,
5393
5393
  label: "S\u1ED1 quy \u0111\u1ECBnh"
@@ -5401,7 +5401,7 @@ function F_workflowProcessDocs_Update({
5401
5401
  }, form.getInputProps("promulgateDate"))
5402
5402
  ),
5403
5403
  /* @__PURE__ */ jsx107(
5404
- MyTextInput2,
5404
+ MyTextInput,
5405
5405
  __spreadValues({
5406
5406
  withAsterisk: true,
5407
5407
  label: "T\xEAn t\xE0i li\u1EC7u"
@@ -5608,7 +5608,8 @@ function F_authenticate_Login({
5608
5608
  showLoginButton = true,
5609
5609
  showSaveLogin = true,
5610
5610
  showForgotPassword = true,
5611
- customSubmit
5611
+ customSubmit,
5612
+ loginButtonProps
5612
5613
  }) {
5613
5614
  const router = useRouter2();
5614
5615
  const authenticate_store = useS_authenticate();
@@ -5713,12 +5714,13 @@ function F_authenticate_Login({
5713
5714
  ] }),
5714
5715
  showLoginButton && /* @__PURE__ */ jsx111(
5715
5716
  Button3,
5716
- {
5717
+ __spreadProps(__spreadValues({
5717
5718
  loading: loadingState[0],
5718
5719
  type: "submit",
5719
- fullWidth: true,
5720
+ fullWidth: true
5721
+ }, loginButtonProps), {
5720
5722
  children: "\u0110\u0103ng nh\u1EADp"
5721
- }
5723
+ })
5722
5724
  ),
5723
5725
  additionalActions
5724
5726
  ] }) })
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "types": "./dist/columns/index.d.mts"
43
43
  }
44
44
  },
45
- "version": "0.1.325",
45
+ "version": "0.1.327",
46
46
  "private": false,
47
47
  "files": [
48
48
  "dist"