@paymanai/payman-ask-sdk 2.0.0 → 2.0.1
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +109 -78
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +110 -79
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +14 -11
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -1237,6 +1237,20 @@
|
|
|
1237
1237
|
border: 1px solid var(--payman-v2-verification-border);
|
|
1238
1238
|
background: var(--payman-v2-verification-bg);
|
|
1239
1239
|
overflow: hidden;
|
|
1240
|
+
position: relative;
|
|
1241
|
+
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
|
1242
|
+
}
|
|
1243
|
+
.payman-v2-verification-card-busy {
|
|
1244
|
+
animation: payman-v2-verification-card-pulse 1.25s ease-in-out infinite;
|
|
1245
|
+
border-color: rgba(10, 59, 68, 0.42);
|
|
1246
|
+
}
|
|
1247
|
+
@keyframes payman-v2-verification-card-pulse {
|
|
1248
|
+
0%, 100% {
|
|
1249
|
+
box-shadow: 0 0 0 0 rgba(10, 59, 68, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
|
|
1250
|
+
}
|
|
1251
|
+
50% {
|
|
1252
|
+
box-shadow: 0 0 0 4px rgba(10, 59, 68, 0.12), 0 12px 28px rgba(0, 0, 0, 0.07);
|
|
1253
|
+
}
|
|
1240
1254
|
}
|
|
1241
1255
|
.payman-v2-verification-header {
|
|
1242
1256
|
padding: 0.875rem 1rem 0.75rem;
|
|
@@ -1280,17 +1294,6 @@
|
|
|
1280
1294
|
line-height: 1.4;
|
|
1281
1295
|
margin: 0 0 0.75rem;
|
|
1282
1296
|
}
|
|
1283
|
-
.payman-v2-verification-submitting {
|
|
1284
|
-
display: flex;
|
|
1285
|
-
align-items: center;
|
|
1286
|
-
justify-content: center;
|
|
1287
|
-
gap: 0.375rem;
|
|
1288
|
-
margin-top: 0.5rem;
|
|
1289
|
-
}
|
|
1290
|
-
.payman-v2-verification-submitting-text {
|
|
1291
|
-
font-size: 11px;
|
|
1292
|
-
color: var(--payman-v2-text-3);
|
|
1293
|
-
}
|
|
1294
1297
|
.payman-v2-verification-actions {
|
|
1295
1298
|
display: flex;
|
|
1296
1299
|
align-items: stretch;
|