@necrolab/dashboard 0.4.50 → 0.4.51
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/package.json +1 -1
- package/src/App.vue +178 -195
- package/src/assets/css/_input.scss +2 -4
- package/src/assets/css/_utilities.scss +0 -53
- package/src/assets/css/main.scss +0 -25
- package/src/components/Editors/Account/AccountView.vue +12 -13
- package/src/components/Editors/Profile/ProfileCountryChooser.vue +4 -6
- package/src/components/Filter/FilterPreview.vue +24 -37
- package/src/components/Tasks/Task.vue +422 -487
- package/src/components/ui/Modal.vue +21 -17
- package/src/components/ui/controls/atomic/Dropdown.vue +126 -131
- package/src/components/ui/controls/atomic/MultiDropdown.vue +200 -206
- package/src/views/Console.vue +1 -1
- package/src/views/Editor.vue +952 -1037
- package/src/views/FilterBuilder.vue +1 -1
- package/src/views/Login.vue +57 -63
|
@@ -496,7 +496,7 @@ const updateShownVenue = async () => {
|
|
|
496
496
|
renderer.c.logFullError = true;
|
|
497
497
|
renderer.c.includeDetailedAttributes = true;
|
|
498
498
|
renderer.c.renderRowBlocks = true;
|
|
499
|
-
renderer.setUrlProxy("/api/cors?url=");
|
|
499
|
+
//renderer.setUrlProxy("/api/cors?url=");
|
|
500
500
|
|
|
501
501
|
try {
|
|
502
502
|
await renderer.render();
|
package/src/views/Login.vue
CHANGED
|
@@ -1,95 +1,89 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
alt="Logo: Necro"
|
|
9
|
-
/>
|
|
10
|
-
</div>
|
|
11
|
-
<h2 class="text-l text-white text-center font-bold mb-6">
|
|
12
|
-
Please login to proceed
|
|
13
|
-
</h2>
|
|
2
|
+
<div class="login-container" v-once>
|
|
3
|
+
<div class="login-card">
|
|
4
|
+
<div class="flex justify-center mb-8">
|
|
5
|
+
<img src="@/assets/img/logo_trans.png" class="h-16 object-cover" alt="Logo: Necro" />
|
|
6
|
+
</div>
|
|
7
|
+
<h2 class="text-l text-white text-center font-bold mb-6">Please login to proceed</h2>
|
|
14
8
|
|
|
15
|
-
|
|
9
|
+
<LoginForm />
|
|
10
|
+
</div>
|
|
16
11
|
</div>
|
|
17
|
-
</div>
|
|
18
12
|
</template>
|
|
19
13
|
<script setup>
|
|
20
14
|
import LoginForm from "@/components/Auth/LoginForm.vue";
|
|
21
15
|
</script>
|
|
22
16
|
<style lang="scss" scoped>
|
|
23
17
|
.login-container {
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
@apply flex flex-col items-center min-h-screen px-4;
|
|
19
|
+
margin-top: 3vh;
|
|
26
20
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
21
|
+
// Mobile devices
|
|
22
|
+
@media (max-width: 480px) {
|
|
23
|
+
margin-top: 2vh;
|
|
24
|
+
}
|
|
31
25
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
// Landscape mode
|
|
27
|
+
@media (orientation: landscape) {
|
|
28
|
+
margin-top: 1vh;
|
|
29
|
+
justify-content: flex-start;
|
|
30
|
+
min-height: 100vh;
|
|
31
|
+
min-height: 100dvh;
|
|
32
|
+
}
|
|
39
33
|
}
|
|
40
34
|
|
|
41
35
|
.login-card {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
36
|
+
@apply bg-dark-400 border border-dark-650 rounded-lg shadow-xl;
|
|
37
|
+
backdrop-filter: blur(10px);
|
|
38
|
+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
39
|
+
width: 100%;
|
|
40
|
+
max-width: 420px;
|
|
41
|
+
padding: 1.75rem;
|
|
48
42
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
43
|
+
// Mobile devices
|
|
44
|
+
@media (max-width: 480px) {
|
|
45
|
+
max-width: 380px;
|
|
46
|
+
padding: 1.5rem;
|
|
47
|
+
}
|
|
54
48
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
49
|
+
// Landscape mode
|
|
50
|
+
@media (orientation: landscape) {
|
|
51
|
+
padding: 1.25rem;
|
|
52
|
+
margin: 0.25rem 0;
|
|
59
53
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
54
|
+
h2 {
|
|
55
|
+
@apply text-lg mb-2;
|
|
56
|
+
}
|
|
63
57
|
|
|
64
|
-
|
|
65
|
-
|
|
58
|
+
.flex.justify-center {
|
|
59
|
+
@apply mb-2;
|
|
66
60
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
61
|
+
img {
|
|
62
|
+
@apply h-10;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
70
65
|
}
|
|
71
|
-
}
|
|
72
66
|
}
|
|
73
67
|
|
|
74
68
|
// Logo responsive sizing
|
|
75
69
|
.login-card img {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
70
|
+
@media (max-width: 480px) {
|
|
71
|
+
@apply h-12;
|
|
72
|
+
}
|
|
79
73
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
74
|
+
@media (orientation: landscape) {
|
|
75
|
+
@apply h-10;
|
|
76
|
+
}
|
|
83
77
|
}
|
|
84
78
|
|
|
85
79
|
// Title responsive sizing
|
|
86
80
|
.login-card h2 {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
81
|
+
@media (max-width: 480px) {
|
|
82
|
+
@apply text-lg mb-3;
|
|
83
|
+
}
|
|
90
84
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
85
|
+
@media (orientation: landscape) {
|
|
86
|
+
@apply text-base mb-2;
|
|
87
|
+
}
|
|
94
88
|
}
|
|
95
89
|
</style>
|