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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -10,6 +10,7 @@ export const Window = ({
10
10
  title = 'Window',
11
11
  icon,
12
12
  children,
13
+ content,
13
14
  toolbar,
14
15
  statusBar,
15
16
  showMinimize = true,
@@ -247,7 +248,7 @@ export const Window = ({
247
248
 
248
249
  {/* Window Content */}
249
250
  <div className="window__content">
250
- {children}
251
+ {content || children}
251
252
  </div>
252
253
 
253
254
  {/* Status Bar */}