@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
package/dist/index.mjs
CHANGED
|
@@ -24768,9 +24768,11 @@ function DataExplorerPage({
|
|
|
24768
24768
|
content,
|
|
24769
24769
|
view,
|
|
24770
24770
|
detail,
|
|
24771
|
+
appearance,
|
|
24771
24772
|
className,
|
|
24772
24773
|
classNames
|
|
24773
24774
|
}) {
|
|
24775
|
+
const theme = appearance ? resolveDataExplorerAppearance(appearance) : void 0;
|
|
24774
24776
|
const sidebarNode = tree ?? sidebar;
|
|
24775
24777
|
const toolbarNode = controls ?? toolbar;
|
|
24776
24778
|
const contentNode = view ?? content;
|
|
@@ -24779,6 +24781,7 @@ function DataExplorerPage({
|
|
|
24779
24781
|
{
|
|
24780
24782
|
className: cn3(
|
|
24781
24783
|
"flex h-full min-h-0 overflow-hidden",
|
|
24784
|
+
theme?.slots.cardRoot,
|
|
24782
24785
|
classNames?.root,
|
|
24783
24786
|
className
|
|
24784
24787
|
),
|