Hi, Team!
As of now, the Window component, when in a maximized state, does not resize according to the dimensions of the browser window. I would like to request such a feature that the maximized Window resizes according to the browser window size.
Please provide an option that allows to constrain the movement of the Window component when dragging similar to the Kendo UI for Vue Window:
https://www.telerik.com/kendo-vue-ui/components/window/constrain-movement/
If we open a window using the WindowService and a custom component for the window content, there seems to be no easy way to disable the "minimize" action.
Example (pseudo code):
this.windowService.open({
title: 'Execution Details',
content: MyDetailsWindowComponent,
width: 800,
height: 600,
minimizable: false, // < suggested feature
maximizable: false // < suggested feature
});
Szenario: Esp. minify makes no sense in many situations (while we still don't want a "dialog like behavior" with backdrop and modal).