aq-fe-framework 0.1.232 → 0.1.234
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.
@@ -148,6 +148,15 @@ interface IMyButtonCreate<T> extends Omit<ComponentProps<typeof MyButtonModal>,
|
|
148
148
|
}
|
149
149
|
declare function MyButtonCreate<T>({ form, onSubmit, onSuccess, onError, notCloseModalWhenSubmit, notResetFormWhenSubmit, children, disclosure: externalDisclosure, ...rest }: IMyButtonCreate<T>): react_jsx_runtime.JSX.Element;
|
150
150
|
|
151
|
+
interface IMyButtonDeleteList extends Omit<ComponentProps<typeof MyButtonModal>, "disclosure"> {
|
152
|
+
onSubmit: () => void;
|
153
|
+
onSuccess?: () => void;
|
154
|
+
onError?: () => void;
|
155
|
+
contextData?: string;
|
156
|
+
loading?: boolean;
|
157
|
+
}
|
158
|
+
declare function MyButtonDeleteList({ onSubmit, onSuccess, onError, contextData, ...rest }: IMyButtonDeleteList): react_jsx_runtime.JSX.Element;
|
159
|
+
|
151
160
|
interface SelectFileModalProps {
|
152
161
|
onExportStructure?: () => void;
|
153
162
|
stack: ReturnType<typeof useModalsStack<"select-file-page" | "select-field-page" | "implement-page">>;
|
@@ -512,4 +521,4 @@ interface IMySkeletonTable extends SkeletonProps {
|
|
512
521
|
}
|
513
522
|
declare function MySkeletonTable({ h }: IMySkeletonTable): react_jsx_runtime.JSX.Element;
|
514
523
|
|
515
|
-
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, Boxes, FaviconSetter, HeaderMegaMenu, type IAQCardProps, type IMyTextEditor, I_BasicAppShell_LinkItem, MyActionIcon, MyActionIconCheck, MyActionIconDelete, MyActionIconDownloadPDF, MyActionIconModal, MyActionIconUpdate, MyActionIconUpload, MyActionIconViewPDF, MyAnchorViewPDF, MyAppSpotlight, MyBoxesBackground, MyBoxesCore, MyButton, MyButtonCreate, MyButtonImport, MyButtonModal, MyButtonPrintPDF, MyButtonPrintTablePDF, MyButtonRouterBack, MyButtonViewPDF, MyCalendar, MyCardInformation, MyCardioLoader, MyCenterFull, MyCheckbox, MyContainer, MyDataTable, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
524
|
+
export { AQButtonCreateByImportFile, AQButtonExportData, AQCard, AQSelectTableByOpenModal, AQStatCard1, 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, MyDataTableSelect, MyDateInput, MyFieldset, MyFileInput, MyFlexColumn, MyFlexEnd, MyFlexRow, MyHtmlWrapper, MyIconText, MyKeyLabel, MyNumberFormatter, MyNumberInput, MyPageContent, MyScheduleX, MySelect, MySelectAPIGet, MySkeletonTable, MySwitchTheme, MyTab, MyTextArea, MyTextEditor, MyTextInput, SelectFieldModal, SelectFileModal, type SelectFileModalProps, useHeaderMegaMenuStore, useS_BasicAppShell, useS_ButtonImport };
|
@@ -23,6 +23,7 @@ import {
|
|
23
23
|
MyBoxesCore,
|
24
24
|
MyButton,
|
25
25
|
MyButtonCreate,
|
26
|
+
MyButtonDeleteList,
|
26
27
|
MyButtonImport,
|
27
28
|
MyButtonModal,
|
28
29
|
MyButtonPrintPDF,
|
@@ -65,7 +66,7 @@ import {
|
|
65
66
|
useS_BasicAppShell,
|
66
67
|
useS_ButtonImport,
|
67
68
|
utils_layout_getItemsWithoutLinks
|
68
|
-
} from "../chunk-
|
69
|
+
} from "../chunk-JD7YEBT3.mjs";
|
69
70
|
import "../chunk-P5TKOHP7.mjs";
|
70
71
|
import "../chunk-Y3YGC5IH.mjs";
|
71
72
|
import "../chunk-5U2JSHSJ.mjs";
|
@@ -96,6 +97,7 @@ export {
|
|
96
97
|
MyBoxesCore,
|
97
98
|
MyButton,
|
98
99
|
MyButtonCreate,
|
100
|
+
MyButtonDeleteList,
|
99
101
|
MyButtonImport,
|
100
102
|
MyButtonModal,
|
101
103
|
MyButtonPrintPDF,
|