-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
index.html
75 lines (74 loc) · 2.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Currency Input Field: Examples</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col mb-3">
<h1>React Currency Input Field</h1>
<a
href="https://www.npmjs.com/package/react-currency-input-field"
target="_blank"
rel="noreferrer"
><img alt="npm" src="https://img.shields.io/npm/v/react-currency-input-field"
/></a>
<a
href="https://www.npmjs.com/package/react-currency-input-field"
target="_blank"
rel="noreferrer"
><img alt="npm" src="https://img.shields.io/npm/dm/react-currency-input-field"
/></a>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="h3">Features:</div>
<ul>
<li>Allows abbreviations eg. 1k = 1,000 2.5m = 2,500,000</li>
<li>Prefix option eg. £ or $</li>
<li>Automatically inserts group separator</li>
<li>Accepts Intl locale config</li>
<li>Can use arrow down/up to step</li>
<li>Can allow/disallow decimals</li>
<li>Written in TypeScript and has type support</li>
<li>Does not use any third party packages</li>
</ul>
<p>
See the
<a
href="https://github.com/cchanxzy/react-currency-input-field/"
target="_blank"
rel="noreferrer"
>README</a
>
for full documentation.
</p>
<p>
Please visit the
<a
href="https://github.com/cchanxzy/react-currency-input-field/tree/main/src/examples"
target="_blank"
rel="noreferrer"
>Github repository</a
>
to see the source code from examples.
</p>
</div>
</div>
<hr />
<div id="app"></div>
<footer class="mb-5"></footer>
</div>
<script type="module" src="./index.tsx"></script>
</body>
</html>