Skip to content

Commit

Permalink
fix(#601): fix 601
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikamaldinov1 committed Jun 8, 2023
1 parent 09123b5 commit bdf34e7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,18 @@ Masked value: 1.234
Input value: 1234.56
Masked value: 1,234
```
```html
<input type="text" mask="separator.2" thousandSeparator="," [leadZero]="true" />
```
For add to model zero at the end
```text
Input value: 12
Masked value: 12.00

Input value: 12.1
Masked value: 12.10
```
```html
<input type="text" mask="separator.2" separatorLimit="1000" />
Expand Down

0 comments on commit bdf34e7

Please sign in to comment.