@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/components/data-explorer/index.d.mts +2 -2
- package/dist/components/data-explorer/index.d.ts +2 -2
- package/dist/components/data-explorer/index.js +14 -1
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +14 -1
- package/dist/components/data-explorer/index.mjs.map +1 -1
- package/dist/components/navigation-sidebar/index.d.mts +1 -1
- package/dist/components/navigation-sidebar/index.d.ts +1 -1
- package/dist/components/navigation-sidebar/index.js +12 -0
- package/dist/components/navigation-sidebar/index.js.map +1 -1
- package/dist/components/navigation-sidebar/index.mjs +12 -0
- package/dist/components/navigation-sidebar/index.mjs.map +1 -1
- package/dist/components/workbench/index.js +12 -0
- package/dist/components/workbench/index.js.map +1 -1
- package/dist/components/workbench/index.mjs +12 -0
- package/dist/components/workbench/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -1
- package/dist/index.mjs.map +1 -1
- package/dist/provider/index.d.mts +1 -1
- package/dist/provider/index.d.ts +1 -1
- package/dist/theme-21107546ded5.d.mts +1 -1
- package/dist/theme-cfefa48a0db1.d.ts +1 -1
- package/dist/{types-72b7966c2155.d.mts → types-72c1ec970e96.d.mts} +2 -0
- package/dist/{types-72b7966c2155.d.ts → types-72c1ec970e96.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ function resolveDataExplorerValue(value, context) {
|
|
|
55
55
|
// src/components/data-explorer/theme.ts
|
|
56
56
|
var emptyStyles = {};
|
|
57
57
|
var baseSlots = {
|
|
58
|
+
surfaceRoot: "relative flex h-full min-h-0 w-full min-w-0 overflow-hidden rounded-md border border-border bg-background shadow-sm",
|
|
58
59
|
toolbarRoot: "flex flex-wrap items-center gap-2 border-b border-border bg-background px-4 py-3",
|
|
59
60
|
toolbarLeading: "flex items-center gap-2",
|
|
60
61
|
toolbarSearch: "flex h-10 min-w-52 flex-1 items-center gap-2 rounded-md border border-border bg-background px-3 text-sm",
|
|
@@ -186,6 +187,7 @@ var densitySlots = {
|
|
|
186
187
|
};
|
|
187
188
|
var radiusSlots = {
|
|
188
189
|
none: {
|
|
190
|
+
surfaceRoot: "rounded-none",
|
|
189
191
|
toolbarSearch: "rounded-none",
|
|
190
192
|
toolbarViewSwitch: "rounded-none",
|
|
191
193
|
toolbarViewButton: "rounded-none",
|
|
@@ -210,6 +212,7 @@ var radiusSlots = {
|
|
|
210
212
|
treeNodeDragHandle: "rounded-none"
|
|
211
213
|
},
|
|
212
214
|
sm: {
|
|
215
|
+
surfaceRoot: "rounded-sm",
|
|
213
216
|
toolbarSearch: "rounded-sm",
|
|
214
217
|
toolbarViewSwitch: "rounded-sm",
|
|
215
218
|
toolbarViewButton: "rounded-sm",
|
|
@@ -230,6 +233,7 @@ var radiusSlots = {
|
|
|
230
233
|
},
|
|
231
234
|
md: {},
|
|
232
235
|
lg: {
|
|
236
|
+
surfaceRoot: "rounded-xl",
|
|
233
237
|
toolbarSearch: "rounded-lg",
|
|
234
238
|
toolbarViewSwitch: "rounded-lg",
|
|
235
239
|
toolbarViewButton: "rounded-lg",
|
|
@@ -248,6 +252,7 @@ var radiusSlots = {
|
|
|
248
252
|
treeNodeDragHandle: "rounded-md"
|
|
249
253
|
},
|
|
250
254
|
xl: {
|
|
255
|
+
surfaceRoot: "rounded-2xl",
|
|
251
256
|
toolbarSearch: "rounded-xl",
|
|
252
257
|
toolbarViewSwitch: "rounded-xl",
|
|
253
258
|
toolbarViewButton: "rounded-xl",
|
|
@@ -266,6 +271,7 @@ var radiusSlots = {
|
|
|
266
271
|
treeNodeDragHandle: "rounded-lg"
|
|
267
272
|
},
|
|
268
273
|
full: {
|
|
274
|
+
surfaceRoot: "rounded-2xl",
|
|
269
275
|
toolbarSearch: "rounded-full",
|
|
270
276
|
toolbarViewSwitch: "rounded-full",
|
|
271
277
|
toolbarViewButton: "rounded-full",
|
|
@@ -285,6 +291,7 @@ var radiusSlots = {
|
|
|
285
291
|
};
|
|
286
292
|
var borderSlots = {
|
|
287
293
|
none: {
|
|
294
|
+
surfaceRoot: "border-transparent",
|
|
288
295
|
toolbarRoot: "border-transparent",
|
|
289
296
|
toolbarSearch: "border-transparent",
|
|
290
297
|
toolbarViewSwitch: "border-transparent",
|
|
@@ -299,6 +306,7 @@ var borderSlots = {
|
|
|
299
306
|
detailRightPanel: "border-transparent"
|
|
300
307
|
},
|
|
301
308
|
subtle: {
|
|
309
|
+
surfaceRoot: "border-border/60",
|
|
302
310
|
toolbarRoot: "border-border/60",
|
|
303
311
|
toolbarSearch: "border-border/60",
|
|
304
312
|
toolbarViewSwitch: "border-border/60",
|
|
@@ -311,6 +319,7 @@ var borderSlots = {
|
|
|
311
319
|
},
|
|
312
320
|
solid: {},
|
|
313
321
|
strong: {
|
|
322
|
+
surfaceRoot: "border-foreground/20",
|
|
314
323
|
toolbarRoot: "border-foreground/20",
|
|
315
324
|
toolbarSearch: "border-foreground/20",
|
|
316
325
|
toolbarViewSwitch: "border-foreground/20",
|
|
@@ -325,6 +334,7 @@ var borderSlots = {
|
|
|
325
334
|
var backgroundSlots = {
|
|
326
335
|
plain: {},
|
|
327
336
|
muted: {
|
|
337
|
+
surfaceRoot: "bg-card",
|
|
328
338
|
toolbarRoot: "bg-muted/20",
|
|
329
339
|
toolbarSearch: "bg-background",
|
|
330
340
|
toolbarViewSwitch: "bg-background",
|
|
@@ -336,6 +346,7 @@ var backgroundSlots = {
|
|
|
336
346
|
detailHeader: "bg-muted/20"
|
|
337
347
|
},
|
|
338
348
|
soft: {
|
|
349
|
+
surfaceRoot: "bg-background/95 shadow-sm",
|
|
339
350
|
toolbarRoot: "bg-background/95",
|
|
340
351
|
actionButtonDefault: "bg-muted/30 hover:bg-muted/55",
|
|
341
352
|
controlButton: "bg-muted/30 hover:bg-muted/55",
|
|
@@ -345,6 +356,7 @@ var backgroundSlots = {
|
|
|
345
356
|
footerRoot: "bg-background/95"
|
|
346
357
|
},
|
|
347
358
|
glass: {
|
|
359
|
+
surfaceRoot: "border-white/10 bg-white/[0.06] shadow-none backdrop-blur-md",
|
|
348
360
|
toolbarRoot: "border-white/10 bg-white/5 backdrop-blur-md",
|
|
349
361
|
toolbarSearch: "border-white/10 bg-white/5",
|
|
350
362
|
toolbarViewSwitch: "border-white/10 bg-white/5",
|