ywana-core8 0.2.1 → 0.2.3

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/index.umd.js CHANGED
@@ -32081,6 +32081,7 @@ const rows = [
32081
32081
  title = "Window",
32082
32082
  icon,
32083
32083
  children,
32084
+ content,
32084
32085
  toolbar,
32085
32086
  statusBar,
32086
32087
  showMinimize = true,
@@ -32248,7 +32249,7 @@ const rows = [
32248
32249
  ))
32249
32250
  ),
32250
32251
  toolbar && /* @__PURE__ */ React.createElement("div", { className: "window__toolbar" }, toolbar),
32251
- /* @__PURE__ */ React.createElement("div", { className: "window__content" }, children),
32252
+ /* @__PURE__ */ React.createElement("div", { className: "window__content" }, content || children),
32252
32253
  statusBar && /* @__PURE__ */ React.createElement("div", { className: "window__status-bar" }, statusBar)
32253
32254
  );
32254
32255
  };