jclib-ui 1.0.146 → 1.0.147
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/jclib-ui.es.js
CHANGED
|
@@ -19368,6 +19368,7 @@ function PanelDashboard({
|
|
|
19368
19368
|
title,
|
|
19369
19369
|
color = "var(--dash-border)",
|
|
19370
19370
|
backColor = "var(--dash-bg)",
|
|
19371
|
+
className,
|
|
19371
19372
|
minHeight,
|
|
19372
19373
|
children,
|
|
19373
19374
|
marginBottom = 0,
|
|
@@ -19376,7 +19377,7 @@ function PanelDashboard({
|
|
|
19376
19377
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
19377
19378
|
"div",
|
|
19378
19379
|
{
|
|
19379
|
-
className: "panel-dashboard--container",
|
|
19380
|
+
className: "panel-dashboard--container" + (className ? ` ${className}` : ""),
|
|
19380
19381
|
style: {
|
|
19381
19382
|
minHeight,
|
|
19382
19383
|
marginBottom,
|