@inf-monkeys-tech/monkeys-design 2.0.8 → 2.0.9

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.
@@ -7568,7 +7568,9 @@ function DataExplorerViewTree({
7568
7568
  classNames?.nodeButton,
7569
7569
  classNames?.itemButton
7570
7570
  ),
7571
- style: { paddingLeft: `${(node.indentLevel ?? depth) * indentSize + 8}px` },
7571
+ style: {
7572
+ paddingLeft: `calc(${(node.indentLevel ?? depth) * indentSize + 8}px + var(--data-explorer-tree-group-indent, 0px))`
7573
+ },
7572
7574
  role: "treeitem",
7573
7575
  "aria-selected": isSelected || void 0,
7574
7576
  "aria-disabled": node.disabled || void 0,
@@ -7804,7 +7806,7 @@ function DataExplorerViewTree({
7804
7806
  onClick: () => setGroupExpanded(group.id, !groupExpanded),
7805
7807
  children: /* @__PURE__ */ jsxRuntime.jsx(ChevronIcon2, { expanded: groupExpanded })
7806
7808
  }
7807
- ) : /* @__PURE__ */ jsxRuntime.jsx("span", { className: theme.slots.treeNodeToggle }),
7809
+ ) : /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn2(theme.slots.treeNodeToggle, classNames?.expander) }),
7808
7810
  renderActions(actions, { type: "group", group })
7809
7811
  ]
7810
7812
  }