@jskit-ai/auth-web 0.1.14 → 0.1.16
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.descriptor.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default Object.freeze({
|
|
2
2
|
"packageVersion": 1,
|
|
3
3
|
"packageId": "@jskit-ai/auth-web",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.16",
|
|
5
5
|
"description": "Auth web module: Fastify auth routes plus web login/sign-out scaffolds.",
|
|
6
6
|
"dependsOn": [
|
|
7
7
|
"@jskit-ai/auth-core",
|
package/package.json
CHANGED
|
@@ -292,7 +292,7 @@ function toggleConfirmPasswordVisibility() {
|
|
|
292
292
|
<style scoped>
|
|
293
293
|
.login-main {
|
|
294
294
|
background-color: rgb(var(--v-theme-background));
|
|
295
|
-
background-image: radial-gradient(circle at 15% 12%, rgba(
|
|
295
|
+
background-image: radial-gradient(circle at 15% 12%, rgba(var(--v-theme-primary), 0.14), transparent 32%);
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
.auth-card {
|
|
@@ -305,37 +305,37 @@ function toggleConfirmPasswordVisibility() {
|
|
|
305
305
|
font-weight: 700;
|
|
306
306
|
letter-spacing: 0.09em;
|
|
307
307
|
text-transform: uppercase;
|
|
308
|
-
color:
|
|
308
|
+
color: rgba(var(--v-theme-on-surface), 0.72);
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
.auth-title {
|
|
312
312
|
margin: 0 0 8px;
|
|
313
313
|
font-size: clamp(28px, 3vw, 32px);
|
|
314
314
|
line-height: 1.2;
|
|
315
|
-
color:
|
|
315
|
+
color: rgb(var(--v-theme-on-surface));
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
.mode-switch {
|
|
319
319
|
border-radius: 12px;
|
|
320
|
-
background-color: rgba(
|
|
320
|
+
background-color: rgba(var(--v-theme-on-surface), 0.06);
|
|
321
321
|
}
|
|
322
322
|
|
|
323
323
|
.email-confirmation-state {
|
|
324
324
|
border-radius: 12px;
|
|
325
|
-
border: 1px solid rgba(
|
|
326
|
-
background: rgba(
|
|
325
|
+
border: 1px solid rgba(var(--v-theme-primary), 0.34);
|
|
326
|
+
background: rgba(var(--v-theme-primary), 0.12);
|
|
327
327
|
padding: 16px;
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.email-confirmation-message {
|
|
331
|
-
color:
|
|
331
|
+
color: rgb(var(--v-theme-on-surface));
|
|
332
332
|
line-height: 1.5;
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
.remembered-account {
|
|
336
336
|
border-radius: 12px;
|
|
337
|
-
border: 1px solid rgba(
|
|
338
|
-
background: rgba(
|
|
337
|
+
border: 1px solid rgba(var(--v-theme-primary), 0.34);
|
|
338
|
+
background: rgba(var(--v-theme-primary), 0.12);
|
|
339
339
|
padding: 12px 14px;
|
|
340
340
|
}
|
|
341
341
|
|
|
@@ -347,13 +347,13 @@ function toggleConfirmPasswordVisibility() {
|
|
|
347
347
|
margin: 0;
|
|
348
348
|
font-size: 14px;
|
|
349
349
|
font-weight: 600;
|
|
350
|
-
color:
|
|
350
|
+
color: rgb(var(--v-theme-on-surface));
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
.remembered-email {
|
|
354
354
|
margin: 2px 0 0;
|
|
355
355
|
font-size: 12px;
|
|
356
|
-
color: rgba(
|
|
356
|
+
color: rgba(var(--v-theme-on-surface), 0.72);
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
.oauth-provider-button {
|
|
@@ -49,7 +49,7 @@ const { status, errorMessage, retrySignOut, goToLogin } = useDefaultSignOutView(
|
|
|
49
49
|
<style scoped>
|
|
50
50
|
.signout-main {
|
|
51
51
|
background-color: rgb(var(--v-theme-background));
|
|
52
|
-
background-image: radial-gradient(circle at 15% 12%, rgba(
|
|
52
|
+
background-image: radial-gradient(circle at 15% 12%, rgba(var(--v-theme-primary), 0.14), transparent 32%);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.signout-card {
|