aq-fe-framework 0.1.828 → 0.1.829
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-KULOC3II.mjs → chunk-QZZ7HRNO.mjs} +15 -6
- package/dist/components/index.mjs +2 -2
- package/dist/core/index.d.mts +1 -1
- package/dist/core/index.mjs +2 -2
- package/dist/coreService/index.mjs +2 -2
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.mjs +2 -2
- package/dist/shared/index.mjs +6 -6
- package/package.json +1 -1
|
@@ -407,17 +407,26 @@ function MyButtonModal({
|
|
|
407
407
|
isActionIcon = false,
|
|
408
408
|
toolTipProps
|
|
409
409
|
}) {
|
|
410
|
+
const handleClick = (event) => {
|
|
411
|
+
var _a, _b;
|
|
412
|
+
if (isActionIcon) {
|
|
413
|
+
(_a = actionIconProps == null ? void 0 : actionIconProps.onClick) == null ? void 0 : _a.call(actionIconProps, event);
|
|
414
|
+
} else {
|
|
415
|
+
(_b = buttonProps == null ? void 0 : buttonProps.onClick) == null ? void 0 : _b.call(buttonProps, event);
|
|
416
|
+
}
|
|
417
|
+
disclosure == null ? void 0 : disclosure[1].open();
|
|
418
|
+
};
|
|
410
419
|
return /* @__PURE__ */ jsxs2(Fragment2, { children: [
|
|
411
420
|
isActionIcon ? /* @__PURE__ */ jsx7(Tooltip2, __spreadProps(__spreadValues({ label: toolTipProps == null ? void 0 : toolTipProps.label, hidden: !(toolTipProps == null ? void 0 : toolTipProps.label) }, toolTipProps), { children: /* @__PURE__ */ jsx7(
|
|
412
421
|
MyActionIcon,
|
|
413
|
-
__spreadValues({
|
|
414
|
-
onClick:
|
|
415
|
-
}
|
|
422
|
+
__spreadProps(__spreadValues({}, actionIconProps), {
|
|
423
|
+
onClick: handleClick
|
|
424
|
+
})
|
|
416
425
|
) })) : /* @__PURE__ */ jsx7(
|
|
417
426
|
MyButton,
|
|
418
|
-
__spreadValues({
|
|
419
|
-
onClick:
|
|
420
|
-
}
|
|
427
|
+
__spreadProps(__spreadValues({}, buttonProps), {
|
|
428
|
+
onClick: handleClick
|
|
429
|
+
})
|
|
421
430
|
),
|
|
422
431
|
/* @__PURE__ */ jsx7(
|
|
423
432
|
Modal2,
|
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
useHeaderMegaMenuStore,
|
|
71
71
|
useS_ButtonImport,
|
|
72
72
|
useStore_BasicAppShell
|
|
73
|
-
} from "../chunk-
|
|
73
|
+
} from "../chunk-QZZ7HRNO.mjs";
|
|
74
74
|
import "../chunk-SUH3FFFV.mjs";
|
|
75
75
|
import "../chunk-IFV3VC5B.mjs";
|
|
76
76
|
import "../chunk-RJH5TVHS.mjs";
|
|
@@ -80,8 +80,8 @@ import "../chunk-QSWIVDXC.mjs";
|
|
|
80
80
|
import "../chunk-KAC7JMQB.mjs";
|
|
81
81
|
import "../chunk-K6S7R6LU.mjs";
|
|
82
82
|
import "../chunk-XIPVE5EK.mjs";
|
|
83
|
-
import "../chunk-WZ6PXGGC.mjs";
|
|
84
83
|
import "../chunk-7ZCOFATU.mjs";
|
|
84
|
+
import "../chunk-WZ6PXGGC.mjs";
|
|
85
85
|
import "../chunk-FWCSY2DS.mjs";
|
|
86
86
|
export {
|
|
87
87
|
AQButtonCreateByImportFile,
|
package/dist/core/index.d.mts
CHANGED
|
@@ -73,7 +73,7 @@ interface MyButtonModalProps {
|
|
|
73
73
|
isActionIcon?: boolean;
|
|
74
74
|
toolTipProps?: Omit<TooltipProps, "children">;
|
|
75
75
|
}
|
|
76
|
-
declare function MyButtonModal({ disclosure, children, buttonProps, actionIconProps, modalProps, isActionIcon, toolTipProps }: MyButtonModalProps): react_jsx_runtime.JSX.Element;
|
|
76
|
+
declare function MyButtonModal({ disclosure, children, buttonProps, actionIconProps, modalProps, isActionIcon, toolTipProps, }: MyButtonModalProps): react_jsx_runtime.JSX.Element;
|
|
77
77
|
|
|
78
78
|
interface MyButtonModalFormProps<IEntity> extends MyButtonModalProps {
|
|
79
79
|
isUpdate?: boolean;
|
package/dist/core/index.mjs
CHANGED
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
MyStatsCard,
|
|
31
31
|
MyTextInput2 as MyTextInput,
|
|
32
32
|
MyWeeklySessionSchedulerPicker
|
|
33
|
-
} from "../chunk-
|
|
33
|
+
} from "../chunk-QZZ7HRNO.mjs";
|
|
34
34
|
import "../chunk-SUH3FFFV.mjs";
|
|
35
35
|
import "../chunk-IFV3VC5B.mjs";
|
|
36
36
|
import "../chunk-RJH5TVHS.mjs";
|
|
@@ -40,8 +40,8 @@ import "../chunk-QSWIVDXC.mjs";
|
|
|
40
40
|
import "../chunk-KAC7JMQB.mjs";
|
|
41
41
|
import "../chunk-K6S7R6LU.mjs";
|
|
42
42
|
import "../chunk-XIPVE5EK.mjs";
|
|
43
|
-
import "../chunk-WZ6PXGGC.mjs";
|
|
44
43
|
import "../chunk-7ZCOFATU.mjs";
|
|
44
|
+
import "../chunk-WZ6PXGGC.mjs";
|
|
45
45
|
import "../chunk-FWCSY2DS.mjs";
|
|
46
46
|
export {
|
|
47
47
|
CustomAutocomplete,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MyModalDelete
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-QZZ7HRNO.mjs";
|
|
4
4
|
import "../chunk-SUH3FFFV.mjs";
|
|
5
5
|
import "../chunk-IFV3VC5B.mjs";
|
|
6
6
|
import "../chunk-RJH5TVHS.mjs";
|
|
@@ -12,8 +12,8 @@ import "../chunk-K6S7R6LU.mjs";
|
|
|
12
12
|
import {
|
|
13
13
|
useMyReactMutation
|
|
14
14
|
} from "../chunk-XIPVE5EK.mjs";
|
|
15
|
-
import "../chunk-WZ6PXGGC.mjs";
|
|
16
15
|
import "../chunk-7ZCOFATU.mjs";
|
|
16
|
+
import "../chunk-WZ6PXGGC.mjs";
|
|
17
17
|
import {
|
|
18
18
|
__objRest,
|
|
19
19
|
__spreadValues
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -113,7 +113,7 @@ import {
|
|
|
113
113
|
MailTemplateDeleteButton,
|
|
114
114
|
useS_moduleConfig,
|
|
115
115
|
useStore_Authenticate
|
|
116
|
-
} from "../chunk-
|
|
116
|
+
} from "../chunk-QZZ7HRNO.mjs";
|
|
117
117
|
import "../chunk-SUH3FFFV.mjs";
|
|
118
118
|
import "../chunk-IFV3VC5B.mjs";
|
|
119
119
|
import "../chunk-RJH5TVHS.mjs";
|
|
@@ -123,8 +123,8 @@ import "../chunk-QSWIVDXC.mjs";
|
|
|
123
123
|
import "../chunk-KAC7JMQB.mjs";
|
|
124
124
|
import "../chunk-K6S7R6LU.mjs";
|
|
125
125
|
import "../chunk-XIPVE5EK.mjs";
|
|
126
|
-
import "../chunk-WZ6PXGGC.mjs";
|
|
127
126
|
import "../chunk-7ZCOFATU.mjs";
|
|
127
|
+
import "../chunk-WZ6PXGGC.mjs";
|
|
128
128
|
import "../chunk-FWCSY2DS.mjs";
|
|
129
129
|
export {
|
|
130
130
|
AcademicYearsCreate,
|
package/dist/shared/index.mjs
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import {
|
|
2
|
+
enumLabel_gender,
|
|
3
|
+
enum_gender
|
|
4
|
+
} from "../chunk-U42DQAY7.mjs";
|
|
1
5
|
import {
|
|
2
6
|
MySelect
|
|
3
|
-
} from "../chunk-
|
|
7
|
+
} from "../chunk-QZZ7HRNO.mjs";
|
|
4
8
|
import "../chunk-SUH3FFFV.mjs";
|
|
5
9
|
import {
|
|
6
10
|
utils_converter
|
|
@@ -10,14 +14,10 @@ import "../chunk-7NNLZDND.mjs";
|
|
|
10
14
|
import "../chunk-O7YCQQO5.mjs";
|
|
11
15
|
import "../chunk-QSWIVDXC.mjs";
|
|
12
16
|
import "../chunk-KAC7JMQB.mjs";
|
|
13
|
-
import {
|
|
14
|
-
enumLabel_gender,
|
|
15
|
-
enum_gender
|
|
16
|
-
} from "../chunk-U42DQAY7.mjs";
|
|
17
17
|
import "../chunk-K6S7R6LU.mjs";
|
|
18
18
|
import "../chunk-XIPVE5EK.mjs";
|
|
19
|
-
import "../chunk-WZ6PXGGC.mjs";
|
|
20
19
|
import "../chunk-7ZCOFATU.mjs";
|
|
20
|
+
import "../chunk-WZ6PXGGC.mjs";
|
|
21
21
|
import {
|
|
22
22
|
__objRest,
|
|
23
23
|
__spreadValues
|