aq-fe-framework 0.1.1064 → 0.1.1067
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/components/index.mjs +2 -2
- package/dist/core/index.mjs +2 -2
- package/dist/modules-features/index.mjs +2 -2
- package/dist/shared/index.mjs +2 -2
- package/dist/zod-schemas/index.d.mts +11 -11
- package/dist/zod-schemas/index.mjs +11 -11
- package/package.json +1 -1
- package/dist/{chunk-NWKDQD4H.mjs → chunk-ZUCA264F.mjs} +7 -7
|
@@ -69,10 +69,10 @@ import {
|
|
|
69
69
|
useHeaderMegaMenuStore,
|
|
70
70
|
useS_ButtonImport,
|
|
71
71
|
useStore_BasicAppShell
|
|
72
|
-
} from "../chunk-
|
|
72
|
+
} from "../chunk-ZUCA264F.mjs";
|
|
73
73
|
import "../chunk-WW55EZ4B.mjs";
|
|
74
|
-
import "../chunk-7ZI7IOEP.mjs";
|
|
75
74
|
import "../chunk-KGBXMHKR.mjs";
|
|
75
|
+
import "../chunk-7ZI7IOEP.mjs";
|
|
76
76
|
import "../chunk-NYAWQRB7.mjs";
|
|
77
77
|
import "../chunk-BTITP4TN.mjs";
|
|
78
78
|
import "../chunk-J4WTZ3B4.mjs";
|
package/dist/core/index.mjs
CHANGED
|
@@ -34,10 +34,10 @@ import {
|
|
|
34
34
|
MyStatsCard,
|
|
35
35
|
MyTextInput2 as MyTextInput,
|
|
36
36
|
MyWeeklySessionSchedulerPicker
|
|
37
|
-
} from "../chunk-
|
|
37
|
+
} from "../chunk-ZUCA264F.mjs";
|
|
38
38
|
import "../chunk-WW55EZ4B.mjs";
|
|
39
|
-
import "../chunk-7ZI7IOEP.mjs";
|
|
40
39
|
import "../chunk-KGBXMHKR.mjs";
|
|
40
|
+
import "../chunk-7ZI7IOEP.mjs";
|
|
41
41
|
import "../chunk-NYAWQRB7.mjs";
|
|
42
42
|
import "../chunk-BTITP4TN.mjs";
|
|
43
43
|
import "../chunk-J4WTZ3B4.mjs";
|
|
@@ -97,10 +97,10 @@ import {
|
|
|
97
97
|
MailTemplateDeleteButton,
|
|
98
98
|
useS_moduleConfig,
|
|
99
99
|
useStore_Authenticate
|
|
100
|
-
} from "../chunk-
|
|
100
|
+
} from "../chunk-ZUCA264F.mjs";
|
|
101
101
|
import "../chunk-WW55EZ4B.mjs";
|
|
102
|
-
import "../chunk-7ZI7IOEP.mjs";
|
|
103
102
|
import "../chunk-KGBXMHKR.mjs";
|
|
103
|
+
import "../chunk-7ZI7IOEP.mjs";
|
|
104
104
|
import "../chunk-NYAWQRB7.mjs";
|
|
105
105
|
import "../chunk-BTITP4TN.mjs";
|
|
106
106
|
import "../chunk-J4WTZ3B4.mjs";
|
package/dist/shared/index.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import "../chunk-NMY3UEY5.mjs";
|
|
2
2
|
import {
|
|
3
3
|
MySelect
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-ZUCA264F.mjs";
|
|
5
5
|
import "../chunk-WW55EZ4B.mjs";
|
|
6
|
+
import "../chunk-KGBXMHKR.mjs";
|
|
6
7
|
import {
|
|
7
8
|
utils_converter
|
|
8
9
|
} from "../chunk-7ZI7IOEP.mjs";
|
|
9
|
-
import "../chunk-KGBXMHKR.mjs";
|
|
10
10
|
import "../chunk-NYAWQRB7.mjs";
|
|
11
11
|
import "../chunk-BTITP4TN.mjs";
|
|
12
12
|
import {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
|
|
3
|
-
declare const Schema_BaseEntity: z.
|
|
3
|
+
declare const Schema_BaseEntity: z.ZodObject<{
|
|
4
4
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5
|
-
tempId: z.ZodOptional<z.ZodString
|
|
6
|
-
code: z.ZodOptional<z.ZodString
|
|
7
|
-
name: z.ZodOptional<z.ZodString
|
|
8
|
-
concurrencyStamp: z.ZodOptional<z.ZodString
|
|
9
|
-
isEnabled: z.ZodOptional<z.ZodBoolean
|
|
10
|
-
modifiedWhen: z.ZodOptional<z.ZodString
|
|
11
|
-
modifiedFullName: z.ZodOptional<z.ZodString
|
|
12
|
-
createdBy: z.ZodOptional<z.ZodNumber
|
|
13
|
-
createWhen: z.ZodOptional<z.ZodString
|
|
14
|
-
}, z.core.$strip
|
|
5
|
+
tempId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
|
+
concurrencyStamp: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
isEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
10
|
+
modifiedWhen: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
modifiedFullName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
13
|
+
createWhen: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
15
|
type Type_BaseEntity = z.infer<typeof Schema_BaseEntity>;
|
|
16
16
|
|
|
17
17
|
export { Schema_BaseEntity, type Type_BaseEntity };
|
|
@@ -3,17 +3,17 @@ import "../chunk-JD6AELXS.mjs";
|
|
|
3
3
|
// src/zod-schemas/BaseEntity.ts
|
|
4
4
|
import { z } from "zod/v4";
|
|
5
5
|
var Schema_BaseEntity = z.object({
|
|
6
|
-
id: z.number(),
|
|
7
|
-
tempId: z.string(),
|
|
8
|
-
code: z.string().min(1, { error: "Vui l\xF2ng nh\u1EADp m\xE3" }),
|
|
9
|
-
name: z.string().min(1, { error: "Vui l\xF2ng nh\u1EADp t\xEAn" }),
|
|
10
|
-
concurrencyStamp: z.string(),
|
|
11
|
-
isEnabled: z.boolean(),
|
|
12
|
-
modifiedWhen: z.string(),
|
|
13
|
-
modifiedFullName: z.string(),
|
|
14
|
-
createdBy: z.number(),
|
|
15
|
-
createWhen: z.string()
|
|
16
|
-
})
|
|
6
|
+
id: z.number().optional(),
|
|
7
|
+
tempId: z.string().nullable().optional(),
|
|
8
|
+
code: z.string().min(1, { error: "Vui l\xF2ng nh\u1EADp m\xE3" }).nullable().optional(),
|
|
9
|
+
name: z.string().min(1, { error: "Vui l\xF2ng nh\u1EADp t\xEAn" }).nullable().optional(),
|
|
10
|
+
concurrencyStamp: z.string().nullable().optional(),
|
|
11
|
+
isEnabled: z.boolean().nullable().optional(),
|
|
12
|
+
modifiedWhen: z.string().nullable().optional(),
|
|
13
|
+
modifiedFullName: z.string().nullable().optional(),
|
|
14
|
+
createdBy: z.number().nullable().optional(),
|
|
15
|
+
createWhen: z.string().nullable().optional()
|
|
16
|
+
});
|
|
17
17
|
export {
|
|
18
18
|
Schema_BaseEntity
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -4,13 +4,6 @@ import {
|
|
|
4
4
|
useStore_Permission,
|
|
5
5
|
useStore_ProjectInfo
|
|
6
6
|
} from "./chunk-WW55EZ4B.mjs";
|
|
7
|
-
import {
|
|
8
|
-
utils_date,
|
|
9
|
-
utils_excel,
|
|
10
|
-
utils_file,
|
|
11
|
-
utils_mantineReactTable,
|
|
12
|
-
utils_text
|
|
13
|
-
} from "./chunk-7ZI7IOEP.mjs";
|
|
14
7
|
import {
|
|
15
8
|
utils_aq_mapBaseEntityToDomain,
|
|
16
9
|
utils_aq_mapDomainToEntity,
|
|
@@ -25,6 +18,13 @@ import {
|
|
|
25
18
|
utils_notification_show,
|
|
26
19
|
utils_pdf_download
|
|
27
20
|
} from "./chunk-KGBXMHKR.mjs";
|
|
21
|
+
import {
|
|
22
|
+
utils_date,
|
|
23
|
+
utils_excel,
|
|
24
|
+
utils_file,
|
|
25
|
+
utils_mantineReactTable,
|
|
26
|
+
utils_text
|
|
27
|
+
} from "./chunk-7ZI7IOEP.mjs";
|
|
28
28
|
import {
|
|
29
29
|
createGenericStore
|
|
30
30
|
} from "./chunk-BTITP4TN.mjs";
|