Skip to content

Commit

Permalink
Merge pull request #2444 from adumesny/master
Browse files Browse the repository at this point in the history
doc update
  • Loading branch information
adumesny authored Sep 5, 2023
2 parents 5df59aa + bb542d7 commit 763366c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,11 @@ export interface GridStackWidget extends GridStackPosition {
minH?: number;
/** maximum height allowed during resize/creation (default?: undefined = un-constrained) */
maxH?: number;
/** prevent resizing (default?: undefined = un-constrained) */
/** prevent direct resizing by the user (default?: undefined = un-constrained) */
noResize?: boolean;
/** prevents moving (default?: undefined = un-constrained) */
/** prevents direct moving by the user (default?: undefined = un-constrained) */
noMove?: boolean;
/** prevents being moved by others during their (default?: undefined = un-constrained) */
/** same as noMove+noResize but also prevents being pushed by other widgets or api (default?: undefined = un-constrained) */
locked?: boolean;
/** value for `gs-id` stored on the widget (default?: undefined) */
id?: string;
Expand Down

0 comments on commit 763366c

Please sign in to comment.