aq-fe-framework 0.1.257 → 0.1.258

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.
@@ -0,0 +1,10 @@
1
+ // src/const/object/const_object_colors.ts
2
+ var const_object_colors = {
3
+ mantineBackgroundPrimary: "light-dark(var(--mantine-color-white), var(--mantine-color-dark))",
4
+ mantineBackgroundSecondary: "light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-8))",
5
+ mantineBackgroundBlueLight: "var(--mantine-color-blue-light)"
6
+ };
7
+
8
+ export {
9
+ const_object_colors
10
+ };
@@ -0,0 +1,13 @@
1
+ // src/const/object/const_object_documentTypes.ts
2
+ var const_object_documentTypes = {
3
+ Security: 1,
4
+ Refinement: 2,
5
+ Guideline: 3,
6
+ Regulations: 4,
7
+ Workflow: 5,
8
+ Form: 6
9
+ };
10
+
11
+ export {
12
+ const_object_documentTypes
13
+ };
@@ -1,3 +1,9 @@
1
+ import {
2
+ const_object_colors
3
+ } from "./chunk-3DEB6MVY.mjs";
4
+ import {
5
+ enum_daysOfWeek
6
+ } from "./chunk-K6S7R6LU.mjs";
1
7
  import {
2
8
  baseAxios_default,
3
9
  useQ_AQ_GetAQModule
@@ -6775,22 +6781,10 @@ function MyDateInput(_a) {
6775
6781
  return /* @__PURE__ */ jsx45(DateInput, __spreadValues({ label, placeholder: label ? `Ch\u1ECDn ${label == null ? void 0 : label.toLowerCase()}` : "" }, rest));
6776
6782
  }
6777
6783
 
6778
- // src/const/enum/global.ts
6779
- var ENUM_DAYS_OF_WEEK = /* @__PURE__ */ ((ENUM_DAYS_OF_WEEK2) => {
6780
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 Hai"] = 1] = "Th\u1EE9 Hai";
6781
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 Ba"] = 2] = "Th\u1EE9 Ba";
6782
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 T\u01B0"] = 3] = "Th\u1EE9 T\u01B0";
6783
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 N\u0103m"] = 4] = "Th\u1EE9 N\u0103m";
6784
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 S\xE1u"] = 5] = "Th\u1EE9 S\xE1u";
6785
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Th\u1EE9 B\u1EA3y"] = 6] = "Th\u1EE9 B\u1EA3y";
6786
- ENUM_DAYS_OF_WEEK2[ENUM_DAYS_OF_WEEK2["Ch\u1EE7 Nh\u1EADt"] = 0] = "Ch\u1EE7 Nh\u1EADt";
6787
- return ENUM_DAYS_OF_WEEK2;
6788
- })(ENUM_DAYS_OF_WEEK || {});
6789
-
6790
6784
  // src/components/Inputs/DayOfWeekPicker/MyDayOfWeekPicker.tsx
6791
6785
  import { Badge as Badge3, Group as Group15, Text as Text13 } from "@mantine/core";
6792
6786
  import { jsx as jsx46, jsxs as jsxs27 } from "react/jsx-runtime";
6793
- var days = Object.entries(ENUM_DAYS_OF_WEEK).filter(([key]) => isNaN(Number(key))).map(([label, value]) => ({ label, value }));
6787
+ var days = Object.entries(enum_daysOfWeek).filter(([key]) => isNaN(Number(key))).map(([label, value]) => ({ label, value }));
6794
6788
  function MyDayOfWeekPicker({ value = [], onChange }) {
6795
6789
  const toggle = (val) => {
6796
6790
  if (!onChange) return;
@@ -7077,13 +7071,6 @@ function MyTextEditor(_a) {
7077
7071
  ] }) });
7078
7072
  }
7079
7073
 
7080
- // src/const/object/object_colors.ts
7081
- var object_colors = {
7082
- mantineBackgroundPrimary: "light-dark(var(--mantine-color-white), var(--mantine-color-dark))",
7083
- mantineBackgroundSecondary: "light-dark(var(--mantine-color-gray-1), var(--mantine-color-dark-8))",
7084
- mantineBackgroundBlueLight: "var(--mantine-color-blue-light)"
7085
- };
7086
-
7087
7074
  // src/components/Inputs/WeeklySessionSchedulerPicker/MyWeeklySessionSchedulerPicker.tsx
7088
7075
  import {
7089
7076
  Button as Button14,
@@ -7127,7 +7114,7 @@ function MyWeeklySessionSchedulerPicker({
7127
7114
  acc[curr.dayOfWeek].push(curr);
7128
7115
  return acc;
7129
7116
  }, {});
7130
- const getLabel = (day) => ENUM_DAYS_OF_WEEK[day] || `Day ${day}`;
7117
+ const getLabel = (day) => enum_daysOfWeek[day] || `Day ${day}`;
7131
7118
  return /* @__PURE__ */ jsx52(Paper7, { w: "100%", p: "md", children: /* @__PURE__ */ jsxs30(MyFlexColumn, { children: [
7132
7119
  /* @__PURE__ */ jsx52(Center4, { children: /* @__PURE__ */ jsx52(
7133
7120
  MyDayOfWeekPicker,
@@ -7147,7 +7134,7 @@ function MyWeeklySessionSchedulerPicker({
7147
7134
  {
7148
7135
  w: "100%",
7149
7136
  p: "md",
7150
- bg: object_colors.mantineBackgroundBlueLight,
7137
+ bg: const_object_colors.mantineBackgroundBlueLight,
7151
7138
  children: [
7152
7139
  /* @__PURE__ */ jsxs30(Group17, { gap: "apart", children: [
7153
7140
  /* @__PURE__ */ jsx52(Text15, { w: "70px", fw: 500, children: getLabel(dayOfWeek) }),
@@ -7710,7 +7697,7 @@ function HeaderMegaMenu({ children, menus }) {
7710
7697
  ] }),
7711
7698
  /* @__PURE__ */ jsx56(Burger, { opened: drawerOpened, onClick: toggleDrawer, hiddenFrom: "sm" })
7712
7699
  ] }) }),
7713
- /* @__PURE__ */ jsx56(Container2, { fluid: true, pt: "sm", pb: "md", bg: object_colors.mantineBackgroundSecondary, mih: "93vh", children }),
7700
+ /* @__PURE__ */ jsx56(Container2, { fluid: true, pt: "sm", pb: "md", bg: const_object_colors.mantineBackgroundSecondary, mih: "93vh", children }),
7714
7701
  /* @__PURE__ */ jsx56(
7715
7702
  Drawer,
7716
7703
  {
@@ -7992,7 +7979,6 @@ export {
7992
7979
  MyNumberInput,
7993
7980
  MyTextArea,
7994
7981
  MyTextEditor,
7995
- object_colors,
7996
7982
  MyWeeklySessionSchedulerPicker,
7997
7983
  useS_authenticate,
7998
7984
  F_authenticate_Logout,
@@ -0,0 +1,15 @@
1
+ // src/enum/enum_daysOfWeek.ts
2
+ var enum_daysOfWeek = /* @__PURE__ */ ((enum_daysOfWeek2) => {
3
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 Hai"] = 1] = "Th\u1EE9 Hai";
4
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 Ba"] = 2] = "Th\u1EE9 Ba";
5
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 T\u01B0"] = 3] = "Th\u1EE9 T\u01B0";
6
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 N\u0103m"] = 4] = "Th\u1EE9 N\u0103m";
7
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 S\xE1u"] = 5] = "Th\u1EE9 S\xE1u";
8
+ enum_daysOfWeek2[enum_daysOfWeek2["Th\u1EE9 B\u1EA3y"] = 6] = "Th\u1EE9 B\u1EA3y";
9
+ enum_daysOfWeek2[enum_daysOfWeek2["Ch\u1EE7 Nh\u1EADt"] = 0] = "Ch\u1EE7 Nh\u1EADt";
10
+ return enum_daysOfWeek2;
11
+ })(enum_daysOfWeek || {});
12
+
13
+ export {
14
+ enum_daysOfWeek
15
+ };
@@ -0,0 +1,12 @@
1
+ // src/enum/enum_emailConfigModule.ts
2
+ var enum_emailConfigModule = /* @__PURE__ */ ((enum_emailConfigModule2) => {
3
+ enum_emailConfigModule2[enum_emailConfigModule2["\u0110\xE0o t\u1EA1o"] = 1] = "\u0110\xE0o t\u1EA1o";
4
+ enum_emailConfigModule2[enum_emailConfigModule2["Tuy\u1EC3n sinh"] = 2] = "Tuy\u1EC3n sinh";
5
+ enum_emailConfigModule2[enum_emailConfigModule2["Sinh vi\xEAn"] = 3] = "Sinh vi\xEAn";
6
+ enum_emailConfigModule2[enum_emailConfigModule2["Kh\u1EA3o th\xED"] = 4] = "Kh\u1EA3o th\xED";
7
+ return enum_emailConfigModule2;
8
+ })(enum_emailConfigModule || {});
9
+
10
+ export {
11
+ enum_emailConfigModule
12
+ };
@@ -68,7 +68,9 @@ import {
68
68
  useS_BasicAppShell,
69
69
  useS_ButtonImport,
70
70
  utils_layout_getItemsWithoutLinks
71
- } from "../chunk-EWMT3PDO.mjs";
71
+ } from "../chunk-CAMCDJ5F.mjs";
72
+ import "../chunk-3DEB6MVY.mjs";
73
+ import "../chunk-K6S7R6LU.mjs";
72
74
  import "../chunk-HMRYQTJT.mjs";
73
75
  import "../chunk-Y3YGC5IH.mjs";
74
76
  import "../chunk-5U2JSHSJ.mjs";
@@ -0,0 +1,18 @@
1
+ declare const const_array_daysOfWeek: string[];
2
+
3
+ declare const const_object_colors: {
4
+ mantineBackgroundPrimary: string;
5
+ mantineBackgroundSecondary: string;
6
+ mantineBackgroundBlueLight: string;
7
+ };
8
+
9
+ declare const const_object_documentTypes: {
10
+ Security: number;
11
+ Refinement: number;
12
+ Guideline: number;
13
+ Regulations: number;
14
+ Workflow: number;
15
+ Form: number;
16
+ };
17
+
18
+ export { const_array_daysOfWeek, const_object_colors, const_object_documentTypes };
@@ -0,0 +1,23 @@
1
+ import {
2
+ const_object_documentTypes
3
+ } from "../chunk-BZMQOGL6.mjs";
4
+ import {
5
+ const_object_colors
6
+ } from "../chunk-3DEB6MVY.mjs";
7
+ import "../chunk-FWCSY2DS.mjs";
8
+
9
+ // src/const/array/const_array_daysOfWeek.ts
10
+ var const_array_daysOfWeek = [
11
+ "Th\u1EE9 Hai",
12
+ "Th\u1EE9 Ba",
13
+ "Th\u1EE9 T\u01B0",
14
+ "Th\u1EE9 N\u0103m",
15
+ "Th\u1EE9 S\xE1u",
16
+ "Th\u1EE9 B\u1EA3y",
17
+ "Ch\u1EE7 Nh\u1EADt"
18
+ ];
19
+ export {
20
+ const_array_daysOfWeek,
21
+ const_object_colors,
22
+ const_object_documentTypes
23
+ };
@@ -0,0 +1,23 @@
1
+ declare enum enum_daysOfWeek {
2
+ "Thứ Hai" = 1,
3
+ "Thứ Ba" = 2,
4
+ "Thứ Tư" = 3,
5
+ "Thứ Năm" = 4,
6
+ "Thứ Sáu" = 5,
7
+ "Thứ Bảy" = 6,
8
+ "Chủ Nhật" = 0
9
+ }
10
+
11
+ declare enum enum_emailConfigModule {
12
+ "Đào tạo" = 1,
13
+ "Tuyển sinh" = 2,
14
+ "Sinh viên" = 3,
15
+ "Khảo thí" = 4
16
+ }
17
+
18
+ declare enum enum_gender {
19
+ "Nam" = 1,
20
+ "Nữ" = 2
21
+ }
22
+
23
+ export { enum_daysOfWeek, enum_emailConfigModule, enum_gender };
@@ -0,0 +1,19 @@
1
+ import {
2
+ enum_emailConfigModule
3
+ } from "../chunk-VH4ZAD6M.mjs";
4
+ import {
5
+ enum_daysOfWeek
6
+ } from "../chunk-K6S7R6LU.mjs";
7
+ import "../chunk-FWCSY2DS.mjs";
8
+
9
+ // src/enum/enum_gender.ts
10
+ var enum_gender = /* @__PURE__ */ ((enum_gender2) => {
11
+ enum_gender2[enum_gender2["Nam"] = 1] = "Nam";
12
+ enum_gender2[enum_gender2["N\u1EEF"] = 2] = "N\u1EEF";
13
+ return enum_gender2;
14
+ })(enum_gender || {});
15
+ export {
16
+ enum_daysOfWeek,
17
+ enum_emailConfigModule,
18
+ enum_gender
19
+ };
@@ -21,11 +21,20 @@ import {
21
21
  MyTab,
22
22
  MyTextInput,
23
23
  groupToTwoLevels,
24
- object_colors,
25
24
  useS_BasicAppShell,
26
25
  useS_authenticate,
27
26
  utils_layout_getItemsWithoutLinks
28
- } from "../chunk-EWMT3PDO.mjs";
27
+ } from "../chunk-CAMCDJ5F.mjs";
28
+ import {
29
+ const_object_documentTypes
30
+ } from "../chunk-BZMQOGL6.mjs";
31
+ import {
32
+ const_object_colors
33
+ } from "../chunk-3DEB6MVY.mjs";
34
+ import {
35
+ enum_emailConfigModule
36
+ } from "../chunk-VH4ZAD6M.mjs";
37
+ import "../chunk-K6S7R6LU.mjs";
29
38
  import {
30
39
  baseAxios_default,
31
40
  useQ_AQ_GetAQModule,
@@ -296,16 +305,6 @@ function SubRead({
296
305
  ] });
297
306
  }
298
307
 
299
- // src/const/object/documentTypes.ts
300
- var OBJECT_DOCUMENT_TYPES = {
301
- Security: 1,
302
- Refinement: 2,
303
- Guideline: 3,
304
- Regulations: 4,
305
- Workflow: 5,
306
- Form: 6
307
- };
308
-
309
308
  // src/modules-features/admin/core/core12196/F_core12196_Create.tsx
310
309
  import { useForm as useForm2 } from "@mantine/form";
311
310
  import { jsx as jsx5, jsxs as jsxs3 } from "react/jsx-runtime";
@@ -327,7 +326,7 @@ function F_core12196_Create({ FormTypeId }) {
327
326
  form,
328
327
  onSubmit: async (values) => {
329
328
  return await baseAxios_default.post("/Document/create", __spreadProps(__spreadValues({}, values), {
330
- DocumentType: OBJECT_DOCUMENT_TYPES.Form,
329
+ DocumentType: const_object_documentTypes.Form,
331
330
  fileDetail: await utils_file_fileToAQDocumentType(values.file)
332
331
  }));
333
332
  },
@@ -746,9 +745,9 @@ var tabData = [
746
745
  ];
747
746
  function F_core18256() {
748
747
  return /* @__PURE__ */ jsxs11(MyTab, { tabList: tabData, children: [
749
- /* @__PURE__ */ jsx15(Tabs.Panel, { value: "1. V\u0103n b\u1EA3n quy \u0111\u1ECBnh", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: OBJECT_DOCUMENT_TYPES.Regulations }) }),
750
- /* @__PURE__ */ jsx15(Tabs.Panel, { value: "2. Quy tr\xECnh x\u1EED l\xFD c\xF4ng vi\u1EC7c", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: OBJECT_DOCUMENT_TYPES.Workflow }) }),
751
- /* @__PURE__ */ jsx15(Tabs.Panel, { value: "3. Danh m\u1EE5c bi\u1EC3u m\u1EABu", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: OBJECT_DOCUMENT_TYPES.Form }) })
748
+ /* @__PURE__ */ jsx15(Tabs.Panel, { value: "1. V\u0103n b\u1EA3n quy \u0111\u1ECBnh", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: const_object_documentTypes.Regulations }) }),
749
+ /* @__PURE__ */ jsx15(Tabs.Panel, { value: "2. Quy tr\xECnh x\u1EED l\xFD c\xF4ng vi\u1EC7c", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: const_object_documentTypes.Workflow }) }),
750
+ /* @__PURE__ */ jsx15(Tabs.Panel, { value: "3. Danh m\u1EE5c bi\u1EC3u m\u1EABu", children: /* @__PURE__ */ jsx15(F_core18256_Read, { documentType: const_object_documentTypes.Form }) })
752
751
  ] });
753
752
  }
754
753
 
@@ -1718,7 +1717,7 @@ function F_core38677_ViewMenuPermissions({ menuData: menuData2 }) {
1718
1717
  Table.Td,
1719
1718
  {
1720
1719
  colSpan: 7,
1721
- bg: object_colors.mantineBackgroundBlueLight,
1720
+ bg: const_object_colors.mantineBackgroundBlueLight,
1722
1721
  children: /* @__PURE__ */ jsx29(Text, { fs: "oblique", size: "sm", fw: "bold", children: item.label })
1723
1722
  }
1724
1723
  ) }, item.label),
@@ -1843,7 +1842,7 @@ function F_core38677({ menuData: menuData2 }) {
1843
1842
  return /* @__PURE__ */ jsxs22(Grid2, { children: [
1844
1843
  /* @__PURE__ */ jsx30(Grid2.Col, { span: { base: 12, sm: 5 }, children: /* @__PURE__ */ jsx30(ScrollArea2.Autosize, { children: /* @__PURE__ */ jsx30(F_core38677_ReadUser, {}) }) }),
1845
1844
  /* @__PURE__ */ jsx30(Grid2.Col, { span: { base: 12, sm: 7 }, children: /* @__PURE__ */ jsxs22(MyFlexColumn, { h: "80vh", flex: 1, children: [
1846
- /* @__PURE__ */ jsx30(ScrollArea2.Autosize, { h: "100%", children: /* @__PURE__ */ jsx30(Paper4, { p: "md", bg: object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx30(F_core38677_ViewMenuPermissions, { menuData: menuData2 }) }) }),
1845
+ /* @__PURE__ */ jsx30(ScrollArea2.Autosize, { h: "100%", children: /* @__PURE__ */ jsx30(Paper4, { p: "md", bg: const_object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx30(F_core38677_ViewMenuPermissions, { menuData: menuData2 }) }) }),
1847
1846
  /* @__PURE__ */ jsx30(F_core38677_Save, {})
1848
1847
  ] }) })
1849
1848
  ] });
@@ -2317,15 +2316,6 @@ function F_core60524({ AQModuleId }) {
2317
2316
  return /* @__PURE__ */ jsx42(F_core60524_Form, {});
2318
2317
  }
2319
2318
 
2320
- // src/const/enum/ENUM_EMAILCONFIG.ts
2321
- var ENUM_EMAILCONFIG_MODULE = /* @__PURE__ */ ((ENUM_EMAILCONFIG_MODULE2) => {
2322
- ENUM_EMAILCONFIG_MODULE2[ENUM_EMAILCONFIG_MODULE2["\u0110\xE0o t\u1EA1o"] = 1] = "\u0110\xE0o t\u1EA1o";
2323
- ENUM_EMAILCONFIG_MODULE2[ENUM_EMAILCONFIG_MODULE2["Tuy\u1EC3n sinh"] = 2] = "Tuy\u1EC3n sinh";
2324
- ENUM_EMAILCONFIG_MODULE2[ENUM_EMAILCONFIG_MODULE2["Sinh vi\xEAn"] = 3] = "Sinh vi\xEAn";
2325
- ENUM_EMAILCONFIG_MODULE2[ENUM_EMAILCONFIG_MODULE2["Kh\u1EA3o th\xED"] = 4] = "Kh\u1EA3o th\xED";
2326
- return ENUM_EMAILCONFIG_MODULE2;
2327
- })(ENUM_EMAILCONFIG_MODULE || {});
2328
-
2329
2319
  // src/modules-features/admin/core/core64229/F_core64229_Read.tsx
2330
2320
  import { useQuery as useQuery11 } from "@tanstack/react-query";
2331
2321
  import { useMemo as useMemo9 } from "react";
@@ -2461,7 +2451,7 @@ function F_core64229_Read({ emailModule }) {
2461
2451
  {
2462
2452
  header: "Ph\xE2n h\u1EC7",
2463
2453
  accessorFn: (row) => {
2464
- return ENUM_EMAILCONFIG_MODULE[row.emailModule];
2454
+ return enum_emailConfigModule[row.emailModule];
2465
2455
  }
2466
2456
  },
2467
2457
  {
@@ -2510,7 +2500,7 @@ function F_core64229_Read({ emailModule }) {
2510
2500
  // src/modules-features/admin/core/core64229/F_core64229.tsx
2511
2501
  import { jsx as jsx46 } from "react/jsx-runtime";
2512
2502
  function F_core64229() {
2513
- return /* @__PURE__ */ jsx46(F_core64229_Read, { emailModule: utils_converter_enumToSelectOptions(ENUM_EMAILCONFIG_MODULE) });
2503
+ return /* @__PURE__ */ jsx46(F_core64229_Read, { emailModule: utils_converter_enumToSelectOptions(enum_emailConfigModule) });
2514
2504
  }
2515
2505
 
2516
2506
  // src/modules-features/admin/core/core71678/F_core71678.tsx
@@ -3322,7 +3312,7 @@ function F_core83092_ViewMenuPermissions({ menuData: menuData2 }) {
3322
3312
  Table3.Td,
3323
3313
  {
3324
3314
  colSpan: 7,
3325
- bg: object_colors.mantineBackgroundBlueLight,
3315
+ bg: const_object_colors.mantineBackgroundBlueLight,
3326
3316
  children: /* @__PURE__ */ jsx60(Text2, { fs: "oblique", size: "sm", fw: "bold", children: item.label })
3327
3317
  }
3328
3318
  ) }, item.label),
@@ -3447,7 +3437,7 @@ function F_core83092({ menuData: menuData2 }) {
3447
3437
  return /* @__PURE__ */ jsxs39(Grid4, { children: [
3448
3438
  /* @__PURE__ */ jsx61(Grid4.Col, { span: { base: 12, sm: 5 }, children: /* @__PURE__ */ jsx61(ScrollArea4.Autosize, { children: /* @__PURE__ */ jsx61(F_core83092_ReadUser, {}) }) }),
3449
3439
  /* @__PURE__ */ jsx61(Grid4.Col, { span: { base: 12, sm: 7 }, children: /* @__PURE__ */ jsxs39(MyFlexColumn, { h: "80vh", flex: 1, children: [
3450
- /* @__PURE__ */ jsx61(ScrollArea4.Autosize, { h: "100%", children: /* @__PURE__ */ jsx61(Paper6, { p: "md", bg: object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx61(F_core83092_ViewMenuPermissions, { menuData: menuData2 }) }) }),
3440
+ /* @__PURE__ */ jsx61(ScrollArea4.Autosize, { h: "100%", children: /* @__PURE__ */ jsx61(Paper6, { p: "md", bg: const_object_colors.mantineBackgroundSecondary, children: /* @__PURE__ */ jsx61(F_core83092_ViewMenuPermissions, { menuData: menuData2 }) }) }),
3451
3441
  /* @__PURE__ */ jsx61(F_core83092_Save, {})
3452
3442
  ] }) })
3453
3443
  ] });
package/package.json CHANGED
@@ -24,9 +24,17 @@
24
24
  "./interfaces": {
25
25
  "import": "./dist/interfaces/index.mjs",
26
26
  "types": "./dist/interfaces/index.d.mts"
27
+ },
28
+ "./const": {
29
+ "import": "./dist/const/index.mjs",
30
+ "types": "./dist/const/index.d.mts"
31
+ },
32
+ "./enum": {
33
+ "import": "./dist/enum/index.mjs",
34
+ "types": "./dist/enum/index.d.mts"
27
35
  }
28
36
  },
29
- "version": "0.1.257",
37
+ "version": "0.1.258",
30
38
  "private": false,
31
39
  "files": [
32
40
  "dist"