@akropolys/kiku 1.7.5 → 1.7.7

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
@@ -678,34 +678,6 @@
678
678
  .hsk-cb-hello-skip {
679
679
  animation-delay: 0.60s;
680
680
  }
681
- .hsk-cb-hello b {
682
- background-image:
683
- linear-gradient(
684
- 100deg,
685
- currentColor 0%,
686
- currentColor 42%,
687
- rgba(255, 255, 255, 0.92) 50%,
688
- currentColor 58%,
689
- currentColor 100%);
690
- background-size: 250% 100%;
691
- background-repeat: no-repeat;
692
- background-position: 130% 0;
693
- -webkit-background-clip: text;
694
- background-clip: text;
695
- -webkit-text-fill-color: transparent;
696
- animation: hsk-hello-sheen 4.5s ease-in-out 1s infinite;
697
- }
698
- @keyframes hsk-hello-sheen {
699
- 0% {
700
- background-position: 130% 0;
701
- }
702
- 55% {
703
- background-position: -30% 0;
704
- }
705
- 100% {
706
- background-position: -30% 0;
707
- }
708
- }
709
681
  @media (prefers-reduced-motion: reduce) {
710
682
  .hsk-cb-hello,
711
683
  .hsk-cb-hello-lead,
@@ -716,9 +688,6 @@
716
688
  transform: none;
717
689
  filter: none;
718
690
  }
719
- .hsk-cb-hello b {
720
- animation: none;
721
- }
722
691
  }
723
692
  .hsk-cb-chips {
724
693
  display: flex;
@@ -1424,6 +1393,75 @@
1424
1393
  color: #ef4444;
1425
1394
  font-size: 13px;
1426
1395
  }
1396
+ .hsk-cb-memory-pill {
1397
+ display: inline-flex;
1398
+ align-items: center;
1399
+ gap: 7px;
1400
+ align-self: flex-start;
1401
+ margin: 4px 0 10px;
1402
+ padding: 9px 14px;
1403
+ font-size: 13px;
1404
+ font-weight: 600;
1405
+ text-decoration: none;
1406
+ color: #fff;
1407
+ background: var(--hsk-primary, #ff6a33);
1408
+ border: none;
1409
+ border-radius: var(--hsk-border-radius, 0px);
1410
+ transition: opacity .15s;
1411
+ }
1412
+ .hsk-cb-memory-pill:hover {
1413
+ opacity: .88;
1414
+ }
1415
+ .hsk-cb-think {
1416
+ margin-bottom: 10px;
1417
+ font-size: 12.5px;
1418
+ }
1419
+ .hsk-cb-think-head {
1420
+ display: inline-flex;
1421
+ align-items: center;
1422
+ gap: 6px;
1423
+ padding: 0;
1424
+ border: none;
1425
+ background: none;
1426
+ font: inherit;
1427
+ font-weight: 500;
1428
+ color: var(--hsk-chat-muted, #888);
1429
+ cursor: pointer;
1430
+ user-select: none;
1431
+ }
1432
+ .hsk-cb-think-head:hover {
1433
+ color: var(--hsk-chat-text, #111);
1434
+ }
1435
+ .hsk-cb-think-head--static {
1436
+ cursor: default;
1437
+ }
1438
+ .hsk-cb-think-head--static:hover {
1439
+ color: var(--hsk-chat-muted, #888);
1440
+ }
1441
+ .hsk-cb-think-spin {
1442
+ animation: hsk-think-spin 3s linear infinite;
1443
+ }
1444
+ @keyframes hsk-think-spin {
1445
+ to {
1446
+ transform: rotate(360deg);
1447
+ }
1448
+ }
1449
+ .hsk-cb-think-chevron {
1450
+ font-size: 9px;
1451
+ transition: transform .12s;
1452
+ }
1453
+ .hsk-cb-think-chevron--open {
1454
+ transform: rotate(90deg);
1455
+ }
1456
+ .hsk-cb-think-body {
1457
+ margin-top: 6px;
1458
+ padding: 8px 10px;
1459
+ border-left: 2px solid var(--hsk-chat-border, rgba(128,128,128,.25));
1460
+ color: var(--hsk-chat-muted, #666);
1461
+ white-space: pre-wrap;
1462
+ line-height: 1.45;
1463
+ font-style: italic;
1464
+ }
1427
1465
  .hsk-cb-stopped {
1428
1466
  display: flex;
1429
1467
  align-items: center;
@@ -2570,38 +2608,45 @@
2570
2608
  }
2571
2609
  .hsk-cb-phone-label {
2572
2610
  font-size: 0.875rem;
2573
- color: var(--hsk-text, inherit);
2611
+ color: var(--hsk-chat-text, #111);
2574
2612
  margin: 0;
2575
2613
  }
2576
2614
  .hsk-cb-phone-input {
2577
2615
  width: 100%;
2578
2616
  box-sizing: border-box;
2579
2617
  padding: 8px 12px;
2580
- border: 1px solid var(--hsk-border, #e4e4e7);
2581
- border-radius: var(--hsk-radius, 8px);
2582
- background: var(--hsk-bg, #fff);
2583
- color: var(--hsk-text, inherit);
2618
+ border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.12));
2619
+ border-radius: var(--hsk-border-radius, 0px);
2620
+ background: var(--hsk-chat-input-bg, rgba(0,0,0,.04));
2621
+ color: var(--hsk-chat-text, #111);
2584
2622
  font-size: 0.9rem;
2585
2623
  outline: none;
2586
2624
  transition: border-color 0.15s;
2587
2625
  }
2626
+ .hsk-cb-phone-input::placeholder {
2627
+ color: var(--hsk-chat-muted, #888);
2628
+ }
2588
2629
  .hsk-cb-phone-input:focus {
2589
- border-color: var(--hsk-primary, #6366f1);
2630
+ border-color: var(--hsk-primary, #ff6a33);
2590
2631
  }
2591
2632
  .hsk-cb-phone-submit {
2592
2633
  align-self: flex-start;
2593
2634
  padding: 8px 16px;
2594
- border: 1px solid var(--hsk-border, #e4e4e7);
2595
- border-radius: var(--hsk-radius, 8px);
2596
- background: var(--hsk-bg, #fff);
2597
- color: var(--hsk-text, inherit);
2635
+ border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.12));
2636
+ border-radius: var(--hsk-border-radius, 0px);
2637
+ background: transparent;
2638
+ color: var(--hsk-chat-text, #111);
2598
2639
  font-size: 0.875rem;
2599
2640
  font-weight: 500;
2600
2641
  cursor: pointer;
2601
- transition: background 0.15s, border-color 0.15s;
2642
+ transition:
2643
+ background 0.15s,
2644
+ border-color 0.15s,
2645
+ color 0.15s;
2602
2646
  }
2603
2647
  .hsk-cb-phone-submit:hover {
2604
- border-color: var(--hsk-primary, #6366f1);
2648
+ border-color: var(--hsk-primary, #ff6a33);
2649
+ color: var(--hsk-primary, #ff6a33);
2605
2650
  }
2606
2651
  .hsk-cb-main {
2607
2652
  flex: 1;