@paymanai/payman-ask-sdk 2.0.0 → 2.0.2
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 +204 -131
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +205 -132
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +1 -14
- package/dist/index.native.js.map +1 -1
- package/dist/styles.css +29 -19
- 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;
|
|
@@ -1716,6 +1719,7 @@
|
|
|
1716
1719
|
align-items: center;
|
|
1717
1720
|
justify-content: center;
|
|
1718
1721
|
gap: 0.5rem;
|
|
1722
|
+
pointer-events: none;
|
|
1719
1723
|
}
|
|
1720
1724
|
.payman-v2-md-image-placeholder {
|
|
1721
1725
|
display: flex;
|
|
@@ -2282,6 +2286,20 @@
|
|
|
2282
2286
|
border-radius: var(--payman-v2-radius-xl);
|
|
2283
2287
|
background: color-mix(in srgb, var(--payman-v2-bg-secondary) 52%, var(--payman-v2-bg));
|
|
2284
2288
|
}
|
|
2289
|
+
.payman-sidebar-notice-shell {
|
|
2290
|
+
flex: 1 1 0%;
|
|
2291
|
+
min-height: 0;
|
|
2292
|
+
display: flex;
|
|
2293
|
+
flex-direction: column;
|
|
2294
|
+
padding: 0.75rem 0.625rem 0.875rem;
|
|
2295
|
+
box-sizing: border-box;
|
|
2296
|
+
}
|
|
2297
|
+
.payman-sidebar-notice-shell .payman-sidebar-notice {
|
|
2298
|
+
flex: 1 1 auto;
|
|
2299
|
+
min-height: 0;
|
|
2300
|
+
width: 100%;
|
|
2301
|
+
box-sizing: border-box;
|
|
2302
|
+
}
|
|
2285
2303
|
.payman-sidebar-empty-icon,
|
|
2286
2304
|
.payman-sidebar-error-icon {
|
|
2287
2305
|
display: inline-flex;
|
|
@@ -2335,14 +2353,6 @@
|
|
|
2335
2353
|
cursor: not-allowed;
|
|
2336
2354
|
opacity: 0.65;
|
|
2337
2355
|
}
|
|
2338
|
-
.payman-sidebar-inline-code {
|
|
2339
|
-
padding: 0.1rem 0.35rem;
|
|
2340
|
-
border: 1px solid var(--payman-v2-code-border);
|
|
2341
|
-
border-radius: 0.45rem;
|
|
2342
|
-
background: var(--payman-v2-code-bg);
|
|
2343
|
-
font-family: var(--payman-v2-font-mono);
|
|
2344
|
-
font-size: 0.76em;
|
|
2345
|
-
}
|
|
2346
2356
|
.payman-sidebar-backdrop {
|
|
2347
2357
|
position: fixed;
|
|
2348
2358
|
inset: 0;
|