@akropolys/kiku 1.7.5 → 1.7.6

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,69 @@
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-spin {
1436
+ animation: hsk-think-spin 3s linear infinite;
1437
+ }
1438
+ @keyframes hsk-think-spin {
1439
+ to {
1440
+ transform: rotate(360deg);
1441
+ }
1442
+ }
1443
+ .hsk-cb-think-chevron {
1444
+ font-size: 9px;
1445
+ transition: transform .12s;
1446
+ }
1447
+ .hsk-cb-think-chevron--open {
1448
+ transform: rotate(90deg);
1449
+ }
1450
+ .hsk-cb-think-body {
1451
+ margin-top: 6px;
1452
+ padding: 8px 10px;
1453
+ border-left: 2px solid var(--hsk-chat-border, rgba(128,128,128,.25));
1454
+ color: var(--hsk-chat-muted, #666);
1455
+ white-space: pre-wrap;
1456
+ line-height: 1.45;
1457
+ font-style: italic;
1458
+ }
1427
1459
  .hsk-cb-stopped {
1428
1460
  display: flex;
1429
1461
  align-items: center;
@@ -2570,38 +2602,45 @@
2570
2602
  }
2571
2603
  .hsk-cb-phone-label {
2572
2604
  font-size: 0.875rem;
2573
- color: var(--hsk-text, inherit);
2605
+ color: var(--hsk-chat-text, #111);
2574
2606
  margin: 0;
2575
2607
  }
2576
2608
  .hsk-cb-phone-input {
2577
2609
  width: 100%;
2578
2610
  box-sizing: border-box;
2579
2611
  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);
2612
+ border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.12));
2613
+ border-radius: var(--hsk-border-radius, 0px);
2614
+ background: var(--hsk-chat-input-bg, rgba(0,0,0,.04));
2615
+ color: var(--hsk-chat-text, #111);
2584
2616
  font-size: 0.9rem;
2585
2617
  outline: none;
2586
2618
  transition: border-color 0.15s;
2587
2619
  }
2620
+ .hsk-cb-phone-input::placeholder {
2621
+ color: var(--hsk-chat-muted, #888);
2622
+ }
2588
2623
  .hsk-cb-phone-input:focus {
2589
- border-color: var(--hsk-primary, #6366f1);
2624
+ border-color: var(--hsk-primary, #ff6a33);
2590
2625
  }
2591
2626
  .hsk-cb-phone-submit {
2592
2627
  align-self: flex-start;
2593
2628
  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);
2629
+ border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.12));
2630
+ border-radius: var(--hsk-border-radius, 0px);
2631
+ background: transparent;
2632
+ color: var(--hsk-chat-text, #111);
2598
2633
  font-size: 0.875rem;
2599
2634
  font-weight: 500;
2600
2635
  cursor: pointer;
2601
- transition: background 0.15s, border-color 0.15s;
2636
+ transition:
2637
+ background 0.15s,
2638
+ border-color 0.15s,
2639
+ color 0.15s;
2602
2640
  }
2603
2641
  .hsk-cb-phone-submit:hover {
2604
- border-color: var(--hsk-primary, #6366f1);
2642
+ border-color: var(--hsk-primary, #ff6a33);
2643
+ color: var(--hsk-primary, #ff6a33);
2605
2644
  }
2606
2645
  .hsk-cb-main {
2607
2646
  flex: 1;