aq-fe-framework 0.1.330 → 0.1.331
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.
@@ -565,6 +565,14 @@ function MyWeeklySessionSchedulerPicker({
|
|
565
565
|
] }) });
|
566
566
|
}
|
567
567
|
|
568
|
+
// src/core/layout/MyFlexColumn.tsx
|
569
|
+
import { Flex } from "@mantine/core";
|
570
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
571
|
+
function MyFlexColumn2(_a) {
|
572
|
+
var _b = _a, { children } = _b, rest = __objRest(_b, ["children"]);
|
573
|
+
return /* @__PURE__ */ jsx10(Flex, __spreadProps(__spreadValues({ direction: "column", gap: "md" }, rest), { children }));
|
574
|
+
}
|
575
|
+
|
568
576
|
export {
|
569
577
|
MyActionIcon,
|
570
578
|
MyButton,
|
@@ -574,5 +582,6 @@ export {
|
|
574
582
|
MyLabelValueRow,
|
575
583
|
MyDayOfWeekPicker,
|
576
584
|
MyTextInput,
|
577
|
-
MyWeeklySessionSchedulerPicker
|
585
|
+
MyWeeklySessionSchedulerPicker,
|
586
|
+
MyFlexColumn2 as MyFlexColumn
|
578
587
|
};
|
package/dist/core/index.d.mts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
2
|
import { t as type_action } from '../types-B5rmBuXz.mjs';
|
3
|
-
import { ActionIconProps, ButtonProps, ModalProps, TextProps, GroupProps, TextInputProps } from '@mantine/core';
|
3
|
+
import { ActionIconProps, ButtonProps, ModalProps, TextProps, GroupProps, TextInputProps, FlexProps } from '@mantine/core';
|
4
4
|
import { ReactNode } from 'react';
|
5
5
|
import { M as MyApiResponse } from '../createBaseApi-2GYRG_xt.mjs';
|
6
6
|
import { AxiosResponse } from 'axios';
|
@@ -87,4 +87,9 @@ interface WeeklySessionSchedulerProps {
|
|
87
87
|
}
|
88
88
|
declare function MyWeeklySessionSchedulerPicker({ value, onChange, }: WeeklySessionSchedulerProps): react_jsx_runtime.JSX.Element;
|
89
89
|
|
90
|
-
|
90
|
+
interface IMyFlexColumn extends FlexProps {
|
91
|
+
children?: ReactNode;
|
92
|
+
}
|
93
|
+
declare function MyFlexColumn({ children, ...rest }: IMyFlexColumn): react_jsx_runtime.JSX.Element;
|
94
|
+
|
95
|
+
export { type IWeeklySession, MyActionIcon, MyButton, MyButtonCreateUpdate, MyButtonModal, MyDataTableSelectOne, MyDayOfWeekPicker, MyFlexColumn, MyLabelValueRow, MyTextInput, MyWeeklySessionSchedulerPicker, type WeeklySessionSchedulerProps };
|
package/dist/core/index.mjs
CHANGED
@@ -5,10 +5,11 @@ import {
|
|
5
5
|
MyButtonModal,
|
6
6
|
MyDataTableSelectOne,
|
7
7
|
MyDayOfWeekPicker,
|
8
|
+
MyFlexColumn,
|
8
9
|
MyLabelValueRow,
|
9
10
|
MyTextInput,
|
10
11
|
MyWeeklySessionSchedulerPicker
|
11
|
-
} from "../chunk-
|
12
|
+
} from "../chunk-7NMJ6JSE.mjs";
|
12
13
|
import "../chunk-GEYCGM75.mjs";
|
13
14
|
import "../chunk-NWBLJ3W3.mjs";
|
14
15
|
import "../chunk-K6S7R6LU.mjs";
|
@@ -22,6 +23,7 @@ export {
|
|
22
23
|
MyButtonModal,
|
23
24
|
MyDataTableSelectOne,
|
24
25
|
MyDayOfWeekPicker,
|
26
|
+
MyFlexColumn,
|
25
27
|
MyLabelValueRow,
|
26
28
|
MyTextInput,
|
27
29
|
MyWeeklySessionSchedulerPicker
|
@@ -2,10 +2,6 @@ import { I as IBaseEntity } from '../base-BprRafT5.mjs';
|
|
2
2
|
export { I as IEmailConfig } from '../EmailConfig-DvTXTBt3.mjs';
|
3
3
|
export { I as IAQModule } from '../IAQModule-CCtwv-e0.mjs';
|
4
4
|
|
5
|
-
interface IPageContent extends IBaseEntity {
|
6
|
-
description?: string;
|
7
|
-
}
|
8
|
-
|
9
5
|
interface IFile {
|
10
6
|
fileName?: string | undefined;
|
11
7
|
fileExtension?: string | undefined;
|
@@ -55,4 +51,8 @@ interface IUser extends IBaseEntity {
|
|
55
51
|
email?: string;
|
56
52
|
}
|
57
53
|
|
54
|
+
interface IPageContent extends IBaseEntity {
|
55
|
+
description?: string;
|
56
|
+
}
|
57
|
+
|
58
58
|
export { IBaseEntity, type IDocument, type IFile, type IPageContent, type IPagePermission, type IRole, type IUser };
|
@@ -38,19 +38,19 @@ import {
|
|
38
38
|
createGenericStore
|
39
39
|
} from "../chunk-Y3YGC5IH.mjs";
|
40
40
|
import "../chunk-5U2JSHSJ.mjs";
|
41
|
-
import {
|
42
|
-
const_object_documentTypes
|
43
|
-
} from "../chunk-BZMQOGL6.mjs";
|
44
41
|
import {
|
45
42
|
MyButton as MyButton2,
|
46
43
|
MyDataTableSelectOne,
|
47
44
|
MyTextInput as MyTextInput2
|
48
|
-
} from "../chunk-
|
45
|
+
} from "../chunk-7NMJ6JSE.mjs";
|
49
46
|
import {
|
50
47
|
MyDataTable,
|
51
48
|
MyFlexColumn,
|
52
49
|
MyFlexRow
|
53
50
|
} from "../chunk-GEYCGM75.mjs";
|
51
|
+
import {
|
52
|
+
const_object_documentTypes
|
53
|
+
} from "../chunk-BZMQOGL6.mjs";
|
54
54
|
import {
|
55
55
|
const_object_colors
|
56
56
|
} from "../chunk-NWBLJ3W3.mjs";
|