aq-fe-framework 0.1.310 → 0.1.311
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-MK2W26FZ.mjs → chunk-JIPPFPV6.mjs} +1 -1
- package/dist/{chunk-RYZTACZ4.mjs → chunk-N2VHHQPH.mjs} +1 -1
- package/dist/{chunk-OPVLK7PA.mjs → chunk-QPNYGFTI.mjs} +2 -2
- package/dist/components/index.d.mts +1 -1
- package/dist/components/index.mjs +2 -2
- package/dist/core/index.d.mts +1 -1
- package/dist/core/index.mjs +2 -2
- package/dist/{createBaseApi-BayOeFCy.d.mts → createBaseApi-2GYRG_xt.d.mts} +1 -1
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.mjs +6 -6
- package/package.json +1 -1
@@ -64,8 +64,8 @@ function createBaseApi(baseUrl, axiosInstance) {
|
|
64
64
|
updateList: (data) => {
|
65
65
|
return axiosInstance.post(`${baseUrl}/updateList`, data);
|
66
66
|
},
|
67
|
-
|
68
|
-
return axiosInstance.post(`${baseUrl}/
|
67
|
+
createOrUpdateList: (data) => {
|
68
|
+
return axiosInstance.post(`${baseUrl}/createOrUpdateList`, data);
|
69
69
|
},
|
70
70
|
delete: (id) => {
|
71
71
|
return axiosInstance.post(`${baseUrl}/delete`, { id });
|
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React$1, { ReactNode, ComponentProps } from 'react';
|
3
3
|
import { t as type_action, T as TYPES_MANTINE_SIZE } from '../types-B5rmBuXz.mjs';
|
4
4
|
import { ActionIconProps, ButtonProps, useModalsStack, CheckboxProps, SelectProps, NumberFormatterProps, FieldsetProps, FileInputProps, NumberInputProps, TextareaProps, MantineSize, InputWrapperProps, TextInputProps, ContainerProps, FlexProps, GroupProps, TypographyStylesProviderProps, TabsProps, SkeletonProps } from '@mantine/core';
|
5
|
-
import { M as MyApiResponse } from '../createBaseApi-
|
5
|
+
import { M as MyApiResponse } from '../createBaseApi-2GYRG_xt.mjs';
|
6
6
|
import { AxiosResponse } from 'axios';
|
7
7
|
import { useDisclosure, useListState } from '@mantine/hooks';
|
8
8
|
import { UseFormReturnType, useForm } from '@mantine/form';
|
@@ -64,14 +64,14 @@ import {
|
|
64
64
|
useS_BasicAppShell,
|
65
65
|
useS_ButtonImport,
|
66
66
|
utils_layout_getItemsWithoutLinks
|
67
|
-
} from "../chunk-
|
67
|
+
} from "../chunk-N2VHHQPH.mjs";
|
68
68
|
import "../chunk-5U2JSHSJ.mjs";
|
69
69
|
import {
|
70
70
|
MyFlexColumn,
|
71
71
|
MyFlexRow
|
72
72
|
} from "../chunk-HHJFKKE7.mjs";
|
73
73
|
import "../chunk-NWBLJ3W3.mjs";
|
74
|
-
import "../chunk-
|
74
|
+
import "../chunk-QPNYGFTI.mjs";
|
75
75
|
import "../chunk-7ZCOFATU.mjs";
|
76
76
|
import "../chunk-Y3YGC5IH.mjs";
|
77
77
|
import "../chunk-FWCSY2DS.mjs";
|
package/dist/core/index.d.mts
CHANGED
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { t as type_action } from '../types-B5rmBuXz.mjs';
|
3
3
|
import { ActionIconProps, ButtonProps, ModalProps, TextInputProps } from '@mantine/core';
|
4
4
|
import { ReactNode } from 'react';
|
5
|
-
import { M as MyApiResponse } from '../createBaseApi-
|
5
|
+
import { M as MyApiResponse } from '../createBaseApi-2GYRG_xt.mjs';
|
6
6
|
import { AxiosResponse } from 'axios';
|
7
7
|
import { UseFormReturnType } from '@mantine/form';
|
8
8
|
import { useDisclosure } from '@mantine/hooks';
|
package/dist/core/index.mjs
CHANGED
@@ -6,11 +6,11 @@ import {
|
|
6
6
|
MyDayOfWeekPicker,
|
7
7
|
MyTextInput,
|
8
8
|
MyWeeklySessionSchedulerPicker
|
9
|
-
} from "../chunk-
|
9
|
+
} from "../chunk-JIPPFPV6.mjs";
|
10
10
|
import "../chunk-HHJFKKE7.mjs";
|
11
11
|
import "../chunk-NWBLJ3W3.mjs";
|
12
12
|
import "../chunk-K6S7R6LU.mjs";
|
13
|
-
import "../chunk-
|
13
|
+
import "../chunk-QPNYGFTI.mjs";
|
14
14
|
import "../chunk-7ZCOFATU.mjs";
|
15
15
|
import "../chunk-FWCSY2DS.mjs";
|
16
16
|
export {
|
@@ -25,7 +25,7 @@ declare function createBaseApi<T>(baseUrl: string, axiosInstance: AxiosInstance)
|
|
25
25
|
create: (data: Partial<T>) => Promise<axios.AxiosResponse<MyApiResponse<T>, any>>;
|
26
26
|
update: (data: Partial<T>) => Promise<axios.AxiosResponse<MyApiResponse<T>, any>>;
|
27
27
|
updateList: (data: Partial<T[]>) => Promise<axios.AxiosResponse<MyApiResponse<T[]>, any>>;
|
28
|
-
|
28
|
+
createOrUpdateList: (data: Partial<T[]>) => Promise<axios.AxiosResponse<MyApiResponse<T[]>, any>>;
|
29
29
|
delete: (id: number) => Promise<axios.AxiosResponse<any, any>>;
|
30
30
|
deleteList: (values: IBaseEntity[]) => Promise<axios.AxiosResponse<any, any>>;
|
31
31
|
};
|
package/dist/hooks/index.d.mts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as next_dist_shared_lib_app_router_context_shared_runtime from 'next/dist/shared/lib/app-router-context.shared-runtime';
|
2
|
-
import { M as MyApiResponse } from '../createBaseApi-
|
3
|
-
export { I as IPagingParams, c as createBaseApi } from '../createBaseApi-
|
2
|
+
import { M as MyApiResponse } from '../createBaseApi-2GYRG_xt.mjs';
|
3
|
+
export { I as IPagingParams, c as createBaseApi } from '../createBaseApi-2GYRG_xt.mjs';
|
4
4
|
import { AxiosInstance, AxiosResponse } from 'axios';
|
5
5
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
6
6
|
import { UseMutationOptions, QueryKey, UseQueryOptions } from '@tanstack/react-query';
|
package/dist/hooks/index.mjs
CHANGED
@@ -30,18 +30,15 @@ import {
|
|
30
30
|
useS_BasicAppShell,
|
31
31
|
useS_authenticate,
|
32
32
|
utils_layout_getItemsWithoutLinks
|
33
|
-
} from "../chunk-
|
33
|
+
} from "../chunk-N2VHHQPH.mjs";
|
34
34
|
import "../chunk-5U2JSHSJ.mjs";
|
35
35
|
import {
|
36
36
|
const_object_documentTypes
|
37
37
|
} from "../chunk-GFEMKKFH.mjs";
|
38
|
-
import {
|
39
|
-
enum_emailConfigModule
|
40
|
-
} from "../chunk-VH4ZAD6M.mjs";
|
41
38
|
import {
|
42
39
|
MyButton as MyButton2,
|
43
40
|
MyTextInput as MyTextInput2
|
44
|
-
} from "../chunk-
|
41
|
+
} from "../chunk-JIPPFPV6.mjs";
|
45
42
|
import {
|
46
43
|
MyFlexColumn,
|
47
44
|
MyFlexRow
|
@@ -49,6 +46,9 @@ import {
|
|
49
46
|
import {
|
50
47
|
const_object_colors
|
51
48
|
} from "../chunk-NWBLJ3W3.mjs";
|
49
|
+
import {
|
50
|
+
enum_emailConfigModule
|
51
|
+
} from "../chunk-VH4ZAD6M.mjs";
|
52
52
|
import "../chunk-K6S7R6LU.mjs";
|
53
53
|
import {
|
54
54
|
baseAxios_default,
|
@@ -59,7 +59,7 @@ import {
|
|
59
59
|
useMyRouter,
|
60
60
|
useQ_AQ_GetAQModule,
|
61
61
|
useQ_SkillCenter_GetAll
|
62
|
-
} from "../chunk-
|
62
|
+
} from "../chunk-QPNYGFTI.mjs";
|
63
63
|
import {
|
64
64
|
utils_notification_show
|
65
65
|
} from "../chunk-7ZCOFATU.mjs";
|