mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-22 06:00:07 +03:00
Update redux-devtools-chart-monitor
This commit is contained in:
parent
ccec529b11
commit
1379dd25a7
|
@ -1,6 +1,7 @@
|
||||||
import React, { Component, createRef } from 'react';
|
import React, { Component, createRef } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { tree, NodeWithId, Primitive } from 'd3-state-visualizer';
|
import { tree } from 'd3-state-visualizer';
|
||||||
|
import type { Node, StyleValue } from 'd3-state-visualizer';
|
||||||
import { Action, Dispatch } from 'redux';
|
import { Action, Dispatch } from 'redux';
|
||||||
import { LiftedAction, LiftedState } from '@redux-devtools/core';
|
import { LiftedAction, LiftedState } from '@redux-devtools/core';
|
||||||
import * as themes from 'redux-devtools-themes';
|
import * as themes from 'redux-devtools-themes';
|
||||||
|
@ -23,7 +24,7 @@ export interface Props<S, A extends Action<unknown>>
|
||||||
isSorted: boolean;
|
isSorted: boolean;
|
||||||
heightBetweenNodesCoeff: number;
|
heightBetweenNodesCoeff: number;
|
||||||
widthBetweenNodesCoeff: number;
|
widthBetweenNodesCoeff: number;
|
||||||
onClickText: (datum: NodeWithId) => void;
|
onClickText: (datum: Node) => void;
|
||||||
tooltipOptions: {
|
tooltipOptions: {
|
||||||
disabled: boolean;
|
disabled: boolean;
|
||||||
offset: {
|
offset: {
|
||||||
|
@ -31,9 +32,9 @@ export interface Props<S, A extends Action<unknown>>
|
||||||
top: number;
|
top: number;
|
||||||
};
|
};
|
||||||
indentationSize: number;
|
indentationSize: number;
|
||||||
style: { [key: string]: Primitive } | undefined;
|
styles: { [key: string]: StyleValue } | undefined;
|
||||||
};
|
};
|
||||||
style: { [key: string]: Primitive } | undefined;
|
chartStyles: { [key: string]: StyleValue } | undefined;
|
||||||
defaultIsVisible?: boolean;
|
defaultIsVisible?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user