We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729313a commit 5625039Copy full SHA for 5625039
src/components/Window/index.ts
@@ -20,6 +20,7 @@ class WindowConfig extends ComponentConfig {
20
const rootViewLayout = new FlexLayout();
21
rootViewLayout.setFlexNode(rootView.getFlexNode());
22
rootView.setLayout(rootViewLayout);
23
+ rootView.setInlineStyle("width:'100%'; height:'100%';");
24
window.setCentralWidget(rootView);
25
window.setProps(newProps, {});
26
return window;
tsconfig.json
@@ -11,7 +11,7 @@
11
"esModuleInterop": true,
12
"resolveJsonModule": true
13
},
14
- "include": ["src"],
+ "include": ["./src/**/*"],
15
"exclude": ["dist"],
16
"typedocOptions": {
17
"mode": "file",
0 commit comments