aq-fe-framework 0.1.250 → 0.1.252
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.
@@ -296,7 +296,9 @@ interface MyCardInformationProps {
|
|
296
296
|
declare function MyCardInformation({ title, value, unit, description, icon, diff, extraControl }: MyCardInformationProps): react_jsx_runtime.JSX.Element;
|
297
297
|
|
298
298
|
type FormatFunction<TData extends MRT_RowData> = (value: any) => any;
|
299
|
-
interface
|
299
|
+
interface MyDataTablePropsInternal<TData extends MRT_RowData> extends Omit<MyDataTableProps<TData>, "columns" | "data"> {
|
300
|
+
}
|
301
|
+
interface MyDataTableProps<TData extends MRT_RowData> extends MRT_TableOptions<TData> {
|
300
302
|
columns: MRT_ColumnDef<TData>[];
|
301
303
|
data: TData[];
|
302
304
|
rowActionSize?: number;
|
@@ -312,7 +314,7 @@ interface IDataTable$1<TData extends MRT_RowData> extends MRT_TableOptions<TData
|
|
312
314
|
isError?: boolean;
|
313
315
|
isLoading?: boolean;
|
314
316
|
}
|
315
|
-
declare function MyDataTable<TData extends MRT_RowData>({ formats, exportAble, csvConfigProps, rowActionSize, columns, data, renderTopToolbarCustomActions, setSelectedRow, isError, isLoading, ...rest }:
|
317
|
+
declare function MyDataTable<TData extends MRT_RowData>({ formats, exportAble, csvConfigProps, rowActionSize, columns, data, renderTopToolbarCustomActions, setSelectedRow, isError, isLoading, ...rest }: MyDataTableProps<TData>): react_jsx_runtime.JSX.Element | undefined;
|
316
318
|
|
317
319
|
interface MyIconTextProps {
|
318
320
|
icon?: React.ElementType;
|
@@ -541,4 +543,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
541
543
|
}
|
542
544
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
543
545
|
|
544
|
-
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, type IWeeklySession, 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, MyDataTableSelect, MyDateInput, MyDayOfWeekPicker, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, MyWeeklySessionSchedulerPicker, SelectFieldModal, SelectFileModal, type SelectFileModalProps, type WeeklySessionSchedulerProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
546
|
+
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, type IWeeklySession, 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 MyDataTableProps, type MyDataTablePropsInternal, MyDataTableSelect, MyDateInput, MyDayOfWeekPicker, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, MyWeeklySessionSchedulerPicker, SelectFieldModal, SelectFileModal, type SelectFileModalProps, type WeeklySessionSchedulerProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
@@ -68,11 +68,11 @@ import {
|
|
68
68
|
useS_BasicAppShell,
|
69
69
|
useS_ButtonImport,
|
70
70
|
utils_layout_getItemsWithoutLinks
|
71
|
-
} from "../chunk-
|
71
|
+
} from "../chunk-Z4KW3A2I.mjs";
|
72
72
|
import "../chunk-HMRYQTJT.mjs";
|
73
|
+
import "../chunk-Y3YGC5IH.mjs";
|
73
74
|
import "../chunk-5U2JSHSJ.mjs";
|
74
75
|
import "../chunk-7ZCOFATU.mjs";
|
75
|
-
import "../chunk-Y3YGC5IH.mjs";
|
76
76
|
import "../chunk-FWCSY2DS.mjs";
|
77
77
|
export {
|
78
78
|
AQButtonCreateByImportFile,
|
@@ -25,12 +25,15 @@ import {
|
|
25
25
|
useS_BasicAppShell,
|
26
26
|
useS_authenticate,
|
27
27
|
utils_layout_getItemsWithoutLinks
|
28
|
-
} from "../chunk-
|
28
|
+
} from "../chunk-Z4KW3A2I.mjs";
|
29
29
|
import {
|
30
30
|
baseAxios_default,
|
31
31
|
useQ_AQ_GetAQModule,
|
32
32
|
useQ_SkillCenter_GetAll
|
33
33
|
} from "../chunk-HMRYQTJT.mjs";
|
34
|
+
import {
|
35
|
+
createGenericStore
|
36
|
+
} from "../chunk-Y3YGC5IH.mjs";
|
34
37
|
import {
|
35
38
|
U0DateToDDMMYYYString,
|
36
39
|
U0MyValidateEmail,
|
@@ -43,9 +46,6 @@ import "../chunk-5U2JSHSJ.mjs";
|
|
43
46
|
import {
|
44
47
|
utils_notification_show
|
45
48
|
} from "../chunk-7ZCOFATU.mjs";
|
46
|
-
import {
|
47
|
-
createGenericStore
|
48
|
-
} from "../chunk-Y3YGC5IH.mjs";
|
49
49
|
import {
|
50
50
|
__objRest,
|
51
51
|
__spreadProps,
|
package/package.json
CHANGED
@@ -2,15 +2,15 @@ import {
|
|
2
2
|
baseAxios_default,
|
3
3
|
useQ_AQ_GetAQModule
|
4
4
|
} from "./chunk-HMRYQTJT.mjs";
|
5
|
+
import {
|
6
|
+
createGenericStore
|
7
|
+
} from "./chunk-Y3YGC5IH.mjs";
|
5
8
|
import {
|
6
9
|
utils_pdf_download
|
7
10
|
} from "./chunk-5U2JSHSJ.mjs";
|
8
11
|
import {
|
9
12
|
utils_notification_show
|
10
13
|
} from "./chunk-7ZCOFATU.mjs";
|
11
|
-
import {
|
12
|
-
createGenericStore
|
13
|
-
} from "./chunk-Y3YGC5IH.mjs";
|
14
14
|
import {
|
15
15
|
__objRest,
|
16
16
|
__spreadProps,
|