@inf-monkeys-tech/monkeys-design 1.0.93 → 1.0.95

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.mjs CHANGED
@@ -24768,9 +24768,11 @@ function DataExplorerPage({
24768
24768
  content,
24769
24769
  view,
24770
24770
  detail,
24771
+ appearance,
24771
24772
  className,
24772
24773
  classNames
24773
24774
  }) {
24775
+ const theme = appearance ? resolveDataExplorerAppearance(appearance) : void 0;
24774
24776
  const sidebarNode = tree ?? sidebar;
24775
24777
  const toolbarNode = controls ?? toolbar;
24776
24778
  const contentNode = view ?? content;
@@ -24779,6 +24781,7 @@ function DataExplorerPage({
24779
24781
  {
24780
24782
  className: cn3(
24781
24783
  "flex h-full min-h-0 overflow-hidden",
24784
+ theme?.slots.cardRoot,
24782
24785
  classNames?.root,
24783
24786
  className
24784
24787
  ),