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

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
@@ -21685,6 +21685,7 @@ function resolveDataExplorerValue(value, context) {
21685
21685
  // src/components/data-explorer/theme.ts
21686
21686
  var emptyStyles2 = {};
21687
21687
  var baseSlots2 = {
21688
+ surfaceRoot: "relative flex h-full min-h-0 w-full min-w-0 overflow-hidden rounded-md border border-border bg-background shadow-sm",
21688
21689
  toolbarRoot: "flex flex-wrap items-center gap-2 border-b border-border bg-background px-4 py-3",
21689
21690
  toolbarLeading: "flex items-center gap-2",
21690
21691
  toolbarSearch: "flex h-10 min-w-52 flex-1 items-center gap-2 rounded-md border border-border bg-background px-3 text-sm",
@@ -21816,6 +21817,7 @@ var densitySlots2 = {
21816
21817
  };
21817
21818
  var radiusSlots2 = {
21818
21819
  none: {
21820
+ surfaceRoot: "rounded-none",
21819
21821
  toolbarSearch: "rounded-none",
21820
21822
  toolbarViewSwitch: "rounded-none",
21821
21823
  toolbarViewButton: "rounded-none",
@@ -21840,6 +21842,7 @@ var radiusSlots2 = {
21840
21842
  treeNodeDragHandle: "rounded-none"
21841
21843
  },
21842
21844
  sm: {
21845
+ surfaceRoot: "rounded-sm",
21843
21846
  toolbarSearch: "rounded-sm",
21844
21847
  toolbarViewSwitch: "rounded-sm",
21845
21848
  toolbarViewButton: "rounded-sm",
@@ -21860,6 +21863,7 @@ var radiusSlots2 = {
21860
21863
  },
21861
21864
  md: {},
21862
21865
  lg: {
21866
+ surfaceRoot: "rounded-xl",
21863
21867
  toolbarSearch: "rounded-lg",
21864
21868
  toolbarViewSwitch: "rounded-lg",
21865
21869
  toolbarViewButton: "rounded-lg",
@@ -21878,6 +21882,7 @@ var radiusSlots2 = {
21878
21882
  treeNodeDragHandle: "rounded-md"
21879
21883
  },
21880
21884
  xl: {
21885
+ surfaceRoot: "rounded-2xl",
21881
21886
  toolbarSearch: "rounded-xl",
21882
21887
  toolbarViewSwitch: "rounded-xl",
21883
21888
  toolbarViewButton: "rounded-xl",
@@ -21896,6 +21901,7 @@ var radiusSlots2 = {
21896
21901
  treeNodeDragHandle: "rounded-lg"
21897
21902
  },
21898
21903
  full: {
21904
+ surfaceRoot: "rounded-2xl",
21899
21905
  toolbarSearch: "rounded-full",
21900
21906
  toolbarViewSwitch: "rounded-full",
21901
21907
  toolbarViewButton: "rounded-full",
@@ -21915,6 +21921,7 @@ var radiusSlots2 = {
21915
21921
  };
21916
21922
  var borderSlots2 = {
21917
21923
  none: {
21924
+ surfaceRoot: "border-transparent",
21918
21925
  toolbarRoot: "border-transparent",
21919
21926
  toolbarSearch: "border-transparent",
21920
21927
  toolbarViewSwitch: "border-transparent",
@@ -21929,6 +21936,7 @@ var borderSlots2 = {
21929
21936
  detailRightPanel: "border-transparent"
21930
21937
  },
21931
21938
  subtle: {
21939
+ surfaceRoot: "border-border/60",
21932
21940
  toolbarRoot: "border-border/60",
21933
21941
  toolbarSearch: "border-border/60",
21934
21942
  toolbarViewSwitch: "border-border/60",
@@ -21941,6 +21949,7 @@ var borderSlots2 = {
21941
21949
  },
21942
21950
  solid: {},
21943
21951
  strong: {
21952
+ surfaceRoot: "border-foreground/20",
21944
21953
  toolbarRoot: "border-foreground/20",
21945
21954
  toolbarSearch: "border-foreground/20",
21946
21955
  toolbarViewSwitch: "border-foreground/20",
@@ -21955,6 +21964,7 @@ var borderSlots2 = {
21955
21964
  var backgroundSlots2 = {
21956
21965
  plain: {},
21957
21966
  muted: {
21967
+ surfaceRoot: "bg-card",
21958
21968
  toolbarRoot: "bg-muted/20",
21959
21969
  toolbarSearch: "bg-background",
21960
21970
  toolbarViewSwitch: "bg-background",
@@ -21966,6 +21976,7 @@ var backgroundSlots2 = {
21966
21976
  detailHeader: "bg-muted/20"
21967
21977
  },
21968
21978
  soft: {
21979
+ surfaceRoot: "bg-background/95 shadow-sm",
21969
21980
  toolbarRoot: "bg-background/95",
21970
21981
  actionButtonDefault: "bg-muted/30 hover:bg-muted/55",
21971
21982
  controlButton: "bg-muted/30 hover:bg-muted/55",
@@ -21975,6 +21986,7 @@ var backgroundSlots2 = {
21975
21986
  footerRoot: "bg-background/95"
21976
21987
  },
21977
21988
  glass: {
21989
+ surfaceRoot: "border-white/10 bg-white/[0.06] shadow-none backdrop-blur-md",
21978
21990
  toolbarRoot: "border-white/10 bg-white/5 backdrop-blur-md",
21979
21991
  toolbarSearch: "border-white/10 bg-white/5",
21980
21992
  toolbarViewSwitch: "border-white/10 bg-white/5",
@@ -24781,10 +24793,11 @@ function DataExplorerPage({
24781
24793
  {
24782
24794
  className: cn3(
24783
24795
  "flex h-full min-h-0 overflow-hidden",
24784
- theme?.slots.cardRoot,
24796
+ theme?.slots.surfaceRoot,
24785
24797
  classNames?.root,
24786
24798
  className
24787
24799
  ),
24800
+ style: theme?.styles.surfaceRoot,
24788
24801
  children: [
24789
24802
  sidebarNode ? /* @__PURE__ */ jsx(
24790
24803
  "div",