@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
|
@@ -32,6 +32,7 @@ function resolveDataExplorerValue(value, context) {
|
|
|
32
32
|
// src/components/data-explorer/theme.ts
|
|
33
33
|
var emptyStyles = {};
|
|
34
34
|
var baseSlots = {
|
|
35
|
+
surfaceRoot: "relative flex h-full min-h-0 w-full min-w-0 overflow-hidden rounded-md border border-border bg-background shadow-sm",
|
|
35
36
|
toolbarRoot: "flex flex-wrap items-center gap-2 border-b border-border bg-background px-4 py-3",
|
|
36
37
|
toolbarLeading: "flex items-center gap-2",
|
|
37
38
|
toolbarSearch: "flex h-10 min-w-52 flex-1 items-center gap-2 rounded-md border border-border bg-background px-3 text-sm",
|
|
@@ -163,6 +164,7 @@ var densitySlots = {
|
|
|
163
164
|
};
|
|
164
165
|
var radiusSlots = {
|
|
165
166
|
none: {
|
|
167
|
+
surfaceRoot: "rounded-none",
|
|
166
168
|
toolbarSearch: "rounded-none",
|
|
167
169
|
toolbarViewSwitch: "rounded-none",
|
|
168
170
|
toolbarViewButton: "rounded-none",
|
|
@@ -187,6 +189,7 @@ var radiusSlots = {
|
|
|
187
189
|
treeNodeDragHandle: "rounded-none"
|
|
188
190
|
},
|
|
189
191
|
sm: {
|
|
192
|
+
surfaceRoot: "rounded-sm",
|
|
190
193
|
toolbarSearch: "rounded-sm",
|
|
191
194
|
toolbarViewSwitch: "rounded-sm",
|
|
192
195
|
toolbarViewButton: "rounded-sm",
|
|
@@ -207,6 +210,7 @@ var radiusSlots = {
|
|
|
207
210
|
},
|
|
208
211
|
md: {},
|
|
209
212
|
lg: {
|
|
213
|
+
surfaceRoot: "rounded-xl",
|
|
210
214
|
toolbarSearch: "rounded-lg",
|
|
211
215
|
toolbarViewSwitch: "rounded-lg",
|
|
212
216
|
toolbarViewButton: "rounded-lg",
|
|
@@ -225,6 +229,7 @@ var radiusSlots = {
|
|
|
225
229
|
treeNodeDragHandle: "rounded-md"
|
|
226
230
|
},
|
|
227
231
|
xl: {
|
|
232
|
+
surfaceRoot: "rounded-2xl",
|
|
228
233
|
toolbarSearch: "rounded-xl",
|
|
229
234
|
toolbarViewSwitch: "rounded-xl",
|
|
230
235
|
toolbarViewButton: "rounded-xl",
|
|
@@ -243,6 +248,7 @@ var radiusSlots = {
|
|
|
243
248
|
treeNodeDragHandle: "rounded-lg"
|
|
244
249
|
},
|
|
245
250
|
full: {
|
|
251
|
+
surfaceRoot: "rounded-2xl",
|
|
246
252
|
toolbarSearch: "rounded-full",
|
|
247
253
|
toolbarViewSwitch: "rounded-full",
|
|
248
254
|
toolbarViewButton: "rounded-full",
|
|
@@ -262,6 +268,7 @@ var radiusSlots = {
|
|
|
262
268
|
};
|
|
263
269
|
var borderSlots = {
|
|
264
270
|
none: {
|
|
271
|
+
surfaceRoot: "border-transparent",
|
|
265
272
|
toolbarRoot: "border-transparent",
|
|
266
273
|
toolbarSearch: "border-transparent",
|
|
267
274
|
toolbarViewSwitch: "border-transparent",
|
|
@@ -276,6 +283,7 @@ var borderSlots = {
|
|
|
276
283
|
detailRightPanel: "border-transparent"
|
|
277
284
|
},
|
|
278
285
|
subtle: {
|
|
286
|
+
surfaceRoot: "border-border/60",
|
|
279
287
|
toolbarRoot: "border-border/60",
|
|
280
288
|
toolbarSearch: "border-border/60",
|
|
281
289
|
toolbarViewSwitch: "border-border/60",
|
|
@@ -288,6 +296,7 @@ var borderSlots = {
|
|
|
288
296
|
},
|
|
289
297
|
solid: {},
|
|
290
298
|
strong: {
|
|
299
|
+
surfaceRoot: "border-foreground/20",
|
|
291
300
|
toolbarRoot: "border-foreground/20",
|
|
292
301
|
toolbarSearch: "border-foreground/20",
|
|
293
302
|
toolbarViewSwitch: "border-foreground/20",
|
|
@@ -302,6 +311,7 @@ var borderSlots = {
|
|
|
302
311
|
var backgroundSlots = {
|
|
303
312
|
plain: {},
|
|
304
313
|
muted: {
|
|
314
|
+
surfaceRoot: "bg-card",
|
|
305
315
|
toolbarRoot: "bg-muted/20",
|
|
306
316
|
toolbarSearch: "bg-background",
|
|
307
317
|
toolbarViewSwitch: "bg-background",
|
|
@@ -313,6 +323,7 @@ var backgroundSlots = {
|
|
|
313
323
|
detailHeader: "bg-muted/20"
|
|
314
324
|
},
|
|
315
325
|
soft: {
|
|
326
|
+
surfaceRoot: "bg-background/95 shadow-sm",
|
|
316
327
|
toolbarRoot: "bg-background/95",
|
|
317
328
|
actionButtonDefault: "bg-muted/30 hover:bg-muted/55",
|
|
318
329
|
controlButton: "bg-muted/30 hover:bg-muted/55",
|
|
@@ -322,6 +333,7 @@ var backgroundSlots = {
|
|
|
322
333
|
footerRoot: "bg-background/95"
|
|
323
334
|
},
|
|
324
335
|
glass: {
|
|
336
|
+
surfaceRoot: "border-white/10 bg-white/[0.06] shadow-none backdrop-blur-md",
|
|
325
337
|
toolbarRoot: "border-white/10 bg-white/5 backdrop-blur-md",
|
|
326
338
|
toolbarSearch: "border-white/10 bg-white/5",
|
|
327
339
|
toolbarViewSwitch: "border-white/10 bg-white/5",
|