nucleus-core-ts 0.9.23 → 0.9.24

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.
@@ -199,9 +199,9 @@ export function ComponentCanvas({ registry }) {
199
199
  /*#__PURE__*/ _jsx("article", {
200
200
  className: cn(t.componentWrapper, VIEWPORT_WIDTHS[store.viewportSize], isDark ? "bg-slate-900 border-slate-800" : "bg-white border-slate-200"),
201
201
  children: /*#__PURE__*/ _jsx("section", {
202
- className: isDark ? "dark" : "",
202
+ className: cn(isDark ? "dark" : "", "overflow-visible"),
203
203
  children: /*#__PURE__*/ _jsx("section", {
204
- className: cn("rounded-lg", isDark ? "bg-slate-900 text-white" : "bg-white text-slate-900"),
204
+ className: cn("rounded-lg overflow-visible", isDark ? "bg-slate-900 text-white" : "bg-white text-slate-900"),
205
205
  children: activeEntry.render(resolvedProps)
206
206
  })
207
207
  })
@@ -1,2 +1,2 @@
1
- import type { ComponentEntry } from '../types';
1
+ import type { ComponentEntry } from "../types";
2
2
  export declare function createDefaultRegistry(): ComponentEntry[];