@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.
@@ -1,5 +1,5 @@
1
1
  import { ReactNode, HTMLAttributes, CSSProperties, MouseEvent, ElementType, RefAttributes, ReactElement } from 'react';
2
- import { aJ as DataExplorerViewTreeProps } from '../../types-72b7966c2155.mjs';
2
+ import { aJ as DataExplorerViewTreeProps } from '../../types-72c1ec970e96.mjs';
3
3
  type NavigationSidebarKind = "catalog" | "route" | "tree";
4
4
  type NavigationSidebarDensity = "comfortable" | "compact" | "default";
5
5
  type NavigationSidebarSurface = "frosted" | "outlined" | "panel" | "plain";
@@ -1,5 +1,5 @@
1
1
  import { ReactNode, HTMLAttributes, CSSProperties, MouseEvent, ElementType, RefAttributes, ReactElement } from 'react';
2
- import { aJ as DataExplorerViewTreeProps } from '../../types-72b7966c2155.js';
2
+ import { aJ as DataExplorerViewTreeProps } from '../../types-72c1ec970e96.js';
3
3
  type NavigationSidebarKind = "catalog" | "route" | "tree";
4
4
  type NavigationSidebarDensity = "comfortable" | "compact" | "default";
5
5
  type NavigationSidebarSurface = "frosted" | "outlined" | "panel" | "plain";
@@ -47,6 +47,7 @@ function resolveDataExplorerValue(value, context) {
47
47
  // src/components/data-explorer/theme.ts
48
48
  var emptyStyles = {};
49
49
  var baseSlots = {
50
+ surfaceRoot: "relative flex h-full min-h-0 w-full min-w-0 overflow-hidden rounded-md border border-border bg-background shadow-sm",
50
51
  toolbarRoot: "flex flex-wrap items-center gap-2 border-b border-border bg-background px-4 py-3",
51
52
  toolbarLeading: "flex items-center gap-2",
52
53
  toolbarSearch: "flex h-10 min-w-52 flex-1 items-center gap-2 rounded-md border border-border bg-background px-3 text-sm",
@@ -178,6 +179,7 @@ var densitySlots = {
178
179
  };
179
180
  var radiusSlots = {
180
181
  none: {
182
+ surfaceRoot: "rounded-none",
181
183
  toolbarSearch: "rounded-none",
182
184
  toolbarViewSwitch: "rounded-none",
183
185
  toolbarViewButton: "rounded-none",
@@ -202,6 +204,7 @@ var radiusSlots = {
202
204
  treeNodeDragHandle: "rounded-none"
203
205
  },
204
206
  sm: {
207
+ surfaceRoot: "rounded-sm",
205
208
  toolbarSearch: "rounded-sm",
206
209
  toolbarViewSwitch: "rounded-sm",
207
210
  toolbarViewButton: "rounded-sm",
@@ -222,6 +225,7 @@ var radiusSlots = {
222
225
  },
223
226
  md: {},
224
227
  lg: {
228
+ surfaceRoot: "rounded-xl",
225
229
  toolbarSearch: "rounded-lg",
226
230
  toolbarViewSwitch: "rounded-lg",
227
231
  toolbarViewButton: "rounded-lg",
@@ -240,6 +244,7 @@ var radiusSlots = {
240
244
  treeNodeDragHandle: "rounded-md"
241
245
  },
242
246
  xl: {
247
+ surfaceRoot: "rounded-2xl",
243
248
  toolbarSearch: "rounded-xl",
244
249
  toolbarViewSwitch: "rounded-xl",
245
250
  toolbarViewButton: "rounded-xl",
@@ -258,6 +263,7 @@ var radiusSlots = {
258
263
  treeNodeDragHandle: "rounded-lg"
259
264
  },
260
265
  full: {
266
+ surfaceRoot: "rounded-2xl",
261
267
  toolbarSearch: "rounded-full",
262
268
  toolbarViewSwitch: "rounded-full",
263
269
  toolbarViewButton: "rounded-full",
@@ -277,6 +283,7 @@ var radiusSlots = {
277
283
  };
278
284
  var borderSlots = {
279
285
  none: {
286
+ surfaceRoot: "border-transparent",
280
287
  toolbarRoot: "border-transparent",
281
288
  toolbarSearch: "border-transparent",
282
289
  toolbarViewSwitch: "border-transparent",
@@ -291,6 +298,7 @@ var borderSlots = {
291
298
  detailRightPanel: "border-transparent"
292
299
  },
293
300
  subtle: {
301
+ surfaceRoot: "border-border/60",
294
302
  toolbarRoot: "border-border/60",
295
303
  toolbarSearch: "border-border/60",
296
304
  toolbarViewSwitch: "border-border/60",
@@ -303,6 +311,7 @@ var borderSlots = {
303
311
  },
304
312
  solid: {},
305
313
  strong: {
314
+ surfaceRoot: "border-foreground/20",
306
315
  toolbarRoot: "border-foreground/20",
307
316
  toolbarSearch: "border-foreground/20",
308
317
  toolbarViewSwitch: "border-foreground/20",
@@ -317,6 +326,7 @@ var borderSlots = {
317
326
  var backgroundSlots = {
318
327
  plain: {},
319
328
  muted: {
329
+ surfaceRoot: "bg-card",
320
330
  toolbarRoot: "bg-muted/20",
321
331
  toolbarSearch: "bg-background",
322
332
  toolbarViewSwitch: "bg-background",
@@ -328,6 +338,7 @@ var backgroundSlots = {
328
338
  detailHeader: "bg-muted/20"
329
339
  },
330
340
  soft: {
341
+ surfaceRoot: "bg-background/95 shadow-sm",
331
342
  toolbarRoot: "bg-background/95",
332
343
  actionButtonDefault: "bg-muted/30 hover:bg-muted/55",
333
344
  controlButton: "bg-muted/30 hover:bg-muted/55",
@@ -337,6 +348,7 @@ var backgroundSlots = {
337
348
  footerRoot: "bg-background/95"
338
349
  },
339
350
  glass: {
351
+ surfaceRoot: "border-white/10 bg-white/[0.06] shadow-none backdrop-blur-md",
340
352
  toolbarRoot: "border-white/10 bg-white/5 backdrop-blur-md",
341
353
  toolbarSearch: "border-white/10 bg-white/5",
342
354
  toolbarViewSwitch: "border-white/10 bg-white/5",