We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 3c3e8fc commit 95f9b15Copy full SHA for 95f9b15
packages/bar/src/hooks.ts
@@ -28,7 +28,6 @@ export const useBar = <RawDatum extends BarDatum>({
28
data,
29
minValue = defaultProps.minValue,
30
maxValue = defaultProps.maxValue,
31
- margin,
32
width,
33
height,
34
padding = defaultProps.padding,
packages/bar/src/types.ts
@@ -167,7 +167,13 @@ export interface BarItemProps<RawDatum extends BarDatum>
167
168
export type RenderBarProps<RawDatum extends BarDatum> = Omit<
169
BarItemProps<RawDatum>,
170
- 'isInteractive' | 'style' | 'tooltip'
+ | 'isInteractive'
171
+ | 'style'
172
+ | 'tooltip'
173
+ | 'isFocusable'
174
+ | 'ariaLabel'
175
+ | 'ariaLabelledBy'
176
+ | 'ariaDescribedBy'
177
> & {
178
borderColor: string
179
labelColor: string
0 commit comments