Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
adumesny committed Sep 5, 2023
1 parent 5df59aa commit bb542d7
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 bb542d7

Please sign in to comment.