Skip to content

Commit 032b223

Browse files
committed
feat(ErrorFormTooltip): remove inputSize prop
BREAKING CHANGE: This prop was effectless and it is no longer available.
1 parent 3382797 commit 032b223

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

packages/orbit-components/src/ErrorFormTooltip/Tooltip/types.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export interface Props extends Common.Globals {
99
readonly helpClosable: boolean;
1010
readonly isHelp?: boolean;
1111
readonly referenceElement?: { current: HTMLElement | null };
12-
readonly inputSize?: Common.InputSize;
1312
readonly inlineLabel?: boolean;
1413
readonly onShown: (arg: boolean) => void;
1514
}

packages/orbit-components/src/ErrorFormTooltip/types.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export interface Props extends Common.Globals, Common.SpaceAfter {
1010
readonly help?: React.ReactNode;
1111
readonly inlineLabel?: boolean;
1212
readonly referenceElement?: React.RefObject<HTMLElement>;
13-
readonly inputSize?: Common.InputSize;
1413
readonly helpClosable?: boolean;
1514
readonly onShown: React.Dispatch<React.SetStateAction<boolean>>;
1615
}

packages/orbit-components/src/InputFile/index.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ const InputFile = React.forwardRef<HTMLDivElement, Props>((props, ref) => {
157157
help={help}
158158
error={error}
159159
helpClosable={helpClosable}
160-
inputSize="normal"
161160
referenceElement={labelRef}
162161
shown={shown}
163162
onShown={setTooltipShown}

0 commit comments

Comments
 (0)