@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.
@@ -23,6 +23,7 @@ function resolveDataExplorerValue(value, context) {
23
23
  // src/components/data-explorer/theme.ts
24
24
  var emptyStyles = {};
25
25
  var baseSlots = {
26
+ surfaceRoot: "relative flex h-full min-h-0 w-full min-w-0 overflow-hidden rounded-md border border-border bg-background shadow-sm",
26
27
  toolbarRoot: "flex flex-wrap items-center gap-2 border-b border-border bg-background px-4 py-3",
27
28
  toolbarLeading: "flex items-center gap-2",
28
29
  toolbarSearch: "flex h-10 min-w-52 flex-1 items-center gap-2 rounded-md border border-border bg-background px-3 text-sm",
@@ -154,6 +155,7 @@ var densitySlots = {
154
155
  };
155
156
  var radiusSlots = {
156
157
  none: {
158
+ surfaceRoot: "rounded-none",
157
159
  toolbarSearch: "rounded-none",
158
160
  toolbarViewSwitch: "rounded-none",
159
161
  toolbarViewButton: "rounded-none",
@@ -178,6 +180,7 @@ var radiusSlots = {
178
180
  treeNodeDragHandle: "rounded-none"
179
181
  },
180
182
  sm: {
183
+ surfaceRoot: "rounded-sm",
181
184
  toolbarSearch: "rounded-sm",
182
185
  toolbarViewSwitch: "rounded-sm",
183
186
  toolbarViewButton: "rounded-sm",
@@ -198,6 +201,7 @@ var radiusSlots = {
198
201
  },
199
202
  md: {},
200
203
  lg: {
204
+ surfaceRoot: "rounded-xl",
201
205
  toolbarSearch: "rounded-lg",
202
206
  toolbarViewSwitch: "rounded-lg",
203
207
  toolbarViewButton: "rounded-lg",
@@ -216,6 +220,7 @@ var radiusSlots = {
216
220
  treeNodeDragHandle: "rounded-md"
217
221
  },
218
222
  xl: {
223
+ surfaceRoot: "rounded-2xl",
219
224
  toolbarSearch: "rounded-xl",
220
225
  toolbarViewSwitch: "rounded-xl",
221
226
  toolbarViewButton: "rounded-xl",
@@ -234,6 +239,7 @@ var radiusSlots = {
234
239
  treeNodeDragHandle: "rounded-lg"
235
240
  },
236
241
  full: {
242
+ surfaceRoot: "rounded-2xl",
237
243
  toolbarSearch: "rounded-full",
238
244
  toolbarViewSwitch: "rounded-full",
239
245
  toolbarViewButton: "rounded-full",
@@ -253,6 +259,7 @@ var radiusSlots = {
253
259
  };
254
260
  var borderSlots = {
255
261
  none: {
262
+ surfaceRoot: "border-transparent",
256
263
  toolbarRoot: "border-transparent",
257
264
  toolbarSearch: "border-transparent",
258
265
  toolbarViewSwitch: "border-transparent",
@@ -267,6 +274,7 @@ var borderSlots = {
267
274
  detailRightPanel: "border-transparent"
268
275
  },
269
276
  subtle: {
277
+ surfaceRoot: "border-border/60",
270
278
  toolbarRoot: "border-border/60",
271
279
  toolbarSearch: "border-border/60",
272
280
  toolbarViewSwitch: "border-border/60",
@@ -279,6 +287,7 @@ var borderSlots = {
279
287
  },
280
288
  solid: {},
281
289
  strong: {
290
+ surfaceRoot: "border-foreground/20",
282
291
  toolbarRoot: "border-foreground/20",
283
292
  toolbarSearch: "border-foreground/20",
284
293
  toolbarViewSwitch: "border-foreground/20",
@@ -293,6 +302,7 @@ var borderSlots = {
293
302
  var backgroundSlots = {
294
303
  plain: {},
295
304
  muted: {
305
+ surfaceRoot: "bg-card",
296
306
  toolbarRoot: "bg-muted/20",
297
307
  toolbarSearch: "bg-background",
298
308
  toolbarViewSwitch: "bg-background",
@@ -304,6 +314,7 @@ var backgroundSlots = {
304
314
  detailHeader: "bg-muted/20"
305
315
  },
306
316
  soft: {
317
+ surfaceRoot: "bg-background/95 shadow-sm",
307
318
  toolbarRoot: "bg-background/95",
308
319
  actionButtonDefault: "bg-muted/30 hover:bg-muted/55",
309
320
  controlButton: "bg-muted/30 hover:bg-muted/55",
@@ -313,6 +324,7 @@ var backgroundSlots = {
313
324
  footerRoot: "bg-background/95"
314
325
  },
315
326
  glass: {
327
+ surfaceRoot: "border-white/10 bg-white/[0.06] shadow-none backdrop-blur-md",
316
328
  toolbarRoot: "border-white/10 bg-white/5 backdrop-blur-md",
317
329
  toolbarSearch: "border-white/10 bg-white/5",
318
330
  toolbarViewSwitch: "border-white/10 bg-white/5",
@@ -5997,10 +6009,11 @@ function DataExplorerPage({
5997
6009
  {
5998
6010
  className: cn(
5999
6011
  "flex h-full min-h-0 overflow-hidden",
6000
- theme?.slots.cardRoot,
6012
+ theme?.slots.surfaceRoot,
6001
6013
  classNames?.root,
6002
6014
  className
6003
6015
  ),
6016
+ style: theme?.styles.surfaceRoot,
6004
6017
  children: [
6005
6018
  sidebarNode ? /* @__PURE__ */ jsx(
6006
6019
  "div",