aq-fe-framework 0.1.1106 → 0.1.1107
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-HJA2RK3X.mjs → chunk-PCC46FBV.mjs} +642 -596
- package/dist/components/index.mjs +2 -2
- package/dist/const/index.mjs +1 -1
- package/dist/core/index.d.mts +7 -1
- package/dist/core/index.mjs +4 -2
- package/dist/modules-features/index.mjs +2 -2
- package/dist/shared/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/{chunk-N5DFWFM6.mjs → chunk-S5NCYRRY.mjs} +1 -1
|
@@ -65,13 +65,13 @@ import {
|
|
|
65
65
|
getReadablePageIdSet,
|
|
66
66
|
useHeaderMegaMenuStore,
|
|
67
67
|
useStore_BasicAppShell
|
|
68
|
-
} from "../chunk-
|
|
68
|
+
} from "../chunk-PCC46FBV.mjs";
|
|
69
69
|
import "../chunk-WW55EZ4B.mjs";
|
|
70
70
|
import "../chunk-KGBXMHKR.mjs";
|
|
71
71
|
import "../chunk-7ZI7IOEP.mjs";
|
|
72
72
|
import "../chunk-NYAWQRB7.mjs";
|
|
73
73
|
import "../chunk-BTITP4TN.mjs";
|
|
74
|
-
import "../chunk-
|
|
74
|
+
import "../chunk-S5NCYRRY.mjs";
|
|
75
75
|
import "../chunk-VFTEXXA7.mjs";
|
|
76
76
|
import "../chunk-Z76CSZFI.mjs";
|
|
77
77
|
import "../chunk-WZ6PXGGC.mjs";
|
package/dist/const/index.mjs
CHANGED
package/dist/core/index.d.mts
CHANGED
|
@@ -324,10 +324,16 @@ interface CustomDeleteListAPIProps<TData extends MRT_RowData> extends Omit<MyBut
|
|
|
324
324
|
}
|
|
325
325
|
declare function CustomButtonDeleteListAPI<TData extends MRT_RowData>({ deleteListFn, table, ...rest }: CustomDeleteListAPIProps<TData>): react_jsx_runtime.JSX.Element;
|
|
326
326
|
|
|
327
|
+
interface CustomSelectAPIProps<IRes extends IBaseEntity> extends MySelectProps {
|
|
328
|
+
query: ReturnType<typeof useMyReactQuery<IRes[], any>>;
|
|
329
|
+
autoSelectFirst?: boolean;
|
|
330
|
+
}
|
|
331
|
+
declare function CustomSelectAPI<IRes extends IBaseEntity>({ query, autoSelectFirst, value, onChange, ...rest }: CustomSelectAPIProps<IRes>): react_jsx_runtime.JSX.Element;
|
|
332
|
+
|
|
327
333
|
interface MyButtonViewFileAPIProps extends MyButtonViewFileProps {
|
|
328
334
|
filePath?: string;
|
|
329
335
|
externalDisc?: UseDisclosureReturnValue;
|
|
330
336
|
}
|
|
331
337
|
declare function MyButtonViewFileAPI({ filePath, externalDisc, ...rest }: MyButtonViewFileAPIProps): react_jsx_runtime.JSX.Element;
|
|
332
338
|
|
|
333
|
-
export { CustomAutocomplete, CustomButtonDeleteListAPI, CustomDataTableAPI, CustomEnumBadge, CustomNumberInput, type CustomNumberInputProps, CustomPhoneNumberInput, CustomSwitchTheme, CustomTabs, CustomThemeIconSquareCheck, DroppablePlaceholder, type FieldDefinition, type IWeeklySession, type ModalImportId, MyActionIconProps, MyButtonCreateUpdate, type MyButtonCreateUpdateProps, type MyButtonExportStructureProps, MyButtonModalForm, type MyButtonModalFormProps, MyButtonModalProps, MyButtonPrintPDF, type MyButtonPrintPDFProps, MyButtonProps, MyButtonViewFile, MyButtonViewFileAPI, type MyButtonViewFileProps, MyDataTableSelectOne, MyDataTableStagedChanges, type MyDataTableStagedChangesProps, MyDayOfWeekPicker, MyFileInputPreview, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyModalImport, MyPrintContent, type MyPrintContentProps, MyRichTextEditor, MySelectFromAPI, type MySelectFromAPIProps, MySelectProps, MyStatsCard, MyTextInput, type MyTextInputProps, MyWeeklySessionSchedulerPicker, type RowDetail, type StagedChange, type ValidationResult, type WeeklySessionSchedulerProps };
|
|
339
|
+
export { CustomAutocomplete, CustomButtonDeleteListAPI, CustomDataTableAPI, CustomEnumBadge, CustomNumberInput, type CustomNumberInputProps, CustomPhoneNumberInput, CustomSelectAPI, type CustomSelectAPIProps, CustomSwitchTheme, CustomTabs, CustomThemeIconSquareCheck, DroppablePlaceholder, type FieldDefinition, type IWeeklySession, type ModalImportId, MyActionIconProps, MyButtonCreateUpdate, type MyButtonCreateUpdateProps, type MyButtonExportStructureProps, MyButtonModalForm, type MyButtonModalFormProps, MyButtonModalProps, MyButtonPrintPDF, type MyButtonPrintPDFProps, MyButtonProps, MyButtonViewFile, MyButtonViewFileAPI, type MyButtonViewFileProps, MyDataTableSelectOne, MyDataTableStagedChanges, type MyDataTableStagedChangesProps, MyDayOfWeekPicker, MyFileInputPreview, MyFlexColumn, MyFlexEnd, MyFlexIconTitle, MyInfoBox, type MyInfoBoxItem, type MyInfoBoxProps, MyLabelValueRow, MyModalImport, MyPrintContent, type MyPrintContentProps, MyRichTextEditor, MySelectFromAPI, type MySelectFromAPIProps, MySelectProps, MyStatsCard, MyTextInput, type MyTextInputProps, MyWeeklySessionSchedulerPicker, type RowDetail, type StagedChange, type ValidationResult, type WeeklySessionSchedulerProps };
|
package/dist/core/index.mjs
CHANGED
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
CustomEnumBadge,
|
|
6
6
|
CustomNumberInput,
|
|
7
7
|
CustomPhoneNumberInput,
|
|
8
|
+
CustomSelectAPI,
|
|
8
9
|
CustomSwitchTheme,
|
|
9
10
|
CustomTabs,
|
|
10
11
|
CustomThemeIconSquareCheck,
|
|
@@ -34,13 +35,13 @@ import {
|
|
|
34
35
|
MyStatsCard,
|
|
35
36
|
MyTextInput2 as MyTextInput,
|
|
36
37
|
MyWeeklySessionSchedulerPicker
|
|
37
|
-
} from "../chunk-
|
|
38
|
+
} from "../chunk-PCC46FBV.mjs";
|
|
38
39
|
import "../chunk-WW55EZ4B.mjs";
|
|
39
40
|
import "../chunk-KGBXMHKR.mjs";
|
|
40
41
|
import "../chunk-7ZI7IOEP.mjs";
|
|
41
42
|
import "../chunk-NYAWQRB7.mjs";
|
|
42
43
|
import "../chunk-BTITP4TN.mjs";
|
|
43
|
-
import "../chunk-
|
|
44
|
+
import "../chunk-S5NCYRRY.mjs";
|
|
44
45
|
import "../chunk-VFTEXXA7.mjs";
|
|
45
46
|
import "../chunk-Z76CSZFI.mjs";
|
|
46
47
|
import "../chunk-WZ6PXGGC.mjs";
|
|
@@ -52,6 +53,7 @@ export {
|
|
|
52
53
|
CustomEnumBadge,
|
|
53
54
|
CustomNumberInput,
|
|
54
55
|
CustomPhoneNumberInput,
|
|
56
|
+
CustomSelectAPI,
|
|
55
57
|
CustomSwitchTheme,
|
|
56
58
|
CustomTabs,
|
|
57
59
|
CustomThemeIconSquareCheck,
|
|
@@ -64,13 +64,13 @@ import {
|
|
|
64
64
|
MailTemplateDeleteButton,
|
|
65
65
|
useS_moduleConfig,
|
|
66
66
|
useStore_Authenticate
|
|
67
|
-
} from "../chunk-
|
|
67
|
+
} from "../chunk-PCC46FBV.mjs";
|
|
68
68
|
import "../chunk-WW55EZ4B.mjs";
|
|
69
69
|
import "../chunk-KGBXMHKR.mjs";
|
|
70
70
|
import "../chunk-7ZI7IOEP.mjs";
|
|
71
71
|
import "../chunk-NYAWQRB7.mjs";
|
|
72
72
|
import "../chunk-BTITP4TN.mjs";
|
|
73
|
-
import "../chunk-
|
|
73
|
+
import "../chunk-S5NCYRRY.mjs";
|
|
74
74
|
import "../chunk-VFTEXXA7.mjs";
|
|
75
75
|
import "../chunk-Z76CSZFI.mjs";
|
|
76
76
|
import "../chunk-WZ6PXGGC.mjs";
|
package/dist/shared/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MySelect2 as MySelect,
|
|
3
3
|
Shared_DocTypeSelect
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-PCC46FBV.mjs";
|
|
5
5
|
import "../chunk-WW55EZ4B.mjs";
|
|
6
6
|
import "../chunk-KGBXMHKR.mjs";
|
|
7
7
|
import {
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "../chunk-7ZI7IOEP.mjs";
|
|
10
10
|
import "../chunk-NYAWQRB7.mjs";
|
|
11
11
|
import "../chunk-BTITP4TN.mjs";
|
|
12
|
-
import "../chunk-
|
|
12
|
+
import "../chunk-S5NCYRRY.mjs";
|
|
13
13
|
import {
|
|
14
14
|
enumLabel_gender,
|
|
15
15
|
enum_gender
|
package/package.json
CHANGED
|
@@ -96,10 +96,10 @@ var const_object_generalMenuData = {
|
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
export {
|
|
99
|
-
const_object_colors,
|
|
100
99
|
const_array_daysOfWeek,
|
|
101
100
|
const_aqModuleId,
|
|
102
101
|
const_columnSize,
|
|
102
|
+
const_object_colors,
|
|
103
103
|
const_object_documentTypes,
|
|
104
104
|
const_object_generalMenuData
|
|
105
105
|
};
|