ultimate-jekyll-manager 0.0.152 → 0.0.154
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/assets/css/core/_initialize.scss +1 -1
- package/dist/assets/js/core/exit-popup.js +6 -0
- package/dist/assets/js/ultimate-jekyll-manager.js +9 -0
- package/dist/assets/themes/classy/css/components/_forms.scss +15 -15
- package/dist/defaults/dist/_layouts/themes/classy/frontend/core/cover.html +4 -1
- package/firebase-debug.log +28 -0
- package/package.json +1 -1
|
@@ -30,6 +30,12 @@ export default function (Manager, options) {
|
|
|
30
30
|
}
|
|
31
31
|
/* @dev-only:end */
|
|
32
32
|
|
|
33
|
+
// Register showExitPopup on the UJ library for programmatic access
|
|
34
|
+
// Usage: webManager.uj().showExitPopup()
|
|
35
|
+
if (webManager._ujLibrary) {
|
|
36
|
+
webManager._ujLibrary.showExitPopup = showExitPopup;
|
|
37
|
+
}
|
|
38
|
+
|
|
33
39
|
function updateModalContent($modal) {
|
|
34
40
|
// Update title
|
|
35
41
|
const $title = $modal.querySelector('.modal-exit-title');
|
|
@@ -14,6 +14,15 @@ export default async function (Manager, options) {
|
|
|
14
14
|
// Add Manager to global scope for easy access in modules
|
|
15
15
|
window.Manager = Manager;
|
|
16
16
|
|
|
17
|
+
// Initialize the UJ library on webManager for programmatic access to UJ features
|
|
18
|
+
// This allows other modules to call webManager.uj().showExitPopup(), etc.
|
|
19
|
+
const ujLibrary = {};
|
|
20
|
+
webManager.uj = function() {
|
|
21
|
+
return ujLibrary;
|
|
22
|
+
};
|
|
23
|
+
// Also expose the internal object for modules to register their functions
|
|
24
|
+
webManager._ujLibrary = ujLibrary;
|
|
25
|
+
|
|
17
26
|
// Log
|
|
18
27
|
console.log('Global module loaded successfully (assets/js/ultimate-jekyll-manager.js)');
|
|
19
28
|
|
|
@@ -7,54 +7,54 @@
|
|
|
7
7
|
.input-group {
|
|
8
8
|
> .form-control {
|
|
9
9
|
border-radius: $classy-radius-lg;
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
&:not(:last-child) {
|
|
12
12
|
border-top-right-radius: 0;
|
|
13
13
|
border-bottom-right-radius: 0;
|
|
14
14
|
}
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
&:not(:first-child) {
|
|
17
17
|
border-top-left-radius: 0;
|
|
18
18
|
border-bottom-left-radius: 0;
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
|
-
|
|
21
|
+
|
|
22
22
|
// Buttons in input groups
|
|
23
23
|
> .btn {
|
|
24
24
|
border-radius: $classy-radius-lg;
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
&:not(:last-child) {
|
|
27
27
|
border-top-right-radius: 0;
|
|
28
28
|
border-bottom-right-radius: 0;
|
|
29
29
|
}
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
&:not(:first-child) {
|
|
32
32
|
border-top-left-radius: 0;
|
|
33
33
|
border-bottom-left-radius: 0;
|
|
34
34
|
}
|
|
35
|
-
|
|
35
|
+
|
|
36
36
|
// Last button in group
|
|
37
37
|
&:last-child {
|
|
38
38
|
border-top-left-radius: 0;
|
|
39
39
|
border-bottom-left-radius: 0;
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
|
|
42
42
|
// First button in group
|
|
43
43
|
&:first-child {
|
|
44
44
|
border-top-right-radius: 0;
|
|
45
45
|
border-bottom-right-radius: 0;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
|
|
48
|
+
|
|
49
49
|
// Input group text
|
|
50
50
|
> .input-group-text {
|
|
51
51
|
border-radius: $classy-radius-lg;
|
|
52
|
-
|
|
52
|
+
|
|
53
53
|
&:not(:last-child) {
|
|
54
54
|
border-top-right-radius: 0;
|
|
55
55
|
border-bottom-right-radius: 0;
|
|
56
56
|
}
|
|
57
|
-
|
|
57
|
+
|
|
58
58
|
&:not(:first-child) {
|
|
59
59
|
border-top-left-radius: 0;
|
|
60
60
|
border-bottom-left-radius: 0;
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
background-color: var(--bs-body-bg);
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
// Override Chrome/Safari autofill background color with subtle indicator
|
|
81
|
+
// // Override Chrome/Safari autofill background color with subtle indicator
|
|
82
82
|
&:-webkit-autofill,
|
|
83
83
|
&:-webkit-autofill:hover,
|
|
84
84
|
&:-webkit-autofill:focus {
|
|
@@ -109,18 +109,18 @@
|
|
|
109
109
|
// ============================================
|
|
110
110
|
.form-check-input {
|
|
111
111
|
border-radius: $classy-radius-sm;
|
|
112
|
-
|
|
112
|
+
|
|
113
113
|
&[type="radio"] {
|
|
114
114
|
border-radius: 50%;
|
|
115
115
|
}
|
|
116
|
-
|
|
116
|
+
|
|
117
117
|
&:checked {
|
|
118
118
|
background-color: $primary;
|
|
119
119
|
border-color: $primary;
|
|
120
120
|
}
|
|
121
|
-
|
|
121
|
+
|
|
122
122
|
&:focus {
|
|
123
123
|
border-color: $primary;
|
|
124
124
|
box-shadow: 0 0 0 0.25rem rgba($primary, 0.25);
|
|
125
125
|
}
|
|
126
|
-
}
|
|
126
|
+
}
|
|
@@ -16,7 +16,10 @@ theme:
|
|
|
16
16
|
<style>
|
|
17
17
|
main.d-flex {
|
|
18
18
|
display: flex !important;
|
|
19
|
-
|
|
19
|
+
}
|
|
20
|
+
.min-vh-100 {
|
|
21
|
+
min-height: 100vh !important; /* Fallback for older browsers */
|
|
22
|
+
min-height: 100dvh !important; /* Dynamic viewport height for mobile */
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
main.d-flex.align-items-center {
|
package/firebase-debug.log
CHANGED
|
@@ -3266,3 +3266,31 @@
|
|
|
3266
3266
|
[debug] [2025-12-11T04:02:16.510Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3267
3267
|
[debug] [2025-12-11T04:02:16.511Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3268
3268
|
[debug] [2025-12-11T04:02:16.511Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3269
|
+
[debug] [2025-12-11T08:34:28.804Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3270
|
+
[debug] [2025-12-11T08:34:28.805Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3271
|
+
[debug] [2025-12-11T08:34:28.806Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3272
|
+
[debug] [2025-12-11T08:34:28.806Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3273
|
+
[debug] [2025-12-11T08:34:28.806Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3274
|
+
[debug] [2025-12-11T08:34:28.815Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3275
|
+
[debug] [2025-12-11T08:34:28.816Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3276
|
+
[debug] [2025-12-11T08:34:28.807Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3277
|
+
[debug] [2025-12-11T08:34:28.808Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3278
|
+
[debug] [2025-12-11T08:34:28.808Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3279
|
+
[debug] [2025-12-11T08:34:28.819Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3280
|
+
[debug] [2025-12-11T08:34:28.820Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3281
|
+
[debug] [2025-12-11T08:34:28.895Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3282
|
+
[debug] [2025-12-11T08:34:28.895Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3283
|
+
[debug] [2025-12-11T08:34:28.896Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3284
|
+
[debug] [2025-12-11T08:34:28.896Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3285
|
+
[debug] [2025-12-11T08:34:28.897Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3286
|
+
[debug] [2025-12-11T08:34:28.897Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3287
|
+
[debug] [2025-12-11T08:34:28.898Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3288
|
+
[debug] [2025-12-11T08:34:28.898Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3289
|
+
[debug] [2025-12-11T08:34:28.903Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3290
|
+
[debug] [2025-12-11T08:34:28.903Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3291
|
+
[debug] [2025-12-11T08:34:28.904Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3292
|
+
[debug] [2025-12-11T08:34:28.904Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3293
|
+
[debug] [2025-12-11T08:34:28.905Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3294
|
+
[debug] [2025-12-11T08:34:28.905Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
3295
|
+
[debug] [2025-12-11T08:34:28.906Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
3296
|
+
[debug] [2025-12-11T08:34:28.906Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|