Skip to content

Commit fb635e5

Browse files
committed
chore(number-input): apply latest labelPlacement change
1 parent a9df502 commit fb635e5

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

packages/components/number-input/src/use-number-input.ts

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import type {NumberInputVariantProps, SlotsToClasses, NumberInputSlots} from "@heroui/theme";
22
import type {AriaNumberFieldProps} from "@react-types/numberfield";
33
import type {NumberFieldStateOptions} from "@react-stately/numberfield";
4+
import type {HTMLHeroUIProps, PropGetter} from "@heroui/system";
45

5-
import {HTMLHeroUIProps, mapPropsVariants, PropGetter, useProviderContext} from "@heroui/system";
6+
import {useLabelPlacement, mapPropsVariants, useProviderContext} from "@heroui/system";
67
import {useSafeLayoutEffect} from "@heroui/use-safe-layout-effect";
78
import {useFocusRing} from "@react-aria/focus";
89
import {numberInput} from "@heroui/theme";
@@ -197,13 +198,10 @@ export function useNumberInput(originalProps: UseNumberInputProps) {
197198
onPress: handleClear,
198199
});
199200

200-
const labelPlacement = useMemo<NumberInputVariantProps["labelPlacement"]>(() => {
201-
if ((!originalProps.labelPlacement || originalProps.labelPlacement === "inside") && !label) {
202-
return "outside";
203-
}
204-
205-
return originalProps.labelPlacement ?? "inside";
206-
}, [originalProps.labelPlacement, label]);
201+
const labelPlacement = useLabelPlacement({
202+
labelPlacement: originalProps.labelPlacement,
203+
label,
204+
});
207205

208206
const errorMessage =
209207
typeof props.errorMessage === "function"

0 commit comments

Comments
 (0)