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;
85
85
86
86
export type ResizeToContentFcn = ( el : GridItemHTMLElement ) => void ;
87
87
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. */
89
89
export 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. */
91
91
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. */
93
93
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 [ ] ;
96
96
/** specify if breakpoints are for window size or grid size (default:false = grid) */
97
97
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 ;
100
100
}
101
101
102
102
export interface Breakpoint {
You can’t perform that action at this time.
0 commit comments