mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat: update prettier configuration for print width * chore: apply code formatting to entire repository * fix: remove build files * fix: format issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
24 lines
728 B
TypeScript
24 lines
728 B
TypeScript
"use client";
|
|
|
|
import { NumberInput } from "@mantine/core";
|
|
|
|
import type { CommonWidgetInputProps } from "./common";
|
|
import { useWidgetInputTranslation } from "./common";
|
|
import { useFormContext } from "./form";
|
|
|
|
export const WidgetNumberInput = ({ property, kind, options }: CommonWidgetInputProps<"number">) => {
|
|
const t = useWidgetInputTranslation(kind, property);
|
|
const form = useFormContext();
|
|
|
|
return (
|
|
<NumberInput
|
|
label={t("label")}
|
|
description={options.withDescription ? t("description") : undefined}
|
|
min={options.validate.minValue ?? undefined}
|
|
max={options.validate.maxValue ?? undefined}
|
|
step={options.step}
|
|
{...form.getInputProps(`options.${property}`)}
|
|
/>
|
|
);
|
|
};
|