@inkeep/cxkit-styled 0.5.30 → 0.5.31
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-search/results-loading.cjs +1 -1
- package/dist/components/embedded-search/results-loading.js +12 -9
- package/dist/components/embedded-search.cjs +1 -1
- package/dist/components/embedded-search.js +260 -77
- package/dist/components/modal.cjs +1 -1
- package/dist/components/modal.js +22 -16
- package/dist/index.d.cts +48 -0
- package/dist/index.d.ts +48 -0
- package/dist/inkeep.css.cjs +88 -0
- package/dist/inkeep.css.js +88 -0
- package/dist/ui/markdown-styles.cjs +1 -1
- package/dist/ui/markdown-styles.js +4 -3
- package/dist/ui/recipes/citation.cjs +1 -1
- package/dist/ui/recipes/citation.js +2 -1
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react/jsx-runtime"),o=require("@inkeep/cxkit-primitives"),i=require("../utils.cjs"),l=require("../ui/recipes/button.cjs"),s=require("../ui/recipes/modal.cjs"),n=o.ModalPrimitive.Modal,r=({className:t,...e})=>a.jsx(o.ModalPrimitive.Overlay,{className:i.cn(s.modal({slot:"overlay"}),t),...e}),d=({className:t,...e})=>a.jsx(o.ModalPrimitive.Content,{className:i.cn(s.modal({slot:"content"}),"w-[min(90vw,720px)]","has-[[data-dual-pane-search-expanded]]:w-[min(90vw,950px)] transition-width duration-300",t),...e}),c=({className:t,...e})=>a.jsx(o.ModalPrimitive.Close,{className:i.cn(s.modal({slot:"close"}),l.button({variant:"ghost",size:"xs"}),"relative inset-[unset] ml-auto text-lg text-gray-500 dark:text-white-alpha-500 px-0","md:hidden",t),...e});exports.Close=c;exports.Content=d;exports.Overlay=r;exports.Root=n;
|
package/dist/components/modal.js
CHANGED
|
@@ -4,21 +4,27 @@ import { ModalPrimitive as a } from "@inkeep/cxkit-primitives";
|
|
|
4
4
|
import { cn as s } from "../utils.js";
|
|
5
5
|
import { button as n } from "../ui/recipes/button.js";
|
|
6
6
|
import { modal as l } from "../ui/recipes/modal.js";
|
|
7
|
-
const p = a.Modal,
|
|
8
|
-
className:
|
|
9
|
-
...
|
|
10
|
-
}) => /* @__PURE__ */ e(a.Overlay, { className: s(l({ slot: "overlay" }),
|
|
11
|
-
className:
|
|
12
|
-
...
|
|
7
|
+
const p = a.Modal, x = ({
|
|
8
|
+
className: t,
|
|
9
|
+
...o
|
|
10
|
+
}) => /* @__PURE__ */ e(a.Overlay, { className: s(l({ slot: "overlay" }), t), ...o }), v = ({
|
|
11
|
+
className: t,
|
|
12
|
+
...o
|
|
13
13
|
}) => /* @__PURE__ */ e(
|
|
14
14
|
a.Content,
|
|
15
15
|
{
|
|
16
|
-
className: s(
|
|
17
|
-
|
|
16
|
+
className: s(
|
|
17
|
+
l({ slot: "content" }),
|
|
18
|
+
"w-[min(90vw,720px)]",
|
|
19
|
+
// Dual pane
|
|
20
|
+
"has-[[data-dual-pane-search-expanded]]:w-[min(90vw,950px)] transition-width duration-300",
|
|
21
|
+
t
|
|
22
|
+
),
|
|
23
|
+
...o
|
|
18
24
|
}
|
|
19
|
-
),
|
|
20
|
-
className:
|
|
21
|
-
...
|
|
25
|
+
), h = ({
|
|
26
|
+
className: t,
|
|
27
|
+
...o
|
|
22
28
|
}) => /* @__PURE__ */ e(
|
|
23
29
|
a.Close,
|
|
24
30
|
{
|
|
@@ -27,14 +33,14 @@ const p = a.Modal, v = ({
|
|
|
27
33
|
n({ variant: "ghost", size: "xs" }),
|
|
28
34
|
"relative inset-[unset] ml-auto text-lg text-gray-500 dark:text-white-alpha-500 px-0",
|
|
29
35
|
"md:hidden",
|
|
30
|
-
|
|
36
|
+
t
|
|
31
37
|
),
|
|
32
|
-
...
|
|
38
|
+
...o
|
|
33
39
|
}
|
|
34
40
|
);
|
|
35
41
|
export {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
42
|
+
h as Close,
|
|
43
|
+
v as Content,
|
|
44
|
+
x as Overlay,
|
|
39
45
|
p as Root
|
|
40
46
|
};
|
package/dist/index.d.cts
CHANGED
|
@@ -597,6 +597,7 @@ export declare namespace EmbeddedSearch {
|
|
|
597
597
|
EmbeddedSearchResultsEmpty as ResultsEmpty,
|
|
598
598
|
EmbeddedSearchResultsTabList as ResultsTabList,
|
|
599
599
|
EmbeddedSearchResultsTab as ResultsTab,
|
|
600
|
+
EmbeddedSearchResultsContent as ResultsContent,
|
|
600
601
|
EmbeddedSearchResultsScrollArea as ResultsScrollArea,
|
|
601
602
|
EmbeddedSearchResultsScrollAreaViewport as ResultsScrollAreaViewport,
|
|
602
603
|
EmbeddedSearchResultsScrollAreaScrollbar as ResultsScrollAreaScrollbar,
|
|
@@ -612,6 +613,21 @@ export declare namespace EmbeddedSearch {
|
|
|
612
613
|
EmbeddedSearchResultsItemDescription as ResultsItemDescription,
|
|
613
614
|
EmbeddedSearchResultsItemDescriptionPart as ResultsItemDescriptionPart,
|
|
614
615
|
EmbeddedSearchResultsItemIndicator as ResultsItemIndicator,
|
|
616
|
+
EmbeddedSearchResultsItemPreview as ResultsItemPreview,
|
|
617
|
+
EmbeddedSearchResultsItemPreviewHeader as ResultsItemPreviewHeader,
|
|
618
|
+
EmbeddedSearchResultsItemPreviewHeading as ResultsItemPreviewHeading,
|
|
619
|
+
EmbeddedSearchResultsItemPreviewTitle as ResultsItemPreviewTitle,
|
|
620
|
+
EmbeddedSearchResultsItemPreviewTitleLinkIcon as ResultsItemPreviewTitleLinkIcon,
|
|
621
|
+
EmbeddedSearchResultsItemPreviewBreadcrumbs as ResultsItemPreviewBreadcrumbs,
|
|
622
|
+
EmbeddedSearchResultsItemPreviewBreadcrumbIcon as ResultsItemPreviewBreadcrumbIcon,
|
|
623
|
+
EmbeddedSearchResultsItemPreviewBody as ResultsItemPreviewBody,
|
|
624
|
+
EmbeddedSearchResultsItemPreviewOutline as ResultsItemPreviewOutline,
|
|
625
|
+
EmbeddedSearchResultsItemPreviewOutlineTitle as ResultsItemPreviewOutlineTitle,
|
|
626
|
+
EmbeddedSearchResultsItemPreviewOutlineList as ResultsItemPreviewOutlineList,
|
|
627
|
+
EmbeddedSearchResultsItemPreviewOutlineItem as ResultsItemPreviewOutlineItem,
|
|
628
|
+
EmbeddedSearchResultsItemPreviewOutlineItemIcon as ResultsItemPreviewOutlineItemIcon,
|
|
629
|
+
EmbeddedSearchResultsItemPreviewOutlineItemText as ResultsItemPreviewOutlineItemText,
|
|
630
|
+
EmbeddedSearchResultsItemPreviewOutlineItemLinkIcon as ResultsItemPreviewOutlineItemLinkIcon,
|
|
615
631
|
EmbeddedSearchFooter as Footer,
|
|
616
632
|
EmbeddedSearchTaglineContainer as TaglineContainer,
|
|
617
633
|
EmbeddedSearchTaglineText as TaglineText,
|
|
@@ -656,6 +672,8 @@ declare const EmbeddedSearchProvider: (props: React.ComponentPropsWithRef<typeof
|
|
|
656
672
|
|
|
657
673
|
declare const EmbeddedSearchResults: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Results>) => JSX.Element;
|
|
658
674
|
|
|
675
|
+
declare const EmbeddedSearchResultsContent: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsContent>) => JSX.Element;
|
|
676
|
+
|
|
659
677
|
declare const EmbeddedSearchResultsEmpty: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsEmpty>) => JSX.Element;
|
|
660
678
|
|
|
661
679
|
declare const EmbeddedSearchResultsItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItem>) => JSX.Element;
|
|
@@ -672,6 +690,36 @@ declare const EmbeddedSearchResultsItemIcon: ({ className, ...props }: Component
|
|
|
672
690
|
|
|
673
691
|
declare const EmbeddedSearchResultsItemIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIndicator>) => JSX.Element;
|
|
674
692
|
|
|
693
|
+
declare const EmbeddedSearchResultsItemPreview: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreview>) => JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare const EmbeddedSearchResultsItemPreviewBody: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBody>) => JSX.Element;
|
|
696
|
+
|
|
697
|
+
declare const EmbeddedSearchResultsItemPreviewBreadcrumbIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBreadcrumbIcon>) => JSX.Element;
|
|
698
|
+
|
|
699
|
+
declare const EmbeddedSearchResultsItemPreviewBreadcrumbs: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBreadcrumbs>) => JSX.Element;
|
|
700
|
+
|
|
701
|
+
declare const EmbeddedSearchResultsItemPreviewHeader: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewHeader>) => JSX.Element;
|
|
702
|
+
|
|
703
|
+
declare const EmbeddedSearchResultsItemPreviewHeading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewHeading>) => JSX.Element;
|
|
704
|
+
|
|
705
|
+
declare const EmbeddedSearchResultsItemPreviewOutline: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutline>) => JSX.Element;
|
|
706
|
+
|
|
707
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItem>) => JSX.Element;
|
|
708
|
+
|
|
709
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemIcon>) => JSX.Element;
|
|
710
|
+
|
|
711
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemLinkIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemLinkIcon>) => JSX.Element;
|
|
712
|
+
|
|
713
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemText: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemText>) => JSX.Element;
|
|
714
|
+
|
|
715
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineList>) => JSX.Element;
|
|
716
|
+
|
|
717
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineTitle>) => JSX.Element;
|
|
718
|
+
|
|
719
|
+
declare const EmbeddedSearchResultsItemPreviewTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewTitle>) => JSX.Element;
|
|
720
|
+
|
|
721
|
+
declare const EmbeddedSearchResultsItemPreviewTitleLinkIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewTitleLinkIcon>) => JSX.Element;
|
|
722
|
+
|
|
675
723
|
declare const EmbeddedSearchResultsItemTag: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTag>) => JSX.Element;
|
|
676
724
|
|
|
677
725
|
declare const EmbeddedSearchResultsItemTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTitle>) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -597,6 +597,7 @@ export declare namespace EmbeddedSearch {
|
|
|
597
597
|
EmbeddedSearchResultsEmpty as ResultsEmpty,
|
|
598
598
|
EmbeddedSearchResultsTabList as ResultsTabList,
|
|
599
599
|
EmbeddedSearchResultsTab as ResultsTab,
|
|
600
|
+
EmbeddedSearchResultsContent as ResultsContent,
|
|
600
601
|
EmbeddedSearchResultsScrollArea as ResultsScrollArea,
|
|
601
602
|
EmbeddedSearchResultsScrollAreaViewport as ResultsScrollAreaViewport,
|
|
602
603
|
EmbeddedSearchResultsScrollAreaScrollbar as ResultsScrollAreaScrollbar,
|
|
@@ -612,6 +613,21 @@ export declare namespace EmbeddedSearch {
|
|
|
612
613
|
EmbeddedSearchResultsItemDescription as ResultsItemDescription,
|
|
613
614
|
EmbeddedSearchResultsItemDescriptionPart as ResultsItemDescriptionPart,
|
|
614
615
|
EmbeddedSearchResultsItemIndicator as ResultsItemIndicator,
|
|
616
|
+
EmbeddedSearchResultsItemPreview as ResultsItemPreview,
|
|
617
|
+
EmbeddedSearchResultsItemPreviewHeader as ResultsItemPreviewHeader,
|
|
618
|
+
EmbeddedSearchResultsItemPreviewHeading as ResultsItemPreviewHeading,
|
|
619
|
+
EmbeddedSearchResultsItemPreviewTitle as ResultsItemPreviewTitle,
|
|
620
|
+
EmbeddedSearchResultsItemPreviewTitleLinkIcon as ResultsItemPreviewTitleLinkIcon,
|
|
621
|
+
EmbeddedSearchResultsItemPreviewBreadcrumbs as ResultsItemPreviewBreadcrumbs,
|
|
622
|
+
EmbeddedSearchResultsItemPreviewBreadcrumbIcon as ResultsItemPreviewBreadcrumbIcon,
|
|
623
|
+
EmbeddedSearchResultsItemPreviewBody as ResultsItemPreviewBody,
|
|
624
|
+
EmbeddedSearchResultsItemPreviewOutline as ResultsItemPreviewOutline,
|
|
625
|
+
EmbeddedSearchResultsItemPreviewOutlineTitle as ResultsItemPreviewOutlineTitle,
|
|
626
|
+
EmbeddedSearchResultsItemPreviewOutlineList as ResultsItemPreviewOutlineList,
|
|
627
|
+
EmbeddedSearchResultsItemPreviewOutlineItem as ResultsItemPreviewOutlineItem,
|
|
628
|
+
EmbeddedSearchResultsItemPreviewOutlineItemIcon as ResultsItemPreviewOutlineItemIcon,
|
|
629
|
+
EmbeddedSearchResultsItemPreviewOutlineItemText as ResultsItemPreviewOutlineItemText,
|
|
630
|
+
EmbeddedSearchResultsItemPreviewOutlineItemLinkIcon as ResultsItemPreviewOutlineItemLinkIcon,
|
|
615
631
|
EmbeddedSearchFooter as Footer,
|
|
616
632
|
EmbeddedSearchTaglineContainer as TaglineContainer,
|
|
617
633
|
EmbeddedSearchTaglineText as TaglineText,
|
|
@@ -656,6 +672,8 @@ declare const EmbeddedSearchProvider: (props: React.ComponentPropsWithRef<typeof
|
|
|
656
672
|
|
|
657
673
|
declare const EmbeddedSearchResults: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.Results>) => JSX.Element;
|
|
658
674
|
|
|
675
|
+
declare const EmbeddedSearchResultsContent: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsContent>) => JSX.Element;
|
|
676
|
+
|
|
659
677
|
declare const EmbeddedSearchResultsEmpty: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsEmpty>) => JSX.Element;
|
|
660
678
|
|
|
661
679
|
declare const EmbeddedSearchResultsItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItem>) => JSX.Element;
|
|
@@ -672,6 +690,36 @@ declare const EmbeddedSearchResultsItemIcon: ({ className, ...props }: Component
|
|
|
672
690
|
|
|
673
691
|
declare const EmbeddedSearchResultsItemIndicator: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemIndicator>) => JSX.Element;
|
|
674
692
|
|
|
693
|
+
declare const EmbeddedSearchResultsItemPreview: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreview>) => JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare const EmbeddedSearchResultsItemPreviewBody: ({ className, componentStyles, ...props }: React.ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBody>) => JSX.Element;
|
|
696
|
+
|
|
697
|
+
declare const EmbeddedSearchResultsItemPreviewBreadcrumbIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBreadcrumbIcon>) => JSX.Element;
|
|
698
|
+
|
|
699
|
+
declare const EmbeddedSearchResultsItemPreviewBreadcrumbs: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewBreadcrumbs>) => JSX.Element;
|
|
700
|
+
|
|
701
|
+
declare const EmbeddedSearchResultsItemPreviewHeader: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewHeader>) => JSX.Element;
|
|
702
|
+
|
|
703
|
+
declare const EmbeddedSearchResultsItemPreviewHeading: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewHeading>) => JSX.Element;
|
|
704
|
+
|
|
705
|
+
declare const EmbeddedSearchResultsItemPreviewOutline: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutline>) => JSX.Element;
|
|
706
|
+
|
|
707
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItem: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItem>) => JSX.Element;
|
|
708
|
+
|
|
709
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemIcon>) => JSX.Element;
|
|
710
|
+
|
|
711
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemLinkIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemLinkIcon>) => JSX.Element;
|
|
712
|
+
|
|
713
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineItemText: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineItemText>) => JSX.Element;
|
|
714
|
+
|
|
715
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineList: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineList>) => JSX.Element;
|
|
716
|
+
|
|
717
|
+
declare const EmbeddedSearchResultsItemPreviewOutlineTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewOutlineTitle>) => JSX.Element;
|
|
718
|
+
|
|
719
|
+
declare const EmbeddedSearchResultsItemPreviewTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewTitle>) => JSX.Element;
|
|
720
|
+
|
|
721
|
+
declare const EmbeddedSearchResultsItemPreviewTitleLinkIcon: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemPreviewTitleLinkIcon>) => JSX.Element;
|
|
722
|
+
|
|
675
723
|
declare const EmbeddedSearchResultsItemTag: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTag>) => JSX.Element;
|
|
676
724
|
|
|
677
725
|
declare const EmbeddedSearchResultsItemTitle: ({ className, ...props }: ComponentPropsWithRef<typeof EmbeddedSearchPrimitive.ResultsItemTitle>) => JSX.Element;
|
package/dist/inkeep.css.cjs
CHANGED
|
@@ -713,6 +713,12 @@ video {
|
|
|
713
713
|
-webkit-box-orient: vertical;
|
|
714
714
|
-webkit-line-clamp: 1;
|
|
715
715
|
}
|
|
716
|
+
.\\!line-clamp-none {
|
|
717
|
+
overflow: visible !important;
|
|
718
|
+
display: block !important;
|
|
719
|
+
-webkit-box-orient: horizontal !important;
|
|
720
|
+
-webkit-line-clamp: none !important;
|
|
721
|
+
}
|
|
716
722
|
.block {
|
|
717
723
|
display: block;
|
|
718
724
|
}
|
|
@@ -760,6 +766,9 @@ video {
|
|
|
760
766
|
.h-20 {
|
|
761
767
|
height: 5rem;
|
|
762
768
|
}
|
|
769
|
+
.h-3 {
|
|
770
|
+
height: 0.75rem;
|
|
771
|
+
}
|
|
763
772
|
.h-3\\.5 {
|
|
764
773
|
height: 0.875rem;
|
|
765
774
|
}
|
|
@@ -820,6 +829,9 @@ video {
|
|
|
820
829
|
.max-h-screen {
|
|
821
830
|
max-height: 100vh;
|
|
822
831
|
}
|
|
832
|
+
.\\!min-h-0 {
|
|
833
|
+
min-height: 0px !important;
|
|
834
|
+
}
|
|
823
835
|
.min-h-0 {
|
|
824
836
|
min-height: 0px;
|
|
825
837
|
}
|
|
@@ -899,6 +911,9 @@ video {
|
|
|
899
911
|
.w-screen {
|
|
900
912
|
width: 100vw;
|
|
901
913
|
}
|
|
914
|
+
.\\!min-w-0 {
|
|
915
|
+
min-width: 0px !important;
|
|
916
|
+
}
|
|
902
917
|
.min-w-0 {
|
|
903
918
|
min-width: 0px;
|
|
904
919
|
}
|
|
@@ -944,6 +959,9 @@ video {
|
|
|
944
959
|
.flex-\\[0_0_100\\%\\] {
|
|
945
960
|
flex: 0 0 100%;
|
|
946
961
|
}
|
|
962
|
+
.flex-\\[0_0_40\\%\\] {
|
|
963
|
+
flex: 0 0 40%;
|
|
964
|
+
}
|
|
947
965
|
.flex-shrink-0 {
|
|
948
966
|
flex-shrink: 0;
|
|
949
967
|
}
|
|
@@ -1149,6 +1167,12 @@ video {
|
|
|
1149
1167
|
.gap-3 {
|
|
1150
1168
|
gap: 0.75rem;
|
|
1151
1169
|
}
|
|
1170
|
+
.gap-4 {
|
|
1171
|
+
gap: 1rem;
|
|
1172
|
+
}
|
|
1173
|
+
.gap-5 {
|
|
1174
|
+
gap: 1.25rem;
|
|
1175
|
+
}
|
|
1152
1176
|
.gap-6 {
|
|
1153
1177
|
gap: 1.5rem;
|
|
1154
1178
|
}
|
|
@@ -1207,6 +1231,11 @@ video {
|
|
|
1207
1231
|
.overflow-y-auto {
|
|
1208
1232
|
overflow-y: auto;
|
|
1209
1233
|
}
|
|
1234
|
+
.truncate {
|
|
1235
|
+
overflow: hidden;
|
|
1236
|
+
text-overflow: ellipsis;
|
|
1237
|
+
white-space: nowrap;
|
|
1238
|
+
}
|
|
1210
1239
|
.text-ellipsis {
|
|
1211
1240
|
text-overflow: ellipsis;
|
|
1212
1241
|
}
|
|
@@ -1395,6 +1424,10 @@ video {
|
|
|
1395
1424
|
padding-left: 0.25rem;
|
|
1396
1425
|
padding-right: 0.25rem;
|
|
1397
1426
|
}
|
|
1427
|
+
.px-12 {
|
|
1428
|
+
padding-left: 3rem;
|
|
1429
|
+
padding-right: 3rem;
|
|
1430
|
+
}
|
|
1398
1431
|
.px-2 {
|
|
1399
1432
|
padding-left: 0.5rem;
|
|
1400
1433
|
padding-right: 0.5rem;
|
|
@@ -2243,6 +2276,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2243
2276
|
color: var(--ikp-color-gray-600);
|
|
2244
2277
|
}
|
|
2245
2278
|
|
|
2279
|
+
.has-\\[\\[data-dual-pane-search-expanded\\]\\]\\:w-\\[min\\(90vw\\2c 950px\\)\\]:has([data-dual-pane-search-expanded]) {
|
|
2280
|
+
width: min(90vw,950px);
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2246
2283
|
.has-\\[\\[data-scroll-top\\]\\]\\:before\\:opacity-0:has([data-scroll-top])::before {
|
|
2247
2284
|
content: var(--tw-content);
|
|
2248
2285
|
opacity: 0;
|
|
@@ -2472,6 +2509,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2472
2509
|
color: var(--ikp-color-inkeep-primary-text-subtle);
|
|
2473
2510
|
}
|
|
2474
2511
|
|
|
2512
|
+
.data-\\[is-match\\]\\:text-inkeep-expanded-primary-700[data-is-match] {
|
|
2513
|
+
color: var(--ikp-color-inkeep-expanded-primary-700);
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2475
2516
|
.data-\\[role\\=user\\]\\:text-gray-700[data-role="user"] {
|
|
2476
2517
|
color: var(--ikp-color-gray-700);
|
|
2477
2518
|
}
|
|
@@ -2741,6 +2782,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2741
2782
|
color: var(--ikp-color-inkeep-primary-strong);
|
|
2742
2783
|
}
|
|
2743
2784
|
|
|
2785
|
+
.hover\\:text-inkeep-primary-stronger:hover:not(:disabled) {
|
|
2786
|
+
color: var(--ikp-color-inkeep-primary-stronger);
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2744
2789
|
.hover\\:underline:hover:not(:disabled) {
|
|
2745
2790
|
text-decoration-line: underline;
|
|
2746
2791
|
}
|
|
@@ -2757,6 +2802,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2757
2802
|
background-color: var(--ikp-color-inkeep-primary-light-subtle);
|
|
2758
2803
|
}
|
|
2759
2804
|
|
|
2805
|
+
.data-\\[is-match\\]\\:hover\\:text-inkeep-expanded-primary-800:hover:not(:disabled)[data-is-match] {
|
|
2806
|
+
color: var(--ikp-color-inkeep-expanded-primary-800);
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2760
2809
|
.befter\\:pointer-events-none::before {
|
|
2761
2810
|
pointer-events: none;
|
|
2762
2811
|
}
|
|
@@ -3192,6 +3241,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3192
3241
|
color: var(--ikp-color-gray-dark-50);
|
|
3193
3242
|
}
|
|
3194
3243
|
|
|
3244
|
+
.dark\\:data-\\[is-match\\]\\:text-inkeep-expanded-primary-300[data-is-match]:is([data-theme="dark"] *) {
|
|
3245
|
+
color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3195
3248
|
.dark\\:data-\\[role\\=user\\]\\:text-white-alpha-700[data-role="user"]:is([data-theme="dark"] *) {
|
|
3196
3249
|
color: var(--ikp-color-white-alpha-700);
|
|
3197
3250
|
}
|
|
@@ -3268,6 +3321,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3268
3321
|
background-color: var(--ikp-color-white-alpha-50);
|
|
3269
3322
|
}
|
|
3270
3323
|
|
|
3324
|
+
.dark\\:hover\\:text-inkeep-expanded-primary-100:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3325
|
+
color: var(--ikp-color-inkeep-expanded-primary-100);
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3271
3328
|
.dark\\:hover\\:text-inkeep-expanded-primary-300:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3272
3329
|
color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3273
3330
|
}
|
|
@@ -3276,6 +3333,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3276
3333
|
color: var(--ikp-color-white-alpha-500);
|
|
3277
3334
|
}
|
|
3278
3335
|
|
|
3336
|
+
.dark\\:hover\\:text-white-alpha-800:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3337
|
+
color: var(--ikp-color-white-alpha-800);
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3279
3340
|
.dark\\:hover\\:text-white-alpha-950:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3280
3341
|
color: var(--ikp-color-white-alpha-950);
|
|
3281
3342
|
}
|
|
@@ -3292,6 +3353,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3292
3353
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3293
3354
|
}
|
|
3294
3355
|
|
|
3356
|
+
.dark\\:data-\\[is-match\\]\\:hover\\:text-inkeep-expanded-primary-200:hover:not(:disabled)[data-is-match]:is([data-theme="dark"] *) {
|
|
3357
|
+
color: var(--ikp-color-inkeep-expanded-primary-200);
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3295
3360
|
.befter\\:dark\\:from-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3296
3361
|
--tw-gradient-from: var(--ikp-color-gray-dark-950) var(--tw-gradient-from-position);
|
|
3297
3362
|
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
@@ -3360,6 +3425,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3360
3425
|
margin-bottom: 3rem;
|
|
3361
3426
|
}
|
|
3362
3427
|
|
|
3428
|
+
.md\\:flex {
|
|
3429
|
+
display: flex;
|
|
3430
|
+
}
|
|
3431
|
+
|
|
3363
3432
|
.md\\:hidden {
|
|
3364
3433
|
display: none;
|
|
3365
3434
|
}
|
|
@@ -3541,6 +3610,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3541
3610
|
color: var(--ikp-color-inkeep-expanded-primary-200);
|
|
3542
3611
|
}
|
|
3543
3612
|
|
|
3613
|
+
.\\[\\&_em\\]\\:font-bold em {
|
|
3614
|
+
font-weight: 700;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
.\\[\\&_em\\]\\:not-italic em {
|
|
3618
|
+
font-style: normal;
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3544
3621
|
.\\[\\&_li\\]\\:mb-1 li {
|
|
3545
3622
|
margin-bottom: 0.25rem;
|
|
3546
3623
|
}
|
|
@@ -3556,4 +3633,15 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3556
3633
|
[data-show-ask-ai-card] .\\[\\[data-show-ask-ai-card\\]_\\&\\]\\:pb-1 {
|
|
3557
3634
|
padding-bottom: 0.25rem;
|
|
3558
3635
|
}
|
|
3636
|
+
|
|
3637
|
+
[data-view=dual-pane] .first\\:\\[\\[data-view\\=dual-pane\\]_\\&\\]\\:flex-1:first-child {
|
|
3638
|
+
flex: 1 1 0%;
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
@media (min-width: 768px) {
|
|
3642
|
+
|
|
3643
|
+
[data-view=dual-pane] .md\\:first\\:\\[\\[data-view\\=dual-pane\\]_\\&\\]\\:flex-\\[0_0_40\\%\\]:first-child {
|
|
3644
|
+
flex: 0 0 40%;
|
|
3645
|
+
}
|
|
3646
|
+
}
|
|
3559
3647
|
`;exports.default=n;
|
package/dist/inkeep.css.js
CHANGED
|
@@ -714,6 +714,12 @@ video {
|
|
|
714
714
|
-webkit-box-orient: vertical;
|
|
715
715
|
-webkit-line-clamp: 1;
|
|
716
716
|
}
|
|
717
|
+
.\\!line-clamp-none {
|
|
718
|
+
overflow: visible !important;
|
|
719
|
+
display: block !important;
|
|
720
|
+
-webkit-box-orient: horizontal !important;
|
|
721
|
+
-webkit-line-clamp: none !important;
|
|
722
|
+
}
|
|
717
723
|
.block {
|
|
718
724
|
display: block;
|
|
719
725
|
}
|
|
@@ -761,6 +767,9 @@ video {
|
|
|
761
767
|
.h-20 {
|
|
762
768
|
height: 5rem;
|
|
763
769
|
}
|
|
770
|
+
.h-3 {
|
|
771
|
+
height: 0.75rem;
|
|
772
|
+
}
|
|
764
773
|
.h-3\\.5 {
|
|
765
774
|
height: 0.875rem;
|
|
766
775
|
}
|
|
@@ -821,6 +830,9 @@ video {
|
|
|
821
830
|
.max-h-screen {
|
|
822
831
|
max-height: 100vh;
|
|
823
832
|
}
|
|
833
|
+
.\\!min-h-0 {
|
|
834
|
+
min-height: 0px !important;
|
|
835
|
+
}
|
|
824
836
|
.min-h-0 {
|
|
825
837
|
min-height: 0px;
|
|
826
838
|
}
|
|
@@ -900,6 +912,9 @@ video {
|
|
|
900
912
|
.w-screen {
|
|
901
913
|
width: 100vw;
|
|
902
914
|
}
|
|
915
|
+
.\\!min-w-0 {
|
|
916
|
+
min-width: 0px !important;
|
|
917
|
+
}
|
|
903
918
|
.min-w-0 {
|
|
904
919
|
min-width: 0px;
|
|
905
920
|
}
|
|
@@ -945,6 +960,9 @@ video {
|
|
|
945
960
|
.flex-\\[0_0_100\\%\\] {
|
|
946
961
|
flex: 0 0 100%;
|
|
947
962
|
}
|
|
963
|
+
.flex-\\[0_0_40\\%\\] {
|
|
964
|
+
flex: 0 0 40%;
|
|
965
|
+
}
|
|
948
966
|
.flex-shrink-0 {
|
|
949
967
|
flex-shrink: 0;
|
|
950
968
|
}
|
|
@@ -1150,6 +1168,12 @@ video {
|
|
|
1150
1168
|
.gap-3 {
|
|
1151
1169
|
gap: 0.75rem;
|
|
1152
1170
|
}
|
|
1171
|
+
.gap-4 {
|
|
1172
|
+
gap: 1rem;
|
|
1173
|
+
}
|
|
1174
|
+
.gap-5 {
|
|
1175
|
+
gap: 1.25rem;
|
|
1176
|
+
}
|
|
1153
1177
|
.gap-6 {
|
|
1154
1178
|
gap: 1.5rem;
|
|
1155
1179
|
}
|
|
@@ -1208,6 +1232,11 @@ video {
|
|
|
1208
1232
|
.overflow-y-auto {
|
|
1209
1233
|
overflow-y: auto;
|
|
1210
1234
|
}
|
|
1235
|
+
.truncate {
|
|
1236
|
+
overflow: hidden;
|
|
1237
|
+
text-overflow: ellipsis;
|
|
1238
|
+
white-space: nowrap;
|
|
1239
|
+
}
|
|
1211
1240
|
.text-ellipsis {
|
|
1212
1241
|
text-overflow: ellipsis;
|
|
1213
1242
|
}
|
|
@@ -1396,6 +1425,10 @@ video {
|
|
|
1396
1425
|
padding-left: 0.25rem;
|
|
1397
1426
|
padding-right: 0.25rem;
|
|
1398
1427
|
}
|
|
1428
|
+
.px-12 {
|
|
1429
|
+
padding-left: 3rem;
|
|
1430
|
+
padding-right: 3rem;
|
|
1431
|
+
}
|
|
1399
1432
|
.px-2 {
|
|
1400
1433
|
padding-left: 0.5rem;
|
|
1401
1434
|
padding-right: 0.5rem;
|
|
@@ -2244,6 +2277,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2244
2277
|
color: var(--ikp-color-gray-600);
|
|
2245
2278
|
}
|
|
2246
2279
|
|
|
2280
|
+
.has-\\[\\[data-dual-pane-search-expanded\\]\\]\\:w-\\[min\\(90vw\\2c 950px\\)\\]:has([data-dual-pane-search-expanded]) {
|
|
2281
|
+
width: min(90vw,950px);
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2247
2284
|
.has-\\[\\[data-scroll-top\\]\\]\\:before\\:opacity-0:has([data-scroll-top])::before {
|
|
2248
2285
|
content: var(--tw-content);
|
|
2249
2286
|
opacity: 0;
|
|
@@ -2473,6 +2510,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2473
2510
|
color: var(--ikp-color-inkeep-primary-text-subtle);
|
|
2474
2511
|
}
|
|
2475
2512
|
|
|
2513
|
+
.data-\\[is-match\\]\\:text-inkeep-expanded-primary-700[data-is-match] {
|
|
2514
|
+
color: var(--ikp-color-inkeep-expanded-primary-700);
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2476
2517
|
.data-\\[role\\=user\\]\\:text-gray-700[data-role="user"] {
|
|
2477
2518
|
color: var(--ikp-color-gray-700);
|
|
2478
2519
|
}
|
|
@@ -2742,6 +2783,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2742
2783
|
color: var(--ikp-color-inkeep-primary-strong);
|
|
2743
2784
|
}
|
|
2744
2785
|
|
|
2786
|
+
.hover\\:text-inkeep-primary-stronger:hover:not(:disabled) {
|
|
2787
|
+
color: var(--ikp-color-inkeep-primary-stronger);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2745
2790
|
.hover\\:underline:hover:not(:disabled) {
|
|
2746
2791
|
text-decoration-line: underline;
|
|
2747
2792
|
}
|
|
@@ -2758,6 +2803,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
2758
2803
|
background-color: var(--ikp-color-inkeep-primary-light-subtle);
|
|
2759
2804
|
}
|
|
2760
2805
|
|
|
2806
|
+
.data-\\[is-match\\]\\:hover\\:text-inkeep-expanded-primary-800:hover:not(:disabled)[data-is-match] {
|
|
2807
|
+
color: var(--ikp-color-inkeep-expanded-primary-800);
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2761
2810
|
.befter\\:pointer-events-none::before {
|
|
2762
2811
|
pointer-events: none;
|
|
2763
2812
|
}
|
|
@@ -3193,6 +3242,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3193
3242
|
color: var(--ikp-color-gray-dark-50);
|
|
3194
3243
|
}
|
|
3195
3244
|
|
|
3245
|
+
.dark\\:data-\\[is-match\\]\\:text-inkeep-expanded-primary-300[data-is-match]:is([data-theme="dark"] *) {
|
|
3246
|
+
color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3196
3249
|
.dark\\:data-\\[role\\=user\\]\\:text-white-alpha-700[data-role="user"]:is([data-theme="dark"] *) {
|
|
3197
3250
|
color: var(--ikp-color-white-alpha-700);
|
|
3198
3251
|
}
|
|
@@ -3269,6 +3322,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3269
3322
|
background-color: var(--ikp-color-white-alpha-50);
|
|
3270
3323
|
}
|
|
3271
3324
|
|
|
3325
|
+
.dark\\:hover\\:text-inkeep-expanded-primary-100:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3326
|
+
color: var(--ikp-color-inkeep-expanded-primary-100);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3272
3329
|
.dark\\:hover\\:text-inkeep-expanded-primary-300:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3273
3330
|
color: var(--ikp-color-inkeep-expanded-primary-300);
|
|
3274
3331
|
}
|
|
@@ -3277,6 +3334,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3277
3334
|
color: var(--ikp-color-white-alpha-500);
|
|
3278
3335
|
}
|
|
3279
3336
|
|
|
3337
|
+
.dark\\:hover\\:text-white-alpha-800:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3338
|
+
color: var(--ikp-color-white-alpha-800);
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3280
3341
|
.dark\\:hover\\:text-white-alpha-950:hover:not(:disabled):is([data-theme="dark"] *) {
|
|
3281
3342
|
color: var(--ikp-color-white-alpha-950);
|
|
3282
3343
|
}
|
|
@@ -3293,6 +3354,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3293
3354
|
background-color: var(--ikp-color-white-alpha-100);
|
|
3294
3355
|
}
|
|
3295
3356
|
|
|
3357
|
+
.dark\\:data-\\[is-match\\]\\:hover\\:text-inkeep-expanded-primary-200:hover:not(:disabled)[data-is-match]:is([data-theme="dark"] *) {
|
|
3358
|
+
color: var(--ikp-color-inkeep-expanded-primary-200);
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3296
3361
|
.befter\\:dark\\:from-gray-dark-950:is([data-theme="dark"] *)::before {
|
|
3297
3362
|
--tw-gradient-from: var(--ikp-color-gray-dark-950) var(--tw-gradient-from-position);
|
|
3298
3363
|
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
@@ -3361,6 +3426,10 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3361
3426
|
margin-bottom: 3rem;
|
|
3362
3427
|
}
|
|
3363
3428
|
|
|
3429
|
+
.md\\:flex {
|
|
3430
|
+
display: flex;
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3364
3433
|
.md\\:hidden {
|
|
3365
3434
|
display: none;
|
|
3366
3435
|
}
|
|
@@ -3542,6 +3611,14 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3542
3611
|
color: var(--ikp-color-inkeep-expanded-primary-200);
|
|
3543
3612
|
}
|
|
3544
3613
|
|
|
3614
|
+
.\\[\\&_em\\]\\:font-bold em {
|
|
3615
|
+
font-weight: 700;
|
|
3616
|
+
}
|
|
3617
|
+
|
|
3618
|
+
.\\[\\&_em\\]\\:not-italic em {
|
|
3619
|
+
font-style: normal;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3545
3622
|
.\\[\\&_li\\]\\:mb-1 li {
|
|
3546
3623
|
margin-bottom: 0.25rem;
|
|
3547
3624
|
}
|
|
@@ -3557,6 +3634,17 @@ img[data-part='icon'][data-type='custom'] {
|
|
|
3557
3634
|
[data-show-ask-ai-card] .\\[\\[data-show-ask-ai-card\\]_\\&\\]\\:pb-1 {
|
|
3558
3635
|
padding-bottom: 0.25rem;
|
|
3559
3636
|
}
|
|
3637
|
+
|
|
3638
|
+
[data-view=dual-pane] .first\\:\\[\\[data-view\\=dual-pane\\]_\\&\\]\\:flex-1:first-child {
|
|
3639
|
+
flex: 1 1 0%;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
@media (min-width: 768px) {
|
|
3643
|
+
|
|
3644
|
+
[data-view=dual-pane] .md\\:first\\:\\[\\[data-view\\=dual-pane\\]_\\&\\]\\:flex-\\[0_0_40\\%\\]:first-child {
|
|
3645
|
+
flex: 0 0 40%;
|
|
3646
|
+
}
|
|
3647
|
+
}
|
|
3560
3648
|
`;
|
|
3561
3649
|
export {
|
|
3562
3650
|
n as default
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./recipes/button.cjs"),t=require("./recipes/link.cjs"),e=require("./recipes/markdown.cjs"),o=require("../utils.cjs"),n={markdownH1:o.cn(e.heading({size:"lg"}),"mb-3"),markdownH2:o.cn(e.heading({size:"md"}),"mb-2"),markdownP:o.cn("mb-3 break-words whitespace-pre-wrap","[&+ol,&+li]:mt-0"),markdownLi:o.cn("[&_a]:break-words [&_a]:inline"),markdownUl:e.list({style:"unordered"}),markdownOl:o.cn(e.list({style:"ordered"}),"[inset-inline-start:var(--start,0px)]","[counter-reset:item_calc(var(--start,0)_-_1)]"),markdownLink:o.cn(t.link(),"text-inkeep-primary-stronger hover:text-inkeep-primary-strong","dark:text-inkeep-expanded-primary-100 dark:hover:text-inkeep-expanded-primary-300"),markdownSourceLink:e.sup(),markdownTable:e.table({slot:"root"}),markdownTh:e.table({slot:"th"}),markdownTd:e.table({slot:"td"}),markdownCode:e.code(),codeblockContainer:e.codeblock({slot:"container"}),codeblockHeader:e.codeblock({slot:"header"}),codeblockCopyButton:o.cn(r.button({}),e.codeblock({slot:"copyButton"})),codeblockHighlighterWrapper:o.cn(),codeblockHighlighter:e.codeblock({slot:"highlighter"}),codeblockCode:"font-mono"};exports.markdownStyles=n;
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./recipes/button.cjs"),t=require("./recipes/link.cjs"),e=require("./recipes/markdown.cjs"),o=require("../utils.cjs"),n={markdownH1:o.cn(e.heading({size:"lg"}),"mb-3"),markdownH2:o.cn(e.heading({size:"md"}),"mb-2"),markdownP:o.cn("mb-3 break-words whitespace-pre-wrap","[&+ol,&+li]:mt-0"),markdownLi:o.cn("[&_a]:break-words [&_a]:inline"),markdownUl:e.list({style:"unordered"}),markdownOl:o.cn(e.list({style:"ordered"}),"[inset-inline-start:var(--start,0px)]","[counter-reset:item_calc(var(--start,0)_-_1)]"),markdownLink:o.cn(t.link(),"text-inkeep-primary-stronger hover:text-inkeep-primary-strong","dark:text-inkeep-expanded-primary-100 dark:hover:text-inkeep-expanded-primary-300"),markdownSourceLink:e.sup(),markdownTable:e.table({slot:"root"}),markdownTh:e.table({slot:"th"}),markdownTd:e.table({slot:"td"}),markdownCode:e.code(),codeblockContainer:e.codeblock({slot:"container"}),codeblockHeader:e.codeblock({slot:"header"}),codeblockCopyButton:o.cn(r.button({}),e.codeblock({slot:"copyButton"})),codeblockHighlighterWrapper:o.cn(),codeblockHighlighter:e.codeblock({slot:"highlighter"}),codeblockCode:"font-mono",markdownInput:o.cn("mr-1")};exports.markdownStyles=n;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { button as a } from "./recipes/button.js";
|
|
3
3
|
import { link as d } from "./recipes/link.js";
|
|
4
|
-
import { codeblock as e, code as i, table as r, sup as
|
|
4
|
+
import { codeblock as e, code as i, table as r, sup as m, list as t, heading as n } from "./recipes/markdown.js";
|
|
5
5
|
import { cn as o } from "../utils.js";
|
|
6
6
|
const p = {
|
|
7
7
|
markdownH1: o(n({ size: "lg" }), "mb-3"),
|
|
@@ -19,7 +19,7 @@ const p = {
|
|
|
19
19
|
"text-inkeep-primary-stronger hover:text-inkeep-primary-strong",
|
|
20
20
|
"dark:text-inkeep-expanded-primary-100 dark:hover:text-inkeep-expanded-primary-300"
|
|
21
21
|
),
|
|
22
|
-
markdownSourceLink:
|
|
22
|
+
markdownSourceLink: m(),
|
|
23
23
|
markdownTable: r({ slot: "root" }),
|
|
24
24
|
markdownTh: r({ slot: "th" }),
|
|
25
25
|
markdownTd: r({ slot: "td" }),
|
|
@@ -29,7 +29,8 @@ const p = {
|
|
|
29
29
|
codeblockCopyButton: o(a({}), e({ slot: "copyButton" })),
|
|
30
30
|
codeblockHighlighterWrapper: o(),
|
|
31
31
|
codeblockHighlighter: e({ slot: "highlighter" }),
|
|
32
|
-
codeblockCode: "font-mono"
|
|
32
|
+
codeblockCode: "font-mono",
|
|
33
|
+
markdownInput: o("mr-1")
|
|
33
34
|
};
|
|
34
35
|
export {
|
|
35
36
|
p as markdownStyles
|