![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ngx-currency
Advanced tools
A very simple currency mask directive that allows using a number attribute with the ngModel.
https://nbfontana.github.io/ngx-currency/
Install the package by command:
npm install ngx-currency --save
Import the directive
import { NgxCurrencyDirective } from "ngx-currency";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
imports: [NgxCurrencyDirective],
})
export class AppComponent {}
<input type="text" inputmode="decimal" currencyMask formControlName="value" />
ngModel
An attribute of type number. If is displayed '$ 25.63'
, the attribute will be '25.63'
.You can set options...
<!-- example for pt-BR money -->
<input [currencyMask]="{ prefix: 'R$ ', thousands: '.', decimal: ',' }" formControlName="value" />
Available options:
align
- Text alignment in input. (default: right
)allowNegative
- If true
can input negative values. (default: true
)decimal
- Separator of decimals (default: '.'
)precision
- Number of decimal places (default: 2
)prefix
- Money prefix (default: '$ '
)suffix
- Money suffix (default: ''
)thousands
- Separator of thousands (default: ','
)nullable
- when true, the value of the clean field will be null
, when false the value will be 0
min
- The minimum value (default: undefined
)max
- The maximum value (default: undefined
)inputMode
- Determines how to handle numbers as the user types them (default: Financial
)Input Modes:
Financial
- Numbers start at the highest precision decimal. Typing a number shifts numbers left.
The decimal character is ignored. Most cash registers work this way. For example:
'12'
results in '0.12'
'1234'
results in '12.34'
'1.234'
results in '12.34'
Natural
- Numbers start to the left of the decimal. Typing a number to the left of the decimal shifts
numbers left; typing to the right of the decimal replaces the next number. Most text inputs
and spreadsheets work this way. For example:
'1234'
results in '1234'
'1.234'
results in '1.23'
'12.34'
results in '12.34'
'123.4'
results in '123.40'
You can also set options globally...
import { provideEnvironmentNgxCurrency, NgxCurrencyInputMode } from 'ngx-currency';
bootstrapApplication(AppComponent, {
providers: [
...
provideEnvironmentNgxCurrency({
align: "right",
allowNegative: true,
allowZero: true,
decimal: ",",
precision: 2,
prefix: "R$ ",
suffix: "",
thousands: ".",
nullable: true,
min: null,
max: null,
inputMode: NgxCurrencyInputMode.Financial,
}),
...
],
}).catch((err) => console.error(err));
npm install
while current directory is this repoTo start a local development server, run:
npm start
To build the library run:
npm run build:lib
To execute unit tests with the Karma test runner, use the following command:
npm test
When running in the Chrome browser, you can set code breakpoints to debug tests using these instructions:
Debug
button to open the debug windowctrl + shift + i
to open Chrome developer toolsctrl + p
to search for a file to debuginput.handler.ts
and click the fileMIT @ Neri Bez Fontana
FAQs
A very simple currency mask directive that allows using a number attribute with the ngModel.
The npm package ngx-currency receives a total of 9,358 weekly downloads. As such, ngx-currency popularity was classified as popular.
We found that ngx-currency demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.