Gathering detailed insights and metrics for flexerant-vuetify-number-field
Gathering detailed insights and metrics for flexerant-vuetify-number-field
Gathering detailed insights and metrics for flexerant-vuetify-number-field
Gathering detailed insights and metrics for flexerant-vuetify-number-field
npm install flexerant-vuetify-number-field
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (43.89%)
Vue (29.61%)
JavaScript (21.14%)
HTML (5.36%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
4,220
Last Day
1
Last Week
7
Last Month
45
Last Year
725
46 Commits
2 Watching
7 Branches
2 Contributors
Minified
Minified + Gzipped
Latest Version
2.0.1
Package Id
flexerant-vuetify-number-field@2.0.1
Unpacked Size
43.55 kB
Size
8.88 kB
File Count
13
NPM Version
6.14.10
Node Version
14.15.4
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
40%
7
Compared to previous week
Last month
2,150%
45
Compared to previous month
Last year
-8.7%
725
Compared to previous year
30
A numeric field component built from Vuetify's v-text-field
component.
Note: The numeral
package may also need to be installed.
1import Vue from "vue"; 2import VNumberField from "flexerant-vuetify-number-field"; 3 4Vue.use(VNumberField); 5Vue.component("v-number-field", VNumberField);
Note: The numeral
package may also need to be installed.
1// component.vue 2import VNumberField from "flexerant-vuetify-number-field"; 3 4export default { 5 components: { 6 "v-number-field": VNumberField, 7 }, 8};
The component uses Vuetify's text-field
API, therfore the same props, slots, events, and functions can be used.
1<v-number-field />
Additional props are listed below;
Name | Description | Type | Default |
---|---|---|---|
format | Prepends/appends the appropriate symbol based on the selected locale. | 'none' | 'currency' | 'percent' | 'none' |
min | The minimum allowed value. Values below it will be discarded. | number | Number.MIN_SAFE_INTEGER |
max | The maximum allowed value. Values above it will be discarded. | number | Number.MAX_SAFE_INTEGER |
decimal-places | The number of decimal places to display. Applies to the model also. | number | 2 |
step | The step used when increment/decrement buttons are clicked. | number | 0.1 |
locale | The locale used for the currency and percent symbols. | number | 'en' |
Any locale supported by numeral
can be used.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
98 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-02-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More