File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export interface ChartsLegendProps {
3535 classes ?: Partial < ChartsLegendClasses > ;
3636 className ?: string ;
3737 sx ?: SxProps < Theme > ;
38+ tabIndex ?: number ;
3839}
3940
4041const RootElement = styled ( 'ul' , {
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ export interface ContinuousColorLegendProps
6666 classes ?: Partial < ContinuousColorLegendClasses > ;
6767 className ?: string ;
6868 sx ?: SxProps < Theme > ;
69+ tabIndex ?: number ;
6970}
7071
7172const templateAreas = ( reverse ?: boolean ) => {
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export interface PiecewiseColorLegendProps
5656 classes ?: Partial < PiecewiseColorLegendClasses > ;
5757 className ?: string ;
5858 sx ?: SxProps < Theme > ;
59+ tabIndex ?: number ;
5960}
6061
6162const RootElement = styled ( 'ul' , {
Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ import {
1212 selectorChartPropsSize ,
1313} from '../internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors' ;
1414
15- export interface ChartsSurfaceProps {
15+ export interface ChartsSurfaceProps
16+ extends Omit <
17+ React . SVGProps < SVGSVGElement > ,
18+ 'id' | 'children' | 'className' | 'height' | 'width' | 'cx' | 'cy' | 'viewBox' | 'color' | 'ref'
19+ > {
1620 className ?: string ;
1721 title ?: string ;
1822 desc ?: string ;
You can’t perform that action at this time.
0 commit comments