aq-fe-framework 0.1.476 → 0.1.478
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,12 +3,12 @@ import {
|
|
3
3
|
MyFlexColumn,
|
4
4
|
MyFlexRow
|
5
5
|
} from "./chunk-R43BUIMD.mjs";
|
6
|
-
import {
|
7
|
-
enum_daysOfWeek
|
8
|
-
} from "./chunk-K6S7R6LU.mjs";
|
9
6
|
import {
|
10
7
|
const_object_colors
|
11
8
|
} from "./chunk-OMJJAHOC.mjs";
|
9
|
+
import {
|
10
|
+
enum_daysOfWeek
|
11
|
+
} from "./chunk-K6S7R6LU.mjs";
|
12
12
|
import {
|
13
13
|
useMyReactMutation,
|
14
14
|
useMyReactQuery
|
@@ -414,8 +414,8 @@ import { Flex as Flex2, Text } from "@mantine/core";
|
|
414
414
|
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
415
415
|
function MyFlexIconTitle(props) {
|
416
416
|
return /* @__PURE__ */ jsxs4(Flex2, __spreadProps(__spreadValues({ direction: "row", align: "center", gap: "xs" }, props), { children: [
|
417
|
-
props
|
418
|
-
/* @__PURE__ */ jsx11(Text, { children: props == null ? void 0 : props.children })
|
417
|
+
props.icon,
|
418
|
+
/* @__PURE__ */ jsx11(Text, __spreadProps(__spreadValues({ size: "lg", fw: 700 }, props.textProps), { children: props == null ? void 0 : props.children }))
|
419
419
|
] }));
|
420
420
|
}
|
421
421
|
|
@@ -451,9 +451,13 @@ function MyLabelValueRow({
|
|
451
451
|
] }));
|
452
452
|
}
|
453
453
|
|
454
|
+
// src/core/dataDisplay/MyPaper.tsx
|
455
|
+
import { Paper as Paper2 } from "@mantine/core";
|
456
|
+
import { jsx as jsx14 } from "react/jsx-runtime";
|
457
|
+
|
454
458
|
// src/core/dataDisplay/MyStatsCartd.tsx
|
455
459
|
import { Box, Card, ThemeIcon } from "@mantine/core";
|
456
|
-
import { jsx as
|
460
|
+
import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
|
457
461
|
function MyStatsCard({
|
458
462
|
title,
|
459
463
|
value,
|
@@ -463,21 +467,21 @@ function MyStatsCard({
|
|
463
467
|
themeIconProps
|
464
468
|
}) {
|
465
469
|
return /* @__PURE__ */ jsxs7(Card, { children: [
|
466
|
-
/* @__PURE__ */
|
467
|
-
/* @__PURE__ */
|
470
|
+
/* @__PURE__ */ jsx15("div", { className: `absolute inset-0 bg-gradient-to-br ${color} opacity-5` }),
|
471
|
+
/* @__PURE__ */ jsx15(Box, { className: "p-6", children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center justify-between", children: [
|
468
472
|
/* @__PURE__ */ jsxs7("div", { children: [
|
469
|
-
/* @__PURE__ */
|
470
|
-
/* @__PURE__ */
|
471
|
-
/* @__PURE__ */
|
473
|
+
/* @__PURE__ */ jsx15("p", { className: "text-sm font-medium text-muted-foreground", children: title }),
|
474
|
+
/* @__PURE__ */ jsx15("p", { className: "text-3xl font-bold", children: value }),
|
475
|
+
/* @__PURE__ */ jsx15("p", { className: "text-xs text-muted-foreground mt-1", children: subtitle })
|
472
476
|
] }),
|
473
|
-
/* @__PURE__ */
|
477
|
+
/* @__PURE__ */ jsx15(ThemeIcon, __spreadProps(__spreadValues({ size: "xl", radius: "xl" }, themeIconProps), { children: icon }))
|
474
478
|
] }) })
|
475
479
|
] });
|
476
480
|
}
|
477
481
|
|
478
482
|
// src/core/input/MyDayOfWeekPicker.tsx
|
479
483
|
import { Badge, Group as Group3 } from "@mantine/core";
|
480
|
-
import { jsx as
|
484
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
481
485
|
var days = Object.entries(enum_daysOfWeek).filter(([key]) => isNaN(Number(key))).map(([label, value]) => ({ label, value }));
|
482
486
|
function MyDayOfWeekPicker({ value = [], onChange }) {
|
483
487
|
const toggle = (val) => {
|
@@ -485,7 +489,7 @@ function MyDayOfWeekPicker({ value = [], onChange }) {
|
|
485
489
|
const newValue = value.includes(val) ? value.filter((v) => v !== val) : [...value, val].sort((a, b) => a - b);
|
486
490
|
onChange(newValue);
|
487
491
|
};
|
488
|
-
return /* @__PURE__ */
|
492
|
+
return /* @__PURE__ */ jsx16(MyFlexRow, { align: "center", children: /* @__PURE__ */ jsx16(Group3, { gap: "xs", children: days.map((d) => /* @__PURE__ */ jsx16(
|
489
493
|
Badge,
|
490
494
|
{
|
491
495
|
variant: value.includes(d.value) ? "filled" : "outline",
|
@@ -513,7 +517,7 @@ import Underline from "@tiptap/extension-underline";
|
|
513
517
|
import { useEditor } from "@tiptap/react";
|
514
518
|
import StarterKit from "@tiptap/starter-kit";
|
515
519
|
import { useEffect as useEffect2 } from "react";
|
516
|
-
import { jsx as
|
520
|
+
import { jsx as jsx17, jsxs as jsxs8 } from "react/jsx-runtime";
|
517
521
|
function MyRichTextEditor(props) {
|
518
522
|
const editor = useEditor({
|
519
523
|
extensions: [
|
@@ -597,44 +601,44 @@ function MyRichTextEditor(props) {
|
|
597
601
|
editor.commands.setContent(props.value || "", false);
|
598
602
|
}
|
599
603
|
}, [props.value, editor]);
|
600
|
-
return /* @__PURE__ */
|
604
|
+
return /* @__PURE__ */ jsx17(Input.Wrapper, __spreadProps(__spreadValues({}, props.inputWrapperProps), { children: /* @__PURE__ */ jsxs8(MantineRichTextEditor, __spreadProps(__spreadValues({ editor }, props.richTextEditorProps), { children: [
|
601
605
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.Toolbar, __spreadProps(__spreadValues({}, props.richTextEditorToolBarProps), { children: [
|
602
606
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
|
603
|
-
/* @__PURE__ */
|
604
|
-
/* @__PURE__ */
|
605
|
-
/* @__PURE__ */
|
606
|
-
/* @__PURE__ */
|
607
|
-
/* @__PURE__ */
|
608
|
-
/* @__PURE__ */
|
609
|
-
/* @__PURE__ */
|
607
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Bold, {}),
|
608
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Italic, {}),
|
609
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Underline, {}),
|
610
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Strikethrough, {}),
|
611
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.ClearFormatting, {}),
|
612
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Highlight, {}),
|
613
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Code, {})
|
610
614
|
] }),
|
611
615
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
|
612
|
-
/* @__PURE__ */
|
613
|
-
/* @__PURE__ */
|
614
|
-
/* @__PURE__ */
|
615
|
-
/* @__PURE__ */
|
616
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.H1, {}),
|
617
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.H2, {}),
|
618
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.H3, {}),
|
619
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.H4, {})
|
616
620
|
] }),
|
617
621
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
|
618
|
-
/* @__PURE__ */
|
619
|
-
/* @__PURE__ */
|
620
|
-
/* @__PURE__ */
|
621
|
-
/* @__PURE__ */
|
622
|
-
/* @__PURE__ */
|
623
|
-
/* @__PURE__ */
|
622
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Blockquote, {}),
|
623
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Hr, {}),
|
624
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.BulletList, {}),
|
625
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.OrderedList, {}),
|
626
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Subscript, {}),
|
627
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Superscript, {})
|
624
628
|
] }),
|
625
629
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
|
626
|
-
/* @__PURE__ */
|
627
|
-
/* @__PURE__ */
|
630
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Link, {}),
|
631
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.Unlink, {})
|
628
632
|
] }),
|
629
633
|
/* @__PURE__ */ jsxs8(MantineRichTextEditor.ControlsGroup, { children: [
|
630
|
-
/* @__PURE__ */
|
631
|
-
/* @__PURE__ */
|
632
|
-
/* @__PURE__ */
|
633
|
-
/* @__PURE__ */
|
634
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.AlignLeft, {}),
|
635
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.AlignCenter, {}),
|
636
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.AlignJustify, {}),
|
637
|
+
/* @__PURE__ */ jsx17(MantineRichTextEditor.AlignRight, {})
|
634
638
|
] }),
|
635
639
|
props.extraControlsGroup
|
636
640
|
] })),
|
637
|
-
/* @__PURE__ */
|
641
|
+
/* @__PURE__ */ jsx17(
|
638
642
|
ScrollArea2.Autosize,
|
639
643
|
__spreadProps(__spreadValues({
|
640
644
|
onMouseDown: () => {
|
@@ -643,7 +647,7 @@ function MyRichTextEditor(props) {
|
|
643
647
|
mah: "200",
|
644
648
|
style: { cursor: "text" }
|
645
649
|
}, props.scrollAreaAutosizeProps), {
|
646
|
-
children: /* @__PURE__ */
|
650
|
+
children: /* @__PURE__ */ jsx17(RichTextEditor.Content, __spreadValues({ mih: "200" }, props.richTextEditorContentProps))
|
647
651
|
})
|
648
652
|
)
|
649
653
|
] })) }));
|
@@ -652,7 +656,7 @@ function MyRichTextEditor(props) {
|
|
652
656
|
// src/core/input/MySelect.tsx
|
653
657
|
import { Loader, Select } from "@mantine/core";
|
654
658
|
import React from "react";
|
655
|
-
import { jsx as
|
659
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
656
660
|
function extractTextFromReactNode(node) {
|
657
661
|
if (typeof node === "string" || typeof node === "number") return String(node);
|
658
662
|
if (Array.isArray(node)) return node.map(extractTextFromReactNode).join(" ");
|
@@ -670,7 +674,7 @@ function MySelect(_a) {
|
|
670
674
|
const plainTextLabel = extractTextFromReactNode(label).toLowerCase().trim();
|
671
675
|
placeholder = `Ch\u1ECDn ${plainTextLabel}`;
|
672
676
|
}
|
673
|
-
return /* @__PURE__ */
|
677
|
+
return /* @__PURE__ */ jsx18(
|
674
678
|
Select,
|
675
679
|
__spreadValues({
|
676
680
|
searchable: true,
|
@@ -678,7 +682,7 @@ function MySelect(_a) {
|
|
678
682
|
placeholder,
|
679
683
|
data: data != null ? data : [],
|
680
684
|
error: isError ? true : void 0,
|
681
|
-
rightSection: isLoading ? /* @__PURE__ */
|
685
|
+
rightSection: isLoading ? /* @__PURE__ */ jsx18(Loader, { size: "xs" }) : void 0,
|
682
686
|
disabled: isLoading || isError,
|
683
687
|
styles: (theme) => ({
|
684
688
|
input: rest.readOnly ? {
|
@@ -694,7 +698,7 @@ function MySelect(_a) {
|
|
694
698
|
|
695
699
|
// src/core/input/MySelectFromAPI.tsx
|
696
700
|
import { useCallback, useEffect as useEffect3, useMemo as useMemo3, useRef } from "react";
|
697
|
-
import { jsx as
|
701
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
698
702
|
function MySelectFromAPI(_a) {
|
699
703
|
var _b = _a, {
|
700
704
|
queryKey,
|
@@ -758,7 +762,7 @@ function MySelectFromAPI(_a) {
|
|
758
762
|
hasAutoSelected.current = true;
|
759
763
|
}
|
760
764
|
}, [autoSelectFirstItem, query.data, value, getLabel, onChange, setObjectData]);
|
761
|
-
return /* @__PURE__ */
|
765
|
+
return /* @__PURE__ */ jsx19(
|
762
766
|
MySelect,
|
763
767
|
__spreadValues({
|
764
768
|
isLoading: query.isLoading,
|
@@ -772,10 +776,10 @@ function MySelectFromAPI(_a) {
|
|
772
776
|
|
773
777
|
// src/core/input/MyTextInput.tsx
|
774
778
|
import { TextInput } from "@mantine/core";
|
775
|
-
import { jsx as
|
779
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
776
780
|
function MyTextInput(_a) {
|
777
781
|
var _b = _a, { label, isPhoneNumber } = _b, rest = __objRest(_b, ["label", "isPhoneNumber"]);
|
778
|
-
return /* @__PURE__ */
|
782
|
+
return /* @__PURE__ */ jsx20(
|
779
783
|
TextInput,
|
780
784
|
__spreadValues({
|
781
785
|
onKeyDown: (e) => {
|
@@ -818,13 +822,13 @@ import {
|
|
818
822
|
Divider,
|
819
823
|
Group as Group4,
|
820
824
|
NumberInput,
|
821
|
-
Paper as
|
825
|
+
Paper as Paper3,
|
822
826
|
ScrollArea as ScrollArea3,
|
823
827
|
Text as Text5
|
824
828
|
} from "@mantine/core";
|
825
829
|
import { IconPlus as IconPlus4, IconTrash as IconTrash3 } from "@tabler/icons-react";
|
826
830
|
import { useState } from "react";
|
827
|
-
import { jsx as
|
831
|
+
import { jsx as jsx21, jsxs as jsxs9 } from "react/jsx-runtime";
|
828
832
|
function MyWeeklySessionSchedulerPicker({
|
829
833
|
value = [],
|
830
834
|
onChange
|
@@ -855,8 +859,8 @@ function MyWeeklySessionSchedulerPicker({
|
|
855
859
|
return acc;
|
856
860
|
}, {});
|
857
861
|
const getLabel = (day) => enum_daysOfWeek[day] || `Day ${day}`;
|
858
|
-
return /* @__PURE__ */
|
859
|
-
/* @__PURE__ */
|
862
|
+
return /* @__PURE__ */ jsx21(Paper3, { w: "100%", p: "md", children: /* @__PURE__ */ jsxs9(MyFlexColumn, { children: [
|
863
|
+
/* @__PURE__ */ jsx21(Center, { children: /* @__PURE__ */ jsx21(
|
860
864
|
MyDayOfWeekPicker,
|
861
865
|
{
|
862
866
|
value: selectedDays,
|
@@ -866,29 +870,29 @@ function MyWeeklySessionSchedulerPicker({
|
|
866
870
|
}
|
867
871
|
}
|
868
872
|
) }),
|
869
|
-
/* @__PURE__ */
|
870
|
-
/* @__PURE__ */
|
873
|
+
/* @__PURE__ */ jsx21(Divider, { my: "xs" }),
|
874
|
+
/* @__PURE__ */ jsx21(Center, { children: /* @__PURE__ */ jsx21(ScrollArea3.Autosize, { h: "40vh", children: /* @__PURE__ */ jsx21(MyFlexColumn, { w: { base: "100%", sm: "70%" }, children: selectedDays.map((dayOfWeek) => {
|
871
875
|
var _a;
|
872
876
|
return /* @__PURE__ */ jsxs9(
|
873
|
-
|
877
|
+
Paper3,
|
874
878
|
{
|
875
879
|
w: "100%",
|
876
880
|
p: "md",
|
877
881
|
bg: const_object_colors.mantineBackgroundBlueLight,
|
878
882
|
children: [
|
879
883
|
/* @__PURE__ */ jsxs9(Group4, { gap: "apart", children: [
|
880
|
-
/* @__PURE__ */
|
881
|
-
/* @__PURE__ */
|
884
|
+
/* @__PURE__ */ jsx21(Text5, { w: "70px", fw: 500, children: getLabel(dayOfWeek) }),
|
885
|
+
/* @__PURE__ */ jsx21(
|
882
886
|
Button5,
|
883
887
|
{
|
884
888
|
color: "teal.5",
|
885
|
-
leftSection: /* @__PURE__ */
|
889
|
+
leftSection: /* @__PURE__ */ jsx21(IconPlus4, { size: 14 }),
|
886
890
|
onClick: () => handleAddSession(dayOfWeek),
|
887
891
|
children: "Th\xEAm bu\u1ED5i"
|
888
892
|
}
|
889
893
|
)
|
890
894
|
] }),
|
891
|
-
/* @__PURE__ */
|
895
|
+
/* @__PURE__ */ jsx21(Divider, { my: "sm" }),
|
892
896
|
(_a = grouped[dayOfWeek]) == null ? void 0 : _a.map((item, indexInDay) => {
|
893
897
|
const globalIndex = value.findIndex(
|
894
898
|
(v) => v === item
|
@@ -900,7 +904,7 @@ function MyWeeklySessionSchedulerPicker({
|
|
900
904
|
gap: "xs",
|
901
905
|
align: "flex-end",
|
902
906
|
children: [
|
903
|
-
/* @__PURE__ */
|
907
|
+
/* @__PURE__ */ jsx21(
|
904
908
|
NumberInput,
|
905
909
|
{
|
906
910
|
label: "Ti\u1EBFt b\u1EAFt \u0111\u1EA7u",
|
@@ -912,7 +916,7 @@ function MyWeeklySessionSchedulerPicker({
|
|
912
916
|
)
|
913
917
|
}
|
914
918
|
),
|
915
|
-
/* @__PURE__ */
|
919
|
+
/* @__PURE__ */ jsx21(
|
916
920
|
NumberInput,
|
917
921
|
{
|
918
922
|
label: "S\u1ED1 ti\u1EBFt",
|
@@ -924,7 +928,7 @@ function MyWeeklySessionSchedulerPicker({
|
|
924
928
|
)
|
925
929
|
}
|
926
930
|
),
|
927
|
-
/* @__PURE__ */
|
931
|
+
/* @__PURE__ */ jsx21(
|
928
932
|
NumberInput,
|
929
933
|
{
|
930
934
|
label: "S\u1ED1 ph\xFAt ",
|
@@ -933,13 +937,13 @@ function MyWeeklySessionSchedulerPicker({
|
|
933
937
|
value: item.durationMinutes
|
934
938
|
}
|
935
939
|
),
|
936
|
-
/* @__PURE__ */
|
940
|
+
/* @__PURE__ */ jsx21(
|
937
941
|
Button5,
|
938
942
|
{
|
939
943
|
variant: "light",
|
940
944
|
color: "red",
|
941
945
|
onClick: () => handleRemove(globalIndex),
|
942
|
-
leftSection: /* @__PURE__ */
|
946
|
+
leftSection: /* @__PURE__ */ jsx21(IconTrash3, { size: 14 }),
|
943
947
|
children: "X\xF3a bu\u1ED5i"
|
944
948
|
}
|
945
949
|
)
|
@@ -958,10 +962,10 @@ function MyWeeklySessionSchedulerPicker({
|
|
958
962
|
|
959
963
|
// src/core/layout/MyFlexEnd.tsx
|
960
964
|
import { Group as Group5 } from "@mantine/core";
|
961
|
-
import { jsx as
|
965
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
962
966
|
function MyFlexEnd2(_a) {
|
963
967
|
var _b = _a, { children } = _b, rest = __objRest(_b, ["children"]);
|
964
|
-
return /* @__PURE__ */
|
968
|
+
return /* @__PURE__ */ jsx22(Group5, __spreadProps(__spreadValues({ justify: "end", mt: "md" }, rest), { children }));
|
965
969
|
}
|
966
970
|
|
967
971
|
export {
|
package/dist/core/index.d.mts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
2
|
import { t as type_action } from '../types-B5rmBuXz.mjs';
|
3
|
-
import { ActionIconProps, ButtonProps, ModalProps, ScrollAreaAutosizeProps,
|
3
|
+
import { ActionIconProps, ButtonProps, ModalProps, ScrollAreaAutosizeProps, TextProps, PaperProps, GroupProps, ThemeIconProps, InputWrapperProps, SelectProps, TextInputProps, FlexProps } from '@mantine/core';
|
4
4
|
import { ReactNode, ButtonHTMLAttributes } from 'react';
|
5
5
|
import { M as MyApiResponse } from '../createBaseApi-D9OK2lA_.mjs';
|
6
6
|
import { AxiosResponse } from 'axios';
|
@@ -76,8 +76,9 @@ declare function MyDataTableSelectOne<TData extends MRT_RowData>({ columns, quer
|
|
76
76
|
interface MyFlexIconTitleProps {
|
77
77
|
icon?: ReactNode;
|
78
78
|
children?: ReactNode;
|
79
|
+
textProps?: TextProps;
|
79
80
|
}
|
80
|
-
declare function MyFlexIconTitle(props
|
81
|
+
declare function MyFlexIconTitle(props: MyFlexIconTitleProps): react_jsx_runtime.JSX.Element;
|
81
82
|
|
82
83
|
interface MyInfoBoxItem {
|
83
84
|
label: string;
|
package/dist/core/index.mjs
CHANGED
@@ -17,13 +17,13 @@ import {
|
|
17
17
|
MyStatsCard,
|
18
18
|
MyTextInput,
|
19
19
|
MyWeeklySessionSchedulerPicker
|
20
|
-
} from "../chunk-
|
20
|
+
} from "../chunk-5SGSJMGV.mjs";
|
21
|
+
import "../chunk-GFEMKKFH.mjs";
|
21
22
|
import "../chunk-R43BUIMD.mjs";
|
22
23
|
import "../chunk-U62R2QKJ.mjs";
|
23
24
|
import "../chunk-5U2JSHSJ.mjs";
|
24
|
-
import "../chunk-K6S7R6LU.mjs";
|
25
|
-
import "../chunk-GFEMKKFH.mjs";
|
26
25
|
import "../chunk-OMJJAHOC.mjs";
|
26
|
+
import "../chunk-K6S7R6LU.mjs";
|
27
27
|
import "../chunk-KFSAV44B.mjs";
|
28
28
|
import "../chunk-7ZCOFATU.mjs";
|
29
29
|
import "../chunk-FWCSY2DS.mjs";
|
@@ -11,14 +11,14 @@ import {
|
|
11
11
|
import {
|
12
12
|
U0DateToDDMMYYYString
|
13
13
|
} from "../chunk-EWDS5IOF.mjs";
|
14
|
-
import {
|
15
|
-
enum_emailConfigModule
|
16
|
-
} from "../chunk-VH4ZAD6M.mjs";
|
17
14
|
import {
|
18
15
|
MyButton as MyButton2,
|
19
16
|
MyDataTableSelectOne,
|
20
17
|
MyTextInput as MyTextInput2
|
21
|
-
} from "../chunk-
|
18
|
+
} from "../chunk-5SGSJMGV.mjs";
|
19
|
+
import {
|
20
|
+
const_object_documentTypes
|
21
|
+
} from "../chunk-GFEMKKFH.mjs";
|
22
22
|
import {
|
23
23
|
F_authenticate_Logout,
|
24
24
|
MyActionIconDelete,
|
@@ -49,13 +49,13 @@ import {
|
|
49
49
|
createGenericStore
|
50
50
|
} from "../chunk-U62R2QKJ.mjs";
|
51
51
|
import "../chunk-5U2JSHSJ.mjs";
|
52
|
-
import "../chunk-K6S7R6LU.mjs";
|
53
|
-
import {
|
54
|
-
const_object_documentTypes
|
55
|
-
} from "../chunk-GFEMKKFH.mjs";
|
56
52
|
import {
|
57
53
|
const_object_colors
|
58
54
|
} from "../chunk-OMJJAHOC.mjs";
|
55
|
+
import {
|
56
|
+
enum_emailConfigModule
|
57
|
+
} from "../chunk-VH4ZAD6M.mjs";
|
58
|
+
import "../chunk-K6S7R6LU.mjs";
|
59
59
|
import {
|
60
60
|
baseAxios_default,
|
61
61
|
createBaseApi,
|