Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5715f23

Browse files
committed
comment update
1 parent 44b5a72 commit 5715f23

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/types.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,18 +85,18 @@ export type SaveFcn = (node: GridStackNode, w: GridStackWidget) => void;
8585

8686
export 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. */
8989
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. */
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

102102
export interface Breakpoint {

0 commit comments

Comments
 (0)