@lax-wp/design-system 0.11.34 → 0.11.35
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.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +22 -12
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -84175,18 +84175,28 @@ const BO = ({
|
|
|
84175
84175
|
"grid transition-[grid-template-rows] duration-200 ease-in-out",
|
|
84176
84176
|
n ? "grid-rows-[1fr]" : "grid-rows-[0fr]"
|
|
84177
84177
|
),
|
|
84178
|
-
children: /* @__PURE__ */ A("div", { className: "overflow-hidden", children: /* @__PURE__ */
|
|
84179
|
-
|
|
84180
|
-
|
|
84181
|
-
|
|
84182
|
-
|
|
84183
|
-
|
|
84184
|
-
|
|
84185
|
-
|
|
84186
|
-
|
|
84187
|
-
|
|
84188
|
-
|
|
84189
|
-
|
|
84178
|
+
children: /* @__PURE__ */ A("div", { className: "overflow-hidden", children: /* @__PURE__ */ A("div", { className: "flex flex-col", children: t.children?.map((p, h) => {
|
|
84179
|
+
if (!p || !yb(p)) return null;
|
|
84180
|
+
const m = h === (t.children?.length ?? 0) - 1;
|
|
84181
|
+
return /* @__PURE__ */ T("div", { className: "relative", children: [
|
|
84182
|
+
/* @__PURE__ */ A(
|
|
84183
|
+
"div",
|
|
84184
|
+
{
|
|
84185
|
+
className: "absolute left-[19px] top-0 w-3.5 border-l border-b border-neutral-200 dark:border-black-600 rounded-bl-[6px] pointer-events-none",
|
|
84186
|
+
style: { height: "calc(50% + 4px)" }
|
|
84187
|
+
}
|
|
84188
|
+
),
|
|
84189
|
+
!m && /* @__PURE__ */ A("div", { className: "absolute left-[19px] top-1/2 bottom-0 w-px bg-neutral-200 dark:bg-black-600 pointer-events-none" }),
|
|
84190
|
+
/* @__PURE__ */ A(
|
|
84191
|
+
vb,
|
|
84192
|
+
{
|
|
84193
|
+
item: p,
|
|
84194
|
+
onItemClick: e,
|
|
84195
|
+
isChild: !0
|
|
84196
|
+
}
|
|
84197
|
+
)
|
|
84198
|
+
] }, p.key ?? h);
|
|
84199
|
+
}) }) })
|
|
84190
84200
|
}
|
|
84191
84201
|
)
|
|
84192
84202
|
] });
|