
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@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 repoMIT @ Ali Abdul Wahid
FAQs
## Demo - Angular v15
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.