Gathering detailed insights and metrics for vuejs-datepicker
Gathering detailed insights and metrics for vuejs-datepicker
Gathering detailed insights and metrics for vuejs-datepicker
Gathering detailed insights and metrics for vuejs-datepicker
A simple Vue.js datepicker component. Supports disabling of dates, inline mode, translations
npm install vuejs-datepicker
69.4
Supply Chain
98.7
Quality
75.8
Maintenance
50
Vulnerability
99.6
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
2,613 Stars
951 Commits
732 Forks
43 Watching
9 Branches
118 Contributors
Updated on 06 Nov 2024
Minified
Minified + Gzipped
JavaScript (60.63%)
Vue (37.3%)
Stylus (1.92%)
HTML (0.14%)
Cumulative downloads
Total Downloads
Last day
2.3%
18,978
Compared to previous day
Last week
4.2%
101,168
Compared to previous week
Last month
4.8%
426,701
Compared to previous month
Last year
-12.3%
5,364,315
Compared to previous year
1
49
A datepicker Vue component. Compatible with Vue 2.x
NB. Vue 1.x was supported up to version v0.9.9. If you want to use this component with Vue 1.x you can install with npm install vuejs-datepicker@0.9.9
To view a demo online: https://codesandbox.io/s/mpklq49wp
To view demo examples locally clone the repo and run npm install && npm run serve
1npm install vuejs-datepicker --save
1import Datepicker from 'vuejs-datepicker'; 2 3export default { 4 // ... 5 components: { 6 Datepicker 7 } 8 // ... 9}
Or use directly from a CDN
1<div id="app"> 2 <vuejs-datepicker></vuejs-datepicker> 3</div> 4<script src="https://unpkg.com/vue"></script> 5<script src="https://unpkg.com/vuejs-datepicker"></script> 6<script> 7const app = new Vue({ 8 el: '#app', 9 components: { 10 vuejsDatepicker 11 } 12}) 13</script> 14 15<!-- French language example --> 16<div id="app"> 17 <vuejs-datepicker :language="fr"></vuejs-datepicker> 18</div> 19<script src="https://unpkg.com/vue"></script> 20<script src="https://unpkg.com/vuejs-datepicker"></script> 21<script src="https://unpkg.com/vuejs-datepicker/dist/locale/translations/fr.js"></script> 22<script> 23const app = new Vue({ 24 el: '#app', 25 data() { 26 return { 27 fr: vdp_translation_fr.js 28 } 29 }, 30 components: { 31 vuejsDatepicker 32 } 33}) 34</script>
1<datepicker></datepicker>
value prop if passed should be a Date object
1<script> 2var state = { 3 date: new Date(2016, 9, 16) 4} 5</script> 6<datepicker :value="state.date"></datepicker>
support name attribute for normal html form submission
1<datepicker :value="state.date" name="uniquename"></datepicker>
Using v-model
1<datepicker v-model="state.date" name="uniquename"></datepicker>
Emits events
1<datepicker @selected="doSomethingInParentComponentFunction" @opened="datepickerOpenedFunction" @closed="datepickerClosedFunction">
Inline always open version
1<datepicker :inline="true"></datepicker>
Prop | Type | Default | Description |
---|---|---|---|
value | Date|String | Date value of the datepicker | |
name | String | Input name property | |
id | String | Input id | |
format | String|Function | dd MMM yyyy | Date formatting string or function |
full-month-name | Boolean | false | To show the full month name |
language | Object | en | Translation for days and months |
disabled-dates | Object | See below for configuration | |
placeholder | String | Input placeholder text | |
inline | Boolean | To show the datepicker always open | |
calendar-class | String|Object | CSS class applied to the calendar el | |
input-class | String|Object | CSS class applied to the input el | |
wrapper-class | String|Object | CSS class applied to the outer div | |
monday-first | Boolean | false | To start the week on Monday |
clear-button | Boolean | false | Show an icon for clearing the date |
clear-button-icon | String | Use icon for button (ex: fa fa-times) | |
calendar-button | Boolean | false | Show an icon that that can be clicked |
calendar-button-icon | String | Use icon for button (ex: fa fa-calendar) | |
calendar-button-icon-content | String | Use for material-icons (ex: event) | |
day-cell-content | Function | Use to render custom content in day cell | |
bootstrap-styling | Boolean | false | Output bootstrap v4 styling classes. |
initial-view | String | minimumView | If set, open on that view |
disabled | Boolean | false | If true, disable Datepicker on screen |
required | Boolean | false | Sets html required attribute on input |
typeable | Boolean | false | If true, allow the user to type the date |
use-utc | Boolean | false | use UTC for time calculations |
open-date | Date|String | If set, open on that date | |
minimum-view | String | 'day' | If set, lower-level views won't show |
maximum-view | String | 'year' | If set, higher-level views won't show |
These events are emitted on actions in the datepicker
Event | Output | Description |
---|---|---|
opened | The picker is opened | |
closed | The picker is closed | |
selected | Date|null | A date has been selected |
selectedDisabled | Object | A disabled date has been selected |
input | Date|null | Input value has been modified |
cleared | Selected date has been cleared | |
changedMonth | Object | Month page has been changed |
changedYear | Object | Year page has been changed |
changedDecade | Object | Decade page has been changed |
NB. This is not very robust at all - use at your own risk! Needs a better implementation.
Token | Desc | Example |
---|---|---|
d | day | 1 |
dd | 0 prefixed day | 01 |
D | abbr day | Mon |
su | date suffix | st, nd, rd |
M | month number (1 based) | 1 (for Jan) |
MM | 0 prefixed month | 01 |
MMM | abbreviated month name | Jan |
MMMM | month name | January |
yy | two digit year | 16 |
yyyy | four digit year | 2016 |
Delegates date formatting to provided function. Function will be called with date and it has to return formated date as a string. This allow us to use moment, date-fns, globalize or any other library to format date.
1<script> 2 methods: { 3 customFormatter(date) { 4 return moment(date).format('MMMM Do YYYY, h:mm:ss a'); 5 } 6 } 7</script> 8<datepicker :format="customFormatter"></datepicker>
Dates can be disabled in a number of ways.
1<script> 2var state = { 3 disabledDates: { 4 to: new Date(2016, 0, 5), // Disable all dates up to specific date 5 from: new Date(2016, 0, 26), // Disable all dates after specific date 6 days: [6, 0], // Disable Saturday's and Sunday's 7 daysOfMonth: [29, 30, 31], // Disable 29th, 30th and 31st of each month 8 dates: [ // Disable an array of dates 9 new Date(2016, 9, 16), 10 new Date(2016, 9, 17), 11 new Date(2016, 9, 18) 12 ], 13 ranges: [{ // Disable dates in given ranges (exclusive). 14 from: new Date(2016, 11, 25), 15 to: new Date(2016, 11, 30) 16 }, { 17 from: new Date(2017, 1, 12), 18 to: new Date(2017, 2, 25) 19 }], 20 // a custom function that returns true if the date is disabled 21 // this can be used for wiring you own logic to disable a date if none 22 // of the above conditions serve your purpose 23 // this function should accept a date and return true if is disabled 24 customPredictor: function(date) { 25 // disables the date if it is a multiple of 5 26 if(date.getDate() % 5 == 0){ 27 return true 28 } 29 } 30 } 31} 32</script> 33<datepicker :disabled-dates="state.disabledDates"></datepicker>
Dates can be highlighted (e.g. for marking an appointment) in a number of ways. Important:
By default disabled dates are ignored, to highlight disabled dates set the includeDisabled
property to true
. Note: Both to
and from
properties are required to define a range of
dates to highlight.
1<script> 2var state = { 3 highlighted: { 4 to: new Date(2016, 0, 5), // Highlight all dates up to specific date 5 from: new Date(2016, 0, 26), // Highlight all dates after specific date 6 days: [6, 0], // Highlight Saturday's and Sunday's 7 daysOfMonth: [15, 20, 31], // Highlight 15th, 20th and 31st of each month 8 dates: [ // Highlight an array of dates 9 new Date(2016, 9, 16), 10 new Date(2016, 9, 17), 11 new Date(2016, 9, 18) 12 ], 13 // a custom function that returns true of the date is highlighted 14 // this can be used for wiring you own logic to highlight a date if none 15 // of the above conditions serve your purpose 16 // this function should accept a date and return true if is highlighted 17 customPredictor: function(date) { 18 // highlights the date if it is a multiple of 4 19 if(date.getDate() % 4 == 0){ 20 return true 21 } 22 }, 23 includeDisabled: true // Highlight disabled dates 24 } 25} 26</script> 27<datepicker :highlighted="state.highlighted"></datepicker>
Slots will help you customize content. .
Sometimes you need to show custom content before the calendar header. For such cases you can use the named slot beforeCalendarHeader
.
An example would be to use bootstrap's input-group-prepend
and input-group-append
to show some custom text:
1<datepicker :bootstrap-styling="true"> 2 <div slot="beforeCalendarHeader" class="calender-header"> 3 Choose a Date 4 </div> 5</datepicker>
To implement some custom styling (for instance to add an animated placeholder) on DateInput, you might need to add elements as DateInput siblings. Slot named
afterDateInput
allows you to do that:
1<datepicker> 2 <span slot="afterDateInput" class="animated-placeholder"> 3 Choose a Date 4 </span> 5</datepicker>
Contributing guide - please use appropriate code from this list as the translation property.
src/locale/translations
dir.src/locale/index
filenpm run lint
to make sure your code formatting is in line with the required code style.Below script tag in component.
1import {en, es} from 'vuejs-datepicker/dist/locale'
In component data.
1data () { 2 return { 3 en: en, 4 es: es 5 } 6}
html.
1<datepicker :language="es"></datepicker>
Available languages
Abbr | Language | |
---|---|---|
af | Afrikaans | |
ar | Arabic | |
bg | Bulgarian | |
bs | Bosnian | |
ca | Catalan | |
cs | Czech | |
da | Danish | |
de | German | |
ee | Estonian | |
el | Greek | |
en | English | Default |
es | Spanish | |
fa | Persian (Farsi) | |
fi | Finnish | |
fo | Faroese | |
fr | French | |
ge | Georgia | |
gl | Galician | |
he | Hebrew | |
hu | Hungarian | |
hr | Croatian | |
id | Indonesian | |
is | Icelandic | |
it | Italian | |
ja | Japanese | |
kk | Kazakh | |
ko | Korean | |
lb | Luxembourgish | |
lt | Lithuanian | |
lv | Latvian | |
mk | Macedonian | |
mn | Mongolian | |
nbNO | Norwegian Bokmål | |
nl | Dutch | |
pl | Polish | |
ptBR | Portuguese-Brazil | |
ro | Romanian | |
ru | Russian | |
sk | Slovak | |
slSI | Slovenian | |
sv | Swedish | |
sr | Serbian (Latin) | |
srCyrl | Serbian (Cyrl) | |
th | Thai | |
tr | Turkish | |
uk | Ukrainian | |
ur | Urdu | |
vi | Vietnamese | |
zh | Chinese | |
zhHK | Chinese_HK |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 3/12 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
62 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
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 Morevue-formulate-datepicker
Wrapper for using vuejs-datepicker in vue-formulate
@hokify/vuejs-datepicker
A simple Vue.js datepicker component. Supports disabling of dates, inline mode, translations. Fork of initial vuejs-datepicker which is abandoned.
vuejs-datepicker-rails
A tweak of vuejs-datepicker to work properly with Rails
vuejs-datepicker-better
Fork of Charlie Kassel's vuejs-datepicker.