@inkeep/cxkit-styled 0.5.113 → 0.5.115
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 +594 -507
- package/dist/components/intelligent-form.cjs +1 -1
- package/dist/components/intelligent-form.js +214 -127
- package/dist/index.d.cts +66 -0
- package/dist/index.d.ts +66 -0
- package/dist/inkeep.css.cjs +159 -0
- package/dist/inkeep.css.js +159 -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,6 +220,17 @@ 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,
|
|
224
235
|
EmbeddedChatFormError as FormError,
|
|
225
236
|
EmbeddedChatFormFooter as FormFooter,
|
|
@@ -388,6 +399,28 @@ declare const EmbeddedChatFormFieldCheckbox: ({ className, ...props }: React.Com
|
|
|
388
399
|
|
|
389
400
|
declare const EmbeddedChatFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
390
401
|
|
|
402
|
+
declare const EmbeddedChatFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare const EmbeddedChatFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare const EmbeddedChatFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
407
|
+
|
|
408
|
+
declare const EmbeddedChatFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
409
|
+
|
|
410
|
+
declare const EmbeddedChatFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
411
|
+
|
|
412
|
+
declare const EmbeddedChatFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
413
|
+
|
|
414
|
+
declare const EmbeddedChatFormFieldComboboxItemList: () => JSX.Element;
|
|
415
|
+
|
|
416
|
+
declare const EmbeddedChatFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
417
|
+
|
|
418
|
+
declare const EmbeddedChatFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
419
|
+
|
|
420
|
+
declare const EmbeddedChatFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
421
|
+
|
|
422
|
+
declare const EmbeddedChatFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
423
|
+
|
|
391
424
|
declare const EmbeddedChatFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldEmail>) => JSX.Element;
|
|
392
425
|
|
|
393
426
|
declare const EmbeddedChatFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldError>) => JSX.Element;
|
|
@@ -800,6 +833,17 @@ export declare namespace IntelligentForm {
|
|
|
800
833
|
IntelligentFormFieldSelectItem as SelectItem,
|
|
801
834
|
IntelligentFormFieldSelectItemText as SelectItemText,
|
|
802
835
|
IntelligentFormFieldSelectItemIndicator as SelectItemIndicator,
|
|
836
|
+
IntelligentFormFieldCombobox as FormFieldCombobox,
|
|
837
|
+
IntelligentFormFieldComboboxControl as FormFieldComboboxControl,
|
|
838
|
+
IntelligentFormFieldComboboxInput as FormFieldComboboxInput,
|
|
839
|
+
IntelligentFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
840
|
+
IntelligentFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
841
|
+
IntelligentFormFieldComboboxContent as FormFieldComboboxContent,
|
|
842
|
+
IntelligentFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
843
|
+
IntelligentFormFieldComboboxItem as FormFieldComboboxItem,
|
|
844
|
+
IntelligentFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
845
|
+
IntelligentFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
846
|
+
IntelligentFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
803
847
|
IntelligentFormFieldError as FieldError,
|
|
804
848
|
IntelligentFormBotHeading as BotHeading,
|
|
805
849
|
IntelligentFormBotHeadingIcon as BotHeadingIcon,
|
|
@@ -860,6 +904,28 @@ declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.Comp
|
|
|
860
904
|
|
|
861
905
|
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
862
906
|
|
|
907
|
+
declare const IntelligentFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
908
|
+
|
|
909
|
+
declare const IntelligentFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
910
|
+
|
|
911
|
+
declare const IntelligentFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare const IntelligentFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const IntelligentFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const IntelligentFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const IntelligentFormFieldComboboxItemList: () => JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const IntelligentFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const IntelligentFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const IntelligentFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const IntelligentFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
928
|
+
|
|
863
929
|
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => JSX.Element;
|
|
864
930
|
|
|
865
931
|
declare const IntelligentFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldError>) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -220,6 +220,17 @@ 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,
|
|
224
235
|
EmbeddedChatFormError as FormError,
|
|
225
236
|
EmbeddedChatFormFooter as FormFooter,
|
|
@@ -388,6 +399,28 @@ declare const EmbeddedChatFormFieldCheckbox: ({ className, ...props }: React.Com
|
|
|
388
399
|
|
|
389
400
|
declare const EmbeddedChatFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
390
401
|
|
|
402
|
+
declare const EmbeddedChatFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare const EmbeddedChatFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare const EmbeddedChatFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
407
|
+
|
|
408
|
+
declare const EmbeddedChatFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
409
|
+
|
|
410
|
+
declare const EmbeddedChatFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
411
|
+
|
|
412
|
+
declare const EmbeddedChatFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
413
|
+
|
|
414
|
+
declare const EmbeddedChatFormFieldComboboxItemList: () => JSX.Element;
|
|
415
|
+
|
|
416
|
+
declare const EmbeddedChatFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
417
|
+
|
|
418
|
+
declare const EmbeddedChatFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
419
|
+
|
|
420
|
+
declare const EmbeddedChatFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
421
|
+
|
|
422
|
+
declare const EmbeddedChatFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
423
|
+
|
|
391
424
|
declare const EmbeddedChatFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldEmail>) => JSX.Element;
|
|
392
425
|
|
|
393
426
|
declare const EmbeddedChatFormFieldError: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormFieldError>) => JSX.Element;
|
|
@@ -800,6 +833,17 @@ export declare namespace IntelligentForm {
|
|
|
800
833
|
IntelligentFormFieldSelectItem as SelectItem,
|
|
801
834
|
IntelligentFormFieldSelectItemText as SelectItemText,
|
|
802
835
|
IntelligentFormFieldSelectItemIndicator as SelectItemIndicator,
|
|
836
|
+
IntelligentFormFieldCombobox as FormFieldCombobox,
|
|
837
|
+
IntelligentFormFieldComboboxControl as FormFieldComboboxControl,
|
|
838
|
+
IntelligentFormFieldComboboxInput as FormFieldComboboxInput,
|
|
839
|
+
IntelligentFormFieldComboboxTrigger as FormFieldComboboxTrigger,
|
|
840
|
+
IntelligentFormFieldComboboxPositioner as FormFieldComboboxPositioner,
|
|
841
|
+
IntelligentFormFieldComboboxContent as FormFieldComboboxContent,
|
|
842
|
+
IntelligentFormFieldComboboxItemList as FormFieldComboboxItemList,
|
|
843
|
+
IntelligentFormFieldComboboxItem as FormFieldComboboxItem,
|
|
844
|
+
IntelligentFormFieldComboboxItemText as FormFieldComboboxItemText,
|
|
845
|
+
IntelligentFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags,
|
|
846
|
+
IntelligentFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator,
|
|
803
847
|
IntelligentFormFieldError as FieldError,
|
|
804
848
|
IntelligentFormBotHeading as BotHeading,
|
|
805
849
|
IntelligentFormBotHeadingIcon as BotHeadingIcon,
|
|
@@ -860,6 +904,28 @@ declare const IntelligentFormFieldCheckbox: ({ className, ...props }: React.Comp
|
|
|
860
904
|
|
|
861
905
|
declare const IntelligentFormFieldCheckboxIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCheckboxIndicator>) => JSX.Element;
|
|
862
906
|
|
|
907
|
+
declare const IntelligentFormFieldCombobox: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldCombobox>) => JSX.Element;
|
|
908
|
+
|
|
909
|
+
declare const IntelligentFormFieldComboboxContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxContent>) => JSX.Element;
|
|
910
|
+
|
|
911
|
+
declare const IntelligentFormFieldComboboxControl: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxControl>) => JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare const IntelligentFormFieldComboboxInput: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxInput>) => JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const IntelligentFormFieldComboboxItem: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItem>) => JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const IntelligentFormFieldComboboxItemIndicator: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemIndicator>) => JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const IntelligentFormFieldComboboxItemList: () => JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const IntelligentFormFieldComboboxItemText: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxItemText>) => JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const IntelligentFormFieldComboboxPositioner: (props: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxPositioner>) => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const IntelligentFormFieldComboboxSelectedTags: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxSelectedTags>) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const IntelligentFormFieldComboboxTrigger: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldComboboxTrigger>) => JSX.Element;
|
|
928
|
+
|
|
863
929
|
declare const IntelligentFormFieldEmail: ({ className, ...props }: React.ComponentPropsWithRef<typeof IntelligentFormPrimitive.FormFieldEmail>) => JSX.Element;
|
|
864
930
|
|
|
865
931
|
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
|
}
|
|
@@ -2665,6 +2686,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2665
2686
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2666
2687
|
}
|
|
2667
2688
|
|
|
2689
|
+
.data-\\[highlighted\\]\\:bg-gray-100[data-highlighted] {
|
|
2690
|
+
background-color: var(--ikp-color-gray-100);
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2668
2693
|
.data-\\[role\\=user\\]\\:bg-gray-50[data-role="user"] {
|
|
2669
2694
|
background-color: var(--ikp-color-gray-50);
|
|
2670
2695
|
}
|
|
@@ -2701,6 +2726,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2701
2726
|
font-weight: 600;
|
|
2702
2727
|
}
|
|
2703
2728
|
|
|
2729
|
+
.data-\\[state\\=checked\\]\\:font-medium[data-state="checked"] {
|
|
2730
|
+
font-weight: 500;
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2704
2733
|
.data-\\[active\\]\\:text-gray-600[data-active] {
|
|
2705
2734
|
color: var(--ikp-color-gray-600);
|
|
2706
2735
|
}
|
|
@@ -2756,6 +2785,18 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2756
2785
|
color: var(--ikp-color-inkeep-primary-medium);
|
|
2757
2786
|
}
|
|
2758
2787
|
|
|
2788
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::-moz-placeholder {
|
|
2789
|
+
--tw-placeholder-opacity: 0.8;
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::placeholder {
|
|
2793
|
+
--tw-placeholder-opacity: 0.8;
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
.data-\\[disabled\\]\\:opacity-30[data-disabled] {
|
|
2797
|
+
opacity: 0.3;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2759
2800
|
.data-\\[disabled\\]\\:opacity-50[data-disabled] {
|
|
2760
2801
|
opacity: 0.5;
|
|
2761
2802
|
}
|
|
@@ -3360,6 +3401,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3360
3401
|
color: var(--ikp-color-gray-dark-200);
|
|
3361
3402
|
}
|
|
3362
3403
|
|
|
3404
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::-moz-placeholder {
|
|
3405
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::placeholder {
|
|
3409
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3410
|
+
}
|
|
3411
|
+
|
|
3363
3412
|
.dark\\:before\\:bg-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3364
3413
|
content: var(--tw-content);
|
|
3365
3414
|
background-color: var(--ikp-color-gray-dark-950);
|
|
@@ -3447,6 +3496,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3447
3496
|
background-color: var(--ikp-color-gray-dark-700);
|
|
3448
3497
|
}
|
|
3449
3498
|
|
|
3499
|
+
.dark\\:data-\\[highlighted\\]\\:bg-gray-dark-800[data-highlighted]:is([data-theme="dark"] *) {
|
|
3500
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3450
3503
|
.dark\\:data-\\[state\\=active\\]\\:bg-white-alpha-100[data-state="active"]:is([data-theme="dark"] *) {
|
|
3451
3504
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3452
3505
|
}
|
|
@@ -3798,6 +3851,112 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3798
3851
|
padding-right: var(--ikp-spacing-1);
|
|
3799
3852
|
}
|
|
3800
3853
|
|
|
3854
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:bg-gray-200 [data-part=tag-clear]:hover {
|
|
3855
|
+
background-color: var(--ikp-color-gray-200);
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:dark\\:bg-gray-dark-600:is([data-theme="dark"] *) [data-part=tag-clear]:hover {
|
|
3859
|
+
background-color: var(--ikp-color-gray-dark-600);
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:flex [data-part=tag-clear] {
|
|
3863
|
+
display: flex;
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:h-5 [data-part=tag-clear] {
|
|
3867
|
+
height: var(--ikp-spacing-5);
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:w-5 [data-part=tag-clear] {
|
|
3871
|
+
width: var(--ikp-spacing-5);
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:shrink-0 [data-part=tag-clear] {
|
|
3875
|
+
flex-shrink: 0;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:cursor-pointer [data-part=tag-clear] {
|
|
3879
|
+
cursor: pointer;
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:items-center [data-part=tag-clear] {
|
|
3883
|
+
align-items: center;
|
|
3884
|
+
}
|
|
3885
|
+
|
|
3886
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:justify-center [data-part=tag-clear] {
|
|
3887
|
+
justify-content: center;
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:rounded-md [data-part=tag-clear] {
|
|
3891
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:text-current [data-part=tag-clear] {
|
|
3895
|
+
color: currentColor;
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:outline-none [data-part=tag-clear] {
|
|
3899
|
+
outline: 2px solid transparent;
|
|
3900
|
+
outline-offset: 2px;
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:inline-flex [data-part=tag] {
|
|
3904
|
+
display: inline-flex;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:flex-shrink-0 [data-part=tag] {
|
|
3908
|
+
flex-shrink: 0;
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:items-center [data-part=tag] {
|
|
3912
|
+
align-items: center;
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3915
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:gap-1 [data-part=tag] {
|
|
3916
|
+
gap: var(--ikp-spacing-1);
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:whitespace-nowrap [data-part=tag] {
|
|
3920
|
+
white-space: nowrap;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:rounded-md [data-part=tag] {
|
|
3924
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3927
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:bg-gray-100 [data-part=tag] {
|
|
3928
|
+
background-color: var(--ikp-color-gray-100);
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:py-0\\.5 [data-part=tag] {
|
|
3932
|
+
padding-top: var(--ikp-spacing-0_5);
|
|
3933
|
+
padding-bottom: var(--ikp-spacing-0_5);
|
|
3934
|
+
}
|
|
3935
|
+
|
|
3936
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pl-2 [data-part=tag] {
|
|
3937
|
+
padding-left: var(--ikp-spacing-2);
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pr-1 [data-part=tag] {
|
|
3941
|
+
padding-right: var(--ikp-spacing-1);
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-sm [data-part=tag] {
|
|
3945
|
+
font-size: var(--ikp-font-size-sm);
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3948
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-gray-800 [data-part=tag] {
|
|
3949
|
+
color: var(--ikp-color-gray-800);
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:bg-gray-dark-800:is([data-theme="dark"] *) [data-part=tag] {
|
|
3953
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:text-gray-dark-50:is([data-theme="dark"] *) [data-part=tag] {
|
|
3957
|
+
color: var(--ikp-color-gray-dark-50);
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3801
3960
|
.\\[\\&_a\\]\\:inline a {
|
|
3802
3961
|
display: inline;
|
|
3803
3962
|
}
|
package/dist/inkeep.css.js
CHANGED
|
@@ -779,6 +779,9 @@ video {
|
|
|
779
779
|
width: var(--ikp-spacing-4);
|
|
780
780
|
height: var(--ikp-spacing-4);
|
|
781
781
|
}
|
|
782
|
+
.\\!h-auto {
|
|
783
|
+
height: auto !important;
|
|
784
|
+
}
|
|
782
785
|
.h-0 {
|
|
783
786
|
height: var(--ikp-spacing-0);
|
|
784
787
|
}
|
|
@@ -863,6 +866,9 @@ video {
|
|
|
863
866
|
.min-h-0 {
|
|
864
867
|
min-height: var(--ikp-spacing-0);
|
|
865
868
|
}
|
|
869
|
+
.min-h-10 {
|
|
870
|
+
min-height: var(--ikp-spacing-10);
|
|
871
|
+
}
|
|
866
872
|
.min-h-20 {
|
|
867
873
|
min-height: var(--ikp-spacing-20);
|
|
868
874
|
}
|
|
@@ -948,6 +954,9 @@ video {
|
|
|
948
954
|
.min-w-10 {
|
|
949
955
|
min-width: var(--ikp-spacing-10);
|
|
950
956
|
}
|
|
957
|
+
.min-w-28 {
|
|
958
|
+
min-width: var(--ikp-spacing-28);
|
|
959
|
+
}
|
|
951
960
|
.min-w-32 {
|
|
952
961
|
min-width: var(--ikp-spacing-32);
|
|
953
962
|
}
|
|
@@ -987,12 +996,18 @@ video {
|
|
|
987
996
|
.flex-\\[0_0_100\\%\\] {
|
|
988
997
|
flex: 0 0 100%;
|
|
989
998
|
}
|
|
999
|
+
.flex-shrink {
|
|
1000
|
+
flex-shrink: 1;
|
|
1001
|
+
}
|
|
990
1002
|
.flex-shrink-0 {
|
|
991
1003
|
flex-shrink: 0;
|
|
992
1004
|
}
|
|
993
1005
|
.shrink-0 {
|
|
994
1006
|
flex-shrink: 0;
|
|
995
1007
|
}
|
|
1008
|
+
.flex-grow-0 {
|
|
1009
|
+
flex-grow: 0;
|
|
1010
|
+
}
|
|
996
1011
|
.grow-0 {
|
|
997
1012
|
flex-grow: 0;
|
|
998
1013
|
}
|
|
@@ -1266,6 +1281,9 @@ video {
|
|
|
1266
1281
|
.justify-self-center {
|
|
1267
1282
|
justify-self: center;
|
|
1268
1283
|
}
|
|
1284
|
+
.overflow-auto {
|
|
1285
|
+
overflow: auto;
|
|
1286
|
+
}
|
|
1269
1287
|
.overflow-hidden {
|
|
1270
1288
|
overflow: hidden;
|
|
1271
1289
|
}
|
|
@@ -1330,6 +1348,9 @@ video {
|
|
|
1330
1348
|
.border {
|
|
1331
1349
|
border-width: 1px;
|
|
1332
1350
|
}
|
|
1351
|
+
.border-0 {
|
|
1352
|
+
border-width: 0px;
|
|
1353
|
+
}
|
|
1333
1354
|
.border-2 {
|
|
1334
1355
|
border-width: 2px;
|
|
1335
1356
|
}
|
|
@@ -2666,6 +2687,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2666
2687
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2667
2688
|
}
|
|
2668
2689
|
|
|
2690
|
+
.data-\\[highlighted\\]\\:bg-gray-100[data-highlighted] {
|
|
2691
|
+
background-color: var(--ikp-color-gray-100);
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2669
2694
|
.data-\\[role\\=user\\]\\:bg-gray-50[data-role="user"] {
|
|
2670
2695
|
background-color: var(--ikp-color-gray-50);
|
|
2671
2696
|
}
|
|
@@ -2702,6 +2727,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2702
2727
|
font-weight: 600;
|
|
2703
2728
|
}
|
|
2704
2729
|
|
|
2730
|
+
.data-\\[state\\=checked\\]\\:font-medium[data-state="checked"] {
|
|
2731
|
+
font-weight: 500;
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2705
2734
|
.data-\\[active\\]\\:text-gray-600[data-active] {
|
|
2706
2735
|
color: var(--ikp-color-gray-600);
|
|
2707
2736
|
}
|
|
@@ -2757,6 +2786,18 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2757
2786
|
color: var(--ikp-color-inkeep-primary-medium);
|
|
2758
2787
|
}
|
|
2759
2788
|
|
|
2789
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::-moz-placeholder {
|
|
2790
|
+
--tw-placeholder-opacity: 0.8;
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
.data-\\[invalid\\]\\:placeholder-opacity-80[data-invalid]::placeholder {
|
|
2794
|
+
--tw-placeholder-opacity: 0.8;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
.data-\\[disabled\\]\\:opacity-30[data-disabled] {
|
|
2798
|
+
opacity: 0.3;
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2760
2801
|
.data-\\[disabled\\]\\:opacity-50[data-disabled] {
|
|
2761
2802
|
opacity: 0.5;
|
|
2762
2803
|
}
|
|
@@ -3361,6 +3402,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3361
3402
|
color: var(--ikp-color-gray-dark-200);
|
|
3362
3403
|
}
|
|
3363
3404
|
|
|
3405
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::-moz-placeholder {
|
|
3406
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
.dark\\:placeholder\\:text-gray-dark-500:is([data-theme="dark"] *)::placeholder {
|
|
3410
|
+
color: var(--ikp-color-gray-dark-500);
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3364
3413
|
.dark\\:before\\:bg-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3365
3414
|
content: var(--tw-content);
|
|
3366
3415
|
background-color: var(--ikp-color-gray-dark-950);
|
|
@@ -3448,6 +3497,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3448
3497
|
background-color: var(--ikp-color-gray-dark-700);
|
|
3449
3498
|
}
|
|
3450
3499
|
|
|
3500
|
+
.dark\\:data-\\[highlighted\\]\\:bg-gray-dark-800[data-highlighted]:is([data-theme="dark"] *) {
|
|
3501
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3451
3504
|
.dark\\:data-\\[state\\=active\\]\\:bg-white-alpha-100[data-state="active"]:is([data-theme="dark"] *) {
|
|
3452
3505
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3453
3506
|
}
|
|
@@ -3799,6 +3852,112 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3799
3852
|
padding-right: var(--ikp-spacing-1);
|
|
3800
3853
|
}
|
|
3801
3854
|
|
|
3855
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:bg-gray-200 [data-part=tag-clear]:hover {
|
|
3856
|
+
background-color: var(--ikp-color-gray-200);
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\:hover\\]\\:dark\\:bg-gray-dark-600:is([data-theme="dark"] *) [data-part=tag-clear]:hover {
|
|
3860
|
+
background-color: var(--ikp-color-gray-dark-600);
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:flex [data-part=tag-clear] {
|
|
3864
|
+
display: flex;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:h-5 [data-part=tag-clear] {
|
|
3868
|
+
height: var(--ikp-spacing-5);
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:w-5 [data-part=tag-clear] {
|
|
3872
|
+
width: var(--ikp-spacing-5);
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:shrink-0 [data-part=tag-clear] {
|
|
3876
|
+
flex-shrink: 0;
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:cursor-pointer [data-part=tag-clear] {
|
|
3880
|
+
cursor: pointer;
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:items-center [data-part=tag-clear] {
|
|
3884
|
+
align-items: center;
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:justify-center [data-part=tag-clear] {
|
|
3888
|
+
justify-content: center;
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:rounded-md [data-part=tag-clear] {
|
|
3892
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:text-current [data-part=tag-clear] {
|
|
3896
|
+
color: currentColor;
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.\\[\\&_\\[data-part\\=tag-clear\\]\\]\\:outline-none [data-part=tag-clear] {
|
|
3900
|
+
outline: 2px solid transparent;
|
|
3901
|
+
outline-offset: 2px;
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:inline-flex [data-part=tag] {
|
|
3905
|
+
display: inline-flex;
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:flex-shrink-0 [data-part=tag] {
|
|
3909
|
+
flex-shrink: 0;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:items-center [data-part=tag] {
|
|
3913
|
+
align-items: center;
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:gap-1 [data-part=tag] {
|
|
3917
|
+
gap: var(--ikp-spacing-1);
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:whitespace-nowrap [data-part=tag] {
|
|
3921
|
+
white-space: nowrap;
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:rounded-md [data-part=tag] {
|
|
3925
|
+
border-radius: var(--ikp-border-radius-md);
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:bg-gray-100 [data-part=tag] {
|
|
3929
|
+
background-color: var(--ikp-color-gray-100);
|
|
3930
|
+
}
|
|
3931
|
+
|
|
3932
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:py-0\\.5 [data-part=tag] {
|
|
3933
|
+
padding-top: var(--ikp-spacing-0_5);
|
|
3934
|
+
padding-bottom: var(--ikp-spacing-0_5);
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pl-2 [data-part=tag] {
|
|
3938
|
+
padding-left: var(--ikp-spacing-2);
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:pr-1 [data-part=tag] {
|
|
3942
|
+
padding-right: var(--ikp-spacing-1);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-sm [data-part=tag] {
|
|
3946
|
+
font-size: var(--ikp-font-size-sm);
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:text-gray-800 [data-part=tag] {
|
|
3950
|
+
color: var(--ikp-color-gray-800);
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:bg-gray-dark-800:is([data-theme="dark"] *) [data-part=tag] {
|
|
3954
|
+
background-color: var(--ikp-color-gray-dark-800);
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.\\[\\&_\\[data-part\\=tag\\]\\]\\:dark\\:text-gray-dark-50:is([data-theme="dark"] *) [data-part=tag] {
|
|
3958
|
+
color: var(--ikp-color-gray-dark-50);
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3802
3961
|
.\\[\\&_a\\]\\:inline a {
|
|
3803
3962
|
display: inline;
|
|
3804
3963
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("class-variance-authority"),t=require("./input.cjs"),r=a.cva("",{variants:{slot:{control:[t.input({size:"md",variant:"outline"}),"!h-auto min-h-10 py-1 px-4 flex flex-wrap items-center gap-1.5 rounded-md","data-[invalid]:border-[--error-border-color] data-[invalid]:shadow-[0_0_0_1px_var(--error-border-color)]"],input:["flex-1 min-w-28 bg-transparent border-0 outline-none","placeholder:text-gray-500 dark:placeholder:text-gray-dark-500","data-[invalid]:placeholder-opacity-80"],trigger:["flex items-center justify-center shrink-0 h-full","opacity-45","data-[disabled]:opacity-30 data-[disabled]:pointer-events-none"],content:["relative p-1 z-dropdown max-h-96","overflow-auto rounded-md border","[scrollbar-width:thin] [--scrollbar-color:var(--color-gray-300)]","dark:[--scrollbar-color:var(--color-gray-dark-600)]","[scrollbar-color:var(--scrollbar-color)_transparent]","bg-white dark:bg-gray-dark-950 shadow-md","data-[state=open]:animate-fade-in data-[state=closed]:animate-fade-out"],item:["hover:bg-gray-100 dark:hover:bg-gray-dark-800","data-[highlighted]:bg-gray-100 dark:data-[highlighted]:bg-gray-dark-800","relative flex w-full text-md cursor-pointer py-1.5","select-none outline-none pl-2 pr-8 rounded-md items-center","data-[disabled]:pointer-events-none data-[disabled]:opacity-50","data-[state=checked]:font-medium"],itemText:["flex-1 truncate"],itemIndicator:["absolute right-2 flex h-3.5 w-3.5 items-center justify-center"],selectedTags:["flex flex-row flex-wrap items-center gap-1.5 min-h-0 min-w-0","flex-grow-0 flex-shrink","[&_[data-part=tag]]:inline-flex [&_[data-part=tag]]:gap-1 [&_[data-part=tag]]:flex-shrink-0 [&_[data-part=tag]]:items-center [&_[data-part=tag]]:rounded-md [&_[data-part=tag]]:whitespace-nowrap","[&_[data-part=tag]]:bg-gray-100 [&_[data-part=tag]]:dark:bg-gray-dark-800 [&_[data-part=tag]]:text-gray-800 [&_[data-part=tag]]:dark:text-gray-dark-50","[&_[data-part=tag]]:text-sm [&_[data-part=tag]]:py-0.5 [&_[data-part=tag]]:pl-2 [&_[data-part=tag]]:pr-1","[&_[data-part=tag-clear]]:flex [&_[data-part=tag-clear]]:items-center [&_[data-part=tag-clear]]:justify-center [&_[data-part=tag-clear]]:w-5 [&_[data-part=tag-clear]]:h-5 [&_[data-part=tag-clear]]:rounded-md [&_[data-part=tag-clear]]:shrink-0","[&_[data-part=tag-clear]:hover]:bg-gray-200 [&_[data-part=tag-clear]:hover]:dark:bg-gray-dark-600 [&_[data-part=tag-clear]]:text-current [&_[data-part=tag-clear]]:cursor-pointer [&_[data-part=tag-clear]]:outline-none"]}}});exports.combobox=r;
|