@opengeni/react 0.35.2 → 0.36.0
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.
|
@@ -3724,7 +3724,14 @@ function MarkdownCodeBlock({ children }) {
|
|
|
3724
3724
|
language ? /* @__PURE__ */ jsx11("span", { className: "rounded px-1 py-0.5 font-og-mono text-[10px] uppercase tracking-wide text-og-fg-subtle/80 opacity-0 transition-opacity group-hover/copy:opacity-100 pointer-coarse:opacity-70", children: language }) : null,
|
|
3725
3725
|
/* @__PURE__ */ jsx11("div", { className: "pointer-events-auto", children: /* @__PURE__ */ jsx11(CopyButton, { text: code, label: "Copy code", reveal: "group-hover" }) })
|
|
3726
3726
|
] }),
|
|
3727
|
-
/* @__PURE__ */ jsx11(
|
|
3727
|
+
/* @__PURE__ */ jsx11(
|
|
3728
|
+
"pre",
|
|
3729
|
+
{
|
|
3730
|
+
tabIndex: 0,
|
|
3731
|
+
className: "overflow-x-auto overflow-y-hidden rounded-og-md bg-og-surface-1/70 px-3 py-2.5 font-og-mono text-og-sm leading-5 text-og-fg-muted [scrollbar-gutter:stable] [&>code]:block [&>code]:border-0 [&>code]:bg-transparent [&>code]:p-0 [&>code]:leading-5 [&>code]:text-inherit",
|
|
3732
|
+
children
|
|
3733
|
+
}
|
|
3734
|
+
)
|
|
3728
3735
|
] });
|
|
3729
3736
|
}
|
|
3730
3737
|
function MarkdownTable({ children, className, ...props }) {
|
|
@@ -3738,7 +3745,7 @@ function MarkdownTable({ children, className, ...props }) {
|
|
|
3738
3745
|
reveal: "group-hover"
|
|
3739
3746
|
}
|
|
3740
3747
|
) }) }),
|
|
3741
|
-
/* @__PURE__ */ jsx11("div", { className: "overflow-x-auto", children: /* @__PURE__ */ jsx11(
|
|
3748
|
+
/* @__PURE__ */ jsx11("div", { className: "overflow-x-auto", tabIndex: 0, children: /* @__PURE__ */ jsx11(
|
|
3742
3749
|
"table",
|
|
3743
3750
|
{
|
|
3744
3751
|
ref: tableRef,
|
|
@@ -6797,4 +6804,4 @@ export {
|
|
|
6797
6804
|
MessageTimeline,
|
|
6798
6805
|
TimelineRow
|
|
6799
6806
|
};
|
|
6800
|
-
//# sourceMappingURL=chunk-
|
|
6807
|
+
//# sourceMappingURL=chunk-XT7JF2EH.js.map
|