@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.
- package/dist/FilterInputField.d.ts.map +1 -1
- package/dist/FilterInputField.js +17 -7
- package/dist/FilterInputField.js.map +1 -1
- package/dist/IrisGrid.d.ts +14 -2
- package/dist/IrisGrid.d.ts.map +1 -1
- package/dist/IrisGrid.js +447 -380
- package/dist/IrisGrid.js.map +1 -1
- package/dist/IrisGridUtils.d.ts +16 -0
- package/dist/IrisGridUtils.d.ts.map +1 -1
- package/dist/IrisGridUtils.js +87 -69
- package/dist/IrisGridUtils.js.map +1 -1
- package/dist/LazyIrisGrid.d.ts +4 -0
- package/dist/LazyIrisGrid.d.ts.map +1 -1
- package/dist/mousehandlers/IrisGridContextMenuHandler.js +1 -1
- package/dist/mousehandlers/IrisGridContextMenuHandler.js.map +1 -1
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.css +14 -0
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.css.map +1 -1
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.d.ts +1 -0
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.d.ts.map +1 -1
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.js +15 -2
- package/dist/sidebar/conditional-formatting/ConditionalFormatEditor.js.map +1 -1
- package/package.json +16 -16
package/dist/LazyIrisGrid.d.ts
CHANGED
|
@@ -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
|
|
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 &&
|
|
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;
|