@inkeep/cxkit-styled 0.5.114 → 0.5.116
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/components/embedded-chat.cjs +1 -1
- package/dist/components/embedded-chat.js +614 -509
- package/dist/components/intelligent-form.cjs +1 -1
- package/dist/components/intelligent-form.js +218 -127
- package/dist/index.d.cts +72 -0
- package/dist/index.d.ts +72 -0
- package/dist/inkeep.css.cjs +171 -0
- package/dist/inkeep.css.js +171 -0
- package/dist/ui/recipes/combobox.cjs +1 -0
- package/dist/ui/recipes/combobox.js +58 -0
- package/dist/ui/recipes/index.cjs +1 -1
- package/dist/ui/recipes/index.js +29 -27
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -220,7 +220,19 @@ export declare namespace EmbeddedChat {
|
|
|
220
220
|
EmbeddedChatFormFieldSelectItem as FormFieldSelectItem,
|
|
221
221
|
EmbeddedChatFormFieldSelectItemText as FormFieldSelectItemText,
|
|
222
222
|
EmbeddedChatFormFieldSelectItemIndicator as FormFieldSelectItemIndicator,
|
|
223
|
+
EmbeddedChatFormFieldCombobox as FormFieldCombobox,
|
|
224
|
+
EmbeddedChatFormFieldComboboxControl as FormFieldComboboxControl,
|
|
225
|
+
EmbeddedChatFormFieldComboboxInput as FormFieldComboboxInput,
|
|
226
|
+
EmbeddedChatFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
227
|
+
EmbeddedChatFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
228
|
+
EmbeddedChatFormFieldComboboxContent as FormFieldComboboxContent,
|
|
229
|
+
EmbeddedChatFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
230
|
+
EmbeddedChatFormFieldComboboxItem as FormFieldComboboxItem,
|
|
231
|
+
EmbeddedChatFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
232
|
+
EmbeddedChatFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
233
|
+
EmbeddedChatFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
223
234
|
EmbeddedChatFormFieldError as FormFieldError,
|
|
235
|
+
EmbeddedChatFormFieldDescription as FormFieldDescription,
|
|
224
236
|
EmbeddedChatFormError as FormError,
|
|
225
237
|
EmbeddedChatFormFooter as FormFooter,
|
|
226
238
|
EmbeddedChatFormCancel as FormCancel,
|
|
@@ -388,6 +400,30 @@ declare const EmbeddedChatFormFieldCheckbox: ({ className, ...props }: React.Com
|
|
|
388
400
|
|
|
389
401
|
declare const EmbeddedChatFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
390
402
|
|
|
403
|
+
declare const EmbeddedChatFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
404
|
+
|
|
405
|
+
declare const EmbeddedChatFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
406
|
+
|
|
407
|
+
declare const EmbeddedChatFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
408
|
+
|
|
409
|
+
declare const EmbeddedChatFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
410
|
+
|
|
411
|
+
declare const EmbeddedChatFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
412
|
+
|
|
413
|
+
declare const EmbeddedChatFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
414
|
+
|
|
415
|
+
declare const EmbeddedChatFormFieldComboboxItemList: () => JSX.Element;
|
|
416
|
+
|
|
417
|
+
declare const EmbeddedChatFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
418
|
+
|
|
419
|
+
declare const EmbeddedChatFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const EmbeddedChatFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
422
|
+
|
|
423
|
+
declare const EmbeddedChatFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
424
|
+
|
|
425
|
+
declare const EmbeddedChatFormFieldDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldDescription>) => JSX.Element;
|
|
426
|
+
|
|
391
427
|
declare const EmbeddedChatFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldEmail>) => JSX.Element;
|
|
392
428
|
|
|
393
429
|
declare const EmbeddedChatFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldError>) => JSX.Element;
|
|
@@ -800,6 +836,18 @@ export declare namespace IntelligentForm {
|
|
|
800
836
|
IntelligentFormFieldSelectItem as SelectItem,
|
|
801
837
|
IntelligentFormFieldSelectItemText as SelectItemText,
|
|
802
838
|
IntelligentFormFieldSelectItemIndicator as SelectItemIndicator,
|
|
839
|
+
IntelligentFormFieldCombobox as FormFieldCombobox,
|
|
840
|
+
IntelligentFormFieldComboboxControl as FormFieldComboboxControl,
|
|
841
|
+
IntelligentFormFieldComboboxInput as FormFieldComboboxInput,
|
|
842
|
+
IntelligentFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
843
|
+
IntelligentFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
844
|
+
IntelligentFormFieldComboboxContent as FormFieldComboboxContent,
|
|
845
|
+
IntelligentFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
846
|
+
IntelligentFormFieldComboboxItem as FormFieldComboboxItem,
|
|
847
|
+
IntelligentFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
848
|
+
IntelligentFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
849
|
+
IntelligentFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
850
|
+
IntelligentFormFieldDescription as FieldDescription,
|
|
803
851
|
IntelligentFormFieldError as FieldError,
|
|
804
852
|
IntelligentFormBotHeading as BotHeading,
|
|
805
853
|
IntelligentFormBotHeadingIcon as BotHeadingIcon,
|
|
@@ -860,6 +908,30 @@ declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.Comp
|
|
|
860
908
|
|
|
861
909
|
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
862
910
|
|
|
911
|
+
declare const IntelligentFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare const IntelligentFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const IntelligentFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const IntelligentFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const IntelligentFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const IntelligentFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const IntelligentFormFieldComboboxItemList: () => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const IntelligentFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const IntelligentFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const IntelligentFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const IntelligentFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const IntelligentFormFieldDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldDescription>) => JSX.Element;
|
|
934
|
+
|
|
863
935
|
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => JSX.Element;
|
|
864
936
|
|
|
865
937
|
declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -220,7 +220,19 @@ export declare namespace EmbeddedChat {
|
|
|
220
220
|
EmbeddedChatFormFieldSelectItem as FormFieldSelectItem,
|
|
221
221
|
EmbeddedChatFormFieldSelectItemText as FormFieldSelectItemText,
|
|
222
222
|
EmbeddedChatFormFieldSelectItemIndicator as FormFieldSelectItemIndicator,
|
|
223
|
+
EmbeddedChatFormFieldCombobox as FormFieldCombobox,
|
|
224
|
+
EmbeddedChatFormFieldComboboxControl as FormFieldComboboxControl,
|
|
225
|
+
EmbeddedChatFormFieldComboboxInput as FormFieldComboboxInput,
|
|
226
|
+
EmbeddedChatFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
227
|
+
EmbeddedChatFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
228
|
+
EmbeddedChatFormFieldComboboxContent as FormFieldComboboxContent,
|
|
229
|
+
EmbeddedChatFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
230
|
+
EmbeddedChatFormFieldComboboxItem as FormFieldComboboxItem,
|
|
231
|
+
EmbeddedChatFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
232
|
+
EmbeddedChatFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
233
|
+
EmbeddedChatFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
223
234
|
EmbeddedChatFormFieldError as FormFieldError,
|
|
235
|
+
EmbeddedChatFormFieldDescription as FormFieldDescription,
|
|
224
236
|
EmbeddedChatFormError as FormError,
|
|
225
237
|
EmbeddedChatFormFooter as FormFooter,
|
|
226
238
|
EmbeddedChatFormCancel as FormCancel,
|
|
@@ -388,6 +400,30 @@ declare const EmbeddedChatFormFieldCheckbox: ({ className, ...props }: React.Com
|
|
|
388
400
|
|
|
389
401
|
declare const EmbeddedChatFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
390
402
|
|
|
403
|
+
declare const EmbeddedChatFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
404
|
+
|
|
405
|
+
declare const EmbeddedChatFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
406
|
+
|
|
407
|
+
declare const EmbeddedChatFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
408
|
+
|
|
409
|
+
declare const EmbeddedChatFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
410
|
+
|
|
411
|
+
declare const EmbeddedChatFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
412
|
+
|
|
413
|
+
declare const EmbeddedChatFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
414
|
+
|
|
415
|
+
declare const EmbeddedChatFormFieldComboboxItemList: () => JSX.Element;
|
|
416
|
+
|
|
417
|
+
declare const EmbeddedChatFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
418
|
+
|
|
419
|
+
declare const EmbeddedChatFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const EmbeddedChatFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
422
|
+
|
|
423
|
+
declare const EmbeddedChatFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
424
|
+
|
|
425
|
+
declare const EmbeddedChatFormFieldDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldDescription>) => JSX.Element;
|
|
426
|
+
|
|
391
427
|
declare const EmbeddedChatFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldEmail>) => JSX.Element;
|
|
392
428
|
|
|
393
429
|
declare const EmbeddedChatFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldError>) => JSX.Element;
|
|
@@ -800,6 +836,18 @@ export declare namespace IntelligentForm {
|
|
|
800
836
|
IntelligentFormFieldSelectItem as SelectItem,
|
|
801
837
|
IntelligentFormFieldSelectItemText as SelectItemText,
|
|
802
838
|
IntelligentFormFieldSelectItemIndicator as SelectItemIndicator,
|
|
839
|
+
IntelligentFormFieldCombobox as FormFieldCombobox,
|
|
840
|
+
IntelligentFormFieldComboboxControl as FormFieldComboboxControl,
|
|
841
|
+
IntelligentFormFieldComboboxInput as FormFieldComboboxInput,
|
|
842
|
+
IntelligentFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
843
|
+
IntelligentFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
844
|
+
IntelligentFormFieldComboboxContent as FormFieldComboboxContent,
|
|
845
|
+
IntelligentFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
846
|
+
IntelligentFormFieldComboboxItem as FormFieldComboboxItem,
|
|
847
|
+
IntelligentFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
848
|
+
IntelligentFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
849
|
+
IntelligentFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
850
|
+
IntelligentFormFieldDescription as FieldDescription,
|
|
803
851
|
IntelligentFormFieldError as FieldError,
|
|
804
852
|
IntelligentFormBotHeading as BotHeading,
|
|
805
853
|
IntelligentFormBotHeadingIcon as BotHeadingIcon,
|
|
@@ -860,6 +908,30 @@ declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.Comp
|
|
|
860
908
|
|
|
861
909
|
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
862
910
|
|
|
911
|
+
declare const IntelligentFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare const IntelligentFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const IntelligentFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const IntelligentFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const IntelligentFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const IntelligentFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const IntelligentFormFieldComboboxItemList: () => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const IntelligentFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const IntelligentFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const IntelligentFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const IntelligentFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const IntelligentFormFieldDescription: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldDescription>) => JSX.Element;
|
|
934
|
+
|
|
863
935
|
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => JSX.Element;
|
|
864
936
|
|
|
865
937
|
declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => JSX.Element;
|
package/dist/inkeep.css.cjs
CHANGED
|
@@ -778,6 +778,9 @@ video {
|
|
|
778
778
|
width: var(--ikp-spacing-4);
|
|
779
779
|
height: var(--ikp-spacing-4);
|
|
780
780
|
}
|
|
781
|
+
.\\!h-auto {
|
|
782
|
+
height: auto !important;
|
|
783
|
+
}
|
|
781
784
|
.h-0 {
|
|
782
785
|
height: var(--ikp-spacing-0);
|
|
783
786
|
}
|
|
@@ -862,6 +865,9 @@ video {
|
|
|
862
865
|
.min-h-0 {
|
|
863
866
|
min-height: var(--ikp-spacing-0);
|
|
864
867
|
}
|
|
868
|
+
.min-h-10 {
|
|
869
|
+
min-height: var(--ikp-spacing-10);
|
|
870
|
+
}
|
|
865
871
|
.min-h-20 {
|
|
866
872
|
min-height: var(--ikp-spacing-20);
|
|
867
873
|
}
|
|
@@ -947,6 +953,9 @@ video {
|
|
|
947
953
|
.min-w-10 {
|
|
948
954
|
min-width: var(--ikp-spacing-10);
|
|
949
955
|
}
|
|
956
|
+
.min-w-28 {
|
|
957
|
+
min-width: var(--ikp-spacing-28);
|
|
958
|
+
}
|
|
950
959
|
.min-w-32 {
|
|
951
960
|
min-width: var(--ikp-spacing-32);
|
|
952
961
|
}
|
|
@@ -986,12 +995,18 @@ video {
|
|
|
986
995
|
.flex-\\[0_0_100\\%\\] {
|
|
987
996
|
flex: 0 0 100%;
|
|
988
997
|
}
|
|
998
|
+
.flex-shrink {
|
|
999
|
+
flex-shrink: 1;
|
|
1000
|
+
}
|
|
989
1001
|
.flex-shrink-0 {
|
|
990
1002
|
flex-shrink: 0;
|
|
991
1003
|
}
|
|
992
1004
|
.shrink-0 {
|
|
993
1005
|
flex-shrink: 0;
|
|
994
1006
|
}
|
|
1007
|
+
.flex-grow-0 {
|
|
1008
|
+
flex-grow: 0;
|
|
1009
|
+
}
|
|
995
1010
|
.grow-0 {
|
|
996
1011
|
flex-grow: 0;
|
|
997
1012
|
}
|
|
@@ -1265,6 +1280,9 @@ video {
|
|
|
1265
1280
|
.justify-self-center {
|
|
1266
1281
|
justify-self: center;
|
|
1267
1282
|
}
|
|
1283
|
+
.overflow-auto {
|
|
1284
|
+
overflow: auto;
|
|
1285
|
+
}
|
|
1268
1286
|
.overflow-hidden {
|
|
1269
1287
|
overflow: hidden;
|
|
1270
1288
|
}
|
|
@@ -1329,6 +1347,9 @@ video {
|
|
|
1329
1347
|
.border {
|
|
1330
1348
|
border-width: 1px;
|
|
1331
1349
|
}
|
|
1350
|
+
.border-0 {
|
|
1351
|
+
border-width: 0px;
|
|
1352
|
+
}
|
|
1332
1353
|
.border-2 {
|
|
1333
1354
|
border-width: 2px;
|
|
1334
1355
|
}
|
|
@@ -2620,6 +2641,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2620
2641
|
flex-direction: row;
|
|
2621
2642
|
}
|
|
2622
2643
|
|
|
2644
|
+
.data-\\[input-type\\=checkbox\\]\\:flex-wrap[data-input-type="checkbox"] {
|
|
2645
|
+
flex-wrap: wrap;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2623
2648
|
.data-\\[even\\]\\:items-start[data-even] {
|
|
2624
2649
|
align-items: flex-start;
|
|
2625
2650
|
}
|
|
@@ -2665,6 +2690,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2665
2690
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2666
2691
|
}
|
|
2667
2692
|
|
|
2693
|
+
.data-\\[highlighted\\]\\:bg-gray-100[data-highlighted] {
|
|
2694
|
+
background-color: var(--ikp-color-gray-100);
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2668
2697
|
.data-\\[role\\=user\\]\\:bg-gray-50[data-role="user"] {
|
|
2669
2698
|
background-color: var(--ikp-color-gray-50);
|
|
2670
2699
|
}
|
|
@@ -2701,6 +2730,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2701
2730
|
font-weight: 600;
|
|
2702
2731
|
}
|
|
2703
2732
|
|
|
2733
|
+
.data-\\[state\\=checked\\]\\:font-medium[data-state="checked"] {
|
|
2734
|
+
font-weight: 500;
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2704
2737
|
.data-\\[active\\]\\:text-gray-600[data-active] {
|
|
2705
2738
|
color: var(--ikp-color-gray-600);
|
|
2706
2739
|
}
|
|
@@ -2756,6 +2789,18 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2756
2789
|
color: var(--ikp-color-inkeep-primary-medium);
|
|
2757
2790
|
}
|
|
2758
2791
|
|
|
2792
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::-moz-placeholder {
|
|
2793
|
+
--tw-placeholder-opacity: 0.8;
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::placeholder {
|
|
2797
|
+
--tw-placeholder-opacity: 0.8;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
.data-\\[disabled\\]\\:opacity-30[data-disabled] {
|
|
2801
|
+
opacity: 0.3;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2759
2804
|
.data-\\[disabled\\]\\:opacity-50[data-disabled] {
|
|
2760
2805
|
opacity: 0.5;
|
|
2761
2806
|
}
|
|
@@ -2888,6 +2933,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2888
2933
|
background-image: conic-gradient(transparent,var(--ikp-color-inkeep-expanded-primary-600),transparent 30%);
|
|
2889
2934
|
}
|
|
2890
2935
|
|
|
2936
|
+
.group[data-input-type="checkbox"] .group-data-\\[input-type\\=checkbox\\]\\:w-full {
|
|
2937
|
+
width: 100%;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.group[data-input-type="checkbox"] .group-data-\\[input-type\\=checkbox\\]\\:basis-full {
|
|
2941
|
+
flex-basis: 100%;
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2891
2944
|
:not(.dark) .light\\:text-gray-700 {
|
|
2892
2945
|
color: var(--ikp-color-gray-700);
|
|
2893
2946
|
}
|
|
@@ -3360,6 +3413,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3360
3413
|
color: var(--ikp-color-gray-dark-200);
|
|
3361
3414
|
}
|
|
3362
3415
|
|
|
3416
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::-moz-placeholder {
|
|
3417
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::placeholder {
|
|
3421
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3363
3424
|
.dark\\:before\\:bg-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3364
3425
|
content: var(--tw-content);
|
|
3365
3426
|
background-color: var(--ikp-color-gray-dark-950);
|
|
@@ -3447,6 +3508,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3447
3508
|
background-color: var(--ikp-color-gray-dark-700);
|
|
3448
3509
|
}
|
|
3449
3510
|
|
|
3511
|
+
.dark\\:data-\\[highlighted\\]\\:bg-gray-dark-800[data-highlighted]:is([data-theme="dark"] *) {
|
|
3512
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3450
3515
|
.dark\\:data-\\[state\\=active\\]\\:bg-white-alpha-100[data-state="active"]:is([data-theme="dark"] *) {
|
|
3451
3516
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3452
3517
|
}
|
|
@@ -3798,6 +3863,112 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3798
3863
|
padding-right: var(--ikp-spacing-1);
|
|
3799
3864
|
}
|
|
3800
3865
|
|
|
3866
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:bg-gray-200 [data-part=tag-clear]:hover {
|
|
3867
|
+
background-color: var(--ikp-color-gray-200);
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:dark\\:bg-gray-dark-600:is([data-theme="dark"] *) [data-part=tag-clear]:hover {
|
|
3871
|
+
background-color: var(--ikp-color-gray-dark-600);
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:flex [data-part=tag-clear] {
|
|
3875
|
+
display: flex;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:h-5 [data-part=tag-clear] {
|
|
3879
|
+
height: var(--ikp-spacing-5);
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:w-5 [data-part=tag-clear] {
|
|
3883
|
+
width: var(--ikp-spacing-5);
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:shrink-0 [data-part=tag-clear] {
|
|
3887
|
+
flex-shrink: 0;
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:cursor-pointer [data-part=tag-clear] {
|
|
3891
|
+
cursor: pointer;
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:items-center [data-part=tag-clear] {
|
|
3895
|
+
align-items: center;
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:justify-center [data-part=tag-clear] {
|
|
3899
|
+
justify-content: center;
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:rounded-md [data-part=tag-clear] {
|
|
3903
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3904
|
+
}
|
|
3905
|
+
|
|
3906
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:text-current [data-part=tag-clear] {
|
|
3907
|
+
color: currentColor;
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:outline-none [data-part=tag-clear] {
|
|
3911
|
+
outline: 2px solid transparent;
|
|
3912
|
+
outline-offset: 2px;
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3915
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:inline-flex [data-part=tag] {
|
|
3916
|
+
display: inline-flex;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:flex-shrink-0 [data-part=tag] {
|
|
3920
|
+
flex-shrink: 0;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:items-center [data-part=tag] {
|
|
3924
|
+
align-items: center;
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3927
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:gap-1 [data-part=tag] {
|
|
3928
|
+
gap: var(--ikp-spacing-1);
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:whitespace-nowrap [data-part=tag] {
|
|
3932
|
+
white-space: nowrap;
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3935
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:rounded-md [data-part=tag] {
|
|
3936
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:bg-gray-100 [data-part=tag] {
|
|
3940
|
+
background-color: var(--ikp-color-gray-100);
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:py-0\\.5 [data-part=tag] {
|
|
3944
|
+
padding-top: var(--ikp-spacing-0_5);
|
|
3945
|
+
padding-bottom: var(--ikp-spacing-0_5);
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3948
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pl-2 [data-part=tag] {
|
|
3949
|
+
padding-left: var(--ikp-spacing-2);
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pr-1 [data-part=tag] {
|
|
3953
|
+
padding-right: var(--ikp-spacing-1);
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-sm [data-part=tag] {
|
|
3957
|
+
font-size: var(--ikp-font-size-sm);
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-gray-800 [data-part=tag] {
|
|
3961
|
+
color: var(--ikp-color-gray-800);
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:bg-gray-dark-800:is([data-theme="dark"] *) [data-part=tag] {
|
|
3965
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:text-gray-dark-50:is([data-theme="dark"] *) [data-part=tag] {
|
|
3969
|
+
color: var(--ikp-color-gray-dark-50);
|
|
3970
|
+
}
|
|
3971
|
+
|
|
3801
3972
|
.\\[\\&_a\\]\\:inline a {
|
|
3802
3973
|
display: inline;
|
|
3803
3974
|
}
|