aq-fe-framework 0.1.173 → 0.1.174
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-PAHZ57DT.mjs → chunk-OBJW6EYH.mjs} +6 -1
- package/dist/{src/components → components}/index.css +21 -21
- package/dist/{src/components → components}/index.mjs +6 -6
- package/dist/{src/hooks → hooks}/index.mjs +3 -3
- package/dist/{src/modules-features → modules-features}/index.css +22 -22
- package/dist/{src/modules-features → modules-features}/index.mjs +10 -8
- package/dist/stores/index.mjs +7 -0
- package/dist/{src/utils → utils}/index.mjs +4 -4
- package/package.json +1 -1
- package/dist/src/stores/index.mjs +0 -7
@@ -7286,7 +7286,12 @@ import {
|
|
7286
7286
|
import Link4 from "next/link";
|
7287
7287
|
|
7288
7288
|
// src/components/Layouts/HeaderMegaMenu/css.module.css
|
7289
|
-
var css_default = {
|
7289
|
+
var css_default = {
|
7290
|
+
header: "css_header",
|
7291
|
+
link: "css_link",
|
7292
|
+
subLink: "css_subLink",
|
7293
|
+
dropdownFooter: "css_dropdownFooter"
|
7294
|
+
};
|
7290
7295
|
|
7291
7296
|
// src/components/Layouts/HeaderMegaMenu/HeaderMegaMenuStore.ts
|
7292
7297
|
var useStore4 = createGenericStore({
|
@@ -1,23 +1,23 @@
|
|
1
1
|
/* src/components/Layouts/HeaderMegaMenu/css.module.css */
|
2
|
-
.
|
2
|
+
.css_header {
|
3
3
|
position: sticky;
|
4
4
|
top: 0;
|
5
5
|
z-index: 1;
|
6
6
|
height: calc(3.75rem * var(--mantine-scale));
|
7
7
|
background-color: var(--mantine-color-white);
|
8
8
|
}
|
9
|
-
[data-mantine-color-scheme=dark] .
|
9
|
+
[data-mantine-color-scheme=dark] .css_header {
|
10
10
|
background-color: var(--mantine-color-dark);
|
11
11
|
}
|
12
|
-
.
|
12
|
+
.css_header {
|
13
13
|
padding-left: var(--mantine-spacing-md);
|
14
14
|
padding-right: var(--mantine-spacing-md);
|
15
15
|
border-bottom: 1px solid var(--mantine-color-gray-3);
|
16
16
|
}
|
17
|
-
[data-mantine-color-scheme=dark] .
|
17
|
+
[data-mantine-color-scheme=dark] .css_header {
|
18
18
|
border-bottom: 1px solid var(--mantine-color-dark-4);
|
19
19
|
}
|
20
|
-
.
|
20
|
+
.css_link {
|
21
21
|
display: flex;
|
22
22
|
align-items: center;
|
23
23
|
height: 100%;
|
@@ -26,69 +26,69 @@
|
|
26
26
|
text-decoration: none;
|
27
27
|
color: var(--mantine-color-black);
|
28
28
|
}
|
29
|
-
[data-mantine-color-scheme=dark] .
|
29
|
+
[data-mantine-color-scheme=dark] .css_link {
|
30
30
|
color: var(--mantine-color-white);
|
31
31
|
}
|
32
|
-
.
|
32
|
+
.css_link {
|
33
33
|
font-weight: 500;
|
34
34
|
font-size: var(--mantine-font-size-sm);
|
35
35
|
}
|
36
36
|
@media (max-width: $mantine-breakpoint-sm) {
|
37
|
-
.
|
37
|
+
.css_link {
|
38
38
|
height: calc(2.625rem * var(--mantine-scale));
|
39
39
|
width: 100%;
|
40
40
|
}
|
41
41
|
}
|
42
42
|
@media (hover: hover) {
|
43
|
-
.
|
43
|
+
.css_link:hover {
|
44
44
|
background-color: var(--mantine-color-gray-0);
|
45
45
|
}
|
46
|
-
[data-mantine-color-scheme=dark] .
|
46
|
+
[data-mantine-color-scheme=dark] .css_link:hover {
|
47
47
|
background-color: var(--mantine-color-dark-6);
|
48
48
|
}
|
49
49
|
}
|
50
50
|
@media (hover: none) {
|
51
|
-
.
|
51
|
+
.css_link:active {
|
52
52
|
background-color: var(--mantine-color-gray-0);
|
53
53
|
}
|
54
|
-
[data-mantine-color-scheme=dark] .
|
54
|
+
[data-mantine-color-scheme=dark] .css_link:active {
|
55
55
|
background-color: var(--mantine-color-dark-6);
|
56
56
|
}
|
57
57
|
}
|
58
|
-
.
|
58
|
+
.css_subLink {
|
59
59
|
width: 100%;
|
60
60
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
|
61
61
|
border-radius: var(--mantine-radius-md);
|
62
62
|
}
|
63
63
|
@media (hover: hover) {
|
64
|
-
.
|
64
|
+
.css_subLink:hover {
|
65
65
|
background-color: var(--mantine-color-gray-0);
|
66
66
|
}
|
67
|
-
[data-mantine-color-scheme=dark] .
|
67
|
+
[data-mantine-color-scheme=dark] .css_subLink:hover {
|
68
68
|
background-color: var(--mantine-color-dark-7);
|
69
69
|
}
|
70
70
|
}
|
71
71
|
@media (hover: none) {
|
72
|
-
.
|
72
|
+
.css_subLink:active {
|
73
73
|
background-color: var(--mantine-color-gray-0);
|
74
74
|
}
|
75
|
-
[data-mantine-color-scheme=dark] .
|
75
|
+
[data-mantine-color-scheme=dark] .css_subLink:active {
|
76
76
|
background-color: var(--mantine-color-dark-7);
|
77
77
|
}
|
78
78
|
}
|
79
|
-
.
|
79
|
+
.css_dropdownFooter {
|
80
80
|
background-color: var(--mantine-color-gray-0);
|
81
81
|
}
|
82
|
-
[data-mantine-color-scheme=dark] .
|
82
|
+
[data-mantine-color-scheme=dark] .css_dropdownFooter {
|
83
83
|
background-color: var(--mantine-color-dark-7);
|
84
84
|
}
|
85
|
-
.
|
85
|
+
.css_dropdownFooter {
|
86
86
|
margin: calc(var(--mantine-spacing-md) * -1);
|
87
87
|
margin-top: var(--mantine-spacing-sm);
|
88
88
|
padding: var(--mantine-spacing-md) calc(var(--mantine-spacing-md) * 2);
|
89
89
|
padding-bottom: var(--mantine-spacing-xl);
|
90
90
|
border-top: 1px solid var(--mantine-color-gray-1);
|
91
91
|
}
|
92
|
-
[data-mantine-color-scheme=dark] .
|
92
|
+
[data-mantine-color-scheme=dark] .css_dropdownFooter {
|
93
93
|
border-top: 1px solid var(--mantine-color-dark-5);
|
94
94
|
}
|
@@ -66,12 +66,12 @@ import {
|
|
66
66
|
useS_BasicAppShell,
|
67
67
|
useS_ButtonImport,
|
68
68
|
utils_layout_getItemsWithoutLinks
|
69
|
-
} from "
|
70
|
-
import "
|
71
|
-
import "
|
72
|
-
import "
|
73
|
-
import "
|
74
|
-
import "
|
69
|
+
} from "../chunk-OBJW6EYH.mjs";
|
70
|
+
import "../chunk-Z6OQG54Q.mjs";
|
71
|
+
import "../chunk-Y3YGC5IH.mjs";
|
72
|
+
import "../chunk-5U2JSHSJ.mjs";
|
73
|
+
import "../chunk-7ZCOFATU.mjs";
|
74
|
+
import "../chunk-FWCSY2DS.mjs";
|
75
75
|
export {
|
76
76
|
AQButtonCreateByImportFile,
|
77
77
|
AQButtonExportData,
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import {
|
2
2
|
useQ_AQ_GetAQModule
|
3
|
-
} from "
|
4
|
-
import "
|
5
|
-
import "
|
3
|
+
} from "../chunk-Z6OQG54Q.mjs";
|
4
|
+
import "../chunk-7ZCOFATU.mjs";
|
5
|
+
import "../chunk-FWCSY2DS.mjs";
|
6
6
|
|
7
7
|
// src/hooks/custom-hooks/useC_MutationAction.tsx
|
8
8
|
import { useQueryClient } from "@tanstack/react-query";
|
@@ -1,23 +1,23 @@
|
|
1
1
|
/* src/components/Layouts/HeaderMegaMenu/css.module.css */
|
2
|
-
.
|
2
|
+
.css_header {
|
3
3
|
position: sticky;
|
4
4
|
top: 0;
|
5
5
|
z-index: 1;
|
6
6
|
height: calc(3.75rem * var(--mantine-scale));
|
7
7
|
background-color: var(--mantine-color-white);
|
8
8
|
}
|
9
|
-
[data-mantine-color-scheme=dark] .
|
9
|
+
[data-mantine-color-scheme=dark] .css_header {
|
10
10
|
background-color: var(--mantine-color-dark);
|
11
11
|
}
|
12
|
-
.
|
12
|
+
.css_header {
|
13
13
|
padding-left: var(--mantine-spacing-md);
|
14
14
|
padding-right: var(--mantine-spacing-md);
|
15
15
|
border-bottom: 1px solid var(--mantine-color-gray-3);
|
16
16
|
}
|
17
|
-
[data-mantine-color-scheme=dark] .
|
17
|
+
[data-mantine-color-scheme=dark] .css_header {
|
18
18
|
border-bottom: 1px solid var(--mantine-color-dark-4);
|
19
19
|
}
|
20
|
-
.
|
20
|
+
.css_link {
|
21
21
|
display: flex;
|
22
22
|
align-items: center;
|
23
23
|
height: 100%;
|
@@ -26,75 +26,75 @@
|
|
26
26
|
text-decoration: none;
|
27
27
|
color: var(--mantine-color-black);
|
28
28
|
}
|
29
|
-
[data-mantine-color-scheme=dark] .
|
29
|
+
[data-mantine-color-scheme=dark] .css_link {
|
30
30
|
color: var(--mantine-color-white);
|
31
31
|
}
|
32
|
-
.
|
32
|
+
.css_link {
|
33
33
|
font-weight: 500;
|
34
34
|
font-size: var(--mantine-font-size-sm);
|
35
35
|
}
|
36
36
|
@media (max-width: $mantine-breakpoint-sm) {
|
37
|
-
.
|
37
|
+
.css_link {
|
38
38
|
height: calc(2.625rem * var(--mantine-scale));
|
39
39
|
width: 100%;
|
40
40
|
}
|
41
41
|
}
|
42
42
|
@media (hover: hover) {
|
43
|
-
.
|
43
|
+
.css_link:hover {
|
44
44
|
background-color: var(--mantine-color-gray-0);
|
45
45
|
}
|
46
|
-
[data-mantine-color-scheme=dark] .
|
46
|
+
[data-mantine-color-scheme=dark] .css_link:hover {
|
47
47
|
background-color: var(--mantine-color-dark-6);
|
48
48
|
}
|
49
49
|
}
|
50
50
|
@media (hover: none) {
|
51
|
-
.
|
51
|
+
.css_link:active {
|
52
52
|
background-color: var(--mantine-color-gray-0);
|
53
53
|
}
|
54
|
-
[data-mantine-color-scheme=dark] .
|
54
|
+
[data-mantine-color-scheme=dark] .css_link:active {
|
55
55
|
background-color: var(--mantine-color-dark-6);
|
56
56
|
}
|
57
57
|
}
|
58
|
-
.
|
58
|
+
.css_subLink {
|
59
59
|
width: 100%;
|
60
60
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
|
61
61
|
border-radius: var(--mantine-radius-md);
|
62
62
|
}
|
63
63
|
@media (hover: hover) {
|
64
|
-
.
|
64
|
+
.css_subLink:hover {
|
65
65
|
background-color: var(--mantine-color-gray-0);
|
66
66
|
}
|
67
|
-
[data-mantine-color-scheme=dark] .
|
67
|
+
[data-mantine-color-scheme=dark] .css_subLink:hover {
|
68
68
|
background-color: var(--mantine-color-dark-7);
|
69
69
|
}
|
70
70
|
}
|
71
71
|
@media (hover: none) {
|
72
|
-
.
|
72
|
+
.css_subLink:active {
|
73
73
|
background-color: var(--mantine-color-gray-0);
|
74
74
|
}
|
75
|
-
[data-mantine-color-scheme=dark] .
|
75
|
+
[data-mantine-color-scheme=dark] .css_subLink:active {
|
76
76
|
background-color: var(--mantine-color-dark-7);
|
77
77
|
}
|
78
78
|
}
|
79
|
-
.
|
79
|
+
.css_dropdownFooter {
|
80
80
|
background-color: var(--mantine-color-gray-0);
|
81
81
|
}
|
82
|
-
[data-mantine-color-scheme=dark] .
|
82
|
+
[data-mantine-color-scheme=dark] .css_dropdownFooter {
|
83
83
|
background-color: var(--mantine-color-dark-7);
|
84
84
|
}
|
85
|
-
.
|
85
|
+
.css_dropdownFooter {
|
86
86
|
margin: calc(var(--mantine-spacing-md) * -1);
|
87
87
|
margin-top: var(--mantine-spacing-sm);
|
88
88
|
padding: var(--mantine-spacing-md) calc(var(--mantine-spacing-md) * 2);
|
89
89
|
padding-bottom: var(--mantine-spacing-xl);
|
90
90
|
border-top: 1px solid var(--mantine-color-gray-1);
|
91
91
|
}
|
92
|
-
[data-mantine-color-scheme=dark] .
|
92
|
+
[data-mantine-color-scheme=dark] .css_dropdownFooter {
|
93
93
|
border-top: 1px solid var(--mantine-color-dark-5);
|
94
94
|
}
|
95
95
|
|
96
96
|
/* src/modules-features/authenticate/F_authenticate_Login/css.module.css */
|
97
|
-
.
|
97
|
+
.css_title {
|
98
98
|
font-family: Greycliff CF, var(--mantine-font-family);
|
99
99
|
font-weight: 900;
|
100
100
|
}
|
@@ -24,29 +24,29 @@ import {
|
|
24
24
|
groupToTwoLevels,
|
25
25
|
useS_authenticate,
|
26
26
|
utils_layout_getItemsWithoutLinks
|
27
|
-
} from "
|
27
|
+
} from "../chunk-OBJW6EYH.mjs";
|
28
28
|
import {
|
29
29
|
baseAxios_default,
|
30
30
|
useQ_AQ_GetAQModule
|
31
|
-
} from "
|
31
|
+
} from "../chunk-Z6OQG54Q.mjs";
|
32
32
|
import {
|
33
33
|
createGenericStore
|
34
|
-
} from "
|
34
|
+
} from "../chunk-Y3YGC5IH.mjs";
|
35
35
|
import {
|
36
36
|
U0DateToDDMMYYYString,
|
37
37
|
U0MyValidateEmail,
|
38
38
|
utils_converter_enumToSelectOptions,
|
39
39
|
utils_file_fileToAQDocumentType
|
40
|
-
} from "
|
41
|
-
import "
|
40
|
+
} from "../chunk-KWCUUD5Z.mjs";
|
41
|
+
import "../chunk-5U2JSHSJ.mjs";
|
42
42
|
import {
|
43
43
|
utils_notification_show
|
44
|
-
} from "
|
44
|
+
} from "../chunk-7ZCOFATU.mjs";
|
45
45
|
import {
|
46
46
|
__objRest,
|
47
47
|
__spreadProps,
|
48
48
|
__spreadValues
|
49
|
-
} from "
|
49
|
+
} from "../chunk-FWCSY2DS.mjs";
|
50
50
|
|
51
51
|
// src/modules-features/admin/core/core12196/F_core12196_Read.tsx
|
52
52
|
import { Accordion, Blockquote } from "@mantine/core";
|
@@ -3868,7 +3868,9 @@ import { useRouter as useRouter3 } from "next/navigation";
|
|
3868
3868
|
import { useState as useState9 } from "react";
|
3869
3869
|
|
3870
3870
|
// src/modules-features/authenticate/F_authenticate_Login/css.module.css
|
3871
|
-
var css_default = {
|
3871
|
+
var css_default = {
|
3872
|
+
title: "css_title"
|
3873
|
+
};
|
3872
3874
|
|
3873
3875
|
// src/modules-features/authenticate/F_authenticate_Login/F_authenticate_Login.tsx
|
3874
3876
|
import { jsx as jsx75, jsxs as jsxs52 } from "react/jsx-runtime";
|
@@ -15,14 +15,14 @@ import {
|
|
15
15
|
utils_file_fileToAQDocumentType,
|
16
16
|
utils_time_convertTimeStringToSeconds,
|
17
17
|
utils_time_getCurrentTimeString
|
18
|
-
} from "
|
18
|
+
} from "../chunk-KWCUUD5Z.mjs";
|
19
19
|
import {
|
20
20
|
utils_pdf_download
|
21
|
-
} from "
|
21
|
+
} from "../chunk-5U2JSHSJ.mjs";
|
22
22
|
import {
|
23
23
|
utils_notification_show
|
24
|
-
} from "
|
25
|
-
import "
|
24
|
+
} from "../chunk-7ZCOFATU.mjs";
|
25
|
+
import "../chunk-FWCSY2DS.mjs";
|
26
26
|
export {
|
27
27
|
U0DateToDDMMYYYString,
|
28
28
|
U0MyValidateEmail,
|
package/package.json
CHANGED