Skip to content

Commit

Permalink
feat(ErrorFormTooltip): remove inputSize prop
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This prop was effectless and it is no longer available.
  • Loading branch information
sarkaaa committed Dec 19, 2024
1 parent 3382797 commit 032b223
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export interface Props extends Common.Globals {
readonly helpClosable: boolean;
readonly isHelp?: boolean;
readonly referenceElement?: { current: HTMLElement | null };
readonly inputSize?: Common.InputSize;
readonly inlineLabel?: boolean;
readonly onShown: (arg: boolean) => void;
}
1 change: 0 additions & 1 deletion packages/orbit-components/src/ErrorFormTooltip/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export interface Props extends Common.Globals, Common.SpaceAfter {
readonly help?: React.ReactNode;
readonly inlineLabel?: boolean;
readonly referenceElement?: React.RefObject<HTMLElement>;
readonly inputSize?: Common.InputSize;
readonly helpClosable?: boolean;
readonly onShown: React.Dispatch<React.SetStateAction<boolean>>;
}
1 change: 0 additions & 1 deletion packages/orbit-components/src/InputFile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ const InputFile = React.forwardRef<HTMLDivElement, Props>((props, ref) => {
help={help}
error={error}
helpClosable={helpClosable}
inputSize="normal"
referenceElement={labelRef}
shown={shown}
onShown={setTooltipShown}
Expand Down

0 comments on commit 032b223

Please sign in to comment.