@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.
@@ -7545,7 +7545,9 @@ function DataExplorerViewTree({
7545
7545
  classNames?.nodeButton,
7546
7546
  classNames?.itemButton
7547
7547
  ),
7548
- style: { paddingLeft: `${(node.indentLevel ?? depth) * indentSize + 8}px` },
7548
+ style: {
7549
+ paddingLeft: `calc(${(node.indentLevel ?? depth) * indentSize + 8}px + var(--data-explorer-tree-group-indent, 0px))`
7550
+ },
7549
7551
  role: "treeitem",
7550
7552
  "aria-selected": isSelected || void 0,
7551
7553
  "aria-disabled": node.disabled || void 0,
@@ -7781,7 +7783,7 @@ function DataExplorerViewTree({
7781
7783
  onClick: () => setGroupExpanded(group.id, !groupExpanded),
7782
7784
  children: /* @__PURE__ */ jsx(ChevronIcon2, { expanded: groupExpanded })
7783
7785
  }
7784
- ) : /* @__PURE__ */ jsx("span", { className: theme.slots.treeNodeToggle }),
7786
+ ) : /* @__PURE__ */ jsx("span", { className: cn2(theme.slots.treeNodeToggle, classNames?.expander) }),
7785
7787
  renderActions(actions, { type: "group", group })
7786
7788
  ]
7787
7789
  }