
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@ngodings/ngx-currency-directive
Advanced tools
https://npm.ngodings.com/packages/ngx-currency-directive
If you like this package I will be happy that you support me on Buy me a coffee :)
Buy me coffe: https://www.buymeacoffee.com/alidihaw
Install the package by command:
npm install @ngodings/ngx-currency-directive --save
Import the module
import { NgxCurrencyModule } from "@ngodings/ngx-currency-directive";
@NgModule({
imports: [
...
NgxCurrencyModule
],
declarations: [...],
providers: [...]
})
export class AppModule {}
<input 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 formControlName="value" [options]="{ prefix: 'R$ ', thousands: '.', decimal: ',' }"/>
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 { CurrencyMaskInputMode, NgxCurrencyModule } from "ngx-currency";
export const customCurrencyMaskConfig = {
align: "right",
allowNegative: true,
allowZero: true,
decimal: ",",
precision: 2,
prefix: "R$ ",
suffix: "",
thousands: ".",
nullable: true,
min: null,
max: null,
inputMode: CurrencyMaskInputMode.FINANCIAL
};
@NgModule({
imports: [
...
NgxCurrencyModule.forRoot(customCurrencyMaskConfig)
],
declarations: [...],
providers: [...],
bootstrap: [AppComponent]
})
export class AppModule {}
npm install
while current directory is this repoRun npm start
or npm run demo
to start a development server on port 8000 with auto reload + tests.
MIT @ Ali Abdul Wahid
FAQs
## Demo - Angular v15
The npm package @ngodings/ngx-currency-directive receives a total of 0 weekly downloads. As such, @ngodings/ngx-currency-directive popularity was classified as not popular.
We found that @ngodings/ngx-currency-directive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.