0.0.86 • Published 8 months ago

idraaj v0.0.86

Weekly downloads
-
License
MIT
Repository
github
Last release
8 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

8 months ago

0.0.84

9 months ago

0.0.82

9 months ago

0.0.8

9 months ago

0.0.3

9 months ago

0.0.21

9 months ago

0.0.2

10 months ago

0.0.1

10 months ago