Enode — API Reference
    Preparing search index...
    • In-cell editable number, displayed as " " with the input occupying the value position. Commits on blur so an in-flight edit isn't PUT'd on every keystroke. When min/max are set, the committed value is clamped to that window — out-of-range typos snap to the nearest bound instead of silently flowing through to the server.

      Parameters

      • __namedParameters: {
            disabled?: boolean;
            label: string;
            max?: number;
            min?: number;
            onChange: (next: number) => void;
            unit?: string;
            value: number;
        }

      Returns Element