aq-fe-framework 0.1.608 → 0.1.610
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.
|
@@ -7902,14 +7902,18 @@ function RenderNavLinks({ items }) {
|
|
|
7902
7902
|
)) });
|
|
7903
7903
|
}
|
|
7904
7904
|
|
|
7905
|
+
// src/api/services/service_page.ts
|
|
7906
|
+
var CONTROLLER = "/Page";
|
|
7907
|
+
var service_page = __spreadValues({}, createBaseApi(CONTROLLER, baseAxios_default));
|
|
7908
|
+
|
|
7905
7909
|
// src/api/services/service_account.ts
|
|
7906
|
-
var
|
|
7907
|
-
var service_account = __spreadProps(__spreadValues({}, createBaseApi(
|
|
7910
|
+
var CONTROLLER2 = "/account";
|
|
7911
|
+
var service_account = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER2, baseAxios_default)), {
|
|
7908
7912
|
signIn: (values) => {
|
|
7909
|
-
return baseAxios_default.post(
|
|
7913
|
+
return baseAxios_default.post(CONTROLLER2 + `/SignIn`, { values });
|
|
7910
7914
|
},
|
|
7911
7915
|
getAdminAccount: (paging) => {
|
|
7912
|
-
return baseAxios_default.get(
|
|
7916
|
+
return baseAxios_default.get(CONTROLLER2 + `/GetAdminAccount`, {
|
|
7913
7917
|
params: paging
|
|
7914
7918
|
});
|
|
7915
7919
|
}
|
|
@@ -7986,35 +7990,35 @@ function Account_Table(_a) {
|
|
|
7986
7990
|
}
|
|
7987
7991
|
|
|
7988
7992
|
// src/api/services/service_role.ts
|
|
7989
|
-
var
|
|
7990
|
-
var service_role = __spreadProps(__spreadValues({}, createBaseApi(
|
|
7993
|
+
var CONTROLLER3 = "/role";
|
|
7994
|
+
var service_role = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER3, baseAxios_default)), {
|
|
7991
7995
|
getAdminRole: (paging) => {
|
|
7992
|
-
return baseAxios_default.get(
|
|
7996
|
+
return baseAxios_default.get(CONTROLLER3 + `/GetAdminRole`, {
|
|
7993
7997
|
params: paging
|
|
7994
7998
|
});
|
|
7995
7999
|
},
|
|
7996
8000
|
getRolePermission: (params) => {
|
|
7997
|
-
return baseAxios_default.get(
|
|
8001
|
+
return baseAxios_default.get(CONTROLLER3 + "/GetRolePermission", {
|
|
7998
8002
|
params
|
|
7999
8003
|
});
|
|
8000
8004
|
},
|
|
8001
8005
|
getUserPermission: (params) => {
|
|
8002
|
-
return baseAxios_default.get(
|
|
8006
|
+
return baseAxios_default.get(CONTROLLER3 + "/GetUserPermission", {
|
|
8003
8007
|
params
|
|
8004
8008
|
});
|
|
8005
8009
|
},
|
|
8006
8010
|
updatePermission: (body) => {
|
|
8007
|
-
return baseAxios_default.put(
|
|
8011
|
+
return baseAxios_default.put(CONTROLLER3 + "/UpdatePermission", body);
|
|
8008
8012
|
},
|
|
8009
8013
|
updateUserPermission: (body) => {
|
|
8010
|
-
return baseAxios_default.put(
|
|
8014
|
+
return baseAxios_default.put(CONTROLLER3 + "/UpdateUserPermission", body);
|
|
8011
8015
|
},
|
|
8012
8016
|
addUser: (params, roleIds) => {
|
|
8013
|
-
return baseAxios_default.post(
|
|
8017
|
+
return baseAxios_default.post(CONTROLLER3 + "/AddUser", { params, body: roleIds });
|
|
8014
8018
|
},
|
|
8015
8019
|
addUsers: (params, userIds) => {
|
|
8016
8020
|
return baseAxios_default.post(
|
|
8017
|
-
|
|
8021
|
+
CONTROLLER3 + "/AddUsers",
|
|
8018
8022
|
userIds,
|
|
8019
8023
|
{ params }
|
|
8020
8024
|
);
|
|
@@ -8392,14 +8396,14 @@ function Feat_accessControlLevel({ menuData }) {
|
|
|
8392
8396
|
import { useEffect as useEffect15 } from "react";
|
|
8393
8397
|
|
|
8394
8398
|
// src/api/services/accountService.ts
|
|
8395
|
-
var
|
|
8396
|
-
var apiData_Account = __spreadProps(__spreadValues({}, createBaseApi(
|
|
8399
|
+
var CONTROLLER4 = "/account";
|
|
8400
|
+
var apiData_Account = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER4, baseAxios_default)), {
|
|
8397
8401
|
// Các hàm custom
|
|
8398
8402
|
getCoeAccountById: (id) => {
|
|
8399
|
-
return baseAxios_default.post(
|
|
8403
|
+
return baseAxios_default.post(CONTROLLER4 + `/getCOEAccount`, { userId: id });
|
|
8400
8404
|
},
|
|
8401
8405
|
getAdminAccount: (paging) => {
|
|
8402
|
-
return baseAxios_default.get(
|
|
8406
|
+
return baseAxios_default.get(CONTROLLER4 + `/GetAdminAccount`, {
|
|
8403
8407
|
params: paging
|
|
8404
8408
|
});
|
|
8405
8409
|
}
|
|
@@ -10838,11 +10842,11 @@ function F_core76318({ SecurityTypeId }) {
|
|
|
10838
10842
|
import { Tabs as Tabs2 } from "@mantine/core";
|
|
10839
10843
|
|
|
10840
10844
|
// src/api/services/service_documentAttribute.ts
|
|
10841
|
-
var
|
|
10842
|
-
var service_documentAttribute = __spreadProps(__spreadValues({}, createBaseApi(
|
|
10845
|
+
var CONTROLLER5 = "/DocumentAttribute";
|
|
10846
|
+
var service_documentAttribute = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER5, baseAxios_default)), {
|
|
10843
10847
|
GetByType: (FormTypeId) => {
|
|
10844
10848
|
return baseAxios_default.get(
|
|
10845
|
-
|
|
10849
|
+
CONTROLLER5 + `/GetByType?documentType=${FormTypeId}`
|
|
10846
10850
|
);
|
|
10847
10851
|
}
|
|
10848
10852
|
});
|
|
@@ -10990,16 +10994,16 @@ function F_documentCategories_Select(_a) {
|
|
|
10990
10994
|
import { Space as Space7 } from "@mantine/core";
|
|
10991
10995
|
|
|
10992
10996
|
// src/api/services/service_document.ts
|
|
10993
|
-
var
|
|
10994
|
-
var service_document = __spreadProps(__spreadValues({}, createBaseApi(
|
|
10997
|
+
var CONTROLLER6 = "/Document";
|
|
10998
|
+
var service_document = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER6, baseAxios_default)), {
|
|
10995
10999
|
GetByDocumentAttribute: (documentType) => {
|
|
10996
11000
|
return baseAxios_default.get(
|
|
10997
|
-
|
|
11001
|
+
CONTROLLER6 + `/GetByDocumentAttribute?id=${documentType}`
|
|
10998
11002
|
);
|
|
10999
11003
|
},
|
|
11000
11004
|
GetByType: (documentId) => {
|
|
11001
11005
|
return baseAxios_default.get(
|
|
11002
|
-
|
|
11006
|
+
CONTROLLER6 + `/GetByType?documentType=${documentId}`
|
|
11003
11007
|
);
|
|
11004
11008
|
}
|
|
11005
11009
|
});
|
|
@@ -11300,8 +11304,8 @@ function F_formTemplateDocs({
|
|
|
11300
11304
|
}
|
|
11301
11305
|
|
|
11302
11306
|
// src/api/services/service_emailConfig.ts
|
|
11303
|
-
var
|
|
11304
|
-
var service_emailConfig = __spreadValues({}, createBaseApi(
|
|
11307
|
+
var CONTROLLER7 = "/EmailConfig";
|
|
11308
|
+
var service_emailConfig = __spreadValues({}, createBaseApi(CONTROLLER7, baseAxios_default));
|
|
11305
11309
|
|
|
11306
11310
|
// src/modules-features/admin/core/mailConfig/F_mailConfig_Read.tsx
|
|
11307
11311
|
import { useMemo as useMemo20 } from "react";
|
|
@@ -12205,10 +12209,6 @@ function F_organizationPolicyDocs({ RegulationsTypeId }) {
|
|
|
12205
12209
|
] });
|
|
12206
12210
|
}
|
|
12207
12211
|
|
|
12208
|
-
// src/api/services/service_page.ts
|
|
12209
|
-
var CONTROLLER7 = "/Page";
|
|
12210
|
-
var service_page = __spreadValues({}, createBaseApi(CONTROLLER7, baseAxios_default));
|
|
12211
|
-
|
|
12212
12212
|
// src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_ReadMenu.tsx
|
|
12213
12213
|
import { Group as Group20 } from "@mantine/core";
|
|
12214
12214
|
import { useMemo as useMemo24, useState as useState17 } from "react";
|
|
@@ -12225,19 +12225,15 @@ function F_pageContentConfig_Export() {
|
|
|
12225
12225
|
return /* @__PURE__ */ jsx150(MyButton, { actionType: "export" });
|
|
12226
12226
|
}
|
|
12227
12227
|
|
|
12228
|
-
// src/api/services/service_pageContent.ts
|
|
12229
|
-
var CONTROLLER8 = "/eva/PageContent";
|
|
12230
|
-
var service_pageContent = __spreadValues({}, createBaseApi(CONTROLLER8, baseAxios_default));
|
|
12231
|
-
|
|
12232
12228
|
// src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_Save.tsx
|
|
12233
12229
|
import { jsx as jsx151 } from "react/jsx-runtime";
|
|
12234
12230
|
function F_pageContentConfig_Save({ menuValues }) {
|
|
12235
12231
|
const updatePageConfigMutation = useMyReactMutation({
|
|
12236
|
-
axiosFn: () => {
|
|
12237
|
-
return
|
|
12232
|
+
axiosFn: (values) => {
|
|
12233
|
+
return service_page.updateList(values);
|
|
12238
12234
|
}
|
|
12239
12235
|
});
|
|
12240
|
-
return /* @__PURE__ */ jsx151(MyButton, { actionType: "save", onClick: () => updatePageConfigMutation.mutate() });
|
|
12236
|
+
return /* @__PURE__ */ jsx151(MyButton, { actionType: "save", onClick: () => updatePageConfigMutation.mutate(menuValues) });
|
|
12241
12237
|
}
|
|
12242
12238
|
|
|
12243
12239
|
// src/modules-features/admin/core/pageContentConfig/F_pageContentConfig_ReadMenu.tsx
|
|
@@ -12264,15 +12260,20 @@ function F_pageContentConfig_ReadMenu({ menuData }) {
|
|
|
12264
12260
|
accessorKey: "description",
|
|
12265
12261
|
size: device.isPc ? 400 : 0,
|
|
12266
12262
|
Cell: ({ row }) => {
|
|
12267
|
-
var _a, _b;
|
|
12263
|
+
var _a, _b, _c;
|
|
12268
12264
|
const id = row.original.id;
|
|
12269
|
-
const currentValue = (_b = (_a = editedDescriptions[id])
|
|
12265
|
+
const currentValue = (_c = (_b = (_a = editedDescriptions[id]) == null ? void 0 : _a.description) != null ? _b : row.original.description) != null ? _c : "";
|
|
12270
12266
|
return /* @__PURE__ */ jsx152(
|
|
12271
12267
|
MyTextInput2,
|
|
12272
12268
|
{
|
|
12273
|
-
|
|
12269
|
+
defaultValue: currentValue,
|
|
12274
12270
|
placeholder: "Nh\u1EADp m\xF4 t\u1EA3 menu",
|
|
12275
|
-
|
|
12271
|
+
onBlur: (e4) => {
|
|
12272
|
+
const newDescription = e4.currentTarget.value;
|
|
12273
|
+
handleDescriptionChange(id.toString(), __spreadProps(__spreadValues({}, row.original), {
|
|
12274
|
+
description: newDescription
|
|
12275
|
+
}));
|
|
12276
|
+
}
|
|
12276
12277
|
}
|
|
12277
12278
|
);
|
|
12278
12279
|
}
|
|
@@ -12286,7 +12287,7 @@ function F_pageContentConfig_ReadMenu({ menuData }) {
|
|
|
12286
12287
|
data: pageContentQuery.data || [],
|
|
12287
12288
|
columns,
|
|
12288
12289
|
renderTopToolbarCustomActions: (row) => /* @__PURE__ */ jsxs89(Group20, { children: [
|
|
12289
|
-
/* @__PURE__ */ jsx152(F_pageContentConfig_Save, { menuValues:
|
|
12290
|
+
/* @__PURE__ */ jsx152(F_pageContentConfig_Save, { menuValues: Object.values(editedDescriptions) }),
|
|
12290
12291
|
/* @__PURE__ */ jsx152(F_pageContentConfig_Export, {}),
|
|
12291
12292
|
/* @__PURE__ */ jsx152(F_pageContentConfig_DeleteDescription, {})
|
|
12292
12293
|
] })
|
|
@@ -14101,6 +14102,10 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect, i
|
|
|
14101
14102
|
const isDev = process.env.NEXT_PUBLIC_IS_DEV == "1" ? true : isfilterMenuWithPermission ? false : true;
|
|
14102
14103
|
const pathname = usePathname3();
|
|
14103
14104
|
const media = useMediaQuery("(min-width: 72em)");
|
|
14105
|
+
const pageContentQuery = useMyReactQuery({
|
|
14106
|
+
queryKey: ["pageContents"],
|
|
14107
|
+
axiosFn: () => service_page.getAll()
|
|
14108
|
+
});
|
|
14104
14109
|
const permissionStore = useStore_Permission();
|
|
14105
14110
|
const appShellStore = useStore_BasicAppShell();
|
|
14106
14111
|
const { data: moduleData } = useQ_AQ_GetAQModule();
|
|
@@ -14149,12 +14154,13 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect, i
|
|
|
14149
14154
|
}
|
|
14150
14155
|
}, [moduleData == null ? void 0 : moduleData.name]);
|
|
14151
14156
|
useEffect21(() => {
|
|
14152
|
-
var _a;
|
|
14157
|
+
var _a, _b, _c;
|
|
14153
14158
|
const currentItem = allChildItems.find((item) => pathname.includes(item.link));
|
|
14154
14159
|
const currentPermission = (_a = permissionStore.state.permission) == null ? void 0 : _a.find((item) => item.pageId == (currentItem == null ? void 0 : currentItem.pageId));
|
|
14155
14160
|
setIsLoadingPermission(false);
|
|
14156
14161
|
if (!currentItem) return;
|
|
14157
14162
|
const breadcrumb = findBreadcrumbPath(filteredMenu, currentItem.link);
|
|
14163
|
+
appShellStore.setProperty("description", (_c = (_b = pageContentQuery.data) == null ? void 0 : _b.find((item) => item.id == currentItem.pageId)) == null ? void 0 : _c.description);
|
|
14158
14164
|
appShellStore.setProperty("currentPageId", currentItem.pageId);
|
|
14159
14165
|
appShellStore.setProperty("breadcrumb", breadcrumb);
|
|
14160
14166
|
appShellStore.setProperty("title", currentItem.label);
|
|
@@ -14174,7 +14180,7 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect, i
|
|
|
14174
14180
|
pageId: currentItem == null ? void 0 : currentItem.pageId
|
|
14175
14181
|
});
|
|
14176
14182
|
}
|
|
14177
|
-
}, [pathname, allChildItems, filteredMenu, readablePageIds]);
|
|
14183
|
+
}, [pathname, allChildItems, filteredMenu, readablePageIds, pageContentQuery]);
|
|
14178
14184
|
const renderHeader = () => /* @__PURE__ */ jsx192(AppShell.Header, { children: media ? /* @__PURE__ */ jsxs110(Group23, { h: "100%", px: "md", justify: "space-between", children: [
|
|
14179
14185
|
/* @__PURE__ */ jsxs110(Group23, { h: "100%", children: [
|
|
14180
14186
|
/* @__PURE__ */ jsx192(Tooltip6, { label: appShellStore.state.opened ? "\u1EA8n thanh menu" : "Hi\u1EC7n thanh menu", children: /* @__PURE__ */ jsx192(ActionIcon14, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx192(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx192(IconLayoutSidebarLeftCollapse, {}) }) }),
|
|
@@ -14396,7 +14402,7 @@ function HeaderMegaMenu({ children, menus }) {
|
|
|
14396
14402
|
}
|
|
14397
14403
|
|
|
14398
14404
|
// src/components/Layouts/PageContent/MyPageContent.tsx
|
|
14399
|
-
import { Badge as Badge4, Breadcrumbs, Container as Container3, Divider as Divider4, Group as Group25, Text as Text21, Title as Title3 } from "@mantine/core";
|
|
14405
|
+
import { Badge as Badge4, Breadcrumbs, Container as Container3, Divider as Divider4, Group as Group25, Stack as Stack7, Text as Text21, Title as Title3 } from "@mantine/core";
|
|
14400
14406
|
import { jsx as jsx195, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
14401
14407
|
var getStatusColor = (status) => {
|
|
14402
14408
|
switch (status) {
|
|
@@ -14428,7 +14434,6 @@ function PageTitle({ title, status, note }) {
|
|
|
14428
14434
|
function MyPageContent({
|
|
14429
14435
|
leftTopBar,
|
|
14430
14436
|
title,
|
|
14431
|
-
canBack = false,
|
|
14432
14437
|
rightTopBar,
|
|
14433
14438
|
children
|
|
14434
14439
|
}) {
|
|
@@ -14439,14 +14444,17 @@ function MyPageContent({
|
|
|
14439
14444
|
/* @__PURE__ */ jsxs112(Group25, { justify: "space-between", children: [
|
|
14440
14445
|
/* @__PURE__ */ jsxs112(Group25, { children: [
|
|
14441
14446
|
/* @__PURE__ */ jsx195(MyButtonRouterBack, {}),
|
|
14442
|
-
/* @__PURE__ */
|
|
14443
|
-
|
|
14444
|
-
|
|
14445
|
-
|
|
14446
|
-
|
|
14447
|
-
|
|
14448
|
-
|
|
14449
|
-
|
|
14447
|
+
/* @__PURE__ */ jsxs112(Stack7, { gap: 2, children: [
|
|
14448
|
+
/* @__PURE__ */ jsx195(
|
|
14449
|
+
PageTitle,
|
|
14450
|
+
{
|
|
14451
|
+
title: finalTitle,
|
|
14452
|
+
status: basicAppShellStore.state.status,
|
|
14453
|
+
note: basicAppShellStore.state.note
|
|
14454
|
+
}
|
|
14455
|
+
),
|
|
14456
|
+
/* @__PURE__ */ jsx195(Text21, { children: basicAppShellStore.state.description })
|
|
14457
|
+
] }),
|
|
14450
14458
|
leftTopBar
|
|
14451
14459
|
] }),
|
|
14452
14460
|
/* @__PURE__ */ jsxs112(Group25, { p: "md", children: [
|
|
@@ -14600,13 +14608,13 @@ function MySkeletonTable({ h: h4 = 500 }) {
|
|
|
14600
14608
|
}
|
|
14601
14609
|
|
|
14602
14610
|
// src/core/button/MyButtonImport/MyFileImportConfigModal.tsx
|
|
14603
|
-
import { Button as Button26, FileInput as FileInput16, Flex as Flex9, Modal as Modal15, NumberInput as NumberInput3, SimpleGrid as SimpleGrid3, Stack as
|
|
14611
|
+
import { Button as Button26, FileInput as FileInput16, Flex as Flex9, Modal as Modal15, NumberInput as NumberInput3, SimpleGrid as SimpleGrid3, Stack as Stack8 } from "@mantine/core";
|
|
14604
14612
|
import { notifications as notifications2 } from "@mantine/notifications";
|
|
14605
14613
|
import { useEffect as useEffect22, useState as useState21 } from "react";
|
|
14606
14614
|
import { jsx as jsx201, jsxs as jsxs115 } from "react/jsx-runtime";
|
|
14607
14615
|
|
|
14608
14616
|
// src/core/button/MyButtonImport/MyMappingFieldModal.tsx
|
|
14609
|
-
import { Button as Button27, Flex as Flex10, Modal as Modal16, SimpleGrid as SimpleGrid4, Stack as
|
|
14617
|
+
import { Button as Button27, Flex as Flex10, Modal as Modal16, SimpleGrid as SimpleGrid4, Stack as Stack9, Table as Table5 } from "@mantine/core";
|
|
14610
14618
|
import { jsx as jsx202, jsxs as jsxs116 } from "react/jsx-runtime";
|
|
14611
14619
|
|
|
14612
14620
|
// src/core/button/MyButtonImport/MyButtonImport.tsx
|
|
@@ -14661,10 +14669,10 @@ function MyFlexIconTitle(props) {
|
|
|
14661
14669
|
}
|
|
14662
14670
|
|
|
14663
14671
|
// src/core/dataDisplay/MyInfoBox.tsx
|
|
14664
|
-
import { Group as Group27, Paper as Paper15, Stack as
|
|
14672
|
+
import { Group as Group27, Paper as Paper15, Stack as Stack10, Text as Text23 } from "@mantine/core";
|
|
14665
14673
|
import { jsx as jsx206, jsxs as jsxs119 } from "react/jsx-runtime";
|
|
14666
14674
|
function MyInfoBox({ title, data: data2, paperProps }) {
|
|
14667
|
-
return /* @__PURE__ */ jsx206(Paper15, __spreadProps(__spreadValues({ withBorder: true, shadow: "xs", radius: "md", p: "md", bg: const_object_colors.mantineBackgroundBlueLight }, paperProps), { children: /* @__PURE__ */ jsxs119(
|
|
14675
|
+
return /* @__PURE__ */ jsx206(Paper15, __spreadProps(__spreadValues({ withBorder: true, shadow: "xs", radius: "md", p: "md", bg: const_object_colors.mantineBackgroundBlueLight }, paperProps), { children: /* @__PURE__ */ jsxs119(Stack10, { children: [
|
|
14668
14676
|
title && /* @__PURE__ */ jsx206(Text23, { fw: 600, size: "sm", children: title }),
|
|
14669
14677
|
data2.map((item, index) => /* @__PURE__ */ jsxs119(Group27, { justify: "space-between", children: [
|
|
14670
14678
|
/* @__PURE__ */ jsx206(Text23, { size: "sm", fw: 500, c: "dimmed", children: item.label }),
|
|
@@ -15320,7 +15328,7 @@ import {
|
|
|
15320
15328
|
Group as Group33,
|
|
15321
15329
|
Modal as Modal19,
|
|
15322
15330
|
Select as Select8,
|
|
15323
|
-
Stack as
|
|
15331
|
+
Stack as Stack11,
|
|
15324
15332
|
Table as Table6,
|
|
15325
15333
|
Title as Title4
|
|
15326
15334
|
} from "@mantine/core";
|
|
@@ -15393,7 +15401,7 @@ function Usecase_FileFieldMappingModal(_a) {
|
|
|
15393
15401
|
}, rest), {
|
|
15394
15402
|
children: [
|
|
15395
15403
|
/* @__PURE__ */ jsxs126(Group33, { align: "start", grow: true, children: [
|
|
15396
|
-
/* @__PURE__ */ jsxs126(
|
|
15404
|
+
/* @__PURE__ */ jsxs126(Stack11, { w: "45%", children: [
|
|
15397
15405
|
/* @__PURE__ */ jsx219(Title4, { order: 5, children: "Danh s\xE1ch tr\u01B0\u1EDDng th\xF4ng tin" }),
|
|
15398
15406
|
/* @__PURE__ */ jsxs126(Table6, { striped: true, children: [
|
|
15399
15407
|
/* @__PURE__ */ jsx219(Table6.Thead, { children: /* @__PURE__ */ jsxs126(Table6.Tr, { children: [
|
|
@@ -15437,7 +15445,7 @@ function Usecase_FileFieldMappingModal(_a) {
|
|
|
15437
15445
|
] }, field.key)) })
|
|
15438
15446
|
] })
|
|
15439
15447
|
] }),
|
|
15440
|
-
/* @__PURE__ */ jsxs126(
|
|
15448
|
+
/* @__PURE__ */ jsxs126(Stack11, { w: "55%", children: [
|
|
15441
15449
|
/* @__PURE__ */ jsx219(Title4, { order: 5, children: "Tr\u01B0\u1EDDng \u0111\xE3 ch\u1ECDn & c\u1ED9t map" }),
|
|
15442
15450
|
/* @__PURE__ */ jsxs126(Table6, { striped: true, children: [
|
|
15443
15451
|
/* @__PURE__ */ jsx219(Table6.Thead, { children: /* @__PURE__ */ jsxs126(Table6.Tr, { children: [
|
|
@@ -15504,7 +15512,7 @@ import {
|
|
|
15504
15512
|
Group as Group34,
|
|
15505
15513
|
Modal as Modal20,
|
|
15506
15514
|
Select as Select9,
|
|
15507
|
-
Stack as
|
|
15515
|
+
Stack as Stack12
|
|
15508
15516
|
} from "@mantine/core";
|
|
15509
15517
|
import { IconCopy } from "@tabler/icons-react";
|
|
15510
15518
|
import { useEffect as useEffect26, useMemo as useMemo36, useState as useState25 } from "react";
|
|
@@ -15582,7 +15590,7 @@ function Usecase_FileImportConfigModal(_a) {
|
|
|
15582
15590
|
title: "Import",
|
|
15583
15591
|
size: "80%"
|
|
15584
15592
|
}, rest), {
|
|
15585
|
-
children: /* @__PURE__ */ jsxs127(
|
|
15593
|
+
children: /* @__PURE__ */ jsxs127(Stack12, { children: [
|
|
15586
15594
|
/* @__PURE__ */ jsxs127(Grid6, { children: [
|
|
15587
15595
|
/* @__PURE__ */ jsx220(Grid6.Col, { span: 8, children: /* @__PURE__ */ jsx220(
|
|
15588
15596
|
FileInput17,
|
|
@@ -417,6 +417,7 @@ interface I$2 {
|
|
|
417
417
|
menuCode?: string;
|
|
418
418
|
status?: string;
|
|
419
419
|
breadcrumb?: string[];
|
|
420
|
+
description?: string;
|
|
420
421
|
}
|
|
421
422
|
declare function useStore_BasicAppShell(): {
|
|
422
423
|
toggle: () => void;
|
|
@@ -490,7 +491,7 @@ interface IPageContent {
|
|
|
490
491
|
leftTopBar?: ReactNode;
|
|
491
492
|
status?: "Prototype" | "Beta";
|
|
492
493
|
}
|
|
493
|
-
declare function MyPageContent({ leftTopBar, title,
|
|
494
|
+
declare function MyPageContent({ leftTopBar, title, rightTopBar, children, }: IPageContent): react_jsx_runtime.JSX.Element;
|
|
494
495
|
|
|
495
496
|
interface ITab {
|
|
496
497
|
label: string;
|
package/dist/core/index.mjs
CHANGED
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
MyStatsCard,
|
|
24
24
|
MyTextInput2 as MyTextInput,
|
|
25
25
|
MyWeeklySessionSchedulerPicker
|
|
26
|
-
} from "../chunk-
|
|
26
|
+
} from "../chunk-XJJFG6HA.mjs";
|
|
27
27
|
import "../chunk-PW6WTEVB.mjs";
|
|
28
28
|
import "../chunk-5COIJ2CE.mjs";
|
|
29
29
|
import "../chunk-7PUDC2WF.mjs";
|
|
@@ -102,7 +102,7 @@ import {
|
|
|
102
102
|
Feat_accessControlLevel,
|
|
103
103
|
useS_authenticate,
|
|
104
104
|
useS_moduleConfig
|
|
105
|
-
} from "../chunk-
|
|
105
|
+
} from "../chunk-XJJFG6HA.mjs";
|
|
106
106
|
import "../chunk-PW6WTEVB.mjs";
|
|
107
107
|
import "../chunk-5COIJ2CE.mjs";
|
|
108
108
|
import "../chunk-7PUDC2WF.mjs";
|