@inf-monkeys-tech/monkeys-design 1.0.93 → 1.0.95
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 +3 -3
- package/dist/components/data-explorer/index.d.ts +3 -3
- package/dist/components/data-explorer/index.js +3 -0
- package/dist/components/data-explorer/index.js.map +1 -1
- package/dist/components/data-explorer/index.mjs +3 -0
- 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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- 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-bfbd415c3c15.d.ts → theme-21107546ded5.d.mts} +2 -2
- package/dist/{theme-a36c2d7f58e5.d.mts → theme-cfefa48a0db1.d.ts} +2 -2
- package/dist/{types-9ddd7c5a3462.d.mts → types-72b7966c2155.d.mts} +1 -0
- package/dist/{types-9ddd7c5a3462.d.ts → types-72b7966c2155.d.ts} +1 -0
- package/package.json +1 -1
|
@@ -5984,9 +5984,11 @@ function DataExplorerPage({
|
|
|
5984
5984
|
content,
|
|
5985
5985
|
view,
|
|
5986
5986
|
detail,
|
|
5987
|
+
appearance,
|
|
5987
5988
|
className,
|
|
5988
5989
|
classNames
|
|
5989
5990
|
}) {
|
|
5991
|
+
const theme = appearance ? resolveDataExplorerAppearance(appearance) : void 0;
|
|
5990
5992
|
const sidebarNode = tree ?? sidebar;
|
|
5991
5993
|
const toolbarNode = controls ?? toolbar;
|
|
5992
5994
|
const contentNode = view ?? content;
|
|
@@ -5995,6 +5997,7 @@ function DataExplorerPage({
|
|
|
5995
5997
|
{
|
|
5996
5998
|
className: cn(
|
|
5997
5999
|
"flex h-full min-h-0 overflow-hidden",
|
|
6000
|
+
theme?.slots.cardRoot,
|
|
5998
6001
|
classNames?.root,
|
|
5999
6002
|
className
|
|
6000
6003
|
),
|