@akropolys/kiku 1.7.3 → 1.7.4
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.js +116 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +116 -44
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +99 -0
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -621,6 +621,16 @@
|
|
|
621
621
|
align-items: center;
|
|
622
622
|
animation: hsk-sparkle-spin 4s linear infinite;
|
|
623
623
|
}
|
|
624
|
+
.hsk-cb-empty-logo {
|
|
625
|
+
width: 52px;
|
|
626
|
+
height: 52px;
|
|
627
|
+
color: var(--hsk-primary, #ff6a33);
|
|
628
|
+
}
|
|
629
|
+
.hsk-cb-empty-logo .hsk-brand-mark {
|
|
630
|
+
width: 100%;
|
|
631
|
+
height: 100%;
|
|
632
|
+
fill: currentColor;
|
|
633
|
+
}
|
|
624
634
|
.hsk-cb-empty-title {
|
|
625
635
|
font-size: 26px;
|
|
626
636
|
font-weight: 500;
|
|
@@ -633,6 +643,31 @@
|
|
|
633
643
|
line-height: 1.7;
|
|
634
644
|
max-width: 380px;
|
|
635
645
|
}
|
|
646
|
+
.hsk-cb-onboard-title {
|
|
647
|
+
font-size: 34px;
|
|
648
|
+
font-weight: 600;
|
|
649
|
+
letter-spacing: -.03em;
|
|
650
|
+
}
|
|
651
|
+
.hsk-cb-onboard-ask {
|
|
652
|
+
font-size: 17px;
|
|
653
|
+
font-weight: 500;
|
|
654
|
+
color: var(--hsk-chat-text, #111);
|
|
655
|
+
margin-top: 4px;
|
|
656
|
+
}
|
|
657
|
+
.hsk-cb-onboard-skip {
|
|
658
|
+
margin-top: 2px;
|
|
659
|
+
padding: 4px 10px;
|
|
660
|
+
font-size: 12.5px;
|
|
661
|
+
color: var(--hsk-chat-muted, #888);
|
|
662
|
+
background: transparent;
|
|
663
|
+
border: none;
|
|
664
|
+
cursor: pointer;
|
|
665
|
+
text-decoration: underline;
|
|
666
|
+
text-underline-offset: 3px;
|
|
667
|
+
}
|
|
668
|
+
.hsk-cb-onboard-skip:hover {
|
|
669
|
+
color: var(--hsk-chat-text, #111);
|
|
670
|
+
}
|
|
636
671
|
.hsk-cb-chips {
|
|
637
672
|
display: flex;
|
|
638
673
|
flex-wrap: wrap;
|
|
@@ -926,6 +961,32 @@
|
|
|
926
961
|
fill: currentColor;
|
|
927
962
|
opacity: 0.16;
|
|
928
963
|
}
|
|
964
|
+
.hsk-cb-thinking-icon .hsk-brand-mark:not(.hsk-brand-mark--sheen) {
|
|
965
|
+
transform-origin: 50% 100%;
|
|
966
|
+
animation: hsk-glyph-settle 2.8s infinite;
|
|
967
|
+
}
|
|
968
|
+
@keyframes hsk-glyph-settle {
|
|
969
|
+
0%, 72% {
|
|
970
|
+
opacity: 0.16;
|
|
971
|
+
transform: scale(1);
|
|
972
|
+
}
|
|
973
|
+
82% {
|
|
974
|
+
opacity: 1;
|
|
975
|
+
transform: scale(1.07);
|
|
976
|
+
animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
977
|
+
}
|
|
978
|
+
90% {
|
|
979
|
+
transform: scale(0.97);
|
|
980
|
+
}
|
|
981
|
+
95% {
|
|
982
|
+
opacity: 1;
|
|
983
|
+
transform: scale(1);
|
|
984
|
+
}
|
|
985
|
+
100% {
|
|
986
|
+
opacity: 0.16;
|
|
987
|
+
transform: scale(1);
|
|
988
|
+
}
|
|
989
|
+
}
|
|
929
990
|
.hsk-cb-thinking-icon .hsk-brand-mark--sheen {
|
|
930
991
|
opacity: 1;
|
|
931
992
|
-webkit-mask-image:
|
|
@@ -1311,6 +1372,44 @@
|
|
|
1311
1372
|
color: #ef4444;
|
|
1312
1373
|
font-size: 13px;
|
|
1313
1374
|
}
|
|
1375
|
+
.hsk-cb-stopped {
|
|
1376
|
+
display: flex;
|
|
1377
|
+
align-items: center;
|
|
1378
|
+
gap: 12px;
|
|
1379
|
+
margin: 8px 0;
|
|
1380
|
+
flex-wrap: wrap;
|
|
1381
|
+
}
|
|
1382
|
+
.hsk-cb-stopped-label {
|
|
1383
|
+
font-size: 12.5px;
|
|
1384
|
+
color: var(--hsk-chat-muted, #888);
|
|
1385
|
+
}
|
|
1386
|
+
.hsk-cb-continue {
|
|
1387
|
+
display: inline-flex;
|
|
1388
|
+
align-items: center;
|
|
1389
|
+
gap: 6px;
|
|
1390
|
+
padding: 7px 12px;
|
|
1391
|
+
font-size: 12.5px;
|
|
1392
|
+
font-weight: 600;
|
|
1393
|
+
color: var(--hsk-chat-text, #111);
|
|
1394
|
+
background: transparent;
|
|
1395
|
+
border: 1.5px solid var(--hsk-chat-divide, rgba(0,0,0,.14));
|
|
1396
|
+
border-radius: var(--hsk-border-radius, 0px);
|
|
1397
|
+
cursor: pointer;
|
|
1398
|
+
transition:
|
|
1399
|
+
border-color .15s,
|
|
1400
|
+
color .15s,
|
|
1401
|
+
background .15s;
|
|
1402
|
+
}
|
|
1403
|
+
.hsk-cb-continue:hover {
|
|
1404
|
+
border-color: var(--hsk-primary);
|
|
1405
|
+
color: var(--hsk-primary);
|
|
1406
|
+
}
|
|
1407
|
+
@media (prefers-color-scheme: dark) {
|
|
1408
|
+
.hsk-cb-continue {
|
|
1409
|
+
border-color: rgba(255, 255, 255, .14);
|
|
1410
|
+
color: #f0efed;
|
|
1411
|
+
}
|
|
1412
|
+
}
|
|
1314
1413
|
@media (prefers-color-scheme: dark) {
|
|
1315
1414
|
.hsk-cb-overlay {
|
|
1316
1415
|
--hsk-chat-bg: #0a0a0a;
|