aq-fe-framework 0.1.641 → 0.1.643
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.
- package/dist/{chunk-MNJNQRZU.mjs → chunk-NP2GSNOZ.mjs} +11 -11
- package/dist/{chunk-XSXONDEV.mjs → chunk-ZWMBRILG.mjs} +14412 -14397
- package/dist/components/index.d.mts +6 -5
- package/dist/components/index.mjs +10 -10
- package/dist/const/index.mjs +1 -1
- package/dist/core/index.mjs +10 -10
- package/dist/coreService/index.mjs +4 -4
- package/dist/enum/index.mjs +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.mjs +4 -4
- package/package.json +1 -1
- package/dist/{chunk-5DUXSUE3.mjs → chunk-YYH7V6LN.mjs} +1 -1
|
@@ -303,6 +303,10 @@ declare function MyCardInformation({ title, value, unit, description, icon, diff
|
|
|
303
303
|
|
|
304
304
|
interface MyDataTableInternalProps<TData extends MRT_RowData> extends Omit<MyDataTableProps<TData>, "columns" | "data"> {
|
|
305
305
|
}
|
|
306
|
+
interface PaginationState {
|
|
307
|
+
pageIndex: number;
|
|
308
|
+
pageSize: number;
|
|
309
|
+
}
|
|
306
310
|
interface MyDataTableProps<TData extends MRT_RowData> extends MRT_TableOptions<TData> {
|
|
307
311
|
columns: MRT_ColumnDef<TData>[];
|
|
308
312
|
data: TData[];
|
|
@@ -311,10 +315,7 @@ interface MyDataTableProps<TData extends MRT_RowData> extends MRT_TableOptions<T
|
|
|
311
315
|
isError?: boolean;
|
|
312
316
|
isLoading?: boolean;
|
|
313
317
|
exportAble?: boolean;
|
|
314
|
-
pagination?:
|
|
315
|
-
pageIndex: number;
|
|
316
|
-
pageSize: number;
|
|
317
|
-
};
|
|
318
|
+
pagination?: PaginationState;
|
|
318
319
|
idSelectionOne?: string;
|
|
319
320
|
setIdSelectionOne?: (value: string) => void;
|
|
320
321
|
visibleFields?: (keyof TData)[];
|
|
@@ -551,4 +552,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
|
551
552
|
}
|
|
552
553
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
|
553
554
|
|
|
554
|
-
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, AQStatCard2, BasicAppShell, BasicAppShellProps, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonDeleteList, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardInformation, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, type MyDataTableInternalProps, type MyDataTableProps, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, extractLinkedMenuItems, filterMenuByPermission, findBreadcrumbPath, generateEnumFromPageList, getAllMenuWithPageId, getFinalLinkVieo, getReadablePageIdSet, useHeaderMegaMenuStore, useS_ButtonImport, useStore_BasicAppShell };
|
|
555
|
+
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, AQStatCard2, BasicAppShell, BasicAppShellProps, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonDeleteList, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardInformation, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, type MyDataTableInternalProps, type MyDataTableProps, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, type PaginationState, SelectFieldModal, SelectFileModal, type SelectFileModalProps, extractLinkedMenuItems, filterMenuByPermission, findBreadcrumbPath, generateEnumFromPageList, getAllMenuWithPageId, getFinalLinkVieo, getReadablePageIdSet, useHeaderMegaMenuStore, useS_ButtonImport, useStore_BasicAppShell };
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
Boxes,
|
|
10
10
|
FaviconSetter,
|
|
11
11
|
HeaderMegaMenu,
|
|
12
|
-
MyActionIcon,
|
|
12
|
+
MyActionIcon2 as MyActionIcon,
|
|
13
13
|
MyActionIconCheck,
|
|
14
14
|
MyActionIconDelete,
|
|
15
15
|
MyActionIconDownloadPDF,
|
|
@@ -21,11 +21,11 @@ import {
|
|
|
21
21
|
MyAppSpotlight,
|
|
22
22
|
MyBoxesBackground,
|
|
23
23
|
MyBoxesCore,
|
|
24
|
-
MyButton,
|
|
24
|
+
MyButton2 as MyButton,
|
|
25
25
|
MyButtonCreate,
|
|
26
26
|
MyButtonDeleteList,
|
|
27
27
|
MyButtonImport,
|
|
28
|
-
MyButtonModal,
|
|
28
|
+
MyButtonModal2 as MyButtonModal,
|
|
29
29
|
MyButtonPrintPDF2 as MyButtonPrintPDF,
|
|
30
30
|
MyButtonPrintTablePDF,
|
|
31
31
|
MyButtonRouterBack,
|
|
@@ -41,8 +41,8 @@ import {
|
|
|
41
41
|
MyDateInput,
|
|
42
42
|
MyFieldset,
|
|
43
43
|
MyFileInput,
|
|
44
|
-
MyFlexColumn,
|
|
45
|
-
|
|
44
|
+
MyFlexColumn2 as MyFlexColumn,
|
|
45
|
+
MyFlexEnd,
|
|
46
46
|
MyFlexRow,
|
|
47
47
|
MyHtmlWrapper,
|
|
48
48
|
MyIconText,
|
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
MyNumberInput,
|
|
51
51
|
MyPageContent,
|
|
52
52
|
MyScheduleX,
|
|
53
|
-
|
|
53
|
+
MySelect,
|
|
54
54
|
MySelectAPIGet,
|
|
55
55
|
MySkeletonTable,
|
|
56
56
|
MySwitchTheme,
|
|
@@ -70,16 +70,16 @@ import {
|
|
|
70
70
|
useHeaderMegaMenuStore,
|
|
71
71
|
useS_ButtonImport,
|
|
72
72
|
useStore_BasicAppShell
|
|
73
|
-
} from "../chunk-
|
|
73
|
+
} from "../chunk-ZWMBRILG.mjs";
|
|
74
74
|
import "../chunk-PW6WTEVB.mjs";
|
|
75
75
|
import "../chunk-7YTF4SLV.mjs";
|
|
76
76
|
import "../chunk-7PUDC2WF.mjs";
|
|
77
77
|
import "../chunk-EWDS5IOF.mjs";
|
|
78
|
-
import "../chunk-
|
|
79
|
-
import "../chunk-
|
|
78
|
+
import "../chunk-YYH7V6LN.mjs";
|
|
79
|
+
import "../chunk-NP2GSNOZ.mjs";
|
|
80
80
|
import "../chunk-CZWDOLZ3.mjs";
|
|
81
|
-
import "../chunk-7ZCOFATU.mjs";
|
|
82
81
|
import "../chunk-WZ6PXGGC.mjs";
|
|
82
|
+
import "../chunk-7ZCOFATU.mjs";
|
|
83
83
|
import "../chunk-FWCSY2DS.mjs";
|
|
84
84
|
export {
|
|
85
85
|
AQButtonCreateByImportFile,
|
package/dist/const/index.mjs
CHANGED
package/dist/core/index.mjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DroppablePlaceholder,
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
MyActionIcon,
|
|
4
|
+
MyButton,
|
|
5
5
|
MyButtonCreateUpdate,
|
|
6
|
-
|
|
6
|
+
MyButtonModal,
|
|
7
7
|
MyButtonModalForm,
|
|
8
8
|
MyButtonPrintPDF,
|
|
9
9
|
MyDataTableSelectOne,
|
|
10
10
|
MyDayOfWeekPicker,
|
|
11
11
|
MyFileInputPreview,
|
|
12
|
-
|
|
13
|
-
MyFlexEnd,
|
|
12
|
+
MyFlexColumn,
|
|
13
|
+
MyFlexEnd2 as MyFlexEnd,
|
|
14
14
|
MyFlexIconTitle,
|
|
15
15
|
MyInfoBox,
|
|
16
16
|
MyLabelValueRow,
|
|
@@ -18,21 +18,21 @@ import {
|
|
|
18
18
|
MyModalImport,
|
|
19
19
|
MyPrintContent,
|
|
20
20
|
MyRichTextEditor,
|
|
21
|
-
MySelect,
|
|
21
|
+
MySelect2 as MySelect,
|
|
22
22
|
MySelectFromAPI,
|
|
23
23
|
MyStatsCard,
|
|
24
24
|
MyTextInput2 as MyTextInput,
|
|
25
25
|
MyWeeklySessionSchedulerPicker
|
|
26
|
-
} from "../chunk-
|
|
26
|
+
} from "../chunk-ZWMBRILG.mjs";
|
|
27
27
|
import "../chunk-PW6WTEVB.mjs";
|
|
28
28
|
import "../chunk-7YTF4SLV.mjs";
|
|
29
29
|
import "../chunk-7PUDC2WF.mjs";
|
|
30
30
|
import "../chunk-EWDS5IOF.mjs";
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
31
|
+
import "../chunk-YYH7V6LN.mjs";
|
|
32
|
+
import "../chunk-NP2GSNOZ.mjs";
|
|
33
33
|
import "../chunk-CZWDOLZ3.mjs";
|
|
34
|
-
import "../chunk-7ZCOFATU.mjs";
|
|
35
34
|
import "../chunk-WZ6PXGGC.mjs";
|
|
35
|
+
import "../chunk-7ZCOFATU.mjs";
|
|
36
36
|
import "../chunk-FWCSY2DS.mjs";
|
|
37
37
|
export {
|
|
38
38
|
DroppablePlaceholder,
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MyModalDelete
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-ZWMBRILG.mjs";
|
|
4
4
|
import "../chunk-PW6WTEVB.mjs";
|
|
5
5
|
import "../chunk-7YTF4SLV.mjs";
|
|
6
6
|
import "../chunk-7PUDC2WF.mjs";
|
|
7
7
|
import "../chunk-EWDS5IOF.mjs";
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-YYH7V6LN.mjs";
|
|
9
|
+
import "../chunk-NP2GSNOZ.mjs";
|
|
10
10
|
import {
|
|
11
11
|
useMyReactMutation
|
|
12
12
|
} from "../chunk-CZWDOLZ3.mjs";
|
|
13
|
-
import "../chunk-7ZCOFATU.mjs";
|
|
14
13
|
import "../chunk-WZ6PXGGC.mjs";
|
|
14
|
+
import "../chunk-7ZCOFATU.mjs";
|
|
15
15
|
import {
|
|
16
16
|
__objRest,
|
|
17
17
|
__spreadValues
|
package/dist/enum/index.mjs
CHANGED
package/dist/hooks/index.mjs
CHANGED
|
@@ -106,16 +106,16 @@ import {
|
|
|
106
106
|
Feat_accessControlLevel,
|
|
107
107
|
useS_authenticate,
|
|
108
108
|
useS_moduleConfig
|
|
109
|
-
} from "../chunk-
|
|
109
|
+
} from "../chunk-ZWMBRILG.mjs";
|
|
110
110
|
import "../chunk-PW6WTEVB.mjs";
|
|
111
111
|
import "../chunk-7YTF4SLV.mjs";
|
|
112
112
|
import "../chunk-7PUDC2WF.mjs";
|
|
113
113
|
import "../chunk-EWDS5IOF.mjs";
|
|
114
|
-
import "../chunk-
|
|
115
|
-
import "../chunk-
|
|
114
|
+
import "../chunk-YYH7V6LN.mjs";
|
|
115
|
+
import "../chunk-NP2GSNOZ.mjs";
|
|
116
116
|
import "../chunk-CZWDOLZ3.mjs";
|
|
117
|
-
import "../chunk-7ZCOFATU.mjs";
|
|
118
117
|
import "../chunk-WZ6PXGGC.mjs";
|
|
118
|
+
import "../chunk-7ZCOFATU.mjs";
|
|
119
119
|
import "../chunk-FWCSY2DS.mjs";
|
|
120
120
|
export {
|
|
121
121
|
ENUM_BUSINESS_TYPE,
|
package/package.json
CHANGED