GithubHelp home page GithubHelp logo

massierc / react-date-inputs Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 3.0 4.43 MB

Simple and lightweight date inputs for your React app

Home Page: https://massierc.github.io/react-date-inputs/

JavaScript 14.39% TypeScript 84.28% Shell 1.33%
react

react-date-inputs's Introduction

React Date Inputs

Simple and lightweight date inputs for your React app.

View demo

Installation

Install with npm

npm i --save react-date-inputs

or with yarn

yarn add react-date-inputs

Usage

import React, { useState } from 'react';
import ReactDateInputs from 'react-date-inputs';

const MyComponent = () => {
  const [value, setValue] = useState(new Date());

  return <ReactDateInputs value={value} onChange={setValue} />;
};

Props

prop type required default description
value Date - -
onChange (value: Date): undefined - -
onBlur (): undefined - -
dayPlaceholder string - 'DD'
monthPlaceholder string - 'MM'
yearPlaceholder string - 'YYYY'
className string - -
label string - -
disabled boolean - false
inputComponent React.ElementType - - Component used for inputs. Must use React.forwardRef for functional components
labelComponent React.ElementType - - Component used for label
inputComponentProps Record<string, unknown> - {} Any additional prop to be passed down to custom input component
labelComponentProps Record<string, unknown> - {} Any additional prop to be passed down to custom label component
show (keyof typeof Unit)[] - ['day', 'month', 'year'] Determines which inputs to show
autoTab boolean - false Enable automatic tab between inputs. If set to true, inputComponent must be wrapped in React.forwardRef()

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.