@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260325110100 → 0.8.1-dev.20260325113121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3306,12 +3306,12 @@ var CodeNode = (props) => {
|
|
|
3306
3306
|
if (node.type === "link") return node.text || node.url || "";
|
|
3307
3307
|
return "";
|
|
3308
3308
|
}).join("") ?? "";
|
|
3309
|
-
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", {
|
|
3310
|
-
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "flex items-center relative
|
|
3309
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { children: [
|
|
3310
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "flex items-center relative bg-neutral-strong px-4 py-3 text-xs font-sans justify-between rounded-t-md ", children: [
|
|
3311
3311
|
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { children: "Code Snippet" }),
|
|
3312
3312
|
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(CopyButton2, { text: textContent })
|
|
3313
3313
|
] }),
|
|
3314
|
-
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("code", { className: "
|
|
3314
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("code", { className: "bg-neutral-soft p-4 text-sm whitespace-pre-wrap border border-2", children: props.node.children && props.node.children.map((node, index) => {
|
|
3315
3315
|
const SelectedNode = NodeTypes2[node.type];
|
|
3316
3316
|
return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_react42.default.Fragment, { children: SelectedNode && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
|
3317
3317
|
SelectedNode,
|
package/dist/index.mjs
CHANGED
|
@@ -2963,12 +2963,12 @@ var CodeNode = (props) => {
|
|
|
2963
2963
|
if (node.type === "link") return node.text || node.url || "";
|
|
2964
2964
|
return "";
|
|
2965
2965
|
}).join("") ?? "";
|
|
2966
|
-
return /* @__PURE__ */ jsxs25("div", {
|
|
2967
|
-
/* @__PURE__ */ jsxs25("div", { className: "flex items-center relative
|
|
2966
|
+
return /* @__PURE__ */ jsxs25("div", { children: [
|
|
2967
|
+
/* @__PURE__ */ jsxs25("div", { className: "flex items-center relative bg-neutral-strong px-4 py-3 text-xs font-sans justify-between rounded-t-md ", children: [
|
|
2968
2968
|
/* @__PURE__ */ jsx52("span", { children: "Code Snippet" }),
|
|
2969
2969
|
/* @__PURE__ */ jsx52(CopyButton, { text: textContent })
|
|
2970
2970
|
] }),
|
|
2971
|
-
/* @__PURE__ */ jsx52("code", { className: "
|
|
2971
|
+
/* @__PURE__ */ jsx52("code", { className: "bg-neutral-soft p-4 text-sm whitespace-pre-wrap border border-2", children: props.node.children && props.node.children.map((node, index) => {
|
|
2972
2972
|
const SelectedNode = NodeTypes2[node.type];
|
|
2973
2973
|
return /* @__PURE__ */ jsx52(React41.Fragment, { children: SelectedNode && /* @__PURE__ */ jsx52(
|
|
2974
2974
|
SelectedNode,
|
package/package.json
CHANGED