@deephaven/iris-grid 1.27.3 → 1.27.5-alpha-nodehttp2-config.98bcfa9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,11 @@ declare const LazyIrisGrid: import("react").ForwardRefExoticComponent<Pick<IrisG
31
31
  partitions?: (string | null)[] | undefined;
32
32
  partitionConfig?: import("./PartitionedGridModel").PartitionConfig | undefined;
33
33
  sorts?: readonly import("@deephaven/jsapi-utils").SortDescriptor[] | undefined;
34
+ isSortsControlled?: boolean | undefined;
35
+ onSortsChange?: ((sorts: readonly import("@deephaven/jsapi-utils").SortDescriptor[]) => void) | undefined;
34
36
  quickFilters?: import("./CommonTypes").ReadonlyQuickFilterMap | null | undefined;
37
+ isQuickFiltersControlled?: boolean | undefined;
38
+ onQuickFiltersChange?: ((quickFilters: import("./CommonTypes").ReadonlyQuickFilterMap) => void) | undefined;
35
39
  selectDistinctColumns?: readonly string[] | undefined;
36
40
  userColumnWidthsByName?: ReadonlyMap<import("./CommonTypes").ColumnName, number> | undefined;
37
41
  userRowHeights?: ReadonlyMap<number, number> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"LazyIrisGrid.d.ts","sourceRoot":"","sources":["../src/LazyIrisGrid.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,YAAY,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAIhD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qDAgBjB,CAAC;AAIF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"LazyIrisGrid.d.ts","sourceRoot":"","sources":["../src/LazyIrisGrid.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,YAAY,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAIhD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qDAgBjB,CAAC;AAIF,eAAe,YAAY,CAAC"}
@@ -661,7 +661,7 @@ class IrisGridContextMenuHandler extends GridMouseHandler {
661
661
  gridY = metrics.gridY,
662
662
  columnHeaderMaxDepth = metrics.columnHeaderMaxDepth;
663
663
  var actions = [];
664
- if (modelColumn != null && modelRow != null) {
664
+ if (modelColumn != null && y > gridY) {
665
665
  var sourceCell = model.sourceForCell(modelColumn, modelRow !== null && modelRow !== void 0 ? modelRow : 0);
666
666
  var sourceColumn = sourceCell.column,
667
667
  sourceRow = sourceCell.row;