Skip to content

Commit

Permalink
fix: add missing devMode option into GridOption interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding-SE committed Dec 8, 2023
1 parent 8740d93 commit a963223
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/common/src/interfaces/gridOption.interface.ts
Expand Up @@ -233,6 +233,9 @@ export interface GridOption {
/** Default prefix for SlickGrid Event names (events created in the SlickGrid and/or DataView objects) */
defaultSlickgridEventPrefix?: string;

/** Escape hatch geared towards testing Slickgrid in jsdom based environments to circumvent the lack of stylesheet.ownerNode and clientWidth calculations */
devMode?: false & { ownerNodeIndex?: number; containerClientWidth?: number; };

/** Draggable Grouping Plugin options & events */
draggableGrouping?: DraggableGrouping;

Expand Down

0 comments on commit a963223

Please sign in to comment.