Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
313 changes: 292 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"node": ">=16",
"npm": ">=8"
},
"overrides": {
"nx": {
"@parcel/watcher": "2.4.1"
}
},
"scripts": {
"postinstall": "node ./skip.js || run-s build:necessary",
"clean:build": "rimraf packages/*/dist packages/*/build",
Expand Down
6 changes: 6 additions & 0 deletions packages/dashboard-core-plugins/src/panels/IrisGridPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import {
type PartitionConfig,
type IrisGridRenderer,
type MouseHandlersProp,
type GetMetricCalculatorType,
} from '@deephaven/iris-grid';
import {
type RowDataMap,
Expand Down Expand Up @@ -158,7 +159,10 @@ export interface OwnProps extends DashboardPanelProps {
theme?: Partial<IrisGridThemeType> & Record<string, unknown>;

mouseHandlers?: MouseHandlersProp;

renderer?: IrisGridRenderer;

getMetricCalculator?: GetMetricCalculatorType;
}

interface StateProps {
Expand Down Expand Up @@ -1145,6 +1149,7 @@ export class IrisGridPanel extends PureComponent<
user,
renderer,
settings,
getMetricCalculator,
theme,
} = this.props;
const {
Expand Down Expand Up @@ -1281,6 +1286,7 @@ export class IrisGridPanel extends PureComponent<
frozenColumns={frozenColumns}
theme={theme}
columnHeaderGroups={columnHeaderGroups}
getMetricCalculator={getMetricCalculator}
>
{childrenContent}
</IrisGrid>
Expand Down
Loading
Loading