
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
vue-rangedate-picker
Advanced tools
Date picker with range selection
https://bliblidotcom.github.io/vue-rangedate-picker/demo/
npm install --save vue-rangedate-picker
import Vue from 'vue'
import VueRangedatePicker from 'vue-rangedate-picker'
Vue.use(VueRangedatePicker)
<!-- Include after Vue -->
<!-- Local files -->
<script src="vue-rangedate-picker/dist/vue-rangedate-picker.min.js"></script>
<!-- From CDN -->
<script src="https://unpkg.com/vue-rangedate-picker"></script>
You can catch these below Events to <rangedate-picker @events="events"></rangedate-picker>
template :
selected
Description : function that will $emit
when datepicker set value, this function will get parameter response :
{
start: dateObjectStart
end: dateObjectEnd
}
You can pass these below props to <rangedate-picker :props="props"></rangedate-picker>
template :
configs
Description : -
Type : Object
Default Value : {}
i18n
Description : For text translation (currently: ID/EN)
Type : String
Default Value : 'ID'
months
Description : Array of months name
Type : Array
Default Value :
['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli',
'Agustus', 'September', 'Oktober', 'November', 'Desember']
shortDays
Description : Array of days name in short
Type : Array
Default Value :
['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab']
captions
Description : Object for text title and OK button
Type : Object
Default Value :
{
'title': 'Choose Dates',
'ok_button': 'Apply'
}
format
Description : Date format
Type : String
Default Value : 'DD MMM YYYY'
styles
Description : -
Type : Object
Default Value :
{
daysWeeks: 'calendar_weeks',
days: 'calendar_days',
daysSelected: 'calendar_days_selected',
daysInRange: 'calendar_days_in-range',
firstDate: 'calendar_month_left',
secondDate: 'calendar_month_right',
presetRanges: 'calendar_preset-ranges'
}
initRange
Description : -
Type : Object
Default Value : null
startActiveMonth
Description : Month will be shown in first launch
Type : Number
Default Value : new Date().getMonth()
startActiveYear
Description : Year will be shown in first launch
Type : Number
Default Value : new Date().getFullYear()
presetRanges
Description : Set of objects that will shown as quick selection of daterange
Type : Object
Example Object :
{
today: function () {
const n = new Date()
const startToday = new Date(n.getFullYear(), n.getMonth(), n.getDate() + 1, 0, 0)
const endToday = new Date(n.getFullYear(), n.getMonth(), n.getDate() + 1, 23, 59)
return {
label: presetRangeLabel[i18n].today,
active: false,
dateRange: {
start: startToday,
end: endToday
}
}
}
}
Default Value :
{
today: function () {
return {
// label: 'string', active: 'boolean', dateRange: {start: date, end: end}
}
},
thisMonth: function () {},
lastMonth: function () {},
last7days: function () {},
last30days: function () {}
}
compact
Description : Set to 'true'
if you want to make datepicker always shown in compact mode
Type : String
Default Value : 'false'
righttoleft
Description : Set to 'true'
if you want datepicker shown align to right
Type : String
Default Value : 'false'
npm run dev
npm run dev:coverage
Bundle the js and css of to the dist
folder:
npm run build
The prepublish
hook will ensure dist files are created before publishing. This
way you don't need to commit them in your repository.
# Bump the version first
# It'll also commit it and create a tag
npm version
# Push the bumped package and tags
git push --follow-tags
# Ship it 🚀
npm publish
FAQs
Date picker with range selection
The npm package vue-rangedate-picker receives a total of 412 weekly downloads. As such, vue-rangedate-picker popularity was classified as not popular.
We found that vue-rangedate-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.