Socket
Socket
Sign inDemoInstall

daterangepicker-dayjs

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    daterangepicker-dayjs

Date range picker component for Bootstrap. Replaced moment.js with Day.js


Version published
Weekly downloads
1.1K
decreased by-14.72%
Maintainers
1
Install size
2.15 MB
Created
Weekly downloads
 

Readme

Source

Date Range Picker

This date range picker component creates a dropdown menu from which a user can select a range of dates.

This is a fork of "dangrossman/daterangepicker" plugin. For complete documentation please refer, https://github.com/dangrossman/daterangepicker and http://www.daterangepicker.com

Features

  • Removed the Moment.js dependency and replaced it with Day.js (https://day.js.org/).
Usage
npm i daterangepicker-dayjs
Demo

Code Sandbox Playground: https://codesandbox.io/s/daterangepicker-with-day-js-9zwjn

Demo and Usages: https://iamkumaran.github.io/daterangepicker-dayjs/index.html

How to use
import $ from "jquery";
import dayjs from "dayjs";
import "daterangepicker-dayjs/daterangepicker";
import "daterangepicker-dayjs/daterangepicker.css";

// Plugins
import localeData from "dayjs/plugin/localeData";
import localizedFormat from "dayjs/plugin/localizedFormat";
import isoWeek from "dayjs/plugin/isoWeek";
import arraySupport from "dayjs/plugin/arraySupport";
import badMutable from "dayjs/plugin/badMutable";

// Load plugins
dayjs.extend(localeData);
dayjs.extend(localizedFormat);
dayjs.extend(isoWeek);
dayjs.extend(arraySupport);
dayjs.extend(badMutable);

// Simple Date Range Picker
$('input[name="dates"]').daterangepicker();
HTML
<div>
	<h3>Simple Date Range Picker</h3>
	<input type="text" name="dates" class="form-control pull-right" />
</div>

License

The MIT License (MIT)

Copyright (c) 2012-2020 Dan Grossman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Last updated on 09 Nov 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc