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.
- package/dist/fe/components/DesignSystem/components/ComponentCanvas.js +2 -2
- package/dist/fe/components/DesignSystem/registry/defaultRegistry.d.ts +1 -1
- package/dist/fe/components/DesignSystem/registry/defaultRegistry.js +640 -538
- package/dist/fe/components/DesignSystem/theme/index.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
1
|
+
import type { ComponentEntry } from "../types";
|
|
2
2
|
export declare function createDefaultRegistry(): ComponentEntry[];
|