aq-fe-framework 0.1.984 → 0.1.985

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,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { ActionIconProps, ButtonProps, ModalProps, TooltipProps } from '@mantine/core';
2
+ import { ActionIconProps, TooltipProps, ButtonProps, ModalProps } from '@mantine/core';
3
3
  import { useDisclosure } from '@mantine/hooks';
4
4
  import { ReactNode } from 'react';
5
5
  import { t as type_action } from './type_action-hMF6_2Mr.mjs';
@@ -8,6 +8,7 @@ import { MRT_RowData, MRT_TableOptions, MRT_ColumnDef } from 'mantine-react-tabl
8
8
  interface MyActionIconProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "color" | "style">, ActionIconProps {
9
9
  actionType?: type_action;
10
10
  isCheckPermission?: boolean;
11
+ toolTipProps?: TooltipProps;
11
12
  }
12
13
  declare function MyActionIcon({ children, actionType, isCheckPermission, ...rest }: MyActionIconProps): react_jsx_runtime.JSX.Element;
13
14
 
@@ -26,6 +27,10 @@ interface MyButtonModalProps {
26
27
  actionIconProps?: MyActionIconProps;
27
28
  modalProps?: Omit<ModalProps, "opened" | "onClose">;
28
29
  isActionIcon?: boolean;
30
+ /**
31
+ * @deprecated
32
+ * Xài actionIconProps trong đó có tooltipProps xài trong đó nhé.
33
+ */
29
34
  toolTipProps?: Omit<TooltipProps, "children">;
30
35
  }
31
36
  declare function MyButtonModal({ disclosure, children, buttonProps, actionIconProps, modalProps, isActionIcon, toolTipProps, }: MyButtonModalProps): react_jsx_runtime.JSX.Element;
@@ -3,12 +3,6 @@ import {
3
3
  useStore_Permission,
4
4
  useStore_ProjectInfo
5
5
  } from "./chunk-PKP6EDBO.mjs";
6
- import {
7
- utils_date,
8
- utils_excel,
9
- utils_file,
10
- utils_mantineReactTable
11
- } from "./chunk-7ZI7IOEP.mjs";
12
6
  import {
13
7
  utils_aq_mapBaseEntityToDomain,
14
8
  utils_aq_mapDomainToEntity,
@@ -23,13 +17,19 @@ import {
23
17
  utils_notification_show,
24
18
  utils_pdf_download
25
19
  } from "./chunk-KGBXMHKR.mjs";
20
+ import {
21
+ utils_date,
22
+ utils_excel,
23
+ utils_file,
24
+ utils_mantineReactTable
25
+ } from "./chunk-7ZI7IOEP.mjs";
26
26
  import {
27
27
  createGenericStore
28
28
  } from "./chunk-BTITP4TN.mjs";
29
29
  import {
30
30
  const_object_colors,
31
31
  const_object_documentTypes
32
- } from "./chunk-4IP2EYUM.mjs";
32
+ } from "./chunk-SPG47QW7.mjs";
33
33
  import {
34
34
  enum_daysOfWeek
35
35
  } from "./chunk-K6S7R6LU.mjs";
@@ -132,7 +132,10 @@ var getActionConfig = (colorScheme) => ({
132
132
  update: {
133
133
  color: "yellow",
134
134
  type: "submit",
135
- children: /* @__PURE__ */ jsx3(IconEdit, {})
135
+ children: /* @__PURE__ */ jsx3(IconEdit, {}),
136
+ toolTipProps: {
137
+ label: "C\u1EADp nh\u1EADt"
138
+ }
136
139
  },
137
140
  save: {
138
141
  color: "blue",
@@ -191,6 +194,7 @@ var getActionConfig = (colorScheme) => ({
191
194
  });
192
195
  function MyActionIcon(_a) {
193
196
  var _b = _a, { children, actionType: actionType2, isCheckPermission = true } = _b, rest = __objRest(_b, ["children", "actionType", "isCheckPermission"]);
197
+ var _a2, _b2, _c;
194
198
  const permissionStore = useStore_Permission();
195
199
  const { colorScheme } = useMantineColorScheme2();
196
200
  if (!actionType2) {
@@ -202,8 +206,7 @@ function MyActionIcon(_a) {
202
206
  return false;
203
207
  return actionType2 === "create" && permissionStore.state.currentPermissionPage.isCreate === false || actionType2 === "update" && permissionStore.state.currentPermissionPage.isUpdate === false || actionType2 === "delete" && permissionStore.state.currentPermissionPage.isDelete === false || actionType2 === "print" && permissionStore.state.currentPermissionPage.isPrint === false || actionType2 === "export" && permissionStore.state.currentPermissionPage.isExport === false;
204
208
  })();
205
- const actionIcon = /* @__PURE__ */ jsx3(ActionIcon2, __spreadProps(__spreadValues(__spreadValues({ hidden: shouldHide }, config4), rest), { children: children || config4.children }));
206
- return config4.tooltipLabel ? /* @__PURE__ */ jsx3(Tooltip, { label: config4.tooltipLabel, children: actionIcon }) : actionIcon;
209
+ return /* @__PURE__ */ jsx3(Tooltip, __spreadProps(__spreadValues({ label: (_a2 = config4.toolTipProps) == null ? void 0 : _a2.label, hidden: !((_b2 = config4.toolTipProps) == null ? void 0 : _b2.label) && !((_c = rest.toolTipProps) == null ? void 0 : _c.label) }, rest.toolTipProps), { children: /* @__PURE__ */ jsx3(ActionIcon2, __spreadProps(__spreadValues(__spreadValues({ hidden: shouldHide }, config4), rest), { children: children || config4.children })) }));
207
210
  }
208
211
 
209
212
  // src/core/button/MyButton/MyButton.tsx
@@ -480,7 +483,7 @@ function MyFlexColumn2(_a) {
480
483
  }
481
484
 
482
485
  // src/core/button/MyButtonModal/MyButtonModal.tsx
483
- import { Modal as Modal2, Tooltip as Tooltip3 } from "@mantine/core";
486
+ import { Modal as Modal2 } from "@mantine/core";
484
487
  import { Fragment as Fragment2, jsx as jsx8, jsxs as jsxs2 } from "react/jsx-runtime";
485
488
  function MyButtonModal({
486
489
  disclosure,
@@ -501,12 +504,14 @@ function MyButtonModal({
501
504
  disclosure == null ? void 0 : disclosure[1].open();
502
505
  };
503
506
  return /* @__PURE__ */ jsxs2(Fragment2, { children: [
504
- isActionIcon ? /* @__PURE__ */ jsx8(Tooltip3, __spreadProps(__spreadValues({ label: toolTipProps == null ? void 0 : toolTipProps.label, hidden: !(toolTipProps == null ? void 0 : toolTipProps.label) }, toolTipProps), { children: /* @__PURE__ */ jsx8(
507
+ isActionIcon ? /* @__PURE__ */ jsx8(
505
508
  MyActionIcon,
506
- __spreadProps(__spreadValues({}, actionIconProps), {
509
+ __spreadProps(__spreadValues({
510
+ toolTipProps
511
+ }, actionIconProps), {
507
512
  onClick: handleClick
508
513
  })
509
- ) })) : /* @__PURE__ */ jsx8(
514
+ ) : /* @__PURE__ */ jsx8(
510
515
  MyButton,
511
516
  __spreadProps(__spreadValues({}, buttonProps), {
512
517
  onClick: handleClick
@@ -1176,11 +1181,11 @@ function MyActionIconUpdate(_a) {
1176
1181
  }
1177
1182
 
1178
1183
  // src/components/ActionIcons/ActionIconDownloadPDF/MyActionIconDownloadPDF.tsx
1179
- import { ActionIcon as ActionIcon5, Tooltip as Tooltip4 } from "@mantine/core";
1184
+ import { ActionIcon as ActionIcon5, Tooltip as Tooltip3 } from "@mantine/core";
1180
1185
  import { IconDownload as IconDownload3 } from "@tabler/icons-react";
1181
1186
  import { jsx as jsx21 } from "react/jsx-runtime";
1182
1187
  function MyActionIconDownloadPDF({ pdfLink = "https://datafiles.chinhphu.vn/cpp/files/vbpq/2021/07/17-bgd.signed.pdf" }) {
1183
- return /* @__PURE__ */ jsx21(Tooltip4, { label: "Nh\u1EA5p \u0111\u1EC3 t\u1EA3i xu\u1ED1ng", children: /* @__PURE__ */ jsx21(ActionIcon5, { onClick: async () => await utils_pdf_download(pdfLink), color: "red", children: /* @__PURE__ */ jsx21(IconDownload3, {}) }) });
1188
+ return /* @__PURE__ */ jsx21(Tooltip3, { label: "Nh\u1EA5p \u0111\u1EC3 t\u1EA3i xu\u1ED1ng", children: /* @__PURE__ */ jsx21(ActionIcon5, { onClick: async () => await utils_pdf_download(pdfLink), color: "red", children: /* @__PURE__ */ jsx21(IconDownload3, {}) }) });
1184
1189
  }
1185
1190
 
1186
1191
  // src/components/ActionIcons/ActionIconUpload/MyActionIconUpload.tsx
@@ -1205,7 +1210,7 @@ function MyActionIconUpload() {
1205
1210
  }
1206
1211
 
1207
1212
  // src/components/ActionIcons/ActionIconViewPdf/MyActionIconViewPDF.tsx
1208
- import { ActionIcon as ActionIcon7, Group as Group2, Modal as Modal4, Paper, Text as Text3, Tooltip as Tooltip5 } from "@mantine/core";
1213
+ import { ActionIcon as ActionIcon7, Group as Group2, Modal as Modal4, Paper, Text as Text3, Tooltip as Tooltip4 } from "@mantine/core";
1209
1214
  import { useDisclosure as useDisclosure6 } from "@mantine/hooks";
1210
1215
  import { IconLivePhoto as IconLivePhoto2, IconMaximize, IconMinimize } from "@tabler/icons-react";
1211
1216
  import { useState as useState4 } from "react";
@@ -1222,7 +1227,7 @@ function MyActionIconViewPDF(_a) {
1222
1227
  const fullScreen = useState4(false);
1223
1228
  const hSize = useState4("80vh");
1224
1229
  return /* @__PURE__ */ jsxs10(Fragment6, { children: [
1225
- /* @__PURE__ */ jsx23(Tooltip5, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: /* @__PURE__ */ jsx23(ActionIcon7, __spreadProps(__spreadValues({ color: "cyan", onClick: disc[1].open }, rest), { children: /* @__PURE__ */ jsx23(IconLivePhoto2, {}) })) }),
1230
+ /* @__PURE__ */ jsx23(Tooltip4, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: /* @__PURE__ */ jsx23(ActionIcon7, __spreadProps(__spreadValues({ color: "cyan", onClick: disc[1].open }, rest), { children: /* @__PURE__ */ jsx23(IconLivePhoto2, {}) })) }),
1226
1231
  /* @__PURE__ */ jsx23(
1227
1232
  Modal4,
1228
1233
  {
@@ -2613,7 +2618,7 @@ import {
2613
2618
  Modal as Modal11,
2614
2619
  Paper as Paper3,
2615
2620
  Text as Text7,
2616
- Tooltip as Tooltip6
2621
+ Tooltip as Tooltip5
2617
2622
  } from "@mantine/core";
2618
2623
  import { useDisclosure as useDisclosure12 } from "@mantine/hooks";
2619
2624
  import { IconLivePhoto as IconLivePhoto3, IconMaximize as IconMaximize3, IconMinimize as IconMinimize3 } from "@tabler/icons-react";
@@ -2670,7 +2675,7 @@ function MyButtonViewPDF({
2670
2675
  }
2671
2676
  }, [opened]);
2672
2677
  return /* @__PURE__ */ jsxs24(Fragment13, { children: [
2673
- /* @__PURE__ */ jsx43(Tooltip6, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: isActionIcon ? /* @__PURE__ */ jsx43(ActionIcon10, { onClick: open, children: /* @__PURE__ */ jsx43(IconLivePhoto3, {}) }) : /* @__PURE__ */ jsx43(Button12, { color: "cyan", onClick: open, leftSection: /* @__PURE__ */ jsx43(IconLivePhoto3, {}), children: label }) }),
2678
+ /* @__PURE__ */ jsx43(Tooltip5, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: isActionIcon ? /* @__PURE__ */ jsx43(ActionIcon10, { onClick: open, children: /* @__PURE__ */ jsx43(IconLivePhoto3, {}) }) : /* @__PURE__ */ jsx43(Button12, { color: "cyan", onClick: open, leftSection: /* @__PURE__ */ jsx43(IconLivePhoto3, {}), children: label }) }),
2674
2679
  /* @__PURE__ */ jsx43(
2675
2680
  Modal11,
2676
2681
  {
@@ -8160,7 +8165,7 @@ import {
8160
8165
  Image as Image4,
8161
8166
  ScrollArea as ScrollArea4,
8162
8167
  Text as Text22,
8163
- Tooltip as Tooltip7
8168
+ Tooltip as Tooltip6
8164
8169
  } from "@mantine/core";
8165
8170
  import { useFavicon, useMediaQuery } from "@mantine/hooks";
8166
8171
  import {
@@ -17156,10 +17161,10 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect, i
17156
17161
  const canAccess = isDev || isAccessible || permissionStore.state.isSuperAdmin;
17157
17162
  const renderHeader = () => /* @__PURE__ */ jsx216(AppShell.Header, { children: media ? /* @__PURE__ */ jsxs125(Group33, { h: "100%", px: "md", justify: "space-between", children: [
17158
17163
  /* @__PURE__ */ jsxs125(Group33, { h: "100%", children: [
17159
- /* @__PURE__ */ jsx216(Tooltip7, { label: appShellStore.state.opened ? "\u1EA8n thanh menu" : "Hi\u1EC7n thanh menu", children: /* @__PURE__ */ jsx216(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx216(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx216(IconLayoutSidebarLeftCollapse, {}) }) }),
17160
- /* @__PURE__ */ jsx216(Tooltip7, { label: "\u0110\xF3ng t\u1EA5t c\u1EA3 menu", children: /* @__PURE__ */ jsx216(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.clearGroupMenuOpenId, children: /* @__PURE__ */ jsx216(IconLibraryMinus, {}) }) })
17164
+ /* @__PURE__ */ jsx216(Tooltip6, { label: appShellStore.state.opened ? "\u1EA8n thanh menu" : "Hi\u1EC7n thanh menu", children: /* @__PURE__ */ jsx216(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx216(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx216(IconLayoutSidebarLeftCollapse, {}) }) }),
17165
+ /* @__PURE__ */ jsx216(Tooltip6, { label: "\u0110\xF3ng t\u1EA5t c\u1EA3 menu", children: /* @__PURE__ */ jsx216(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.clearGroupMenuOpenId, children: /* @__PURE__ */ jsx216(IconLibraryMinus, {}) }) })
17161
17166
  ] }),
17162
- /* @__PURE__ */ jsx216(Tooltip7, { label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`, children: /* @__PURE__ */ jsx216(Group33, { style: { position: "absolute", left: "50%", transform: "translateX(-50%)" }, children: /* @__PURE__ */ jsx216(Text22, { c: "green", fw: "bold", size: "sm", children: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}` }) }) }),
17167
+ /* @__PURE__ */ jsx216(Tooltip6, { label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`, children: /* @__PURE__ */ jsx216(Group33, { style: { position: "absolute", left: "50%", transform: "translateX(-50%)" }, children: /* @__PURE__ */ jsx216(Text22, { c: "green", fw: "bold", size: "sm", children: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}` }) }) }),
17163
17168
  /* @__PURE__ */ jsxs125(Group33, { children: [
17164
17169
  extraTopRight,
17165
17170
  /* @__PURE__ */ jsx216(CustomSwitchTheme, {}),
@@ -17168,7 +17173,7 @@ function BasicAppShell({ children, menu, extraTopRight, title, logoutRedirect, i
17168
17173
  ] }) : /* @__PURE__ */ jsxs125(Group33, { h: "100%", px: "md", justify: "space-between", children: [
17169
17174
  /* @__PURE__ */ jsx216(ActionIcon11, { variant: "default", size: "lg", radius: "md", onClick: appShellStore.toggle, children: appShellStore.state.opened ? /* @__PURE__ */ jsx216(IconLayoutSidebarLeftExpand, {}) : /* @__PURE__ */ jsx216(IconLayoutSidebarLeftCollapse, {}) }),
17170
17175
  /* @__PURE__ */ jsx216(
17171
- Tooltip7,
17176
+ Tooltip6,
17172
17177
  {
17173
17178
  label: title || `${appShellStore.state.moduleCode} - ${appShellStore.state.moduleName}`,
17174
17179
  withArrow: true,
@@ -17390,7 +17395,7 @@ var service_aq = __spreadProps(__spreadValues({}, createBaseApi(CONTROLLER12, ba
17390
17395
  });
17391
17396
 
17392
17397
  // src/components/Layouts/PageContent/MyPageContent.tsx
17393
- import { Badge as Badge6, Breadcrumbs, Center as Center13, Container as Container3, Divider as Divider5, Flex as Flex10, Group as Group35, Stack as Stack11, Text as Text24, Title as Title4, Tooltip as Tooltip8 } from "@mantine/core";
17398
+ import { Badge as Badge6, Breadcrumbs, Center as Center13, Container as Container3, Divider as Divider5, Flex as Flex10, Group as Group35, Stack as Stack11, Text as Text24, Title as Title4, Tooltip as Tooltip7 } from "@mantine/core";
17394
17399
  import { useClipboard, useDisclosure as useDisclosure19 } from "@mantine/hooks";
17395
17400
  import { notifications as notifications8 } from "@mantine/notifications";
17396
17401
  import { IconBrandParsinta } from "@tabler/icons-react";
@@ -17489,7 +17494,7 @@ function MyPageContent({
17489
17494
  note: basicAppShellStore.state.note
17490
17495
  }
17491
17496
  ),
17492
- /* @__PURE__ */ jsx219(Tooltip8, { label: "Xem video h\u01B0\u1EDBng d\u1EABn", children: /* @__PURE__ */ jsx219(
17497
+ /* @__PURE__ */ jsx219(Tooltip7, { label: "Xem video h\u01B0\u1EDBng d\u1EABn", children: /* @__PURE__ */ jsx219(
17493
17498
  MyButtonModal,
17494
17499
  {
17495
17500
  isActionIcon: true,
@@ -8,8 +8,8 @@ import { type_mantineSize } from '../types/index.mjs';
8
8
  import { useDisclosure, useListState } from '@mantine/hooks';
9
9
  import { UseFormReturnType, useForm } from '@mantine/form';
10
10
  import { I as I_BasicAppShell_LinkItem, B as BasicAppShellProps } from '../types-km2g-xx5.mjs';
11
- import { f as MyButtonModal$1 } from '../MyDataTable-BzUyUBE2.mjs';
12
- export { h as MyDataTable, g as MyDataTableInternalProps, c as MyDataTableProps, P as PaginationState } from '../MyDataTable-BzUyUBE2.mjs';
11
+ import { f as MyButtonModal$1 } from '../MyDataTable-DcVjD5SP.mjs';
12
+ export { h as MyDataTable, g as MyDataTableInternalProps, c as MyDataTableProps, P as PaginationState } from '../MyDataTable-DcVjD5SP.mjs';
13
13
  import { I as IExcelColumnConfig } from '../utils_excel-CuudSzBR.mjs';
14
14
  import { MRT_ColumnDef, MRT_RowData, MRT_TableOptions, MRT_TableInstance } from 'mantine-react-table';
15
15
  import { DateInputProps } from '@mantine/dates';
@@ -68,13 +68,13 @@ import {
68
68
  useHeaderMegaMenuStore,
69
69
  useS_ButtonImport,
70
70
  useStore_BasicAppShell
71
- } from "../chunk-QNC7NR24.mjs";
71
+ } from "../chunk-EB7EO5R6.mjs";
72
72
  import "../chunk-PKP6EDBO.mjs";
73
- import "../chunk-7ZI7IOEP.mjs";
74
73
  import "../chunk-KGBXMHKR.mjs";
74
+ import "../chunk-7ZI7IOEP.mjs";
75
75
  import "../chunk-GN5QFOCW.mjs";
76
76
  import "../chunk-BTITP4TN.mjs";
77
- import "../chunk-4IP2EYUM.mjs";
77
+ import "../chunk-SPG47QW7.mjs";
78
78
  import "../chunk-K6S7R6LU.mjs";
79
79
  import "../chunk-G2IMUVMM.mjs";
80
80
  import "../chunk-WZ6PXGGC.mjs";
@@ -5,7 +5,7 @@ import {
5
5
  const_object_colors,
6
6
  const_object_documentTypes,
7
7
  const_object_generalMenuData
8
- } from "../chunk-4IP2EYUM.mjs";
8
+ } from "../chunk-SPG47QW7.mjs";
9
9
  import "../chunk-JD6AELXS.mjs";
10
10
  export {
11
11
  const_aqModuleId,
@@ -5,8 +5,8 @@ import { UseFormReturnType } from '@mantine/form';
5
5
  import { AxiosResponse } from 'axios';
6
6
  import { M as MyApiResponse, a as MyReactMutationProps } from '../useMyReactMutation-D8XdiELk.mjs';
7
7
  import { ModalProps, ScrollAreaAutosizeProps, TooltipProps, ButtonProps, TextProps, PaperProps, GroupProps, ThemeIconProps, BadgeProps, AutocompleteProps, NumberInputProps, TextInputProps, FileInputProps, InputWrapperProps, FlexProps } from '@mantine/core';
8
- import { M as MyActionIconProps, a as MyButtonProps, b as MyButtonModalProps, c as MyDataTableProps } from '../MyDataTable-BzUyUBE2.mjs';
9
- export { d as MyActionIcon, e as MyButton, f as MyButtonModal } from '../MyDataTable-BzUyUBE2.mjs';
8
+ import { M as MyActionIconProps, a as MyButtonProps, b as MyButtonModalProps, c as MyDataTableProps } from '../MyDataTable-DcVjD5SP.mjs';
9
+ export { d as MyActionIcon, e as MyButton, f as MyButtonModal } from '../MyDataTable-DcVjD5SP.mjs';
10
10
  import { UseReactToPrintOptions } from 'react-to-print';
11
11
  import { I as IAQFileDetail } from '../utils_file-JlhzjLGS.mjs';
12
12
  import { UseQueryResult, QueryKey, UseQueryOptions } from '@tanstack/react-query';
@@ -31,13 +31,13 @@ import {
31
31
  MyStatsCard,
32
32
  MyTextInput2 as MyTextInput,
33
33
  MyWeeklySessionSchedulerPicker
34
- } from "../chunk-QNC7NR24.mjs";
34
+ } from "../chunk-EB7EO5R6.mjs";
35
35
  import "../chunk-PKP6EDBO.mjs";
36
- import "../chunk-7ZI7IOEP.mjs";
37
36
  import "../chunk-KGBXMHKR.mjs";
37
+ import "../chunk-7ZI7IOEP.mjs";
38
38
  import "../chunk-GN5QFOCW.mjs";
39
39
  import "../chunk-BTITP4TN.mjs";
40
- import "../chunk-4IP2EYUM.mjs";
40
+ import "../chunk-SPG47QW7.mjs";
41
41
  import "../chunk-K6S7R6LU.mjs";
42
42
  import "../chunk-G2IMUVMM.mjs";
43
43
  import "../chunk-WZ6PXGGC.mjs";
@@ -102,13 +102,13 @@ import {
102
102
  MailTemplateDeleteButton,
103
103
  useS_moduleConfig,
104
104
  useStore_Authenticate
105
- } from "../chunk-QNC7NR24.mjs";
105
+ } from "../chunk-EB7EO5R6.mjs";
106
106
  import "../chunk-PKP6EDBO.mjs";
107
- import "../chunk-7ZI7IOEP.mjs";
108
107
  import "../chunk-KGBXMHKR.mjs";
108
+ import "../chunk-7ZI7IOEP.mjs";
109
109
  import "../chunk-GN5QFOCW.mjs";
110
110
  import "../chunk-BTITP4TN.mjs";
111
- import "../chunk-4IP2EYUM.mjs";
111
+ import "../chunk-SPG47QW7.mjs";
112
112
  import "../chunk-K6S7R6LU.mjs";
113
113
  import "../chunk-G2IMUVMM.mjs";
114
114
  import "../chunk-WZ6PXGGC.mjs";
@@ -4,15 +4,15 @@ import {
4
4
  } from "../chunk-RGUQWALX.mjs";
5
5
  import {
6
6
  MySelect
7
- } from "../chunk-QNC7NR24.mjs";
7
+ } from "../chunk-EB7EO5R6.mjs";
8
8
  import "../chunk-PKP6EDBO.mjs";
9
+ import "../chunk-KGBXMHKR.mjs";
9
10
  import {
10
11
  utils_converter
11
12
  } from "../chunk-7ZI7IOEP.mjs";
12
- import "../chunk-KGBXMHKR.mjs";
13
13
  import "../chunk-GN5QFOCW.mjs";
14
14
  import "../chunk-BTITP4TN.mjs";
15
- import "../chunk-4IP2EYUM.mjs";
15
+ import "../chunk-SPG47QW7.mjs";
16
16
  import "../chunk-K6S7R6LU.mjs";
17
17
  import "../chunk-G2IMUVMM.mjs";
18
18
  import "../chunk-WZ6PXGGC.mjs";
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  "types": "./dist/build-object/index.d.mts"
55
55
  }
56
56
  },
57
- "version": "0.1.984",
57
+ "version": "0.1.985",
58
58
  "private": false,
59
59
  "files": [
60
60
  "dist"
@@ -87,10 +87,10 @@ var const_object_generalMenuData = {
87
87
  };
88
88
 
89
89
  export {
90
+ const_object_colors,
90
91
  const_array_daysOfWeek,
91
92
  const_aqModuleId,
92
93
  const_columnSize,
93
- const_object_colors,
94
94
  const_object_documentTypes,
95
95
  const_object_generalMenuData
96
96
  };