npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

volkeno-inputify

v1.0.0

Published

Volkeno Inputify is a ReactJS module that harmonizes the management of form components.

Downloads

1

Readme

volkeno-inputify

Volkeno Inputify is a ReactJS module that harmonizes the management of form components.

NPM JavaScript Style Guide

Install

npm install --save volkeno-inputify

Usage

import React, { Component } from 'react'

import { Inputify } from 'volkeno-inputify'
import 'volkeno-inputify/dist/index.css'

class Example extends Component {
  render() {
    return  <Inputify
              {...props}
            />
  }
}

Configuration - Props

| Property | Type | Default | Description | | ------------------------ | :------: | :-----: | ---------------------------------------------------------------------------------------- | | model | string | null | Input model. Value can be 'input', 'select', 'file', 'textarea', 'toggle_switch' | | inputType | string | null | Input type. Value can be 'text', 'checkbox', 'radio', 'file' | inputName | string | null | Input name property (Required) | inputValue | --- | null | Input value property | callBack | function | void | This is the method that allows you to retrieve the value of all Inputs except select | selectCallback | function | void | This is the method that allows you to retrieve the value of select | disabled | boolean | false | Input disabled property | readOnly | boolean | false | Input readonly property | placeholder | string | null | Input placeholder property | selectOption | Array | null | Array of select option label and value | selectPlaceholder | string | null | Select placeholder | className | string | null | Input custom className | inputLabel | string | null | Input label | inputLabelClassName | string | null | Input custom label container className | overridedID | string | null | Input custom ID value | inputHasIcon | boolean | false | Flag to add icon on input | iconInInput | string | null | Icon tag for example for Fontawesome '' | inputIconPosition | string | null | Icon position on the Input tag. Value can be 'left' or 'right' | inputCheckboxSize | Array | null | Checkbox tag size. It is an array containing the width and height values of checkbox size | inputRadioSize | Array | null | Radio tag size. It is an array containing the width and height values of radio size | hasMutliple | boolean | false | Define if has multiple files on Input file type | inputFileType | string | default | Define the type of Input file. Value can be 'default' or 'dnd' (for drag and drop) | textareaRows | number | null | Textarea rows size | textareaCols | number | null | Textarea cols size | textareaContentSizeLimit | string | null | Textarea content size limit value | inputSwitchValue | string | null | Input switch value property | switchCheckedStatus | boolean | false | Input switch checked proprety status | inputContainerClassName | string | null | Input switch parent container custom className | inputSwitchHasLabel | boolean | null | Define if Input switch have label | inputSwitchLabelPosition | string | null | Define Input switch label position. Value can be 'left-side-to-side', 'right-side-to-side', 'top-before-input-switch', 'bottom-after-input-switch' | inputBorderRadiusValue | string | null | Define Input border radius value | inputIconContainerBg | string | null | Define Input Icon parent container background value | isRequired | boolean | false | Define if Input value is required | dndInputLabel | string | null | Drag and Drop input file label value | inputStyleDeclination | string | default | Input style declinaison. Value can be 'defaut', 'primary', 'success', 'warning', 'danger', 'volkan' | otherProps | any | null | Can add all others input properties

License

MIT © VolkenoMakers