@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.
@@ -5984,9 +5984,11 @@ function DataExplorerPage({
5984
5984
  content,
5985
5985
  view,
5986
5986
  detail,
5987
+ appearance,
5987
5988
  className,
5988
5989
  classNames
5989
5990
  }) {
5991
+ const theme = appearance ? resolveDataExplorerAppearance(appearance) : void 0;
5990
5992
  const sidebarNode = tree ?? sidebar;
5991
5993
  const toolbarNode = controls ?? toolbar;
5992
5994
  const contentNode = view ?? content;
@@ -5995,6 +5997,7 @@ function DataExplorerPage({
5995
5997
  {
5996
5998
  className: cn(
5997
5999
  "flex h-full min-h-0 overflow-hidden",
6000
+ theme?.slots.cardRoot,
5998
6001
  classNames?.root,
5999
6002
  className
6000
6003
  ),