npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-mj-daterangepicker-custom-presets

v0.1.11

Published

<p align="center"> <img src="./img/preview.png" alt="Size Limit example" width="640" height="398"> </p>

Downloads

9

Readme

vue-mj-daterangepicker

Installation

You need Vue.js version 2.0+.

1 Install via npm

npm install vue-mj-daterangepicker
yarn add vue-mj-daterangepicker

2 Import and use

import Vue from 'vue'
import DateRangePicker from 'vue-mj-daterangepicker'
import 'vue-mj-daterangepicker/dist/vue-mj-daterangepicker.css'

...

Vue.use(DateRangePicker)

Props

| Name | Type | Default | Description | |-------------------|---------|-------------------------------------------------|-----------------------------------------------------------------| | locale | String | en | set the locale ['de', 'es', en', 'fr', 'ru'] | | from | String | null | ISO-8601 date of start range | | to | String | null | ISO-8601 date of end range | | begin | String | null | ISO-8601 date to display since beginning range | | allowFrom | String | null | ISO-8601 date to disable selection of all dates before (strict) | | allowTo | String | null | ISO-8601 date to disable selection of all dates after (strict) | | past | Boolean | true | allow/disallow user to select past dates | | future | Boolean | true | allow/disallow user to select future dates | | panel | String | null | choose which panel to be open by default | | panels | Array | [ 'range', 'week', 'month', 'quarter', 'year' ] | choose which panels to be available | | yearsCount | Number | 2 | number of past/future years to display in year panel | | showControls | Boolean | true | show bottom controls | | theme | Object | see customize section | customize colors | | width | String | 'auto' | set component width | | resetTitle | String | 'Reset' | change Reset button title | | submitTitle | String | 'Submit' | change Submit button title | | presets | Object | see preset section | select which presets to be available | | rangeDisplayed | String | 'to' | select which range is visible when calendar is displayed |

Customize

theme = {
  primary: '#3297DB',
  secondary: '#2D3E50',
  ternary: '#93A0BD',
  border: '#e6e6e6',
  light: '#ffffff',
  dark: '#000000',
  hovers: {
    day: '#CCC',
    range: '#e6e6e6'
  }
}

Presets

available presets : ['custom', 'today', 'yesterday', 'tomorrow', 'last7days', 'next7days', 'last30days', 'next30days', 'last90days', 'next90days', 'last365days', 'next365days', 'forever']

warning: forever need begin props to be set.

Events

This datepicker emit three events, @update, @select and @reset

@update is triggered when submit button is clicked. @select is triggered when a range is selected, can be useful if you don't want to show bottom controls (with showControls = false) @reset is triggered when reset button is clicked

All return an object with the start and end date, plus the active panel

{
  to: '2019-04-23T10:26:00.996Z',
  from: '2018-04-23T10:26:00.996Z'
  panel: 'range'
}

Examples

<template>
  <date-range-picker :from="$route.query.from" :to="$route.query.to" :panel="$route.query.panel" @update="update"/>
</template>

<script>

export default {
  methods: {
    update(values) {
      this.$router.push({ query: Object.assign({}, this.$route.query, {
        to: values.to,
        from: values.from,
        panel: values.panel
      }) })
    }
  }
}
</script>