aq-fe-framework 0.1.174 → 0.1.175
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.
|
@@ -7286,12 +7286,7 @@ import {
|
|
|
7286
7286
|
import Link4 from "next/link";
|
|
7287
7287
|
|
|
7288
7288
|
// src/components/Layouts/HeaderMegaMenu/css.module.css
|
|
7289
|
-
var css_default = {
|
|
7290
|
-
header: "css_header",
|
|
7291
|
-
link: "css_link",
|
|
7292
|
-
subLink: "css_subLink",
|
|
7293
|
-
dropdownFooter: "css_dropdownFooter"
|
|
7294
|
-
};
|
|
7289
|
+
var css_default = {};
|
|
7295
7290
|
|
|
7296
7291
|
// src/components/Layouts/HeaderMegaMenu/HeaderMegaMenuStore.ts
|
|
7297
7292
|
var useStore4 = createGenericStore({
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
/* src/components/Layouts/HeaderMegaMenu/css.module.css */
|
|
2
|
-
.
|
|
2
|
+
.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] .header {
|
|
10
10
|
background-color: var(--mantine-color-dark);
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
.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] .header {
|
|
18
18
|
border-bottom: 1px solid var(--mantine-color-dark-4);
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.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] .link {
|
|
30
30
|
color: var(--mantine-color-white);
|
|
31
31
|
}
|
|
32
|
-
.
|
|
32
|
+
.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
|
+
.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
|
+
.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] .link:hover {
|
|
47
47
|
background-color: var(--mantine-color-dark-6);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
@media (hover: none) {
|
|
51
|
-
.
|
|
51
|
+
.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] .link:active {
|
|
55
55
|
background-color: var(--mantine-color-dark-6);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
.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
|
+
.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] .subLink:hover {
|
|
68
68
|
background-color: var(--mantine-color-dark-7);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
@media (hover: none) {
|
|
72
|
-
.
|
|
72
|
+
.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] .subLink:active {
|
|
76
76
|
background-color: var(--mantine-color-dark-7);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
.dropdownFooter {
|
|
80
80
|
background-color: var(--mantine-color-gray-0);
|
|
81
81
|
}
|
|
82
|
-
[data-mantine-color-scheme=dark] .
|
|
82
|
+
[data-mantine-color-scheme=dark] .dropdownFooter {
|
|
83
83
|
background-color: var(--mantine-color-dark-7);
|
|
84
84
|
}
|
|
85
|
-
.
|
|
85
|
+
.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] .dropdownFooter {
|
|
93
93
|
border-top: 1px solid var(--mantine-color-dark-5);
|
|
94
94
|
}
|
|
@@ -66,7 +66,7 @@ import {
|
|
|
66
66
|
useS_BasicAppShell,
|
|
67
67
|
useS_ButtonImport,
|
|
68
68
|
utils_layout_getItemsWithoutLinks
|
|
69
|
-
} from "../chunk-
|
|
69
|
+
} from "../chunk-PAHZ57DT.mjs";
|
|
70
70
|
import "../chunk-Z6OQG54Q.mjs";
|
|
71
71
|
import "../chunk-Y3YGC5IH.mjs";
|
|
72
72
|
import "../chunk-5U2JSHSJ.mjs";
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
/* src/components/Layouts/HeaderMegaMenu/css.module.css */
|
|
2
|
-
.
|
|
2
|
+
.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] .header {
|
|
10
10
|
background-color: var(--mantine-color-dark);
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
.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] .header {
|
|
18
18
|
border-bottom: 1px solid var(--mantine-color-dark-4);
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.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] .link {
|
|
30
30
|
color: var(--mantine-color-white);
|
|
31
31
|
}
|
|
32
|
-
.
|
|
32
|
+
.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
|
+
.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
|
+
.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] .link:hover {
|
|
47
47
|
background-color: var(--mantine-color-dark-6);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
@media (hover: none) {
|
|
51
|
-
.
|
|
51
|
+
.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] .link:active {
|
|
55
55
|
background-color: var(--mantine-color-dark-6);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
.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
|
+
.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] .subLink:hover {
|
|
68
68
|
background-color: var(--mantine-color-dark-7);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
@media (hover: none) {
|
|
72
|
-
.
|
|
72
|
+
.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] .subLink:active {
|
|
76
76
|
background-color: var(--mantine-color-dark-7);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
.
|
|
79
|
+
.dropdownFooter {
|
|
80
80
|
background-color: var(--mantine-color-gray-0);
|
|
81
81
|
}
|
|
82
|
-
[data-mantine-color-scheme=dark] .
|
|
82
|
+
[data-mantine-color-scheme=dark] .dropdownFooter {
|
|
83
83
|
background-color: var(--mantine-color-dark-7);
|
|
84
84
|
}
|
|
85
|
-
.
|
|
85
|
+
.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] .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
|
+
.title {
|
|
98
98
|
font-family: Greycliff CF, var(--mantine-font-family);
|
|
99
99
|
font-weight: 900;
|
|
100
100
|
}
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
groupToTwoLevels,
|
|
25
25
|
useS_authenticate,
|
|
26
26
|
utils_layout_getItemsWithoutLinks
|
|
27
|
-
} from "../chunk-
|
|
27
|
+
} from "../chunk-PAHZ57DT.mjs";
|
|
28
28
|
import {
|
|
29
29
|
baseAxios_default,
|
|
30
30
|
useQ_AQ_GetAQModule
|
|
@@ -3868,9 +3868,7 @@ 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 = {
|
|
3872
|
-
title: "css_title"
|
|
3873
|
-
};
|
|
3871
|
+
var css_default = {};
|
|
3874
3872
|
|
|
3875
3873
|
// src/modules-features/authenticate/F_authenticate_Login/F_authenticate_Login.tsx
|
|
3876
3874
|
import { jsx as jsx75, jsxs as jsxs52 } from "react/jsx-runtime";
|