Package not found. Please check the package name and try again.

@paymanai/payman-ask-sdk 1.2.24 → 1.2.26

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/styles.css CHANGED
@@ -615,6 +615,55 @@
615
615
  .payman-v2-thinking-chevron-open {
616
616
  transform: rotate(90deg);
617
617
  }
618
+ .payman-v2-thinking-header-label {
619
+ display: inline-flex;
620
+ align-items: center;
621
+ gap: 0.5rem;
622
+ }
623
+ .payman-v2-thinking-seconds {
624
+ display: inline-flex;
625
+ align-items: center;
626
+ gap: 1px;
627
+ font-variant-numeric: tabular-nums;
628
+ font-feature-settings: "tnum" 1;
629
+ }
630
+ .payman-v2-thinking-seconds-track {
631
+ display: grid;
632
+ place-items: center;
633
+ min-width: 1.4ch;
634
+ overflow: hidden;
635
+ }
636
+ .payman-v2-thinking-seconds-value {
637
+ grid-area: 1 / 1;
638
+ display: inline-block;
639
+ will-change:
640
+ transform,
641
+ opacity,
642
+ filter;
643
+ }
644
+ .payman-v2-thinking-seconds-suffix {
645
+ display: inline-block;
646
+ }
647
+ .payman-v2-thinking-timer {
648
+ display: inline-flex;
649
+ align-items: center;
650
+ min-width: 1.75rem;
651
+ padding: 1px 7px;
652
+ border-radius: 9999px;
653
+ background: var(--payman-v2-hover);
654
+ color: var(--payman-v2-text-4);
655
+ font-size: 10.5px;
656
+ font-weight: 500;
657
+ letter-spacing: 0.02em;
658
+ line-height: 1.4;
659
+ transition: color 0.2s ease, background-color 0.2s ease;
660
+ }
661
+ .payman-v2-thinking-duration {
662
+ color: currentColor;
663
+ }
664
+ .payman-v2-thinking-toggle:hover .payman-v2-thinking-timer {
665
+ color: var(--payman-v2-text-3);
666
+ }
618
667
  .payman-v2-thinking-content {
619
668
  overflow: hidden;
620
669
  }
@@ -663,18 +712,16 @@
663
712
  .payman-v2-thinking-cursor {
664
713
  display: flex;
665
714
  align-items: center;
666
- gap: 0.375rem;
715
+ gap: 0.5rem;
667
716
  margin-top: 0.25rem;
668
717
  height: 18px;
669
718
  }
670
- .payman-v2-thinking-cursor-bar {
671
- display: inline-block;
672
- width: 5px;
673
- height: 12px;
674
- background: var(--payman-v2-thinking-cursor-color);
675
- border-radius: 2px;
719
+ .payman-v2-thinking-mark {
720
+ width: 16px;
721
+ height: 16px;
676
722
  flex-shrink: 0;
677
- animation: payman-v2-cursor-blink 1s ease-in-out infinite;
723
+ color: var(--payman-v2-thinking-mark-color-override, #7AE5E0);
724
+ overflow: visible;
678
725
  }
679
726
  .payman-v2-thinking-cursor-label {
680
727
  font-size: var(--payman-v2-small-font-size);
@@ -1246,16 +1293,16 @@
1246
1293
  }
1247
1294
  .payman-v2-verification-actions {
1248
1295
  display: flex;
1249
- align-items: center;
1296
+ align-items: stretch;
1250
1297
  border-top: 1px solid var(--payman-v2-verification-border);
1251
1298
  }
1252
- .payman-v2-verification-resend-btn,
1253
1299
  .payman-v2-verification-cancel-btn {
1254
1300
  flex: 1;
1255
1301
  display: flex;
1256
1302
  align-items: center;
1257
1303
  justify-content: center;
1258
1304
  gap: 0.25rem;
1305
+ width: 100%;
1259
1306
  padding: 0.5rem;
1260
1307
  font-size: 11px;
1261
1308
  font-weight: 500;
@@ -1264,27 +1311,38 @@
1264
1311
  cursor: pointer;
1265
1312
  transition: color 0.15s, background-color 0.15s;
1266
1313
  font-family: inherit;
1267
- }
1268
- .payman-v2-verification-resend-btn {
1269
- color: var(--payman-v2-text-3);
1270
- border-right: 1px solid var(--payman-v2-verification-border);
1271
- }
1272
- .payman-v2-verification-resend-btn:hover {
1273
- color: var(--payman-v2-text-2);
1274
- background: var(--payman-v2-hover);
1275
- }
1276
- .payman-v2-verification-cancel-btn {
1277
1314
  color: rgba(239, 68, 68, 0.7);
1278
1315
  }
1279
1316
  .payman-v2-verification-cancel-btn:hover {
1280
1317
  color: var(--payman-v2-error-color);
1281
1318
  background: var(--payman-v2-error-bg);
1282
1319
  }
1283
- .payman-v2-verification-resend-btn:disabled,
1284
1320
  .payman-v2-verification-cancel-btn:disabled {
1285
1321
  opacity: 0.4;
1286
1322
  cursor: not-allowed;
1287
1323
  }
1324
+ .payman-v2-verification-resend-link {
1325
+ display: block;
1326
+ width: 100%;
1327
+ margin-top: 0.5rem;
1328
+ padding: 0;
1329
+ font-size: 11px;
1330
+ font-weight: 500;
1331
+ font-family: inherit;
1332
+ text-align: center;
1333
+ color: var(--payman-v2-text-3);
1334
+ background: none;
1335
+ border: none;
1336
+ cursor: pointer;
1337
+ transition: color 0.15s;
1338
+ }
1339
+ .payman-v2-verification-resend-link:hover:not(:disabled) {
1340
+ color: var(--payman-v2-text-2);
1341
+ }
1342
+ .payman-v2-verification-resend-link:disabled {
1343
+ opacity: 0.4;
1344
+ cursor: not-allowed;
1345
+ }
1288
1346
  .payman-v2-otp {
1289
1347
  display: flex;
1290
1348
  justify-content: center;