@insforge/nextjs 0.7.3 → 0.7.5
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/index.d.mts +43 -17
- package/dist/index.d.ts +43 -17
- package/dist/index.js +419 -197
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +418 -197
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +2 -0
- package/package.json +8 -4
- package/src/styles.css +9 -732
- package/dist/Manrope-VariableFont_wght-OKHRIJEM.ttf +0 -0
- package/dist/index.css +0 -612
- package/dist/index.css.map +0 -1
- package/src/fonts/Manrope-VariableFont_wght.ttf +0 -0
package/dist/index.css
DELETED
|
@@ -1,612 +0,0 @@
|
|
|
1
|
-
/* src/styles.css */
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: "Manrope";
|
|
4
|
-
src: url("./Manrope-VariableFont_wght-OKHRIJEM.ttf") format("truetype");
|
|
5
|
-
font-weight: 100 900;
|
|
6
|
-
font-style: normal;
|
|
7
|
-
font-display: swap;
|
|
8
|
-
}
|
|
9
|
-
:root {
|
|
10
|
-
--font-manrope:
|
|
11
|
-
"Manrope",
|
|
12
|
-
-apple-system,
|
|
13
|
-
BlinkMacSystemFont,
|
|
14
|
-
"Segoe UI",
|
|
15
|
-
Roboto,
|
|
16
|
-
sans-serif;
|
|
17
|
-
}
|
|
18
|
-
.insforge-auth-container * {
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
}
|
|
21
|
-
.insforge-auth-container {
|
|
22
|
-
width: 100%;
|
|
23
|
-
max-width: 400px;
|
|
24
|
-
background: white;
|
|
25
|
-
}
|
|
26
|
-
.insforge-branding {
|
|
27
|
-
background: #FAFAFA;
|
|
28
|
-
padding: 8px 8px 16px 8px;
|
|
29
|
-
display: flex;
|
|
30
|
-
flex-direction: row;
|
|
31
|
-
justify-content: center;
|
|
32
|
-
align-items: center;
|
|
33
|
-
gap: 4px;
|
|
34
|
-
}
|
|
35
|
-
.insforge-branding-text {
|
|
36
|
-
color: #000;
|
|
37
|
-
font-family: var(--font-manrope);
|
|
38
|
-
font-size: 12px;
|
|
39
|
-
font-style: normal;
|
|
40
|
-
font-weight: 400;
|
|
41
|
-
line-height: normal;
|
|
42
|
-
}
|
|
43
|
-
.insforge-auth-card {
|
|
44
|
-
width: 100%;
|
|
45
|
-
border-radius: 12px;
|
|
46
|
-
overflow: hidden;
|
|
47
|
-
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
|
|
48
|
-
}
|
|
49
|
-
.insforge-auth-content {
|
|
50
|
-
padding: 24px;
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-direction: column;
|
|
53
|
-
justify-content: center;
|
|
54
|
-
align-items: stretch;
|
|
55
|
-
gap: 24px;
|
|
56
|
-
}
|
|
57
|
-
.insforge-auth-header {
|
|
58
|
-
display: flex;
|
|
59
|
-
flex-direction: column;
|
|
60
|
-
justify-content: start;
|
|
61
|
-
align-items: start;
|
|
62
|
-
gap: 8px;
|
|
63
|
-
}
|
|
64
|
-
.insforge-auth-title {
|
|
65
|
-
color: #000;
|
|
66
|
-
font-family: Inter;
|
|
67
|
-
font-size: 24px;
|
|
68
|
-
font-style: normal;
|
|
69
|
-
font-weight: 600;
|
|
70
|
-
line-height: 32px;
|
|
71
|
-
}
|
|
72
|
-
.insforge-auth-subtitle {
|
|
73
|
-
color: #828282;
|
|
74
|
-
font-family: Inter;
|
|
75
|
-
font-size: 14px;
|
|
76
|
-
font-style: normal;
|
|
77
|
-
font-weight: 400;
|
|
78
|
-
line-height: 24px;
|
|
79
|
-
}
|
|
80
|
-
.insforge-error-banner {
|
|
81
|
-
display: flex;
|
|
82
|
-
padding: 8px 8px 8px 12px;
|
|
83
|
-
margin-bottom: 16px;
|
|
84
|
-
align-items: center;
|
|
85
|
-
gap: 8px;
|
|
86
|
-
align-self: stretch;
|
|
87
|
-
border-radius: 4px;
|
|
88
|
-
border: 2px solid #DC2626;
|
|
89
|
-
background: #FEF2F2;
|
|
90
|
-
color: #DC2626;
|
|
91
|
-
font-family: Inter;
|
|
92
|
-
font-size: 14px;
|
|
93
|
-
font-style: normal;
|
|
94
|
-
font-weight: 400;
|
|
95
|
-
line-height: 20px;
|
|
96
|
-
}
|
|
97
|
-
.insforge-error-icon {
|
|
98
|
-
color: #EF4444;
|
|
99
|
-
flex-shrink: 0;
|
|
100
|
-
width: 24px;
|
|
101
|
-
height: 24px;
|
|
102
|
-
}
|
|
103
|
-
.insforge-form {
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
justify-content: center;
|
|
107
|
-
align-items: stretch;
|
|
108
|
-
gap: 24px;
|
|
109
|
-
}
|
|
110
|
-
.insforge-form-group {
|
|
111
|
-
display: flex;
|
|
112
|
-
flex-direction: column;
|
|
113
|
-
justify-content: center;
|
|
114
|
-
align-items: stretch;
|
|
115
|
-
gap: 4px;
|
|
116
|
-
}
|
|
117
|
-
.insforge-form-label-row {
|
|
118
|
-
display: flex;
|
|
119
|
-
justify-content: space-between;
|
|
120
|
-
align-items: center;
|
|
121
|
-
}
|
|
122
|
-
.insforge-form-label {
|
|
123
|
-
color: #000;
|
|
124
|
-
font-family: Inter;
|
|
125
|
-
font-size: 14px;
|
|
126
|
-
font-style: normal;
|
|
127
|
-
font-weight: 400;
|
|
128
|
-
line-height: 24px;
|
|
129
|
-
}
|
|
130
|
-
.insforge-form-link {
|
|
131
|
-
color: #828282;
|
|
132
|
-
text-align: right;
|
|
133
|
-
font-family: Inter;
|
|
134
|
-
font-size: 14px;
|
|
135
|
-
font-style: normal;
|
|
136
|
-
font-weight: 400;
|
|
137
|
-
line-height: 24px;
|
|
138
|
-
}
|
|
139
|
-
.insforge-form-link:hover {
|
|
140
|
-
color: #828282;
|
|
141
|
-
text-decoration: underline;
|
|
142
|
-
}
|
|
143
|
-
.insforge-input-wrapper {
|
|
144
|
-
position: relative;
|
|
145
|
-
}
|
|
146
|
-
.insforge-input {
|
|
147
|
-
width: 100%;
|
|
148
|
-
display: flex;
|
|
149
|
-
padding: 8px 8px 10px 12px;
|
|
150
|
-
align-items: center;
|
|
151
|
-
gap: 8px;
|
|
152
|
-
align-self: stretch;
|
|
153
|
-
border-radius: 4px;
|
|
154
|
-
border: 1px solid #BCBCBC;
|
|
155
|
-
background: #FFF;
|
|
156
|
-
font-family: Inter;
|
|
157
|
-
font-size: 16px;
|
|
158
|
-
font-style: normal;
|
|
159
|
-
font-weight: 400;
|
|
160
|
-
line-height: 20px;
|
|
161
|
-
}
|
|
162
|
-
.insforge-input::placeholder {
|
|
163
|
-
color: #A6A6A6;
|
|
164
|
-
}
|
|
165
|
-
.insforge-input:focus {
|
|
166
|
-
outline: none;
|
|
167
|
-
}
|
|
168
|
-
.insforge-input-with-icon {
|
|
169
|
-
padding-right: 3rem;
|
|
170
|
-
}
|
|
171
|
-
.insforge-input-icon-btn {
|
|
172
|
-
position: absolute;
|
|
173
|
-
right: 8px;
|
|
174
|
-
top: 50%;
|
|
175
|
-
transform: translateY(-50%);
|
|
176
|
-
background: transparent;
|
|
177
|
-
border: none;
|
|
178
|
-
color: #A6A6A6;
|
|
179
|
-
cursor: pointer;
|
|
180
|
-
transition: color 0.2s;
|
|
181
|
-
display: flex;
|
|
182
|
-
align-items: center;
|
|
183
|
-
justify-content: center;
|
|
184
|
-
}
|
|
185
|
-
.insforge-input-icon-btn:hover {
|
|
186
|
-
color: #6b7280;
|
|
187
|
-
}
|
|
188
|
-
.insforge-btn-primary {
|
|
189
|
-
border-radius: 4px;
|
|
190
|
-
background: #000;
|
|
191
|
-
width: 100%;
|
|
192
|
-
display: flex;
|
|
193
|
-
margin: 16px 0 0 0;
|
|
194
|
-
padding: 8px 16px;
|
|
195
|
-
justify-content: center;
|
|
196
|
-
align-items: center;
|
|
197
|
-
gap: 10px;
|
|
198
|
-
align-self: stretch;
|
|
199
|
-
color: #FFF;
|
|
200
|
-
font-family: Manrope;
|
|
201
|
-
font-size: 16px;
|
|
202
|
-
font-style: normal;
|
|
203
|
-
font-weight: 600;
|
|
204
|
-
line-height: normal;
|
|
205
|
-
border: none;
|
|
206
|
-
cursor: pointer;
|
|
207
|
-
}
|
|
208
|
-
.insforge-btn-primary:hover {
|
|
209
|
-
background: #303030;
|
|
210
|
-
}
|
|
211
|
-
.insforge-btn-primary:disabled {
|
|
212
|
-
opacity: 0.5;
|
|
213
|
-
cursor: not-allowed;
|
|
214
|
-
}
|
|
215
|
-
.insforge-btn-primary .insforge-btn-loader {
|
|
216
|
-
display: none;
|
|
217
|
-
animation: insforge-spin 1s linear infinite;
|
|
218
|
-
}
|
|
219
|
-
.insforge-btn-primary[data-loading] .insforge-btn-loader {
|
|
220
|
-
display: block;
|
|
221
|
-
}
|
|
222
|
-
.insforge-btn-primary .insforge-btn-check {
|
|
223
|
-
display: none;
|
|
224
|
-
}
|
|
225
|
-
.insforge-btn-primary[data-confirmed] .insforge-btn-check {
|
|
226
|
-
display: block;
|
|
227
|
-
}
|
|
228
|
-
.insforge-text-center {
|
|
229
|
-
text-align: center;
|
|
230
|
-
color: #828282;
|
|
231
|
-
font-family: Inter;
|
|
232
|
-
font-size: 14px;
|
|
233
|
-
font-style: normal;
|
|
234
|
-
font-weight: 400;
|
|
235
|
-
line-height: 24px;
|
|
236
|
-
}
|
|
237
|
-
.insforge-link-primary {
|
|
238
|
-
color: #000;
|
|
239
|
-
font-family: Inter;
|
|
240
|
-
font-size: 14px;
|
|
241
|
-
font-style: normal;
|
|
242
|
-
font-weight: 500;
|
|
243
|
-
line-height: 24px;
|
|
244
|
-
}
|
|
245
|
-
.insforge-divider {
|
|
246
|
-
display: flex;
|
|
247
|
-
justify-content: center;
|
|
248
|
-
align-items: center;
|
|
249
|
-
gap: 24px;
|
|
250
|
-
align-self: stretch;
|
|
251
|
-
}
|
|
252
|
-
.insforge-divider::before,
|
|
253
|
-
.insforge-divider::after {
|
|
254
|
-
content: "";
|
|
255
|
-
flex: 1;
|
|
256
|
-
height: 1px;
|
|
257
|
-
background: #C6C6C6;
|
|
258
|
-
}
|
|
259
|
-
.insforge-divider-text {
|
|
260
|
-
color: #C6C6C6;
|
|
261
|
-
font-family: Manrope;
|
|
262
|
-
font-size: 14px;
|
|
263
|
-
font-style: normal;
|
|
264
|
-
font-weight: 600;
|
|
265
|
-
line-height: normal;
|
|
266
|
-
}
|
|
267
|
-
.insforge-oauth-container {
|
|
268
|
-
display: grid;
|
|
269
|
-
gap: 12px;
|
|
270
|
-
width: 100%;
|
|
271
|
-
}
|
|
272
|
-
.insforge-oauth-container[data-provider-count="1"] {
|
|
273
|
-
grid-template-columns: 1fr;
|
|
274
|
-
}
|
|
275
|
-
.insforge-oauth-container[data-provider-count="2"] {
|
|
276
|
-
grid-template-columns: repeat(2, 1fr);
|
|
277
|
-
}
|
|
278
|
-
.insforge-oauth-container[data-provider-count="3"] {
|
|
279
|
-
grid-template-columns: repeat(3, 1fr);
|
|
280
|
-
}
|
|
281
|
-
.insforge-oauth-container[data-provider-count="4"] {
|
|
282
|
-
grid-template-columns: repeat(2, 1fr);
|
|
283
|
-
}
|
|
284
|
-
.insforge-oauth-container:not([data-provider-count="1"]):not([data-provider-count="2"]):not([data-provider-count="3"]):not([data-provider-count="4"]) {
|
|
285
|
-
grid-template-columns: repeat(6, 1fr);
|
|
286
|
-
}
|
|
287
|
-
.insforge-oauth-btn {
|
|
288
|
-
display: flex;
|
|
289
|
-
width: 100%;
|
|
290
|
-
height: 36px;
|
|
291
|
-
padding: 8px 12px;
|
|
292
|
-
flex-direction: row;
|
|
293
|
-
justify-content: center;
|
|
294
|
-
align-items: center;
|
|
295
|
-
gap: 12px;
|
|
296
|
-
border-radius: 6px;
|
|
297
|
-
border: 1px solid #E4E4E7;
|
|
298
|
-
background: #FFF;
|
|
299
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);
|
|
300
|
-
color: #09090B;
|
|
301
|
-
text-align: center;
|
|
302
|
-
font-family: Inter;
|
|
303
|
-
font-size: 14px;
|
|
304
|
-
font-style: normal;
|
|
305
|
-
font-weight: 500;
|
|
306
|
-
line-height: 20px;
|
|
307
|
-
cursor: pointer;
|
|
308
|
-
transition: all 0.2s ease;
|
|
309
|
-
}
|
|
310
|
-
.insforge-oauth-btn[data-display-mode=full] {
|
|
311
|
-
justify-content: center;
|
|
312
|
-
}
|
|
313
|
-
.insforge-oauth-btn[data-display-mode=short] {
|
|
314
|
-
justify-content: center;
|
|
315
|
-
padding: 8px;
|
|
316
|
-
gap: 8px;
|
|
317
|
-
}
|
|
318
|
-
.insforge-oauth-btn[data-display-mode=icon] {
|
|
319
|
-
justify-content: center;
|
|
320
|
-
gap: 0;
|
|
321
|
-
}
|
|
322
|
-
.insforge-oauth-btn[data-display-mode=icon] .insforge-oauth-icon {
|
|
323
|
-
display: flex;
|
|
324
|
-
align-items: center;
|
|
325
|
-
justify-content: center;
|
|
326
|
-
}
|
|
327
|
-
.insforge-oauth-btn:hover {
|
|
328
|
-
background: #f9fafb;
|
|
329
|
-
border-color: #9ca3af;
|
|
330
|
-
}
|
|
331
|
-
.insforge-oauth-btn:disabled {
|
|
332
|
-
opacity: 0.6;
|
|
333
|
-
cursor: not-allowed;
|
|
334
|
-
}
|
|
335
|
-
.insforge-oauth-icon {
|
|
336
|
-
display: flex;
|
|
337
|
-
align-items: center;
|
|
338
|
-
justify-content: center;
|
|
339
|
-
flex-shrink: 0;
|
|
340
|
-
}
|
|
341
|
-
.insforge-oauth-loader {
|
|
342
|
-
display: none;
|
|
343
|
-
animation: insforge-spin 1s linear infinite;
|
|
344
|
-
}
|
|
345
|
-
.insforge-oauth-btn[data-loading] .insforge-oauth-icon {
|
|
346
|
-
display: none;
|
|
347
|
-
}
|
|
348
|
-
.insforge-oauth-btn[data-loading] .insforge-oauth-loader {
|
|
349
|
-
display: block;
|
|
350
|
-
}
|
|
351
|
-
@keyframes insforge-spin {
|
|
352
|
-
from {
|
|
353
|
-
transform: rotate(0deg);
|
|
354
|
-
}
|
|
355
|
-
to {
|
|
356
|
-
transform: rotate(360deg);
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
.insforge-user-button-container {
|
|
360
|
-
position: relative;
|
|
361
|
-
display: inline-block;
|
|
362
|
-
}
|
|
363
|
-
.insforge-user-button {
|
|
364
|
-
padding: 0.25rem;
|
|
365
|
-
background: transparent;
|
|
366
|
-
border: none;
|
|
367
|
-
border-radius: 9999px;
|
|
368
|
-
cursor: pointer;
|
|
369
|
-
transition: all 0.2s;
|
|
370
|
-
display: flex;
|
|
371
|
-
align-items: center;
|
|
372
|
-
justify-content: center;
|
|
373
|
-
gap: 0.5rem;
|
|
374
|
-
}
|
|
375
|
-
.insforge-user-button:hover {
|
|
376
|
-
background: rgba(0, 0, 0, 0.05);
|
|
377
|
-
}
|
|
378
|
-
.insforge-user-button-detailed {
|
|
379
|
-
border-radius: 0.5rem;
|
|
380
|
-
padding: 0.5rem;
|
|
381
|
-
}
|
|
382
|
-
.insforge-user-button-info {
|
|
383
|
-
display: flex;
|
|
384
|
-
flex-direction: column;
|
|
385
|
-
align-items: flex-start;
|
|
386
|
-
gap: 0.125rem;
|
|
387
|
-
}
|
|
388
|
-
.insforge-user-button-name {
|
|
389
|
-
font-size: 0.875rem;
|
|
390
|
-
font-weight: 600;
|
|
391
|
-
color: #111827;
|
|
392
|
-
line-height: 1.25rem;
|
|
393
|
-
text-align: left;
|
|
394
|
-
}
|
|
395
|
-
.insforge-user-button-email {
|
|
396
|
-
font-size: 0.75rem;
|
|
397
|
-
color: #6b7280;
|
|
398
|
-
line-height: 1rem;
|
|
399
|
-
text-align: left;
|
|
400
|
-
}
|
|
401
|
-
.insforge-user-avatar {
|
|
402
|
-
width: 2.5rem;
|
|
403
|
-
height: 2.5rem;
|
|
404
|
-
border-radius: 9999px;
|
|
405
|
-
object-fit: cover;
|
|
406
|
-
}
|
|
407
|
-
.insforge-user-avatar-placeholder {
|
|
408
|
-
display: flex;
|
|
409
|
-
align-items: center;
|
|
410
|
-
justify-content: center;
|
|
411
|
-
width: 2.5rem;
|
|
412
|
-
height: 2.5rem;
|
|
413
|
-
background: #3b82f6;
|
|
414
|
-
color: white;
|
|
415
|
-
font-weight: 600;
|
|
416
|
-
font-size: 0.875rem;
|
|
417
|
-
border-radius: 9999px;
|
|
418
|
-
}
|
|
419
|
-
.insforge-user-dropdown {
|
|
420
|
-
position: absolute;
|
|
421
|
-
top: 100%;
|
|
422
|
-
right: 0;
|
|
423
|
-
margin-top: 0.5rem;
|
|
424
|
-
min-width: 10rem;
|
|
425
|
-
background: white;
|
|
426
|
-
border: 1px solid #e5e7eb;
|
|
427
|
-
border-radius: 0.5rem;
|
|
428
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
429
|
-
z-index: 50;
|
|
430
|
-
overflow: hidden;
|
|
431
|
-
padding: 0.25rem;
|
|
432
|
-
}
|
|
433
|
-
.insforge-sign-out-button {
|
|
434
|
-
display: flex;
|
|
435
|
-
align-items: center;
|
|
436
|
-
justify-content: flex-start;
|
|
437
|
-
gap: 0.5rem;
|
|
438
|
-
width: 100%;
|
|
439
|
-
padding: 0.5rem 0.75rem;
|
|
440
|
-
font-size: 0.875rem;
|
|
441
|
-
font-family: inherit;
|
|
442
|
-
color: #dc2626;
|
|
443
|
-
background: transparent;
|
|
444
|
-
border: none;
|
|
445
|
-
border-radius: 0.375rem;
|
|
446
|
-
cursor: pointer;
|
|
447
|
-
transition: background 0.2s;
|
|
448
|
-
text-align: left;
|
|
449
|
-
}
|
|
450
|
-
.insforge-sign-out-button:hover {
|
|
451
|
-
background: #fef2f2;
|
|
452
|
-
}
|
|
453
|
-
.insforge-loading {
|
|
454
|
-
display: flex;
|
|
455
|
-
justify-content: center;
|
|
456
|
-
align-items: center;
|
|
457
|
-
padding: 2rem;
|
|
458
|
-
color: #6b7280;
|
|
459
|
-
font-size: 0.875rem;
|
|
460
|
-
}
|
|
461
|
-
.insforge-password-strength {
|
|
462
|
-
display: flex;
|
|
463
|
-
flex-direction: column;
|
|
464
|
-
gap: 0.25rem;
|
|
465
|
-
margin-top: 0.5rem;
|
|
466
|
-
}
|
|
467
|
-
.insforge-password-requirement {
|
|
468
|
-
height: 1.5rem;
|
|
469
|
-
display: flex;
|
|
470
|
-
align-items: center;
|
|
471
|
-
gap: 0.25rem;
|
|
472
|
-
}
|
|
473
|
-
.insforge-password-check {
|
|
474
|
-
width: 1.25rem;
|
|
475
|
-
height: 1.25rem;
|
|
476
|
-
border-radius: 9999px;
|
|
477
|
-
display: flex;
|
|
478
|
-
border-width: 2px;
|
|
479
|
-
border-style: solid;
|
|
480
|
-
align-items: center;
|
|
481
|
-
justify-content: center;
|
|
482
|
-
transition: all 0.2s ease-in-out;
|
|
483
|
-
background-color: transparent;
|
|
484
|
-
border-color: #a3a3a3;
|
|
485
|
-
flex-shrink: 0;
|
|
486
|
-
}
|
|
487
|
-
.insforge-password-check-valid {
|
|
488
|
-
background-color: #22c55e;
|
|
489
|
-
border-color: transparent;
|
|
490
|
-
}
|
|
491
|
-
.insforge-password-check-icon {
|
|
492
|
-
color: #fff;
|
|
493
|
-
stroke-width: 3;
|
|
494
|
-
}
|
|
495
|
-
.insforge-password-requirement-label {
|
|
496
|
-
color: #000;
|
|
497
|
-
font-family: Inter;
|
|
498
|
-
font-size: 14px;
|
|
499
|
-
font-style: normal;
|
|
500
|
-
font-weight: 400;
|
|
501
|
-
line-height: 24px;
|
|
502
|
-
}
|
|
503
|
-
.insforge-verification-code-container {
|
|
504
|
-
display: flex;
|
|
505
|
-
flex-direction: column;
|
|
506
|
-
justify-content: center;
|
|
507
|
-
align-items: center;
|
|
508
|
-
gap: 24px;
|
|
509
|
-
}
|
|
510
|
-
.insforge-verification-instructions {
|
|
511
|
-
color: #525252;
|
|
512
|
-
font-family: Inter;
|
|
513
|
-
font-size: 14px;
|
|
514
|
-
font-style: normal;
|
|
515
|
-
font-weight: 400;
|
|
516
|
-
line-height: 20px;
|
|
517
|
-
}
|
|
518
|
-
.insforge-verification-instructions > span {
|
|
519
|
-
color: #000;
|
|
520
|
-
font-family: Inter;
|
|
521
|
-
font-size: 14px;
|
|
522
|
-
font-style: normal;
|
|
523
|
-
font-weight: 600;
|
|
524
|
-
line-height: 20px;
|
|
525
|
-
}
|
|
526
|
-
.insforge-verification-code-inputs {
|
|
527
|
-
display: flex;
|
|
528
|
-
flex-direction: row;
|
|
529
|
-
gap: 12px;
|
|
530
|
-
justify-content: center;
|
|
531
|
-
align-items: center;
|
|
532
|
-
}
|
|
533
|
-
.insforge-verification-code-input {
|
|
534
|
-
width: 100%;
|
|
535
|
-
height: 48px;
|
|
536
|
-
padding: 8px 12px;
|
|
537
|
-
border-radius: 4px;
|
|
538
|
-
border: 1px solid #E0E0E0;
|
|
539
|
-
background: #FFF;
|
|
540
|
-
text-align: center;
|
|
541
|
-
font-size: 16px;
|
|
542
|
-
font-style: normal;
|
|
543
|
-
line-height: 20px;
|
|
544
|
-
font-weight: 600;
|
|
545
|
-
font-family: var(--font-manrope);
|
|
546
|
-
color: #000;
|
|
547
|
-
transition: all 0.2s ease-in-out;
|
|
548
|
-
outline: none;
|
|
549
|
-
}
|
|
550
|
-
.insforge-verification-code-input:focus {
|
|
551
|
-
border-color: #000;
|
|
552
|
-
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
553
|
-
}
|
|
554
|
-
.insforge-verification-code-input:disabled {
|
|
555
|
-
background-color: #F5F5F5;
|
|
556
|
-
cursor: not-allowed;
|
|
557
|
-
opacity: 0.6;
|
|
558
|
-
}
|
|
559
|
-
.insforge-verification-instructions {
|
|
560
|
-
color: #4F4F4F;
|
|
561
|
-
font-family: Inter;
|
|
562
|
-
font-size: 14px;
|
|
563
|
-
font-style: normal;
|
|
564
|
-
font-weight: 400;
|
|
565
|
-
line-height: 24px;
|
|
566
|
-
margin-bottom: 8px;
|
|
567
|
-
}
|
|
568
|
-
.insforge-verification-email {
|
|
569
|
-
color: #000;
|
|
570
|
-
font-weight: 600;
|
|
571
|
-
}
|
|
572
|
-
.insforge-resend-code {
|
|
573
|
-
color: #525252;
|
|
574
|
-
font-family: Inter;
|
|
575
|
-
font-size: 14px;
|
|
576
|
-
font-style: normal;
|
|
577
|
-
font-weight: 400;
|
|
578
|
-
line-height: 24px;
|
|
579
|
-
text-align: center;
|
|
580
|
-
}
|
|
581
|
-
.insforge-resend-link {
|
|
582
|
-
color: #000;
|
|
583
|
-
font-family: Inter;
|
|
584
|
-
font-size: 14px;
|
|
585
|
-
font-style: normal;
|
|
586
|
-
font-weight: 500;
|
|
587
|
-
line-height: 24px;
|
|
588
|
-
}
|
|
589
|
-
.insforge-resend-link:hover {
|
|
590
|
-
text-decoration: underline;
|
|
591
|
-
}
|
|
592
|
-
.insforge-resend-link:disabled {
|
|
593
|
-
opacity: 0.5;
|
|
594
|
-
cursor: not-allowed;
|
|
595
|
-
}
|
|
596
|
-
@media (max-width: 640px) {
|
|
597
|
-
.insforge-auth-card {
|
|
598
|
-
padding: 2rem 1.5rem;
|
|
599
|
-
}
|
|
600
|
-
.insforge-auth-title {
|
|
601
|
-
font-size: 1.75rem;
|
|
602
|
-
}
|
|
603
|
-
.insforge-verification-code-container {
|
|
604
|
-
gap: 8px;
|
|
605
|
-
}
|
|
606
|
-
.insforge-verification-code-input {
|
|
607
|
-
width: 40px;
|
|
608
|
-
height: 48px;
|
|
609
|
-
font-size: 20px;
|
|
610
|
-
}
|
|
611
|
-
}
|
|
612
|
-
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/styles.css"],"sourcesContent":["/**\n * InsForge Next.js Component Library Styles\n * A standalone CSS file for auth components - no Tailwind required!\n */\n\n/* Font Face Declaration */\n@font-face {\n font-family: 'Manrope';\n src: url('./fonts/Manrope-VariableFont_wght.ttf') format('truetype');\n font-weight: 100 900;\n font-style: normal;\n font-display: swap;\n}\n\n/* CSS Variables */\n:root {\n --font-manrope: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n}\n\n/* Reset and Base Styles */\n.insforge-auth-container * {\n box-sizing: border-box;\n}\n\n/* Main Container - App handles layout, we just provide the card */\n.insforge-auth-container {\n width: 100%;\n max-width: 400px;\n background: white;\n}\n\n.insforge-branding {\n background: #FAFAFA;\n padding: 8px 8px 16px 8px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 4px;\n}\n\n.insforge-branding-text {\n color: #000;\n font-family: var(--font-manrope);\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: normal;\n}\n\n/* Form Card */\n.insforge-auth-card {\n width: 100%;\n border-radius: 12px;\n overflow: hidden;\n box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);\n}\n\n.insforge-auth-content {\n padding: 24px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: stretch;\n gap: 24px;\n}\n\n/* Header */\n.insforge-auth-header {\n display: flex;\n flex-direction: column;\n justify-content: start;\n align-items: start;\n gap: 8px;\n}\n\n.insforge-auth-title {\n color: #000;\n font-family: Inter;\n font-size: 24px;\n font-style: normal;\n font-weight: 600;\n line-height: 32px; /* 133.333% */\n}\n\n.insforge-auth-subtitle {\n color: #828282;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px; /* 171.429% */\n}\n\n/* Error Banner */\n.insforge-error-banner {\n display: flex;\n padding: 8px 8px 8px 12px;\n margin-bottom: 16px;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n border-radius: 4px;\n border: 2px solid #DC2626;\n background: #FEF2F2;\n color: #DC2626;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 20px; /* 142.857% */\n}\n\n.insforge-error-icon {\n color: #EF4444;\n flex-shrink: 0;\n width: 24px;\n height: 24px;\n}\n\n/* Form Elements */\n.insforge-form {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: stretch;\n gap: 24px;\n}\n\n.insforge-form-group {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: stretch;\n gap: 4px;\n}\n\n.insforge-form-label-row {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.insforge-form-label {\n color: #000;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n}\n\n.insforge-form-link {\n color: #828282;\n text-align: right;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n}\n\n.insforge-form-link:hover {\n color: #828282;\n text-decoration: underline;\n}\n\n/* Input Container for Password (with icon) */\n.insforge-input-wrapper {\n position: relative;\n}\n\n.insforge-input {\n width: 100%;\n display: flex;\n padding: 8px 8px 10px 12px;\n align-items: center;\n gap: 8px;\n align-self: stretch;\n border-radius: 4px;\n border: 1px solid #BCBCBC;\n background: #FFF;\n font-family: Inter;\n font-size: 16px;\n font-style: normal;\n font-weight: 400;\n line-height: 20px;\n}\n\n.insforge-input::placeholder {\n color: #A6A6A6;\n}\n\n.insforge-input:focus {\n outline: none;\n}\n\n.insforge-input-with-icon {\n padding-right: 3rem;\n}\n\n.insforge-input-icon-btn {\n position: absolute;\n right: 8px;\n top: 50%;\n transform: translateY(-50%);\n background: transparent;\n border: none;\n color: #A6A6A6;\n cursor: pointer;\n transition: color 0.2s;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.insforge-input-icon-btn:hover {\n color: #6b7280;\n}\n\n/* Primary Button */\n.insforge-btn-primary {\n border-radius: 4px;\n background: #000;\n width: 100%;\n display: flex;\n margin: 16px 0 0 0;\n padding: 8px 16px;\n justify-content: center;\n align-items: center;\n gap: 10px;\n align-self: stretch;\n color: #FFF;\n font-family: Manrope;\n font-size: 16px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n border: none;\n cursor: pointer;\n}\n\n.insforge-btn-primary:hover {\n background: #303030;\n}\n\n.insforge-btn-primary:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n\n.insforge-btn-primary .insforge-btn-loader {\n display: none;\n animation: insforge-spin 1s linear infinite;\n}\n\n.insforge-btn-primary[data-loading] .insforge-btn-loader {\n display: block;\n}\n\n.insforge-btn-primary .insforge-btn-check {\n display: none;\n}\n\n.insforge-btn-primary[data-confirmed] .insforge-btn-check {\n display: block;\n}\n\n/* Text Link Section */\n.insforge-text-center {\n text-align: center;\n color: #828282;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n}\n\n.insforge-link-primary {\n color: #000;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 500;\n line-height: 24px;\n}\n\n/* Divider */\n.insforge-divider {\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 24px;\n align-self: stretch;\n}\n\n.insforge-divider::before,\n.insforge-divider::after {\n content: '';\n flex: 1;\n height: 1px;\n background: #C6C6C6;\n}\n\n.insforge-divider-text {\n color: #C6C6C6;\n font-family: Manrope;\n font-size: 14px;\n font-style: normal;\n font-weight: 600;\n line-height: normal;\n}\n\n/* OAuth Section */\n.insforge-oauth-container {\n display: grid;\n gap: 12px;\n width: 100%;\n}\n\n/* ============================================================================\n SMART OAUTH GRID LAYOUT SYSTEM\n Pattern: 1→1x1, 2→1x2, 3→1x3, 4→2x2, 5+→auto (3 per row, last row centered)\n ============================================================================ */\n\n/* 1 provider: single column, full width - displays \"Continue with Provider\" */\n.insforge-oauth-container[data-provider-count=\"1\"] {\n grid-template-columns: 1fr;\n}\n\n/* 2 providers: two columns - displays \"Provider\" */\n.insforge-oauth-container[data-provider-count=\"2\"] {\n grid-template-columns: repeat(2, 1fr);\n}\n\n/* 3 providers: three columns - icon only */\n.insforge-oauth-container[data-provider-count=\"3\"] {\n grid-template-columns: repeat(3, 1fr);\n}\n\n/* 4 providers: 2x2 grid - displays \"Provider\" */\n.insforge-oauth-container[data-provider-count=\"4\"] {\n grid-template-columns: repeat(2, 1fr);\n}\n\n/* 5+ providers: Universal 6-column grid system\n - Grid columns managed by OAuthProviderList component via inline styles\n - This provides precise control over button positioning */\n.insforge-oauth-container:not([data-provider-count=\"1\"]):not([data-provider-count=\"2\"]):not([data-provider-count=\"3\"]):not([data-provider-count=\"4\"]) {\n grid-template-columns: repeat(6, 1fr);\n}\n\n/* OAuth Button */\n.insforge-oauth-btn {\n display: flex;\n width: 100%;\n height: 36px;\n padding: 8px 12px;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 12px;\n border-radius: 6px;\n border: 1px solid #E4E4E7;\n background: #FFF;\n box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);\n color: #09090B;\n text-align: center;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 500;\n line-height: 20px;\n cursor: pointer;\n transition: all 0.2s ease;\n}\n\n/* Full mode: show icon + \"Continue with Provider\" */\n.insforge-oauth-btn[data-display-mode=\"full\"] {\n justify-content: center;\n}\n\n/* Short mode: show icon + \"Provider\" */\n.insforge-oauth-btn[data-display-mode=\"short\"] {\n justify-content: center;\n padding: 8px;\n gap: 8px;\n}\n\n/* Icon only mode: show only icon */\n.insforge-oauth-btn[data-display-mode=\"icon\"] {\n justify-content: center;\n gap: 0;\n}\n\n.insforge-oauth-btn[data-display-mode=\"icon\"] .insforge-oauth-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.insforge-oauth-btn:hover {\n background: #f9fafb;\n border-color: #9ca3af;\n}\n\n.insforge-oauth-btn:disabled {\n opacity: 0.6;\n cursor: not-allowed;\n}\n\n.insforge-oauth-icon {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n}\n\n.insforge-oauth-loader {\n display: none;\n animation: insforge-spin 1s linear infinite;\n}\n\n.insforge-oauth-btn[data-loading] .insforge-oauth-icon {\n display: none;\n}\n\n.insforge-oauth-btn[data-loading] .insforge-oauth-loader {\n display: block;\n}\n\n/* Spin Animation */\n@keyframes insforge-spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n\n/* UserButton Styles */\n.insforge-user-button-container {\n position: relative;\n display: inline-block;\n}\n\n.insforge-user-button {\n padding: 0.25rem;\n background: transparent;\n border: none;\n border-radius: 9999px;\n cursor: pointer;\n transition: all 0.2s;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.5rem;\n}\n\n.insforge-user-button:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n\n.insforge-user-button-detailed {\n border-radius: 0.5rem;\n padding: 0.5rem;\n}\n\n.insforge-user-button-info {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 0.125rem;\n}\n\n.insforge-user-button-name {\n font-size: 0.875rem;\n font-weight: 600;\n color: #111827;\n line-height: 1.25rem;\n text-align: left;\n}\n\n.insforge-user-button-email {\n font-size: 0.75rem;\n color: #6b7280;\n line-height: 1rem;\n text-align: left;\n}\n\n.insforge-user-avatar {\n width: 2.5rem;\n height: 2.5rem;\n border-radius: 9999px;\n object-fit: cover;\n}\n\n.insforge-user-avatar-placeholder {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 2.5rem;\n height: 2.5rem;\n background: #3b82f6;\n color: white;\n font-weight: 600;\n font-size: 0.875rem;\n border-radius: 9999px;\n}\n\n.insforge-user-dropdown {\n position: absolute;\n top: 100%;\n right: 0;\n margin-top: 0.5rem;\n min-width: 10rem;\n background: white;\n border: 1px solid #e5e7eb;\n border-radius: 0.5rem;\n box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n z-index: 50;\n overflow: hidden;\n padding: 0.25rem;\n}\n\n.insforge-sign-out-button {\n display: flex;\n align-items: center;\n justify-content: flex-start;\n gap: 0.5rem;\n width: 100%;\n padding: 0.5rem 0.75rem;\n font-size: 0.875rem;\n font-family: inherit;\n color: #dc2626;\n background: transparent;\n border: none;\n border-radius: 0.375rem;\n cursor: pointer;\n transition: background 0.2s;\n text-align: left;\n}\n\n.insforge-sign-out-button:hover {\n background: #fef2f2;\n}\n\n/* Loading State */\n.insforge-loading {\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 2rem;\n color: #6b7280;\n font-size: 0.875rem;\n}\n\n/* Password Strength Indicator */\n.insforge-password-strength {\n display: flex;\n flex-direction: column;\n gap: 0.25rem;\n margin-top: 0.5rem;\n}\n\n.insforge-password-requirement {\n height: 1.5rem;\n display: flex;\n align-items: center;\n gap: 0.25rem;\n}\n\n.insforge-password-check {\n width: 1.25rem;\n height: 1.25rem;\n border-radius: 9999px;\n display: flex;\n border-width: 2px;\n border-style: solid;\n align-items: center;\n justify-content: center;\n transition: all 0.2s ease-in-out;\n background-color: transparent;\n border-color: #a3a3a3;\n flex-shrink: 0;\n}\n\n.insforge-password-check-valid {\n background-color: #22c55e;\n border-color: transparent;\n}\n\n.insforge-password-check-icon {\n color: #fff;\n stroke-width: 3;\n}\n\n.insforge-password-requirement-label {\n color:#000;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n}\n\n/* Verification Code Input */\n.insforge-verification-code-container {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 24px;\n}\n\n.insforge-verification-instructions {\n color: #525252;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 20px;\n}\n\n.insforge-verification-instructions > span {\n color: #000;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 600;\n line-height: 20px;\n}\n\n.insforge-verification-code-inputs {\n display: flex;\n flex-direction: row;\n gap: 12px;\n justify-content: center;\n align-items: center;\n}\n\n.insforge-verification-code-input {\n width: 100%;\n height: 48px;\n padding: 8px 12px;\n border-radius: 4px;\n border: 1px solid #E0E0E0;\n background: #FFF;\n text-align: center;\n font-size: 16px;\n font-style: normal;\n line-height: 20px;\n font-weight: 600;\n font-family: var(--font-manrope);\n color: #000;\n transition: all 0.2s ease-in-out;\n outline: none;\n}\n\n.insforge-verification-code-input:focus {\n border-color: #000;\n box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);\n}\n\n.insforge-verification-code-input:disabled {\n background-color: #F5F5F5;\n cursor: not-allowed;\n opacity: 0.6;\n}\n\n/* Verification Instructions */\n.insforge-verification-instructions {\n color: #4F4F4F;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: 8px;\n}\n\n.insforge-verification-email {\n color: #000;\n font-weight: 600;\n}\n\n.insforge-resend-code {\n color: #525252;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 24px;\n text-align: center;\n}\n\n.insforge-resend-link {\n color: #000;\n font-family: Inter;\n font-size: 14px;\n font-style: normal;\n font-weight: 500;\n line-height: 24px;\n}\n\n.insforge-resend-link:hover {\n text-decoration: underline;\n}\n\n.insforge-resend-link:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n\n/* Responsive adjustments */\n@media (max-width: 640px) {\n .insforge-auth-card {\n padding: 2rem 1.5rem;\n }\n\n .insforge-auth-title {\n font-size: 1.75rem;\n }\n\n .insforge-verification-code-container {\n gap: 8px;\n }\n\n .insforge-verification-code-input {\n width: 40px;\n height: 48px;\n font-size: 20px;\n }\n}\n\n"],"mappings":"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","names":[]}
|
|
Binary file
|