@inkeep/agents-ui 0.14.28 → 0.15.1

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.
Files changed (118) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.js +220 -205
  3. package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
  4. package/dist/primitives/atoms/icons/built-in-icons.d.ts +1 -0
  5. package/dist/primitives/atoms/icons/built-in-icons.js +44 -43
  6. package/dist/primitives/atoms/icons/checkbox-icon.cjs +1 -1
  7. package/dist/primitives/atoms/icons/checkbox-icon.js +1 -1
  8. package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
  9. package/dist/primitives/atoms/icons/inkeep-default-icons.js +3 -2
  10. package/dist/primitives/components/chat-bubble/index.cjs +1 -0
  11. package/dist/primitives/components/chat-bubble/index.d.ts +10 -0
  12. package/dist/primitives/components/chat-bubble/index.js +38 -0
  13. package/dist/primitives/components/chat-button.cjs +1 -1
  14. package/dist/primitives/components/chat-button.d.ts +3 -1
  15. package/dist/primitives/components/chat-button.js +31 -26
  16. package/dist/primitives/components/data-summaries.cjs +1 -0
  17. package/dist/primitives/components/data-summaries.d.ts +14 -0
  18. package/dist/primitives/components/data-summaries.js +38 -0
  19. package/dist/primitives/components/index.cjs +1 -1
  20. package/dist/primitives/components/index.d.ts +2 -0
  21. package/dist/primitives/components/index.js +21 -17
  22. package/dist/primitives/components/modal/use-inkeep-modal.cjs +1 -1
  23. package/dist/primitives/components/modal/use-inkeep-modal.d.ts +2 -2
  24. package/dist/primitives/components/modal/use-inkeep-modal.js +6 -42
  25. package/dist/primitives/components/modal/widget-auto-focus.cjs +1 -1
  26. package/dist/primitives/components/modal/widget-auto-focus.js +21 -12
  27. package/dist/primitives/components/modal.d.ts +2 -2
  28. package/dist/primitives/components/searchbar.d.ts +3 -3
  29. package/dist/primitives/components/sidebar-chat/index.cjs +1 -1
  30. package/dist/primitives/components/sidebar-chat/index.js +48 -67
  31. package/dist/primitives/components/use-component-trigger.cjs +1 -1
  32. package/dist/primitives/components/use-component-trigger.d.ts +1 -1
  33. package/dist/primitives/components/use-component-trigger.js +4 -3
  34. package/dist/primitives/hooks/index.cjs +1 -1
  35. package/dist/primitives/hooks/index.d.ts +1 -0
  36. package/dist/primitives/hooks/index.js +18 -16
  37. package/dist/primitives/hooks/use-inkeep-open-state.cjs +1 -0
  38. package/dist/primitives/hooks/use-inkeep-open-state.d.ts +18 -0
  39. package/dist/primitives/hooks/use-inkeep-open-state.js +47 -0
  40. package/dist/primitives/index.cjs +1 -1
  41. package/dist/primitives/index.js +155 -142
  42. package/dist/primitives/providers/base-events-provider.cjs +1 -1
  43. package/dist/primitives/providers/base-events-provider.js +1 -1
  44. package/dist/primitives/providers/chat-bubble-provider.cjs +1 -0
  45. package/dist/primitives/providers/chat-bubble-provider.d.ts +22 -0
  46. package/dist/primitives/providers/chat-bubble-provider.js +19 -0
  47. package/dist/primitives/providers/index.cjs +1 -1
  48. package/dist/primitives/providers/index.d.ts +1 -0
  49. package/dist/primitives/providers/index.js +27 -22
  50. package/dist/primitives/providers/sidebar-chat-provider.cjs +1 -1
  51. package/dist/primitives/providers/sidebar-chat-provider.d.ts +3 -25
  52. package/dist/primitives/providers/sidebar-chat-provider.js +23 -27
  53. package/dist/primitives/utils/component-ids.cjs +1 -1
  54. package/dist/primitives/utils/component-ids.d.ts +34 -0
  55. package/dist/primitives/utils/component-ids.js +29 -8
  56. package/dist/react/chat-button.cjs +1 -1
  57. package/dist/react/chat-button.d.ts +7 -13
  58. package/dist/react/chat-button.js +55 -46
  59. package/dist/react/embedded-chat.cjs +1 -1
  60. package/dist/react/embedded-chat.d.ts +4 -3
  61. package/dist/react/embedded-chat.js +171 -177
  62. package/dist/react/index.cjs +1 -1
  63. package/dist/react/index.js +220 -205
  64. package/dist/react/modal.chat.cjs +1 -1
  65. package/dist/react/modal.chat.d.ts +3 -3
  66. package/dist/react/modal.chat.js +10 -10
  67. package/dist/react/modal.cjs +1 -1
  68. package/dist/react/modal.d.ts +2 -2
  69. package/dist/react/modal.js +5 -5
  70. package/dist/react/modal.search-and-chat.cjs +1 -1
  71. package/dist/react/modal.search-and-chat.d.ts +2 -2
  72. package/dist/react/modal.search-and-chat.js +15 -15
  73. package/dist/react/modal.search.cjs +1 -1
  74. package/dist/react/modal.search.d.ts +2 -2
  75. package/dist/react/modal.search.js +8 -8
  76. package/dist/react/searchbar.cjs +1 -1
  77. package/dist/react/searchbar.d.ts +4 -4
  78. package/dist/react/searchbar.js +12 -12
  79. package/dist/react/sidebar-chat.d.ts +1 -3
  80. package/dist/styled/components/chat-bubble.cjs +1 -0
  81. package/dist/styled/components/chat-bubble.d.ts +5 -0
  82. package/dist/styled/components/chat-bubble.js +70 -0
  83. package/dist/styled/components/chat-button.cjs +1 -1
  84. package/dist/styled/components/chat-button.d.ts +2 -1
  85. package/dist/styled/components/chat-button.js +10 -6
  86. package/dist/styled/components/data-summary-group.cjs +1 -1
  87. package/dist/styled/components/data-summary-group.js +62 -62
  88. package/dist/styled/components/embedded-chat.cjs +1 -1
  89. package/dist/styled/components/embedded-chat.js +331 -320
  90. package/dist/styled/components/embedded-search.cjs +1 -1
  91. package/dist/styled/components/embedded-search.js +3 -3
  92. package/dist/styled/components/index.cjs +1 -1
  93. package/dist/styled/components/index.d.ts +1 -0
  94. package/dist/styled/components/index.js +14 -12
  95. package/dist/styled/components/message.cjs +1 -1
  96. package/dist/styled/components/message.js +28 -25
  97. package/dist/styled/components/ui/recipes/button.cjs +1 -1
  98. package/dist/styled/components/ui/recipes/button.js +1 -1
  99. package/dist/styled/components/ui/recipes/checkbox.cjs +1 -1
  100. package/dist/styled/components/ui/recipes/checkbox.js +1 -1
  101. package/dist/styled/components/ui/recipes/input.cjs +1 -1
  102. package/dist/styled/components/ui/recipes/input.js +2 -2
  103. package/dist/styled/components/ui/recipes/markdown.cjs +1 -1
  104. package/dist/styled/components/ui/recipes/markdown.js +3 -3
  105. package/dist/styled/components/ui/recipes/select.cjs +1 -1
  106. package/dist/styled/components/ui/recipes/select.js +2 -2
  107. package/dist/styled/index.cjs +1 -1
  108. package/dist/styled/index.js +182 -167
  109. package/dist/styled/inkeep.css.cjs +218 -99
  110. package/dist/styled/inkeep.css.js +218 -99
  111. package/dist/types/config/open-settings.d.ts +70 -0
  112. package/dist/types/events.d.ts +9 -1
  113. package/dist/types/icons/built-in.d.ts +1 -1
  114. package/dist/types/icons/custom.d.ts +1 -0
  115. package/dist/types/index.d.ts +1 -1
  116. package/dist/types/js/index.d.ts +2 -2
  117. package/package.json +1 -1
  118. package/dist/types/config/modal.d.ts +0 -33
@@ -505,6 +505,16 @@ video {
505
505
  .container {
506
506
  width: 100%;
507
507
  }
508
+ @media (min-width: 500px) {
509
+
510
+ .\\!container {
511
+ max-width: 500px !important;
512
+ }
513
+
514
+ .container {
515
+ max-width: 500px;
516
+ }
517
+ }
508
518
  @media (min-width: 640px) {
509
519
 
510
520
  .\\!container {
@@ -597,6 +607,9 @@ video {
597
607
  .left-\\[unset\\] {
598
608
  left: unset;
599
609
  }
610
+ .right-0 {
611
+ right: 0px;
612
+ }
600
613
  .right-1 {
601
614
  right: 0.25rem;
602
615
  }
@@ -722,20 +735,14 @@ video {
722
735
  .mb-6 {
723
736
  margin-bottom: 1.5rem;
724
737
  }
725
- .mb-8 {
726
- margin-bottom: 2rem;
727
- }
728
738
  .ml-1 {
729
739
  margin-left: 0.25rem;
730
740
  }
731
- .ml-1\\.5 {
732
- margin-left: 0.375rem;
733
- }
734
741
  .ml-2 {
735
742
  margin-left: 0.5rem;
736
743
  }
737
- .ml-4 {
738
- margin-left: 1rem;
744
+ .ml-3 {
745
+ margin-left: 0.75rem;
739
746
  }
740
747
  .ml-auto {
741
748
  margin-left: auto;
@@ -821,14 +828,14 @@ video {
821
828
  .hidden {
822
829
  display: none;
823
830
  }
824
- .size-10 {
825
- width: 2.5rem;
826
- height: 2.5rem;
827
- }
828
831
  .size-4 {
829
832
  width: 1rem;
830
833
  height: 1rem;
831
834
  }
835
+ .size-9 {
836
+ width: 2.25rem;
837
+ height: 2.25rem;
838
+ }
832
839
  .h-0 {
833
840
  height: 0px;
834
841
  }
@@ -838,9 +845,6 @@ video {
838
845
  .h-11 {
839
846
  height: 2.75rem;
840
847
  }
841
- .h-12 {
842
- height: 3rem;
843
- }
844
848
  .h-20 {
845
849
  height: 5rem;
846
850
  }
@@ -862,6 +866,9 @@ video {
862
866
  .h-8 {
863
867
  height: 2rem;
864
868
  }
869
+ .h-9 {
870
+ height: 2.25rem;
871
+ }
865
872
  .h-\\[24px\\] {
866
873
  height: 24px;
867
874
  }
@@ -919,9 +926,6 @@ video {
919
926
  .min-h-20 {
920
927
  min-height: 5rem;
921
928
  }
922
- .min-h-8 {
923
- min-height: 2rem;
924
- }
925
929
  .min-h-9 {
926
930
  min-height: 2.25rem;
927
931
  }
@@ -995,9 +999,6 @@ video {
995
999
  .min-w-0 {
996
1000
  min-width: 0px;
997
1001
  }
998
- .min-w-10 {
999
- min-width: 2.5rem;
1000
- }
1001
1002
  .min-w-5 {
1002
1003
  min-width: 1.25rem;
1003
1004
  }
@@ -1007,6 +1008,9 @@ video {
1007
1008
  .min-w-8 {
1008
1009
  min-width: 2rem;
1009
1010
  }
1011
+ .min-w-9 {
1012
+ min-width: 2.25rem;
1013
+ }
1010
1014
  .min-w-\\[8rem\\] {
1011
1015
  min-width: 8rem;
1012
1016
  }
@@ -1077,10 +1081,6 @@ video {
1077
1081
  --tw-rotate: 0deg;
1078
1082
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1079
1083
  }
1080
- .rotate-\\[-30deg\\] {
1081
- --tw-rotate: -30deg;
1082
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1083
- }
1084
1084
  .transform {
1085
1085
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1086
1086
  }
@@ -1274,8 +1274,8 @@ video {
1274
1274
  .gap-8 {
1275
1275
  gap: 2rem;
1276
1276
  }
1277
- .gap-\\[1rem_0\\.5rem\\] {
1278
- gap: 1rem 0.5rem;
1277
+ .gap-\\[\\.75rem_0\\.5rem\\] {
1278
+ gap: .75rem 0.5rem;
1279
1279
  }
1280
1280
  .gap-x-2 {
1281
1281
  -moz-column-gap: 0.5rem;
@@ -1302,6 +1302,11 @@ video {
1302
1302
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
1303
1303
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
1304
1304
  }
1305
+ .space-y-8 > :not([hidden]) ~ :not([hidden]) {
1306
+ --tw-space-y-reverse: 0;
1307
+ margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
1308
+ margin-bottom: calc(2rem * var(--tw-space-y-reverse));
1309
+ }
1305
1310
  .self-start {
1306
1311
  align-self: flex-start;
1307
1312
  }
@@ -1349,6 +1354,9 @@ video {
1349
1354
  .rounded {
1350
1355
  border-radius: 0.25rem;
1351
1356
  }
1357
+ .rounded-3xl {
1358
+ border-radius: 1.5rem;
1359
+ }
1352
1360
  .rounded-\\[0_0_6px_6px\\] {
1353
1361
  border-radius: 0 0 6px 6px;
1354
1362
  }
@@ -1370,9 +1378,15 @@ video {
1370
1378
  .rounded-md {
1371
1379
  border-radius: 0.375rem;
1372
1380
  }
1381
+ .rounded-none {
1382
+ border-radius: 0px;
1383
+ }
1373
1384
  .rounded-sm {
1374
1385
  border-radius: 0.125rem;
1375
1386
  }
1387
+ .rounded-br-sm {
1388
+ border-bottom-right-radius: 0.125rem;
1389
+ }
1376
1390
  .border {
1377
1391
  border-width: 1px;
1378
1392
  }
@@ -1442,9 +1456,6 @@ video {
1442
1456
  .bg-inherit {
1443
1457
  background-color: inherit;
1444
1458
  }
1445
- .bg-inkeep-primary-lighter {
1446
- background-color: var(--ikp-color-inkeep-primary-lighter);
1447
- }
1448
1459
  .bg-inkeep-primary-medium {
1449
1460
  background-color: var(--ikp-color-inkeep-primary-medium);
1450
1461
  }
@@ -1490,9 +1501,6 @@ video {
1490
1501
  .p-2 {
1491
1502
  padding: 0.5rem;
1492
1503
  }
1493
- .p-4 {
1494
- padding: 1rem;
1495
- }
1496
1504
  .p-8 {
1497
1505
  padding: 2rem;
1498
1506
  }
@@ -1657,9 +1665,6 @@ video {
1657
1665
  .text-1xs {
1658
1666
  font-size: var(--ikp-font-size-1xs);
1659
1667
  }
1660
- .text-2sm {
1661
- font-size: var(--ikp-font-size-2sm);
1662
- }
1663
1668
  .text-2xs {
1664
1669
  font-size: var(--ikp-font-size-2xs);
1665
1670
  }
@@ -1935,6 +1940,12 @@ video {
1935
1940
  .\\[--ask-ai-trigger-height\\:0px\\] {
1936
1941
  --ask-ai-trigger-height: 0px;
1937
1942
  }
1943
+ .\\[--chat-bubble-bottom\\:84px\\] {
1944
+ --chat-bubble-bottom: 84px;
1945
+ }
1946
+ .\\[--chat-bubble-margin\\:theme\\(spacing\\.5\\)\\] {
1947
+ --chat-bubble-margin: 1.25rem;
1948
+ }
1938
1949
  .\\[--end-color\\:theme\\(colors\\.gray\\.300\\)\\] {
1939
1950
  --end-color: var(--ikp-color-gray-300);
1940
1951
  }
@@ -2021,10 +2032,26 @@ video {
2021
2032
  font-size: var(--ikp-font-size-md);
2022
2033
  line-height: 1.5;
2023
2034
  color: var(--ikp-color-gray-800);
2035
+
2036
+ scrollbar-width: thin;
2037
+ scrollbar-color: var(--ikp-color-gray-300) transparent;
2038
+ -webkit-scrollbar-track {
2039
+ background: transparent;
2040
+ }
2041
+ -webkit-scrollbar-thumb {
2042
+ background-color: var(--ikp-color-gray-300);
2043
+ border-radius: 12px;
2044
+ }
2024
2045
  }
2025
2046
 
2026
2047
  [data-theme='dark'] :where(.inkeep-widget-vars) {
2027
2048
  color: var(--ikp-color-white-alpha-950);
2049
+
2050
+ scrollbar-color: var(--ikp-color-white-alpha-200) transparent;
2051
+
2052
+ -webkit-scrollbar-thumb {
2053
+ background-color: var(--ikp-color-white-alpha-200);
2054
+ }
2028
2055
  }
2029
2056
 
2030
2057
  :where(.inkeep-widget-vars) *,
@@ -2399,6 +2426,12 @@ slot {
2399
2426
  --tw-ring-offset-width: 2px;
2400
2427
  }
2401
2428
 
2429
+ .active\\:scale-90:active {
2430
+ --tw-scale-x: .9;
2431
+ --tw-scale-y: .9;
2432
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2433
+ }
2434
+
2402
2435
  .active\\:bg-gray-200:active {
2403
2436
  background-color: var(--ikp-color-gray-200);
2404
2437
  }
@@ -2415,6 +2448,16 @@ slot {
2415
2448
  background-color: var(--ikp-color-gray-900);
2416
2449
  }
2417
2450
 
2451
+ .active\\:transition-transform:active {
2452
+ transition-property: transform;
2453
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2454
+ transition-duration: 150ms;
2455
+ }
2456
+
2457
+ .active\\:duration-100:active {
2458
+ transition-duration: 100ms;
2459
+ }
2460
+
2418
2461
  .disabled\\:cursor-not-allowed:disabled {
2419
2462
  cursor: not-allowed;
2420
2463
  }
@@ -2491,8 +2534,8 @@ slot {
2491
2534
  margin-left: 0.25rem;
2492
2535
  }
2493
2536
 
2494
- .data-\\[role\\=user\\]\\:ml-0[data-role="user"] {
2495
- margin-left: 0px;
2537
+ .data-\\[role\\=user\\]\\:mb-0[data-role="user"] {
2538
+ margin-bottom: 0px;
2496
2539
  }
2497
2540
 
2498
2541
  .data-\\[role\\=user\\]\\:block[data-role="user"] {
@@ -2623,6 +2666,23 @@ slot {
2623
2666
  animation: fade-in 0.15s ease-out;
2624
2667
  }
2625
2668
 
2669
+ @keyframes chat-bubble-in {
2670
+
2671
+ 0% {
2672
+ opacity: 0;
2673
+ transform: translateY(16px) scale(0.95);
2674
+ }
2675
+
2676
+ 100% {
2677
+ opacity: 1;
2678
+ transform: translateY(0px) scale(1);
2679
+ }
2680
+ }
2681
+
2682
+ .data-\\[state\\=open\\]\\:animate-chat-bubble-in[data-state="open"] {
2683
+ animation: chat-bubble-in 300ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
2684
+ }
2685
+
2626
2686
  @keyframes fade-in {
2627
2687
 
2628
2688
  0% {
@@ -2650,7 +2710,7 @@ slot {
2650
2710
  }
2651
2711
 
2652
2712
  .data-\\[state\\=open\\]\\:data-\\[position\\=left\\]\\:animate-sidebar-in-left[data-position="left"][data-state="open"] {
2653
- animation: slide-in-left 400ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
2713
+ animation: slide-in-left 300ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
2654
2714
  }
2655
2715
 
2656
2716
  @keyframes slide-in-right {
@@ -2665,13 +2725,17 @@ slot {
2665
2725
  }
2666
2726
 
2667
2727
  .data-\\[state\\=open\\]\\:data-\\[position\\=right\\]\\:animate-sidebar-in-right[data-position="right"][data-state="open"] {
2668
- animation: slide-in-right 400ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
2728
+ animation: slide-in-right 300ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
2669
2729
  }
2670
2730
 
2671
2731
  .data-\\[input-type\\=checkbox\\]\\:flex-row[data-input-type="checkbox"] {
2672
2732
  flex-direction: row;
2673
2733
  }
2674
2734
 
2735
+ .data-\\[role\\=user\\]\\:items-end[data-role="user"] {
2736
+ align-items: flex-end;
2737
+ }
2738
+
2675
2739
  .data-\\[input-type\\=checkbox\\]\\:items-center[data-input-type="checkbox"] {
2676
2740
  align-items: center;
2677
2741
  }
@@ -2713,8 +2777,8 @@ slot {
2713
2777
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
2714
2778
  }
2715
2779
 
2716
- .data-\\[role\\=user\\]\\:bg-gray-50[data-role="user"] {
2717
- background-color: var(--ikp-color-gray-50);
2780
+ .data-\\[role\\=user\\]\\:bg-gray-100[data-role="user"] {
2781
+ background-color: var(--ikp-color-gray-100);
2718
2782
  }
2719
2783
 
2720
2784
  .data-\\[state\\=active\\]\\:bg-inkeep-primary-light-subtle[data-state="active"] {
@@ -2729,6 +2793,21 @@ slot {
2729
2793
  background-color: var(--ikp-color-inkeep-primary-lighter);
2730
2794
  }
2731
2795
 
2796
+ .data-\\[open\\]\\:px-3[data-open] {
2797
+ padding-left: 0.75rem;
2798
+ padding-right: 0.75rem;
2799
+ }
2800
+
2801
+ .data-\\[role\\=user\\]\\:px-4[data-role="user"] {
2802
+ padding-left: 1rem;
2803
+ padding-right: 1rem;
2804
+ }
2805
+
2806
+ .data-\\[role\\=user\\]\\:py-2[data-role="user"] {
2807
+ padding-top: 0.5rem;
2808
+ padding-bottom: 0.5rem;
2809
+ }
2810
+
2732
2811
  .data-\\[has-content\\]\\:pb-2[data-has-content] {
2733
2812
  padding-bottom: 0.5rem;
2734
2813
  }
@@ -2773,10 +2852,6 @@ slot {
2773
2852
  color: var(--ikp-color-inkeep-expanded-primary-700);
2774
2853
  }
2775
2854
 
2776
- .data-\\[role\\=user\\]\\:text-gray-700[data-role="user"] {
2777
- color: var(--ikp-color-gray-700);
2778
- }
2779
-
2780
2855
  .data-\\[state\\=active\\]\\:text-inkeep-expanded-primary-900[data-state="active"] {
2781
2856
  color: var(--ikp-color-inkeep-expanded-primary-900);
2782
2857
  }
@@ -2965,18 +3040,10 @@ slot {
2965
3040
  margin-bottom: 0px;
2966
3041
  }
2967
3042
 
2968
- [data-widget-md] .ikp-md\\:flex {
2969
- display: flex;
2970
- }
2971
-
2972
3043
  [data-widget-md] .ikp-md\\:hidden {
2973
3044
  display: none;
2974
3045
  }
2975
3046
 
2976
- [data-widget-md] .ikp-md\\:h-12 {
2977
- height: 3rem;
2978
- }
2979
-
2980
3047
  [data-widget-md] .ikp-md\\:flex-row {
2981
3048
  flex-direction: row;
2982
3049
  }
@@ -2999,8 +3066,13 @@ slot {
2999
3066
  padding-bottom: 3.5rem;
3000
3067
  }
3001
3068
 
3002
- [data-widget-md] .ikp-md\\:pb-14 {
3003
- padding-bottom: 3.5rem;
3069
+ [data-widget-md] .ikp-md\\:py-6 {
3070
+ padding-top: 1.5rem;
3071
+ padding-bottom: 1.5rem;
3072
+ }
3073
+
3074
+ [data-widget-md] .ikp-md\\:pb-12 {
3075
+ padding-bottom: 3rem;
3004
3076
  }
3005
3077
 
3006
3078
  [data-widget-md] .ikp-md\\:pl-3 {
@@ -3015,12 +3087,6 @@ slot {
3015
3087
  padding-right: 1.5rem;
3016
3088
  }
3017
3089
 
3018
- .hover\\:scale-110:hover:not(:disabled) {
3019
- --tw-scale-x: 1.1;
3020
- --tw-scale-y: 1.1;
3021
- transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3022
- }
3023
-
3024
3090
  .hover\\:border-gray-300:hover:not(:disabled) {
3025
3091
  border-color: var(--ikp-color-gray-300);
3026
3092
  }
@@ -3241,10 +3307,6 @@ slot {
3241
3307
  background-color: var(--ikp-color-gray-dark-600);
3242
3308
  }
3243
3309
 
3244
- .dark\\:bg-gray-dark-700:is([data-theme="dark"] *) {
3245
- background-color: var(--ikp-color-gray-dark-700);
3246
- }
3247
-
3248
3310
  .dark\\:bg-gray-dark-800:is([data-theme="dark"] *) {
3249
3311
  background-color: var(--ikp-color-gray-dark-800);
3250
3312
  }
@@ -3512,6 +3574,10 @@ slot {
3512
3574
  background-color: var(--ikp-color-inkeep-expanded-primary-300);
3513
3575
  }
3514
3576
 
3577
+ .data-\\[role\\=user\\]\\:dark\\:bg-white-alpha-100:is([data-theme="dark"] *)[data-role="user"] {
3578
+ background-color: var(--ikp-color-white-alpha-100);
3579
+ }
3580
+
3515
3581
  .dark\\:data-\\[active\\]\\:text-white-alpha-600[data-active]:is([data-theme="dark"] *) {
3516
3582
  color: var(--ikp-color-white-alpha-600);
3517
3583
  }
@@ -3528,10 +3594,6 @@ slot {
3528
3594
  color: var(--ikp-color-inkeep-expanded-primary-300);
3529
3595
  }
3530
3596
 
3531
- .dark\\:data-\\[role\\=user\\]\\:text-white-alpha-700[data-role="user"]:is([data-theme="dark"] *) {
3532
- color: var(--ikp-color-white-alpha-700);
3533
- }
3534
-
3535
3597
  .dark\\:data-\\[state\\=active\\]\\:text-inkeep-expanded-primary-300[data-state="active"]:is([data-theme="dark"] *) {
3536
3598
  color: var(--ikp-color-inkeep-expanded-primary-300);
3537
3599
  }
@@ -3694,6 +3756,64 @@ slot {
3694
3756
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
3695
3757
  }
3696
3758
 
3759
+ @media (min-width: 500px) {
3760
+
3761
+ .xs\\:bottom-\\[var\\(--chat-bubble-bottom\\)\\] {
3762
+ bottom: var(--chat-bubble-bottom);
3763
+ }
3764
+
3765
+ .xs\\:right-5 {
3766
+ right: 1.25rem;
3767
+ }
3768
+
3769
+ .xs\\:h-full {
3770
+ height: 100%;
3771
+ }
3772
+
3773
+ .xs\\:max-h-\\[min\\(650px\\2c calc\\(100\\%-var\\(--chat-bubble-bottom\\)-var\\(--chat-bubble-margin\\)\\)\\)\\] {
3774
+ max-height: min(650px,calc(100% - var(--chat-bubble-bottom) - var(--chat-bubble-margin)));
3775
+ }
3776
+
3777
+ .xs\\:w-\\[440px\\] {
3778
+ width: 440px;
3779
+ }
3780
+
3781
+ .xs\\:origin-bottom-right {
3782
+ transform-origin: bottom right;
3783
+ }
3784
+
3785
+ .xs\\:rounded-xl {
3786
+ border-radius: 0.75rem;
3787
+ }
3788
+
3789
+ .xs\\:shadow-2xl {
3790
+ --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
3791
+ --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
3792
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
3793
+ }
3794
+
3795
+ .xs\\:data-\\[role\\=user\\]\\:max-w-\\[75\\%\\][data-role="user"] {
3796
+ max-width: 75%;
3797
+ }
3798
+
3799
+ @keyframes chat-bubble-in-desktop {
3800
+
3801
+ 0% {
3802
+ opacity: 0;
3803
+ transform: translateY(8px) scale(0.9);
3804
+ }
3805
+
3806
+ 100% {
3807
+ opacity: 1;
3808
+ transform: translateY(0px) scale(1);
3809
+ }
3810
+ }
3811
+
3812
+ .xs\\:data-\\[state\\=open\\]\\:animate-chat-bubble-in-desktop[data-state="open"] {
3813
+ animation: chat-bubble-in-desktop 300ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
3814
+ }
3815
+ }
3816
+
3697
3817
  @media (min-width: 640px) {
3698
3818
 
3699
3819
  .sm\\:w-\\[420px\\] {
@@ -3736,10 +3856,6 @@ slot {
3736
3856
  font-size: var(--ikp-font-size-4xl);
3737
3857
  }
3738
3858
 
3739
- .md\\:text-sm {
3740
- font-size: var(--ikp-font-size-sm);
3741
- }
3742
-
3743
3859
  .md\\:leading-5 {
3744
3860
  line-height: 1.25rem;
3745
3861
  }
@@ -3779,31 +3895,10 @@ slot {
3779
3895
  }
3780
3896
  }
3781
3897
 
3782
- .\\[\\&\\:not\\(\\:last-child\\)\\]\\:after\\:absolute:not(:last-child)::after {
3783
- content: var(--tw-content);
3784
- position: absolute;
3785
- }
3786
-
3787
- .\\[\\&\\:not\\(\\:last-child\\)\\]\\:after\\:inset-x-6:not(:last-child)::after {
3788
- content: var(--tw-content);
3789
- left: 1.5rem;
3790
- right: 1.5rem;
3791
- }
3792
-
3793
- .\\[\\&\\:not\\(\\:last-child\\)\\]\\:after\\:bottom-0:not(:last-child)::after {
3794
- content: var(--tw-content);
3795
- bottom: 0px;
3796
- }
3797
-
3798
- .\\[\\&\\:not\\(\\:last-child\\)\\]\\:after\\:border-b:not(:last-child)::after {
3799
- content: var(--tw-content);
3800
- border-bottom-width: 1px;
3801
- }
3802
-
3803
- [data-widget-md] .ikp-md\\:\\[\\&\\:not\\(\\:last-child\\)\\]\\:after\\:inset-x-8:not(:last-child)::after {
3804
- content: var(--tw-content);
3805
- left: 2rem;
3806
- right: 2rem;
3898
+ .hover\\:\\[\\&\\:not\\(\\:active\\)\\]\\:scale-110:not(:active):hover:not(:disabled) {
3899
+ --tw-scale-x: 1.1;
3900
+ --tw-scale-y: 1.1;
3901
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
3807
3902
  }
3808
3903
 
3809
3904
  .focus\\:\\[\\&\\:not\\(\\[data-invalid\\]\\)\\]\\:border-\\[--focus-border-color\\]:not([data-invalid]):focus {
@@ -3900,6 +3995,10 @@ slot {
3900
3995
  max-height: 100dvh;
3901
3996
  }
3902
3997
 
3998
+ .\\[\\&\\[data-role\\=user\\]\\>p\\]\\:mb-0[data-role=user]>p {
3999
+ margin-bottom: 0px;
4000
+ }
4001
+
3903
4002
  .\\[\\&_a\\]\\:inline a {
3904
4003
  display: inline;
3905
4004
  }
@@ -3962,6 +4061,26 @@ slot {
3962
4061
  width: 1rem;
3963
4062
  }
3964
4063
 
4064
+ [data-chat-bubble] .\\[\\[data-chat-bubble\\]_\\&\\]\\:h-full {
4065
+ height: 100%;
4066
+ }
4067
+
4068
+ [data-chat-bubble] .\\[\\[data-chat-bubble\\]_\\&\\]\\:max-h-\\[unset\\] {
4069
+ max-height: unset;
4070
+ }
4071
+
4072
+ [data-chat-bubble] .\\[\\[data-chat-bubble\\]_\\&\\]\\:w-full {
4073
+ width: 100%;
4074
+ }
4075
+
4076
+ [data-chat-bubble] .\\[\\[data-chat-bubble\\]_\\&\\]\\:overscroll-contain {
4077
+ overscroll-behavior: contain;
4078
+ }
4079
+
4080
+ [data-chat-bubble] .\\[\\[data-chat-bubble\\]_\\&\\]\\:rounded-\\[inherit\\] {
4081
+ border-radius: inherit;
4082
+ }
4083
+
3965
4084
  [data-mobile] .\\[\\[data-mobile\\]_\\&\\]\\:h-\\[calc\\(100vh-var\\(--input-height\\)-var\\(--footer-height\\)-var\\(--ask-ai-trigger-height\\)\\)\\] {
3966
4085
  height: calc(100vh - var(--input-height) - var(--footer-height) - var(--ask-ai-trigger-height));
3967
4086
  }