2.1.0 • Published 11 months ago

@hixme-ui/currency v2.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
11 months ago

Currency

npm i --save @hixme-ui/currency

View it live

Currency Props

NameTypeDefault
defaultSymbolstring$
hideCentsboolfalse
hideCommasboolfalse
noSymbolboolfalse
roundboolfalse
valuenumbernull

Basic Usage

Currency can use a child value or a value prop for the number, and handles comma placement and rounding of decimals.

import Input from '@hixme-ui/currency'

<Currency value='11.95' />
<Currency>11.95</Currency>
// both output $11.95

<Currency value='1234567.8991' />
// outputs $1,234,567.90

hideCents

<Currency hideCents value='123.8991' />
// outputs $123

hideCommas

<Currency hideCommas value='123456.00' />
// outputs $123456.00

noSymbol

<Currency noSymbol value='123456.00' />
// outputs 123,456.00

round

The round prop will round the number to significant values. If the value is under 100,000, it will round to the nearest dollar. Values of 100,000 and above will round to the nearest thousand

<Currency round value='1236.99' />
// outputs 1,237

<Currency round value='123456.00' />
// outputs 123,000.00

Format

Currency has a static format function if needed outside of a JSX context.

Currency.format({
  value: 12.34
})
// outputs $12.34

Currency.format({
  value: 1200.34,
  hideCents: true,
})
// outputs $1,200


Currency.format({
  value: 1234.5678,
  hideCommas: true,
  defaultSymbol: '#',
})
// outputs $1234.57
2.1.0

11 months ago

2.0.0-alpha.13

1 year ago

2.0.0

1 year ago

3.0.2

3 years ago

2.0.0-alpha.12

3 years ago

2.0.0-alpha.7

3 years ago

2.0.0-alpha.8

3 years ago

2.0.0-alpha.9

3 years ago

2.0.0-alpha.11

3 years ago

2.0.0-alpha.3

3 years ago

2.0.0-alpha.10

3 years ago

2.0.0-alpha.4

3 years ago

2.0.0-alpha.5

3 years ago

2.0.0-alpha.6

3 years ago

2.0.0-alpha.1

3 years ago

2.0.0-alpha.2

3 years ago

1.20.5

3 years ago

1.20.7

3 years ago

1.20.4

5 years ago

1.20.3

5 years ago

1.20.2

5 years ago

1.20.1

6 years ago

2.0.0-alpha.0

6 years ago

1.20.0

6 years ago

1.19.2

6 years ago

1.17.2

6 years ago

1.17.1

6 years ago

1.16.1

6 years ago

1.15.0

6 years ago

1.14.5

6 years ago

1.14.4

6 years ago

1.14.3

6 years ago

1.14.2

6 years ago

1.14.1

6 years ago

1.14.0

6 years ago

1.13.1

6 years ago

1.12.0

6 years ago

1.11.0

6 years ago

1.10.0

6 years ago

1.1.1

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago