File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -85,18 +85,18 @@ export type SaveFcn = (node: GridStackNode, w: GridStackWidget) => void;
8585
8686export type ResizeToContentFcn = ( el : GridItemHTMLElement ) => void ;
8787
88- /** describes the responsive nature of the grid */
88+ /** describes the responsive nature of the grid. NOTE: make sure to have correct extra CSS to support this. */
8989export interface Responsive {
90- /** wanted width to maintain (+-50%) to dynamically pick a column count */
90+ /** wanted width to maintain (+-50%) to dynamically pick a column count. NOTE: make sure to have correct extra CSS to support this. */
9191 columnWidth ?: number ;
92- /** maximum number of columns allowed (default: 12). Note : make sure to have correct extra CSS to support this.*/
92+ /** maximum number of columns allowed (default: 12). NOTE : make sure to have correct extra CSS to support this. */
9393 columnMax ?: number ;
94- /** global re-layout mode when changing columns */
95- layout ?: ColumnOptions ;
94+ /** explicit width:column breakpoints instead of automatic 'columnWidth'. NOTE: make sure to have correct extra CSS to support this. */
95+ breakpoints ?: Breakpoint [ ] ;
9696 /** specify if breakpoints are for window size or grid size (default:false = grid) */
9797 breakpointForWindow ?: boolean ;
98- /** explicit width:column breakpoints instead of automatic 'columnWidth'. Note: make sure to have correct extra CSS to support this. */
99- breakpoints ?: Breakpoint [ ] ;
98+ /** global re-layout mode when changing columns */
99+ layout ?: ColumnOptions ;
100100}
101101
102102export interface Breakpoint {
You can’t perform that action at this time.
0 commit comments