0.0.86 • Published 10 months ago

idraaj v0.0.86

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Idraaj

An advanced HTML number input with enhanced features, including number formatting, customizable decimal separators, integer-only mode, and more.

Documentation

Idraaj Documentation

Numeric Field

import { NumericField } from 'idraaj'
import { useState } from 'react'

function Component() {
  const [value, setValue] = useState<null | number>(324221)

  return (
    <NumericField
      onChange={(val) => setValue(val)}
      decimalSeparator="comma"
      max={600000}
      enableSeparator={true}
    />
  )
}

export default Component
0.0.86

10 months ago

0.0.84

10 months ago

0.0.82

10 months ago

0.0.8

10 months ago

0.0.3

10 months ago

0.0.21

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago