New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@geekcojp/react-input-flatpickr

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@geekcojp/react-input-flatpickr

[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) [![CircleCI](https://circleci.com/gh/geekcojp/react-input-flatpickr/tree/master.svg?style=svg&circle-token=51a03

0.1.1
latest
Source
npm
Version published
Maintainers
2
Created
Source

react-input-flatpickr

code style: prettier CircleCI

Usage

yarn add @geekcojp/react-input-flatpickr

Props

export interface InputFlatpickrProps extends flatpickr.Options.Options {
  theme?:
    | 'dark'
    | 'material_blue'
    | 'material_green'
    | 'material_orange'
    | 'material_red'
    | 'airbnb'
    | 'confetti';
  value?: string;
  placeholder?: string;
  inputName?: string;
  inputReadonly?: boolean;
  disabled?: boolean;
  handleInputBlur?(data: {
    input: HTMLInputElement;
    value: string;
  }): void | Promise<void>;
  handleInputChange?(data: {
    input: HTMLInputElement;
    value: string;
  }): void | Promise<void>;
}

FAQs

Package last updated on 25 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts