ReactJS Blueprint NumberInput Component Last Updated : 08 Apr, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. NumberInput Component provides a way for users to provide them a number input. It is a basic component to collect numeric data from the user. We can use the following approach in ReactJS to use the ReactJS Blueprint NumberInput Component. NumberInput Props: allowNumericCharactersOnly: Whether to allow only floating-point number characters in the field.asyncControl: We can control the value of this input with asynchronous updates when this is set to true.buttonPosition: It is used to denote the position of the buttons with respect to the input field.clampValueOnBlur: It is used to indicate whether the value should be clamped to [min, max] on blur.className: It is used to denote the space-delimited list of class names to pass along to a child element.defaultValue: It is used to denote the initial value of the input, for uncontrolled usage.disabled: It is used to indicate whether or not the input is non-interactive.fill: It is used to indicate whether or not the component should take up the full width of its container.inputRef: It is used to denote the ref handler or a ref object that receives HTML <input> element backing this component.intent: It is used to denote the visual intent color to apply to the element.large: It is used to indicate whether or not this input should use large styles.leftIcon: It is used to denote the name of an icon or an icon element to render on the left side of an input.locale: It is used to denote the locale name, which is passed to the component to format the number and allowing to type the number in the specific locale.majorStepSize: It is used to denote the increment between successive values when shift is held.max: It is used to denote the maximum value of the input.min: It is used to denote the minimum value of the input.minorStepSize: It is used to denote the increment between successive values when alt is held.onButtonClick: It is a callback function that is triggered when the value changes due to a button click.onValueChange: It is a callback function that is triggered when the value changes due to typing, arrow keys, or button clicks.placeholder: It is used to denote the placeholder text in the absence of any value.rightElement: It is used to denote the element to render on the right side of an input.selectAllOnFocus: It is used to indicate whether the entire text field should be selected on focus or not.selectAllOnIncrement: It is used to indicate whether the entire text field should be selected on increment.stepSize: It is used to denote the increment between successive values when no modifier keys are held.value: It is used to denote the value to display in the input field.  Creating React Application And Installing Module: Step 1: Create a React application using the following command: npx create-react-app foldername Step 2: After creating your project folder i.e. foldername, move to it using the following command: cd foldername Step 3: After creating the ReactJS application, Install the required module using the following command: npm install @blueprintjs/core Project Structure: It will look like the following. Project StructureExample: Now write down the following code in the App.js file. Here, App is our default component where we have written our code. App.js import React from 'react' import '@blueprintjs/core/lib/css/blueprint.css'; import { NumericInput } from "@blueprintjs/core"; function App() { return ( <div style={{ display: 'block', width: 400, padding: 30 }}> <h4>ReactJS Blueprint NumericInput Component</h4> <NumericInput disabled={false} leftIcon="user" onChange={() => { console.log("Called on change of value") }} placeholder="Enter your phone number" /> </div > ); } export default App; Step to Run Application: Run the application using the following command from the root directory of the project: npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output: Reference: https://blueprintjs.com/docs/#core/components/numeric-input Comment More infoAdvertise with us G gouravhammad Follow Improve Article Tags : ReactJS React-Blueprint Blueprint-Core Blueprint-Form Inputs Similar Reads React Interview Questions and Answers React is an efficient, flexible, and open-source JavaScript library that allows developers to create simple, fast, and scalable web applications. Jordan Walke, a software engineer who was working for Facebook, created React. Developers with a JavaScript background can easily develop web applications 15+ min read React Tutorial React is a powerful JavaScript library for building fast, scalable front-end applications. Created by Facebook, it's known for its component-based structure, single-page applications (SPAs), and virtual DOM,enabling efficient UI updates and a seamless user experience.Note: The latest stable version 7 min read 90+ React Projects with Source Code [2025] React, managed by Facebook and a vibrant community of developers and companies, is a JavaScript library designed to craft dynamic user interfaces. It empowers developers with concepts like React web apps, components, props, states, and component lifecycles. With a primary focus on building single-pa 12 min read Frontend Developer Interview Questions and Answers Frontend development is an important part of web applications, and it is used to build dynamic and user-friendly web applications with an interactive user interface (UI). Many companies are hiring skilled Frontend developers with expertise in HTML, CSS, JavaScript, and modern frameworks and librarie 15+ min read React Introduction ReactJS is a component-based JavaScript library used to build dynamic and interactive user interfaces. It simplifies the creation of single-page applications (SPAs) with a focus on performance and maintainability.It is developed and maintained by Facebook.The latest version of React is React 19.Uses 8 min read React Hooks ReactJS Hooks are one of the most powerful features of React, introduced in version 16.8. They allow developers to use state and other React features without writing a class component. Hooks simplify the code, make it more readable, and offer a more functional approach to React development. With hoo 10 min read React JSX JSX stands for JavaScript XML, and it is a special syntax used in React to simplify building user interfaces. JSX allows you to write HTML-like code directly inside JavaScript, enabling you to create UI components more efficiently. Although JSX looks like regular HTML, itâs actually a syntax extensi 6 min read React Router React Router is a library for handling routing and navigation in React JS Applications. It allows you to create dynamic routes, providing a seamless user experience by mapping various URLs to components. It enables navigation in a single-page application (SPA) without refreshing the entire page.This 6 min read ReactJS Virtual DOM ReactJS Virtual DOM is an in-memory representation of the actual DOM (Document Object Model). React uses this lightweight JavaScript object to track changes in the application state and efficiently update the actual DOM only where necessary.What is the Virtual DOM?The Virtual DOM (VDOM) is a lightwe 4 min read How to Install ReactJS on Windows: Step-by-Step Guide ReactJS has become one of the most popular JavaScript libraries for building dynamic and interactive user interfaces, powering some of the biggest websites and applications across the web. If you're a Windows user eager to dive into React development, setting up your environment properly is the firs 8 min read Like