@inkeep/agents-ui 0.15.12 → 0.15.14
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.cjs +1 -1
- package/dist/index.js +230 -220
- package/dist/primitives/atoms/combobox.cjs +1 -0
- package/dist/primitives/atoms/combobox.js +275 -0
- package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +2 -0
- package/dist/primitives/atoms/icons/built-in-icons.js +33 -31
- package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/inkeep-default-icons.js +4 -1
- package/dist/primitives/components/chat-history/index.cjs +1 -0
- package/dist/primitives/components/chat-history/index.d.ts +27 -0
- package/dist/primitives/components/chat-history/index.js +105 -0
- package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +23 -6
- package/dist/primitives/components/embedded-chat/use-captcha.js +67 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +12 -3
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +252 -144
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +2 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +127 -90
- package/dist/primitives/components/embedded-chat.cjs +4 -4
- package/dist/primitives/components/embedded-chat.d.ts +26 -2
- package/dist/primitives/components/embedded-chat.js +1304 -1149
- package/dist/primitives/components/index.cjs +1 -1
- package/dist/primitives/components/index.d.ts +1 -0
- package/dist/primitives/components/index.js +20 -18
- package/dist/primitives/hooks/use-anonymous-session.cjs +1 -0
- package/dist/primitives/hooks/use-anonymous-session.d.ts +12 -0
- package/dist/primitives/hooks/use-anonymous-session.js +57 -0
- package/dist/primitives/hooks/use-conversation-loader.cjs +1 -0
- package/dist/primitives/hooks/use-conversation-loader.d.ts +13 -0
- package/dist/primitives/hooks/use-conversation-loader.js +36 -0
- package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -0
- package/dist/primitives/hooks/use-inkeep-api-client.d.ts +33 -0
- package/dist/primitives/hooks/use-inkeep-api-client.js +87 -0
- package/dist/primitives/hooks/use-local-storage.cjs +1 -0
- package/dist/primitives/hooks/use-local-storage.d.ts +8 -0
- package/dist/primitives/hooks/use-local-storage.js +26 -0
- package/dist/primitives/hooks/use-simple-scroll.cjs +1 -1
- package/dist/primitives/hooks/use-simple-scroll.d.ts +12 -1
- package/dist/primitives/hooks/use-simple-scroll.js +45 -12
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +157 -151
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-history-provider.cjs +1 -0
- package/dist/primitives/providers/chat-history-provider.d.ts +32 -0
- package/dist/primitives/providers/chat-history-provider.js +105 -0
- package/dist/primitives/providers/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +1 -0
- package/dist/primitives/providers/index.js +55 -52
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +56 -0
- package/dist/primitives/utils/component-ids.js +31 -1
- package/dist/primitives/utils/default-settings.cjs +1 -1
- package/dist/primitives/utils/default-settings.d.ts +2 -0
- package/dist/primitives/utils/default-settings.js +6 -4
- package/dist/primitives/utils/form.cjs +1 -1
- package/dist/primitives/utils/form.d.ts +1 -1
- package/dist/primitives/utils/form.js +3 -1
- package/dist/react/chat-button-modal.cjs +1 -0
- package/dist/react/chat-button-modal.d.ts +22 -0
- package/dist/react/chat-button-modal.js +41 -0
- package/dist/react/chat-button.cjs +1 -1
- package/dist/react/chat-button.js +42 -38
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +285 -240
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +230 -220
- package/dist/react/sidebar-chat.cjs +1 -1
- package/dist/react/sidebar-chat.js +26 -22
- package/dist/styled/components/chat-bubble.cjs +1 -1
- package/dist/styled/components/chat-bubble.js +1 -1
- package/dist/styled/components/chat-history.cjs +1 -0
- package/dist/styled/components/chat-history.d.ts +15 -0
- package/dist/styled/components/chat-history.js +197 -0
- package/dist/styled/components/data-summary-group.cjs +1 -1
- package/dist/styled/components/data-summary-group.js +24 -24
- package/dist/styled/components/embedded-chat/session-loading.cjs +1 -0
- package/dist/styled/components/embedded-chat/session-loading.d.ts +1 -0
- package/dist/styled/components/embedded-chat/session-loading.js +26 -0
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.d.ts +22 -1
- package/dist/styled/components/embedded-chat.js +735 -565
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +1 -1
- package/dist/styled/components/index.cjs +1 -1
- package/dist/styled/components/index.d.ts +1 -0
- package/dist/styled/components/index.js +22 -20
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.js +191 -183
- package/dist/styled/components/sidebar-chat.cjs +1 -1
- package/dist/styled/components/sidebar-chat.js +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.cjs +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.js +3 -2
- package/dist/styled/components/ui/recipes/combobox.cjs +1 -0
- package/dist/styled/components/ui/recipes/combobox.d.ts +4 -0
- package/dist/styled/components/ui/recipes/combobox.js +57 -0
- package/dist/styled/components/ui/recipes/index.cjs +1 -1
- package/dist/styled/components/ui/recipes/index.d.ts +1 -0
- package/dist/styled/components/ui/recipes/index.js +29 -27
- package/dist/styled/components/ui/recipes/modal.d.ts +1 -1
- package/dist/styled/components/ui/recipes/scrollable.d.ts +1 -1
- package/dist/styled/components/ui/recipes/select.d.ts +1 -1
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +193 -185
- package/dist/styled/inkeep.css.cjs +328 -6
- package/dist/styled/inkeep.css.js +328 -6
- package/dist/types/config/ai.d.ts +17 -1
- package/dist/types/config/base.d.ts +21 -0
- package/dist/types/config/settings/form.d.ts +9 -1
- package/dist/types/icons/built-in.d.ts +1 -1
- package/dist/types/icons/custom.d.ts +3 -0
- package/package.json +6 -5
|
@@ -571,6 +571,9 @@ video {
|
|
|
571
571
|
.visible {
|
|
572
572
|
visibility: visible;
|
|
573
573
|
}
|
|
574
|
+
.static {
|
|
575
|
+
position: static;
|
|
576
|
+
}
|
|
574
577
|
.fixed {
|
|
575
578
|
position: fixed;
|
|
576
579
|
}
|
|
@@ -825,6 +828,9 @@ video {
|
|
|
825
828
|
.contents {
|
|
826
829
|
display: contents;
|
|
827
830
|
}
|
|
831
|
+
.\\!hidden {
|
|
832
|
+
display: none !important;
|
|
833
|
+
}
|
|
828
834
|
.hidden {
|
|
829
835
|
display: none;
|
|
830
836
|
}
|
|
@@ -836,6 +842,9 @@ video {
|
|
|
836
842
|
width: 2.25rem;
|
|
837
843
|
height: 2.25rem;
|
|
838
844
|
}
|
|
845
|
+
.\\!h-auto {
|
|
846
|
+
height: auto !important;
|
|
847
|
+
}
|
|
839
848
|
.h-0 {
|
|
840
849
|
height: 0px;
|
|
841
850
|
}
|
|
@@ -845,6 +854,9 @@ video {
|
|
|
845
854
|
.h-11 {
|
|
846
855
|
height: 2.75rem;
|
|
847
856
|
}
|
|
857
|
+
.h-14 {
|
|
858
|
+
height: 3.5rem;
|
|
859
|
+
}
|
|
848
860
|
.h-20 {
|
|
849
861
|
height: 5rem;
|
|
850
862
|
}
|
|
@@ -908,6 +920,9 @@ video {
|
|
|
908
920
|
.max-h-\\[200px\\] {
|
|
909
921
|
max-height: 200px;
|
|
910
922
|
}
|
|
923
|
+
.max-h-\\[min\\(24rem\\2c var\\(--available-height\\)\\)\\] {
|
|
924
|
+
max-height: min(24rem,var(--available-height));
|
|
925
|
+
}
|
|
911
926
|
.max-h-\\[min\\(85vh\\2c 850px\\)\\] {
|
|
912
927
|
max-height: min(85vh,850px);
|
|
913
928
|
}
|
|
@@ -944,21 +959,36 @@ video {
|
|
|
944
959
|
.w-2\\.5 {
|
|
945
960
|
width: 0.625rem;
|
|
946
961
|
}
|
|
962
|
+
.w-2\\/5 {
|
|
963
|
+
width: 40%;
|
|
964
|
+
}
|
|
965
|
+
.w-20 {
|
|
966
|
+
width: 5rem;
|
|
967
|
+
}
|
|
947
968
|
.w-3 {
|
|
948
969
|
width: 0.75rem;
|
|
949
970
|
}
|
|
950
971
|
.w-3\\.5 {
|
|
951
972
|
width: 0.875rem;
|
|
952
973
|
}
|
|
974
|
+
.w-3\\/4 {
|
|
975
|
+
width: 75%;
|
|
976
|
+
}
|
|
953
977
|
.w-4 {
|
|
954
978
|
width: 1rem;
|
|
955
979
|
}
|
|
980
|
+
.w-4\\/6 {
|
|
981
|
+
width: 66.666667%;
|
|
982
|
+
}
|
|
956
983
|
.w-40 {
|
|
957
984
|
width: 10rem;
|
|
958
985
|
}
|
|
959
986
|
.w-5 {
|
|
960
987
|
width: 1.25rem;
|
|
961
988
|
}
|
|
989
|
+
.w-5\\/6 {
|
|
990
|
+
width: 83.333333%;
|
|
991
|
+
}
|
|
962
992
|
.w-6 {
|
|
963
993
|
width: 1.5rem;
|
|
964
994
|
}
|
|
@@ -1020,6 +1050,9 @@ video {
|
|
|
1020
1050
|
.min-w-\\[var\\(--radix-select-trigger-width\\)\\] {
|
|
1021
1051
|
min-width: var(--radix-select-trigger-width);
|
|
1022
1052
|
}
|
|
1053
|
+
.min-w-\\[var\\(--reference-width\\2c 8rem\\)\\] {
|
|
1054
|
+
min-width: var(--reference-width,8rem);
|
|
1055
|
+
}
|
|
1023
1056
|
.max-w-2xl {
|
|
1024
1057
|
max-width: 42rem;
|
|
1025
1058
|
}
|
|
@@ -1041,6 +1074,9 @@ video {
|
|
|
1041
1074
|
.flex-\\[0_0_100\\%\\] {
|
|
1042
1075
|
flex: 0 0 100%;
|
|
1043
1076
|
}
|
|
1077
|
+
.flex-shrink {
|
|
1078
|
+
flex-shrink: 1;
|
|
1079
|
+
}
|
|
1044
1080
|
.flex-shrink-0 {
|
|
1045
1081
|
flex-shrink: 0;
|
|
1046
1082
|
}
|
|
@@ -1050,6 +1086,9 @@ video {
|
|
|
1050
1086
|
.shrink-0 {
|
|
1051
1087
|
flex-shrink: 0;
|
|
1052
1088
|
}
|
|
1089
|
+
.flex-grow-0 {
|
|
1090
|
+
flex-grow: 0;
|
|
1091
|
+
}
|
|
1053
1092
|
.grow-0 {
|
|
1054
1093
|
flex-grow: 0;
|
|
1055
1094
|
}
|
|
@@ -1119,6 +1158,15 @@ video {
|
|
|
1119
1158
|
.animate-checkbox-check {
|
|
1120
1159
|
animation: checkbox-check 200ms linear;
|
|
1121
1160
|
}
|
|
1161
|
+
@keyframes pulse {
|
|
1162
|
+
|
|
1163
|
+
50% {
|
|
1164
|
+
opacity: .5;
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
.animate-pulse {
|
|
1168
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1169
|
+
}
|
|
1122
1170
|
@keyframes shimmer {
|
|
1123
1171
|
|
|
1124
1172
|
0% {
|
|
@@ -1319,6 +1367,9 @@ video {
|
|
|
1319
1367
|
.justify-self-center {
|
|
1320
1368
|
justify-self: center;
|
|
1321
1369
|
}
|
|
1370
|
+
.overflow-auto {
|
|
1371
|
+
overflow: auto;
|
|
1372
|
+
}
|
|
1322
1373
|
.overflow-hidden {
|
|
1323
1374
|
overflow: hidden;
|
|
1324
1375
|
}
|
|
@@ -1390,6 +1441,9 @@ video {
|
|
|
1390
1441
|
.border {
|
|
1391
1442
|
border-width: 1px;
|
|
1392
1443
|
}
|
|
1444
|
+
.border-0 {
|
|
1445
|
+
border-width: 0px;
|
|
1446
|
+
}
|
|
1393
1447
|
.border-2 {
|
|
1394
1448
|
border-width: 2px;
|
|
1395
1449
|
}
|
|
@@ -1617,6 +1671,9 @@ video {
|
|
|
1617
1671
|
.pl-7 {
|
|
1618
1672
|
padding-left: 1.75rem;
|
|
1619
1673
|
}
|
|
1674
|
+
.pl-8 {
|
|
1675
|
+
padding-left: 2rem;
|
|
1676
|
+
}
|
|
1620
1677
|
.pr-10 {
|
|
1621
1678
|
padding-right: 2.5rem;
|
|
1622
1679
|
}
|
|
@@ -2444,6 +2501,10 @@ slot {
|
|
|
2444
2501
|
--shadow-color: #3b82f6;
|
|
2445
2502
|
}
|
|
2446
2503
|
|
|
2504
|
+
.focus-visible\\:bg-gray-50:focus-visible {
|
|
2505
|
+
background-color: var(--ikp-color-gray-50);
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2447
2508
|
.focus-visible\\:outline-none:focus-visible {
|
|
2448
2509
|
outline: 2px solid transparent;
|
|
2449
2510
|
outline-offset: 2px;
|
|
@@ -2543,6 +2604,10 @@ slot {
|
|
|
2543
2604
|
opacity: 1;
|
|
2544
2605
|
}
|
|
2545
2606
|
|
|
2607
|
+
.group:disabled .group-disabled\\:opacity-60 {
|
|
2608
|
+
opacity: 0.6;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2546
2611
|
.has-\\[\\[data-dual-pane-search-expanded\\]\\]\\:w-\\[min\\(90vw\\2c 1000px\\)\\]:has([data-dual-pane-search-expanded]) {
|
|
2547
2612
|
width: min(90vw,1000px);
|
|
2548
2613
|
}
|
|
@@ -2779,10 +2844,18 @@ slot {
|
|
|
2779
2844
|
animation: slide-in-right 300ms cubic-bezier(0.05, 0.7, 0.1, 1.0);
|
|
2780
2845
|
}
|
|
2781
2846
|
|
|
2847
|
+
.data-\\[chat-history-layout\\=sidepane\\]\\:flex-row[data-chat-history-layout="sidepane"] {
|
|
2848
|
+
flex-direction: row;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2782
2851
|
.data-\\[input-type\\=checkbox\\]\\:flex-row[data-input-type="checkbox"] {
|
|
2783
2852
|
flex-direction: row;
|
|
2784
2853
|
}
|
|
2785
2854
|
|
|
2855
|
+
.data-\\[input-type\\=checkbox\\]\\:flex-wrap[data-input-type="checkbox"] {
|
|
2856
|
+
flex-wrap: wrap;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2786
2859
|
.data-\\[role\\=user\\]\\:items-end[data-role="user"] {
|
|
2787
2860
|
align-items: flex-end;
|
|
2788
2861
|
}
|
|
@@ -2827,11 +2900,19 @@ slot {
|
|
|
2827
2900
|
border-color: var(--ikp-color-gray-1000);
|
|
2828
2901
|
}
|
|
2829
2902
|
|
|
2903
|
+
.data-\\[active\\]\\:bg-gray-100[data-active] {
|
|
2904
|
+
background-color: var(--ikp-color-gray-100);
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2830
2907
|
.data-\\[active\\]\\:bg-white[data-active] {
|
|
2831
2908
|
--tw-bg-opacity: 1;
|
|
2832
2909
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2833
2910
|
}
|
|
2834
2911
|
|
|
2912
|
+
.data-\\[highlighted\\]\\:bg-gray-100[data-highlighted] {
|
|
2913
|
+
background-color: var(--ikp-color-gray-100);
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2835
2916
|
.data-\\[role\\=user\\]\\:bg-gray-100[data-role="user"] {
|
|
2836
2917
|
background-color: var(--ikp-color-gray-100);
|
|
2837
2918
|
}
|
|
@@ -2879,6 +2960,10 @@ slot {
|
|
|
2879
2960
|
padding-left: 0.25rem;
|
|
2880
2961
|
}
|
|
2881
2962
|
|
|
2963
|
+
.data-\\[show-widget-toggle\\=\\"\\"\\]\\:pt-4[data-show-widget-toggle=""] {
|
|
2964
|
+
padding-top: 1rem;
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2882
2967
|
.data-\\[is-numeric\\=true\\]\\:text-end[data-is-numeric="true"] {
|
|
2883
2968
|
text-align: end;
|
|
2884
2969
|
}
|
|
@@ -2887,6 +2972,10 @@ slot {
|
|
|
2887
2972
|
font-weight: 600;
|
|
2888
2973
|
}
|
|
2889
2974
|
|
|
2975
|
+
.data-\\[state\\=checked\\]\\:font-medium[data-state="checked"] {
|
|
2976
|
+
font-weight: 500;
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2890
2979
|
.data-\\[active\\]\\:text-gray-600[data-active] {
|
|
2891
2980
|
color: var(--ikp-color-gray-600);
|
|
2892
2981
|
}
|
|
@@ -2938,6 +3027,18 @@ slot {
|
|
|
2938
3027
|
color: var(--ikp-color-inkeep-primary-medium);
|
|
2939
3028
|
}
|
|
2940
3029
|
|
|
3030
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::-moz-placeholder {
|
|
3031
|
+
--tw-placeholder-opacity: 0.8;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::placeholder {
|
|
3035
|
+
--tw-placeholder-opacity: 0.8;
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
.data-\\[disabled\\]\\:opacity-30[data-disabled] {
|
|
3039
|
+
opacity: 0.3;
|
|
3040
|
+
}
|
|
3041
|
+
|
|
2941
3042
|
.data-\\[disabled\\]\\:opacity-50[data-disabled] {
|
|
2942
3043
|
opacity: 0.5;
|
|
2943
3044
|
}
|
|
@@ -3088,6 +3189,62 @@ slot {
|
|
|
3088
3189
|
background-image: conic-gradient(transparent,var(--ikp-color-inkeep-expanded-primary-600),transparent 30%);
|
|
3089
3190
|
}
|
|
3090
3191
|
|
|
3192
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:\\!block {
|
|
3193
|
+
display: block !important;
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:\\!hidden {
|
|
3197
|
+
display: none !important;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:hidden {
|
|
3201
|
+
display: none;
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
.group\\/chat-history[data-chat-history-layout="stack"] .group-data-\\[chat-history-layout\\=stack\\]\\/chat-history\\:\\!hidden {
|
|
3205
|
+
display: none !important;
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
.group\\/chat-history[data-stack-history-open] .group-data-\\[stack-history-open\\]\\/chat-history\\:\\!hidden {
|
|
3209
|
+
display: none !important;
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:w-64 {
|
|
3213
|
+
width: 16rem;
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
.group[data-input-type="checkbox"] .group-data-\\[input-type\\=checkbox\\]\\:w-full {
|
|
3217
|
+
width: 100%;
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:min-w-0 {
|
|
3221
|
+
min-width: 0px;
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:max-w-64 {
|
|
3225
|
+
max-width: 16rem;
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3228
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:flex-1 {
|
|
3229
|
+
flex: 1 1 0%;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:shrink-0 {
|
|
3233
|
+
flex-shrink: 0;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:grow-0 {
|
|
3237
|
+
flex-grow: 0;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:basis-64 {
|
|
3241
|
+
flex-basis: 16rem;
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3244
|
+
.group[data-input-type="checkbox"] .group-data-\\[input-type\\=checkbox\\]\\:basis-full {
|
|
3245
|
+
flex-basis: 100%;
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3091
3248
|
.group[data-expanded="true"] .group-data-\\[expanded\\=true\\]\\:rotate-180 {
|
|
3092
3249
|
--tw-rotate: 180deg;
|
|
3093
3250
|
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));
|
|
@@ -3098,6 +3255,14 @@ slot {
|
|
|
3098
3255
|
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));
|
|
3099
3256
|
}
|
|
3100
3257
|
|
|
3258
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:border-r {
|
|
3259
|
+
border-right-width: 1px;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:border-gray-200 {
|
|
3263
|
+
border-color: var(--ikp-color-gray-200);
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3101
3266
|
.group[data-expanded="true"] .group-data-\\[expanded\\=true\\]\\:opacity-0 {
|
|
3102
3267
|
opacity: 0;
|
|
3103
3268
|
}
|
|
@@ -3478,6 +3643,11 @@ slot {
|
|
|
3478
3643
|
color: rgb(252 165 165 / var(--tw-text-opacity, 1));
|
|
3479
3644
|
}
|
|
3480
3645
|
|
|
3646
|
+
.dark\\:text-white:is([data-theme="dark"] *) {
|
|
3647
|
+
--tw-text-opacity: 1;
|
|
3648
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3481
3651
|
.dark\\:text-white-alpha-500:is([data-theme="dark"] *) {
|
|
3482
3652
|
color: var(--ikp-color-white-alpha-500);
|
|
3483
3653
|
}
|
|
@@ -3498,6 +3668,10 @@ slot {
|
|
|
3498
3668
|
color: var(--ikp-color-white-alpha-950);
|
|
3499
3669
|
}
|
|
3500
3670
|
|
|
3671
|
+
.dark\\:opacity-60:is([data-theme="dark"] *) {
|
|
3672
|
+
opacity: 0.6;
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3501
3675
|
.dark\\:shadow-none:is([data-theme="dark"] *) {
|
|
3502
3676
|
--tw-shadow: 0 0 #0000;
|
|
3503
3677
|
--tw-shadow-colored: 0 0 #0000;
|
|
@@ -3553,6 +3727,14 @@ slot {
|
|
|
3553
3727
|
color: var(--ikp-color-gray-dark-200);
|
|
3554
3728
|
}
|
|
3555
3729
|
|
|
3730
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::-moz-placeholder {
|
|
3731
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::placeholder {
|
|
3735
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3736
|
+
}
|
|
3737
|
+
|
|
3556
3738
|
.dark\\:before\\:bg-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3557
3739
|
content: var(--tw-content);
|
|
3558
3740
|
background-color: var(--ikp-color-gray-dark-950);
|
|
@@ -3596,6 +3778,10 @@ slot {
|
|
|
3596
3778
|
outline-color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3597
3779
|
}
|
|
3598
3780
|
|
|
3781
|
+
.dark\\:focus-visible\\:bg-gray-dark-900:focus-visible:is([data-theme="dark"] *) {
|
|
3782
|
+
background-color: var(--ikp-color-gray-dark-900);
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3599
3785
|
.dark\\:focus-visible\\:ring-white-alpha-900:focus-visible:is([data-theme="dark"] *) {
|
|
3600
3786
|
--tw-ring-color: var(--ikp-color-white-alpha-900);
|
|
3601
3787
|
}
|
|
@@ -3620,8 +3806,9 @@ slot {
|
|
|
3620
3806
|
background-color: var(--ikp-color-white-alpha-400);
|
|
3621
3807
|
}
|
|
3622
3808
|
|
|
3623
|
-
.dark\\:disabled\\:text-white
|
|
3624
|
-
|
|
3809
|
+
.dark\\:disabled\\:text-white:disabled:is([data-theme="dark"] *) {
|
|
3810
|
+
--tw-text-opacity: 1;
|
|
3811
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3625
3812
|
}
|
|
3626
3813
|
|
|
3627
3814
|
.group:hover .dark\\:group-hover\\:text-white-alpha-600:is([data-theme="dark"] *) {
|
|
@@ -3640,6 +3827,14 @@ slot {
|
|
|
3640
3827
|
background-color: var(--ikp-color-gray-dark-700);
|
|
3641
3828
|
}
|
|
3642
3829
|
|
|
3830
|
+
.dark\\:data-\\[active\\]\\:bg-gray-dark-800[data-active]:is([data-theme="dark"] *) {
|
|
3831
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3832
|
+
}
|
|
3833
|
+
|
|
3834
|
+
.dark\\:data-\\[highlighted\\]\\:bg-gray-dark-800[data-highlighted]:is([data-theme="dark"] *) {
|
|
3835
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3643
3838
|
.dark\\:data-\\[state\\=active\\]\\:bg-white-alpha-100[data-state="active"]:is([data-theme="dark"] *) {
|
|
3644
3839
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3645
3840
|
}
|
|
@@ -3711,11 +3906,19 @@ slot {
|
|
|
3711
3906
|
color: var(--ikp-color-gray-dark-950);
|
|
3712
3907
|
}
|
|
3713
3908
|
|
|
3909
|
+
.dark\\:data-\\[required\\]\\:after\\:\\[content\\:\\"\\*\\"\\][data-required]:is([data-theme="dark"] *)::after {
|
|
3910
|
+
content: "*";
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3714
3913
|
.dark\\:data-\\[highlight\\]\\:first\\:before\\:\\[background-image\\:conic-gradient\\(transparent\\2c theme\\(colors\\.inkeep-expanded-primary\\.300\\)\\2c transparent_30\\%\\)\\]:first-child[data-highlight]:is([data-theme="dark"] *)::before {
|
|
3715
3914
|
content: var(--tw-content);
|
|
3716
3915
|
background-image: conic-gradient(transparent,var(--ikp-color-inkeep-expanded-primary-300),transparent 30%);
|
|
3717
3916
|
}
|
|
3718
3917
|
|
|
3918
|
+
.group\\/chat-history[data-chat-history-layout="sidepane"] .dark\\:group-data-\\[chat-history-layout\\=sidepane\\]\\/chat-history\\:border-gray-dark-800:is([data-theme="dark"] *) {
|
|
3919
|
+
border-color: var(--ikp-color-gray-dark-800);
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3719
3922
|
.dark\\:hover\\:border-white-alpha-300:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3720
3923
|
border-color: var(--ikp-color-white-alpha-300);
|
|
3721
3924
|
}
|
|
@@ -3724,6 +3927,10 @@ slot {
|
|
|
3724
3927
|
background-color: var(--ikp-color-gray-dark-800);
|
|
3725
3928
|
}
|
|
3726
3929
|
|
|
3930
|
+
.dark\\:hover\\:bg-gray-dark-900:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3931
|
+
background-color: var(--ikp-color-gray-dark-900);
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3727
3934
|
.dark\\:hover\\:bg-inkeep-expanded-primary-200:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3728
3935
|
background-color: var(--ikp-color-inkeep-expanded-primary-200);
|
|
3729
3936
|
}
|
|
@@ -3752,6 +3959,11 @@ slot {
|
|
|
3752
3959
|
color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3753
3960
|
}
|
|
3754
3961
|
|
|
3962
|
+
.dark\\:hover\\:text-white:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3963
|
+
--tw-text-opacity: 1;
|
|
3964
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3965
|
+
}
|
|
3966
|
+
|
|
3755
3967
|
.dark\\:hover\\:text-white-alpha-500:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3756
3968
|
color: var(--ikp-color-white-alpha-500);
|
|
3757
3969
|
}
|
|
@@ -3772,6 +3984,10 @@ slot {
|
|
|
3772
3984
|
color: var(--ikp-color-white-alpha-950);
|
|
3773
3985
|
}
|
|
3774
3986
|
|
|
3987
|
+
.dark\\:hover\\:opacity-95:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3988
|
+
opacity: 0.95;
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3775
3991
|
.dark\\:hover\\:disabled\\:bg-white-alpha-100:disabled:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3776
3992
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3777
3993
|
}
|
|
@@ -3957,8 +4173,8 @@ slot {
|
|
|
3957
4173
|
height: min(800px,100%);
|
|
3958
4174
|
}
|
|
3959
4175
|
|
|
3960
|
-
.lg\\:w-\\[min\\(
|
|
3961
|
-
width: min(
|
|
4176
|
+
.lg\\:w-\\[min\\(800px\\2c 100\\%\\)\\] {
|
|
4177
|
+
width: min(800px,100%);
|
|
3962
4178
|
}
|
|
3963
4179
|
}
|
|
3964
4180
|
|
|
@@ -3968,8 +4184,8 @@ slot {
|
|
|
3968
4184
|
height: min(900px,100%);
|
|
3969
4185
|
}
|
|
3970
4186
|
|
|
3971
|
-
.\\32xl\\:w-\\[min\\(
|
|
3972
|
-
width: min(
|
|
4187
|
+
.\\32xl\\:w-\\[min\\(880px\\2c 100\\%\\)\\] {
|
|
4188
|
+
width: min(880px,100%);
|
|
3973
4189
|
}
|
|
3974
4190
|
}
|
|
3975
4191
|
|
|
@@ -4077,6 +4293,112 @@ slot {
|
|
|
4077
4293
|
margin-bottom: 0px;
|
|
4078
4294
|
}
|
|
4079
4295
|
|
|
4296
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:bg-gray-200 [data-part=tag-clear]:hover {
|
|
4297
|
+
background-color: var(--ikp-color-gray-200);
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:dark\\:bg-gray-dark-600:is([data-theme="dark"] *) [data-part=tag-clear]:hover {
|
|
4301
|
+
background-color: var(--ikp-color-gray-dark-600);
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4304
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:flex [data-part=tag-clear] {
|
|
4305
|
+
display: flex;
|
|
4306
|
+
}
|
|
4307
|
+
|
|
4308
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:h-5 [data-part=tag-clear] {
|
|
4309
|
+
height: 1.25rem;
|
|
4310
|
+
}
|
|
4311
|
+
|
|
4312
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:w-5 [data-part=tag-clear] {
|
|
4313
|
+
width: 1.25rem;
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:shrink-0 [data-part=tag-clear] {
|
|
4317
|
+
flex-shrink: 0;
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:cursor-pointer [data-part=tag-clear] {
|
|
4321
|
+
cursor: pointer;
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:items-center [data-part=tag-clear] {
|
|
4325
|
+
align-items: center;
|
|
4326
|
+
}
|
|
4327
|
+
|
|
4328
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:justify-center [data-part=tag-clear] {
|
|
4329
|
+
justify-content: center;
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:rounded-md [data-part=tag-clear] {
|
|
4333
|
+
border-radius: 0.375rem;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:text-current [data-part=tag-clear] {
|
|
4337
|
+
color: currentColor;
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:outline-none [data-part=tag-clear] {
|
|
4341
|
+
outline: 2px solid transparent;
|
|
4342
|
+
outline-offset: 2px;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:inline-flex [data-part=tag] {
|
|
4346
|
+
display: inline-flex;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:flex-shrink-0 [data-part=tag] {
|
|
4350
|
+
flex-shrink: 0;
|
|
4351
|
+
}
|
|
4352
|
+
|
|
4353
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:items-center [data-part=tag] {
|
|
4354
|
+
align-items: center;
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:gap-1 [data-part=tag] {
|
|
4358
|
+
gap: 0.25rem;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:whitespace-nowrap [data-part=tag] {
|
|
4362
|
+
white-space: nowrap;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:rounded-md [data-part=tag] {
|
|
4366
|
+
border-radius: 0.375rem;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4369
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:bg-gray-100 [data-part=tag] {
|
|
4370
|
+
background-color: var(--ikp-color-gray-100);
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4373
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:py-0\\.5 [data-part=tag] {
|
|
4374
|
+
padding-top: 0.125rem;
|
|
4375
|
+
padding-bottom: 0.125rem;
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4378
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pl-2 [data-part=tag] {
|
|
4379
|
+
padding-left: 0.5rem;
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pr-1 [data-part=tag] {
|
|
4383
|
+
padding-right: 0.25rem;
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4386
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-sm [data-part=tag] {
|
|
4387
|
+
font-size: var(--ikp-font-size-sm);
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-gray-800 [data-part=tag] {
|
|
4391
|
+
color: var(--ikp-color-gray-800);
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:bg-gray-dark-800:is([data-theme="dark"] *) [data-part=tag] {
|
|
4395
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
4396
|
+
}
|
|
4397
|
+
|
|
4398
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:text-gray-dark-50:is([data-theme="dark"] *) [data-part=tag] {
|
|
4399
|
+
color: var(--ikp-color-gray-dark-50);
|
|
4400
|
+
}
|
|
4401
|
+
|
|
4080
4402
|
.\\[\\&_a\\]\\:inline a {
|
|
4081
4403
|
display: inline;
|
|
4082
4404
|
}
|