aq-fe-framework 0.1.885 → 0.1.886

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.
@@ -3,6 +3,10 @@ import {
3
3
  useAppStore,
4
4
  useStore_Permission
5
5
  } from "./chunk-3P5GXZPO.mjs";
6
+ import {
7
+ utils_date,
8
+ utils_mantineReactTable
9
+ } from "./chunk-IRA4J5UX.mjs";
6
10
  import {
7
11
  utils_aq_mapBaseEntityToDomain,
8
12
  utils_aq_mapDomainToEntity,
@@ -14,10 +18,6 @@ import {
14
18
  utils_file_fileToAQDocumentType,
15
19
  utils_pdf_download
16
20
  } from "./chunk-E4JVWPXS.mjs";
17
- import {
18
- utils_date,
19
- utils_mantineReactTable
20
- } from "./chunk-IRA4J5UX.mjs";
21
21
  import {
22
22
  baseColumns
23
23
  } from "./chunk-O7YCQQO5.mjs";
@@ -28,7 +28,7 @@ import {
28
28
  import {
29
29
  const_object_colors,
30
30
  const_object_documentTypes
31
- } from "./chunk-J64W5V6F.mjs";
31
+ } from "./chunk-FE4HVT67.mjs";
32
32
  import {
33
33
  enum_daysOfWeek
34
34
  } from "./chunk-K6S7R6LU.mjs";
@@ -3472,10 +3472,18 @@ function MyButtonPrintPDF2(_a) {
3472
3472
  ] });
3473
3473
  }
3474
3474
 
3475
+ // src/components/Checkbox/MyCheckbox.tsx
3476
+ import { Checkbox as Checkbox2 } from "@mantine/core";
3477
+ import { jsx as jsx63 } from "react/jsx-runtime";
3478
+ function MyCheckbox(_a) {
3479
+ var rest = __objRest(_a, []);
3480
+ return /* @__PURE__ */ jsx63(Checkbox2, __spreadValues({}, rest));
3481
+ }
3482
+
3475
3483
  // src/components/Layouts/HtmlWrapper/MyHtmlWrapper.tsx
3476
3484
  import { Typography } from "@mantine/core";
3477
3485
  import pako from "pako";
3478
- import { jsx as jsx63 } from "react/jsx-runtime";
3486
+ import { jsx as jsx64 } from "react/jsx-runtime";
3479
3487
  function MyHtmlWrapper(_a) {
3480
3488
  var _b = _a, { html, mah, zip = false } = _b, rest = __objRest(_b, ["html", "mah", "zip"]);
3481
3489
  const extractHtmlFromZip = () => {
@@ -3484,7 +3492,7 @@ function MyHtmlWrapper(_a) {
3484
3492
  const cleanedHtml = decompressedData == null ? void 0 : decompressedData.replaceAll(" font-family:'Times New Roman'; font-size:1em;", "");
3485
3493
  return cleanedHtml.replaceAll(" font-family:'Times New Roman'; font-size:1em;", "");
3486
3494
  };
3487
- return /* @__PURE__ */ jsx63(Typography, { children: /* @__PURE__ */ jsx63(
3495
+ return /* @__PURE__ */ jsx64(Typography, { children: /* @__PURE__ */ jsx64(
3488
3496
  "div",
3489
3497
  {
3490
3498
  dangerouslySetInnerHTML: {
@@ -3496,7 +3504,7 @@ function MyHtmlWrapper(_a) {
3496
3504
 
3497
3505
  // src/components/Button/ButtonPrintPDFTable/MyButtonPrintTablePDF.tsx
3498
3506
  import { Box as Box2, Table as Table3 } from "@mantine/core";
3499
- import { jsx as jsx64, jsxs as jsxs33 } from "react/jsx-runtime";
3507
+ import { jsx as jsx65, jsxs as jsxs33 } from "react/jsx-runtime";
3500
3508
  function MyButtonPrintTablePDF(_a) {
3501
3509
  var _b = _a, {
3502
3510
  printConfig,
@@ -3523,7 +3531,7 @@ function MyButtonPrintTablePDF(_a) {
3523
3531
  const rows = data2 == null ? void 0 : data2.map((item, index) => {
3524
3532
  if (!(printConfig == null ? void 0 : printConfig.fields)) return null;
3525
3533
  return /* @__PURE__ */ jsxs33(Table3.Tr, { children: [
3526
- printConfig.showRowNumbers && /* @__PURE__ */ jsx64(Table3.Td, { ta: "center", px: "xs", style: { border: "1px solid lightgray" }, children: index + 1 }),
3534
+ printConfig.showRowNumbers && /* @__PURE__ */ jsx65(Table3.Td, { ta: "center", px: "xs", style: { border: "1px solid lightgray" }, children: index + 1 }),
3527
3535
  printConfig.fields.map((field) => {
3528
3536
  let value = item[field.fieldName];
3529
3537
  if (field.formatFunction) {
@@ -3533,30 +3541,30 @@ function MyButtonPrintTablePDF(_a) {
3533
3541
  }
3534
3542
  const alignment = field.isCenter === false ? "left" : "center";
3535
3543
  if (typeof value === "string" && (value.includes("<") || value.includes("&lt;"))) {
3536
- return /* @__PURE__ */ jsx64(
3544
+ return /* @__PURE__ */ jsx65(
3537
3545
  Table3.Td,
3538
3546
  {
3539
3547
  px: "xs",
3540
3548
  ta: alignment,
3541
3549
  style: { border: "1px solid lightgray" },
3542
- children: /* @__PURE__ */ jsx64(MyHtmlWrapper, { html: value })
3550
+ children: /* @__PURE__ */ jsx65(MyHtmlWrapper, { html: value })
3543
3551
  },
3544
3552
  field.fieldName
3545
3553
  );
3546
3554
  }
3547
3555
  if (value === "true" || value === "false") {
3548
- return /* @__PURE__ */ jsx64(
3556
+ return /* @__PURE__ */ jsx65(
3549
3557
  Table3.Td,
3550
3558
  {
3551
3559
  ta: alignment,
3552
3560
  px: "xs",
3553
3561
  style: { border: "1px solid lightgray" },
3554
- children: /* @__PURE__ */ jsx64("input", { type: "checkbox", checked: value === "true", readOnly: true })
3562
+ children: /* @__PURE__ */ jsx65(MyCheckbox, { type: "checkbox", checked: value === "true", readOnly: true })
3555
3563
  },
3556
3564
  field.fieldName
3557
3565
  );
3558
3566
  }
3559
- return /* @__PURE__ */ jsx64(
3567
+ return /* @__PURE__ */ jsx65(
3560
3568
  Table3.Td,
3561
3569
  {
3562
3570
  ta: alignment,
@@ -3585,13 +3593,13 @@ function MyButtonPrintTablePDF(_a) {
3585
3593
  "Ng\xE0y in: ",
3586
3594
  formattedDate
3587
3595
  ] }),
3588
- /* @__PURE__ */ jsx64("h2", { style: { textAlign: "center", fontSize: "24px", fontWeight: "bold", marginBottom: "20px" }, children: tableTitle }),
3596
+ /* @__PURE__ */ jsx65("h2", { style: { textAlign: "center", fontSize: "24px", fontWeight: "bold", marginBottom: "20px" }, children: tableTitle }),
3589
3597
  /* @__PURE__ */ jsxs33(Table3, { withColumnBorders: true, highlightOnHover: true, style: { border: "1px solid lightgray" }, children: [
3590
- /* @__PURE__ */ jsx64(Table3.Thead, { children: /* @__PURE__ */ jsxs33(Table3.Tr, { children: [
3591
- printConfig.showRowNumbers && /* @__PURE__ */ jsx64(Table3.Th, { style: { border: "1px solid lightgray" }, w: "10%", ta: "center", px: "xs", children: "STT" }),
3598
+ /* @__PURE__ */ jsx65(Table3.Thead, { children: /* @__PURE__ */ jsxs33(Table3.Tr, { children: [
3599
+ printConfig.showRowNumbers && /* @__PURE__ */ jsx65(Table3.Th, { style: { border: "1px solid lightgray" }, w: "10%", ta: "center", px: "xs", children: "STT" }),
3592
3600
  printConfig.fields.map((field) => {
3593
3601
  const alignment = field.isCenter === false ? "left" : "center";
3594
- return /* @__PURE__ */ jsx64(
3602
+ return /* @__PURE__ */ jsx65(
3595
3603
  Table3.Th,
3596
3604
  {
3597
3605
  style: { border: "1px solid lightgray" },
@@ -3603,11 +3611,11 @@ function MyButtonPrintTablePDF(_a) {
3603
3611
  );
3604
3612
  })
3605
3613
  ] }) }),
3606
- /* @__PURE__ */ jsx64(Table3.Tbody, { children: rows })
3614
+ /* @__PURE__ */ jsx65(Table3.Tbody, { children: rows })
3607
3615
  ] })
3608
3616
  ] });
3609
3617
  };
3610
- return /* @__PURE__ */ jsx64(
3618
+ return /* @__PURE__ */ jsx65(
3611
3619
  MyButtonPrintPDF2,
3612
3620
  __spreadValues({
3613
3621
  contentToPrint: renderContent()
@@ -3619,11 +3627,11 @@ function MyButtonPrintTablePDF(_a) {
3619
3627
  import { ActionIcon as ActionIcon10 } from "@mantine/core";
3620
3628
  import { IconArrowBack } from "@tabler/icons-react";
3621
3629
  import { useRouter as useRouter2 } from "next/navigation.js";
3622
- import { jsx as jsx65 } from "react/jsx-runtime";
3630
+ import { jsx as jsx66 } from "react/jsx-runtime";
3623
3631
  function MyButtonRouterBack(_a) {
3624
3632
  var _b = _a, { url, label } = _b, rest = __objRest(_b, ["url", "label"]);
3625
3633
  const router = useRouter2();
3626
- return /* @__PURE__ */ jsx65(
3634
+ return /* @__PURE__ */ jsx66(
3627
3635
  ActionIcon10,
3628
3636
  __spreadProps(__spreadValues({
3629
3637
  size: "xl",
@@ -3636,7 +3644,7 @@ function MyButtonRouterBack(_a) {
3636
3644
  router.back();
3637
3645
  }
3638
3646
  }, rest), {
3639
- children: /* @__PURE__ */ jsx65(IconArrowBack, { stroke: 2 })
3647
+ children: /* @__PURE__ */ jsx66(IconArrowBack, { stroke: 2 })
3640
3648
  })
3641
3649
  );
3642
3650
  }
@@ -3656,7 +3664,7 @@ import { useDisclosure as useDisclosure13 } from "@mantine/hooks";
3656
3664
  import { IconLivePhoto as IconLivePhoto3, IconMaximize as IconMaximize3, IconMinimize as IconMinimize3 } from "@tabler/icons-react";
3657
3665
  import { useQuery } from "@tanstack/react-query";
3658
3666
  import { useEffect as useEffect11, useState as useState11 } from "react";
3659
- import { Fragment as Fragment14, jsx as jsx66, jsxs as jsxs34 } from "react/jsx-runtime";
3667
+ import { Fragment as Fragment14, jsx as jsx67, jsxs as jsxs34 } from "react/jsx-runtime";
3660
3668
  function MyButtonViewPDF({
3661
3669
  id,
3662
3670
  modalSize = "80%",
@@ -3707,8 +3715,8 @@ function MyButtonViewPDF({
3707
3715
  }
3708
3716
  }, [opened]);
3709
3717
  return /* @__PURE__ */ jsxs34(Fragment14, { children: [
3710
- /* @__PURE__ */ jsx66(Tooltip6, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: isActionIcon ? /* @__PURE__ */ jsx66(ActionIcon11, { onClick: open, children: /* @__PURE__ */ jsx66(IconLivePhoto3, {}) }) : /* @__PURE__ */ jsx66(Button15, { color: "cyan", onClick: open, leftSection: /* @__PURE__ */ jsx66(IconLivePhoto3, {}), children: label }) }),
3711
- /* @__PURE__ */ jsx66(
3718
+ /* @__PURE__ */ jsx67(Tooltip6, { label: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp", children: isActionIcon ? /* @__PURE__ */ jsx67(ActionIcon11, { onClick: open, children: /* @__PURE__ */ jsx67(IconLivePhoto3, {}) }) : /* @__PURE__ */ jsx67(Button15, { color: "cyan", onClick: open, leftSection: /* @__PURE__ */ jsx67(IconLivePhoto3, {}), children: label }) }),
3719
+ /* @__PURE__ */ jsx67(
3712
3720
  Modal13,
3713
3721
  {
3714
3722
  fullScreen: fullscreen,
@@ -3719,20 +3727,20 @@ function MyButtonViewPDF({
3719
3727
  },
3720
3728
  size: modalSize,
3721
3729
  title: /* @__PURE__ */ jsxs34(Group17, { children: [
3722
- /* @__PURE__ */ jsx66(Text14, { children: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp" }),
3723
- /* @__PURE__ */ jsx66(
3730
+ /* @__PURE__ */ jsx67(Text14, { children: "Xem t\xE0i li\u1EC7u tr\u1EF1c ti\u1EBFp" }),
3731
+ /* @__PURE__ */ jsx67(
3724
3732
  ActionIcon11,
3725
3733
  {
3726
3734
  onClick: () => {
3727
3735
  setFullscreen(!fullscreen);
3728
3736
  setHeight(fullscreen ? "80vh" : "90vh");
3729
3737
  },
3730
- children: fullscreen ? /* @__PURE__ */ jsx66(IconMinimize3, {}) : /* @__PURE__ */ jsx66(IconMaximize3, {})
3738
+ children: fullscreen ? /* @__PURE__ */ jsx67(IconMinimize3, {}) : /* @__PURE__ */ jsx67(IconMaximize3, {})
3731
3739
  }
3732
3740
  )
3733
3741
  ] }),
3734
3742
  children: /* @__PURE__ */ jsxs34(Paper5, { h: height, p: "lg", pos: "relative", children: [
3735
- /* @__PURE__ */ jsx66(
3743
+ /* @__PURE__ */ jsx67(
3736
3744
  LoadingOverlay,
3737
3745
  {
3738
3746
  visible: query.isLoading || !blobUrl && !!query.data,
@@ -3740,7 +3748,7 @@ function MyButtonViewPDF({
3740
3748
  overlayProps: { radius: "sm", blur: 2 }
3741
3749
  }
3742
3750
  ),
3743
- blobUrl || src ? /* @__PURE__ */ jsx66(
3751
+ blobUrl || src ? /* @__PURE__ */ jsx67(
3744
3752
  "iframe",
3745
3753
  {
3746
3754
  src: blobUrl != null ? blobUrl : src,
@@ -3749,7 +3757,7 @@ function MyButtonViewPDF({
3749
3757
  allow: "fullscreen",
3750
3758
  style: { border: "none" }
3751
3759
  }
3752
- ) : /* @__PURE__ */ jsx66(Text14, {})
3760
+ ) : /* @__PURE__ */ jsx67(Text14, {})
3753
3761
  ] })
3754
3762
  }
3755
3763
  )
@@ -8416,7 +8424,7 @@ import { ScheduleXCalendar, useNextCalendarApp } from "@schedule-x/react";
8416
8424
  import { Paper as Paper6, Text as Text15 } from "@mantine/core";
8417
8425
  import "@schedule-x/theme-default/dist/index.css";
8418
8426
  import { useEffect as useEffect12 } from "react";
8419
- import { jsx as jsx67, jsxs as jsxs35 } from "react/jsx-runtime";
8427
+ import { jsx as jsx68, jsxs as jsxs35 } from "react/jsx-runtime";
8420
8428
  function MyCalendar() {
8421
8429
  const plugins = [createEventsServicePlugin(), createEventModalPlugin()];
8422
8430
  const calendar = useNextCalendarApp({
@@ -8490,16 +8498,16 @@ function MyCalendar() {
8490
8498
  useEffect12(() => {
8491
8499
  calendar == null ? void 0 : calendar.events.getAll();
8492
8500
  }, []);
8493
- return /* @__PURE__ */ jsx67("div", { children: /* @__PURE__ */ jsx67(ScheduleXCalendar, { calendarApp: calendar, customComponents: {
8501
+ return /* @__PURE__ */ jsx68("div", { children: /* @__PURE__ */ jsx68(ScheduleXCalendar, { calendarApp: calendar, customComponents: {
8494
8502
  timeGridEvent: ({ calendarEvent }) => {
8495
8503
  console.log(calendarEvent);
8496
- return /* @__PURE__ */ jsx67(Paper6, { h: "100%", bg: calendarEvent.laLichThi ? "violet.2" : "blue.2", p: 4, children: /* @__PURE__ */ jsxs35(MyFlexColumn2, { gap: 1, children: [
8504
+ return /* @__PURE__ */ jsx68(Paper6, { h: "100%", bg: calendarEvent.laLichThi ? "violet.2" : "blue.2", p: 4, children: /* @__PURE__ */ jsxs35(MyFlexColumn2, { gap: 1, children: [
8497
8505
  /* @__PURE__ */ jsxs35(Text15, { size: "sm", fw: "bold", children: [
8498
8506
  calendarEvent.laLichThi ? "(Thi) " : "(H\u1ECDc) ",
8499
8507
  calendarEvent.title
8500
8508
  ] }),
8501
- calendarEvent.laLichThi == false && /* @__PURE__ */ jsx67(Text15, { size: "sm", children: calendarEvent.giangvien }),
8502
- /* @__PURE__ */ jsx67(Text15, { size: "sm", children: calendarEvent.location })
8509
+ calendarEvent.laLichThi == false && /* @__PURE__ */ jsx68(Text15, { size: "sm", children: calendarEvent.giangvien }),
8510
+ /* @__PURE__ */ jsx68(Text15, { size: "sm", children: calendarEvent.location })
8503
8511
  ] }) });
8504
8512
  }
8505
8513
  // eventModal: ({ calendarEvent }) => {
@@ -8512,14 +8520,6 @@ function MyCalendar() {
8512
8520
  } }) });
8513
8521
  }
8514
8522
 
8515
- // src/components/Checkbox/MyCheckbox.tsx
8516
- import { Checkbox as Checkbox2 } from "@mantine/core";
8517
- import { jsx as jsx68 } from "react/jsx-runtime";
8518
- function MyCheckbox(_a) {
8519
- var rest = __objRest(_a, []);
8520
- return /* @__PURE__ */ jsx68(Checkbox2, __spreadValues({}, rest));
8521
- }
8522
-
8523
8523
  // src/components/DataDisplay/Card/AQCard.tsx
8524
8524
  import { Badge as Badge3, Card as Card3, Center as Center6, Image, Text as Text16 } from "@mantine/core";
8525
8525
  import Link2 from "next/link.js";
@@ -18531,6 +18531,31 @@ import { IconCircleFilled } from "@tabler/icons-react";
18531
18531
  import { useEffect as useEffect43, useMemo as useMemo42, useState as useState32 } from "react";
18532
18532
  import * as XLSX4 from "xlsx";
18533
18533
  import { jsx as jsx254, jsxs as jsxs140 } from "react/jsx-runtime";
18534
+ function isValidDateFormat(dateStr) {
18535
+ const mmddyy = /^\d{1,2}\/\d{1,2}\/\d{2}$/;
18536
+ const ddmmyyyy = /^\d{1,2}\/\d{1,2}\/\d{4}$/;
18537
+ return mmddyy.test(dateStr) || ddmmyyyy.test(dateStr);
18538
+ }
18539
+ function toIsoDate(dateStr) {
18540
+ const mmddyy = /^\d{1,2}\/\d{1,2}\/\d{2}$/;
18541
+ const ddmmyyyy = /^\d{1,2}\/\d{1,2}\/\d{4}$/;
18542
+ if (mmddyy.test(dateStr)) {
18543
+ const [m4, d4, yy] = dateStr.split("/").map(Number);
18544
+ const year = yy + 2e3;
18545
+ return `${year.toString().padStart(4, "0")}-${m4.toString().padStart(2, "0")}-${d4.toString().padStart(2, "0")}`;
18546
+ } else if (ddmmyyyy.test(dateStr)) {
18547
+ const [d4, m4, yyyy] = dateStr.split("/").map(Number);
18548
+ return `${yyyy.toString().padStart(4, "0")}-${m4.toString().padStart(2, "0")}-${d4.toString().padStart(2, "0")}`;
18549
+ }
18550
+ return null;
18551
+ }
18552
+ function formatForDisplay(value) {
18553
+ if (typeof value === "string" && /^\d{4}-\d{2}-\d{2}$/.test(value)) {
18554
+ const [year, month, day] = value.split("-");
18555
+ return `${day}/${month}/${year}`;
18556
+ }
18557
+ return value;
18558
+ }
18534
18559
  function FileImportConfigModal(_a) {
18535
18560
  var _b = _a, {
18536
18561
  onChange,
@@ -18549,10 +18574,19 @@ function FileImportConfigModal(_a) {
18549
18574
  const fileInputError = useState32("");
18550
18575
  const parseExcel = async (file2) => {
18551
18576
  const data2 = await file2.arrayBuffer();
18552
- const workbook = XLSX4.read(data2);
18577
+ const workbook = XLSX4.read(data2, { cellDates: true });
18553
18578
  const sheet = workbook.Sheets[workbook.SheetNames[0]];
18554
- const json = XLSX4.utils.sheet_to_json(sheet, { header: 1 });
18555
- setRawData(json);
18579
+ const json = XLSX4.utils.sheet_to_json(sheet, { header: 1, raw: false });
18580
+ const parsed = json.map(
18581
+ (row) => row.map((cell) => {
18582
+ if (typeof cell === "string" && isValidDateFormat(cell)) {
18583
+ const iso = toIsoDate(cell);
18584
+ return iso != null ? iso : cell;
18585
+ }
18586
+ return cell;
18587
+ })
18588
+ );
18589
+ setRawData(parsed);
18556
18590
  };
18557
18591
  const handleSelectFile = (file2) => {
18558
18592
  if (!file2) return;
@@ -18595,7 +18629,7 @@ function FileImportConfigModal(_a) {
18595
18629
  return rawData.map((row) => {
18596
18630
  const obj = {};
18597
18631
  row.forEach((cell, idx) => {
18598
- obj[`col_${idx}`] = cell;
18632
+ obj[`col_${idx}`] = formatForDisplay(cell);
18599
18633
  });
18600
18634
  return obj;
18601
18635
  });
@@ -18859,12 +18893,12 @@ export {
18859
18893
  MyButtonImport,
18860
18894
  AQSelectTableByOpenModal,
18861
18895
  MyButtonPrintPDF2,
18896
+ MyCheckbox,
18862
18897
  MyHtmlWrapper,
18863
18898
  MyButtonPrintTablePDF,
18864
18899
  MyButtonRouterBack,
18865
18900
  MyButtonViewPDF,
18866
18901
  MyCalendar,
18867
- MyCheckbox,
18868
18902
  AQCard,
18869
18903
  MyCardInformation,
18870
18904
  MyIconText,
@@ -70,13 +70,13 @@ import {
70
70
  useHeaderMegaMenuStore,
71
71
  useS_ButtonImport,
72
72
  useStore_BasicAppShell
73
- } from "../chunk-Q7PTIN2G.mjs";
73
+ } from "../chunk-PGV27XKS.mjs";
74
74
  import "../chunk-3P5GXZPO.mjs";
75
- import "../chunk-E4JVWPXS.mjs";
76
75
  import "../chunk-IRA4J5UX.mjs";
76
+ import "../chunk-E4JVWPXS.mjs";
77
77
  import "../chunk-O7YCQQO5.mjs";
78
78
  import "../chunk-QSWIVDXC.mjs";
79
- import "../chunk-J64W5V6F.mjs";
79
+ import "../chunk-FE4HVT67.mjs";
80
80
  import "../chunk-K6S7R6LU.mjs";
81
81
  import "../chunk-7Y4HBY2D.mjs";
82
82
  import "../chunk-WZ6PXGGC.mjs";
@@ -4,7 +4,7 @@ import {
4
4
  const_object_colors,
5
5
  const_object_documentTypes,
6
6
  const_object_generalMenuData
7
- } from "../chunk-J64W5V6F.mjs";
7
+ } from "../chunk-FE4HVT67.mjs";
8
8
  import "../chunk-JD6AELXS.mjs";
9
9
  export {
10
10
  const_array_daysOfWeek,
@@ -29,13 +29,13 @@ import {
29
29
  MyStatsCard,
30
30
  MyTextInput2 as MyTextInput,
31
31
  MyWeeklySessionSchedulerPicker
32
- } from "../chunk-Q7PTIN2G.mjs";
32
+ } from "../chunk-PGV27XKS.mjs";
33
33
  import "../chunk-3P5GXZPO.mjs";
34
- import "../chunk-E4JVWPXS.mjs";
35
34
  import "../chunk-IRA4J5UX.mjs";
35
+ import "../chunk-E4JVWPXS.mjs";
36
36
  import "../chunk-O7YCQQO5.mjs";
37
37
  import "../chunk-QSWIVDXC.mjs";
38
- import "../chunk-J64W5V6F.mjs";
38
+ import "../chunk-FE4HVT67.mjs";
39
39
  import "../chunk-K6S7R6LU.mjs";
40
40
  import "../chunk-7Y4HBY2D.mjs";
41
41
  import "../chunk-WZ6PXGGC.mjs";
@@ -113,13 +113,13 @@ import {
113
113
  MailTemplateDeleteButton,
114
114
  useS_moduleConfig,
115
115
  useStore_Authenticate
116
- } from "../chunk-Q7PTIN2G.mjs";
116
+ } from "../chunk-PGV27XKS.mjs";
117
117
  import "../chunk-3P5GXZPO.mjs";
118
- import "../chunk-E4JVWPXS.mjs";
119
118
  import "../chunk-IRA4J5UX.mjs";
119
+ import "../chunk-E4JVWPXS.mjs";
120
120
  import "../chunk-O7YCQQO5.mjs";
121
121
  import "../chunk-QSWIVDXC.mjs";
122
- import "../chunk-J64W5V6F.mjs";
122
+ import "../chunk-FE4HVT67.mjs";
123
123
  import "../chunk-K6S7R6LU.mjs";
124
124
  import "../chunk-7Y4HBY2D.mjs";
125
125
  import "../chunk-WZ6PXGGC.mjs";
@@ -4,15 +4,15 @@ import {
4
4
  } from "../chunk-RGUQWALX.mjs";
5
5
  import {
6
6
  MySelect
7
- } from "../chunk-Q7PTIN2G.mjs";
7
+ } from "../chunk-PGV27XKS.mjs";
8
8
  import "../chunk-3P5GXZPO.mjs";
9
- import "../chunk-E4JVWPXS.mjs";
10
9
  import {
11
10
  utils_converter
12
11
  } from "../chunk-IRA4J5UX.mjs";
12
+ import "../chunk-E4JVWPXS.mjs";
13
13
  import "../chunk-O7YCQQO5.mjs";
14
14
  import "../chunk-QSWIVDXC.mjs";
15
- import "../chunk-J64W5V6F.mjs";
15
+ import "../chunk-FE4HVT67.mjs";
16
16
  import "../chunk-K6S7R6LU.mjs";
17
17
  import "../chunk-7Y4HBY2D.mjs";
18
18
  import "../chunk-WZ6PXGGC.mjs";
package/package.json CHANGED
@@ -54,7 +54,7 @@
54
54
  "types": "./dist/types/index.d.mts"
55
55
  }
56
56
  },
57
- "version": "0.1.885",
57
+ "version": "0.1.886",
58
58
  "private": false,
59
59
  "files": [
60
60
  "dist"
@@ -80,9 +80,9 @@ var const_object_generalMenuData = {
80
80
  };
81
81
 
82
82
  export {
83
- const_object_colors,
84
83
  const_array_daysOfWeek,
85
84
  const_columnSize,
85
+ const_object_colors,
86
86
  const_object_documentTypes,
87
87
  const_object_generalMenuData
88
88
  };