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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kalel1500/datetimerange-picker

v0.2.0-beta.0

Published

A JavaScript component that is a date & time range picker

Readme

vanilla-datetimerange-picker

Overview.

A JavaScript component that is a date & time range picker, no need to build, no dependencies except Moment.js, that is inspired by Dan Grossman's bootstrap-daterangepicker.

Actually, this program is base on Dan Grossman's bootstrap-daterangepicker (version 3.1). I just changed the code a bit to not need jquery.

Requirements

IE11

If you want to use on Internet Explorer 11, include Polyfill to use CustomEvent, Object.assign, Element.prototype.closest and Element.prototype.matches features.

Quick start using CDN.

  1. Include Moment.js and Date Range Picker's css and js files in your webpage:
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alumuko/vanilla-datetimerange-picker@latest/dist/vanilla-datetimerange-picker.css">

<script src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/gh/alumuko/vanilla-datetimerange-picker@latest/dist/vanilla-datetimerange-picker.js"></script>
  1. Put "INPUT" element into "BODY", and bind DateRangePicker instance.
<input type="text" id="datetimerange-input1" size="24" style="text-align:center">

<script>
    window.addEventListener("load", function (event) {
        new DateRangePicker('datetimerange-input1');
    });
</script>

See simple example page.

Usage

new DateRangePicker(bindElement, options, callback);

| parameter | type | description | ----|----|---- | bindElement | string or object | bind element id or bind HTMLElement object | | options | object | option set (see Options) | | callback | function(momemt, moment) | change datetime callback, 2 parameters: start and end datetime |

Options

| name | type | description | ----|----|---- | startDate | Date or string | The beginning date of the initially selected date range. If you provide a string, it must match the date format string set in your locale setting.| | endDate | Date or string | The end date of the initially selected date range.| | minDate | Date or string | The earliest date a user may select.| | maxDate | Date or string | The latest date a user may select. | | maxSpan | object | The maximum span between the selected start and end dates. You can provide any object the moment library would let you add to a date. | |showDropdowns | true/false | Show year and month select boxes above calendars to jump to a specific month and year. | minYear | number | The minimum year shown in the dropdowns when showDropdowns is set to true.| | maxYear | number | The maximum year shown in the dropdowns when showDropdowns is set to true.| | showWeekNumbers | true/false | Show localized week numbers at the start of each week on the calendars.| | showISOWeekNumbers | true/false | Show ISO week numbers at the start of each week on the calendars.| | timePicker | true/false | Adds select boxes to choose times in addition to dates.| | timePickerIncrement | number | Increment of the minutes selection list for times (i.e. 30 to allow only selection of times ending in 0 or 30).| timePicker24Hour | true/false | Use 24-hour instead of 12-hour times, removing the AM/PM selection.| | timePickerSeconds | true/false | Show seconds in the timePicker. | | ranges | object |Set predefined date ranges the user can select from. Each key is the label for the range, and its value an array with two dates representing the bounds of the range. See example code.| | showCustomRangeLabel | true/false | Displays "Custom Range" at the end of the list of predefined ranges, when the ranges option is used. This option will be highlighted whenever the current date range selection does not match one of the predefined ranges. Clicking it will display the calendars to select a new range. | | alwaysShowCalendars | true/false | Normally, if you use the ranges option to specify pre-defined date ranges, calendars for choosing a custom date range are not shown until the user clicks "Custom Range". When this option is set to true, the calendars for choosing a custom date range are always shown instead. | | opens | 'left'/'right'/'center' | Whether the picker appears aligned to the left, to the right, or centered under the HTML element it's attached to. | | drops | 'down'/'up'/'auto' | Whether the picker appears below (default) or above the HTML element it's attached to. | | buttonClasses | string | CSS class names that will be added to both the apply and cancel buttons.| | applyButtonClasses | string | CSS class names that will be added only to the apply button.| | cancelButtonClasses | string | CSS class names that will be added only to the cancel button. | | singleDatePicker | true/false | Show only a single calendar to choose one date, instead of a range picker with two calendars. The start and end dates provided to your callback will be the same single date chosen.| | autoApply | true/false | Hide the apply and cancel buttons, and automatically apply a new date range as soon as two dates are clicked.| | linkedCalendars | true/false | When enabled, the two calendars displayed will always be for two sequential months (i.e. January and February), and both will be advanced when clicking the left or right arrows above the calendars. When disabled, the two calendars can be individually advanced and display any month/year.| | isInvalidDate | function(moment) | A function that is passed each date in the two calendars before they are displayed, and may return true or false to indicate whether that date should be available for selection or not.| | isCustomDate | function(moment) | A function that is passed each date in the two calendars before they are displayed, and may return a string or array of CSS class names to apply to that date's calendar cell.| | autoUpdateInput | true/false | Indicates whether the date range picker should automatically update the value of the <input> element it's attached to at initialization and when the selected dates change.| | parentEl | string | the parent element that the date range picker will be added to, if not provided this will be 'body'| | locale | object || | locale.format | string | date time text locale format like "YYYY年MM月DD日 HH時mm分ss秒".| | locale.separator | string | separator between 2 date times. default separator is "-"| | locale.applyLabel | string | label text of the apply button. default is "Apply"| | locale.cancelLabel | string | label text of the cancel button. default is "Cancel"| | locale.weekLabel | string | label text of week number column like "W"| | locale.daysOfWeek | array of 7 strings | 7 label texts of week column like ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'] | | locale.monthNames | array of 12 strings | 12 label texts of month nameweek column. like ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] | | locale.firstDay | number | 0 = from Sunday, 1 = from Monday, ..., 6 = from Saturday |

strong text value means default value.

Methods

| name | type | description | ----|----|---- | setStartDate | Date or string | Sets the date range picker's currently selected start date to the provided date | | setEndDate | Date or string | Sets the date range picker's currently selected end date to the provided date |

Usage

    let drp = new DateRangePicker('datetimerange-input1', { alwaysShowCalendars: true });,
    drp.setStartDate('2014/03/01');
    drp.setEndDate('2014/03/03');

Events

| name | description | ----|---- | show.daterangepicker | Triggered when the picker is shown | | hide.daterangepicker | Triggered when the picker is hidden | | showCalendar.daterangepicker | Triggered when the calendar(s) are shown | | hideCalendar.daterangepicker | Triggered when the calendar(s) are hidden | | apply.daterangepicker |Triggered when the apply button is clicked, or when a predefined range is clicked | | cancel.daterangepicker |Triggered when the cancel button is clicked |

Usage

    window.addEventListener('apply.daterangepicker', function (ev) {
        console.log(ev.detail.startDate.format('YYYY-MM-DD'));
        console.log(ev.detail.endDate.format('YYYY-MM-DD'));
    });

Examples

Data Time Range Picker with a Callback.

Data Time Range Picker

<input type="text" id="datetimerange-input1" size="40" style="text-align:center">

<script>
    window.addEventListener("load", function (event) {
        new DateRangePicker('datetimerange-input1',
            {
                timePicker: true,
                opens: 'left',
                ranges: {
                    'Today': [moment().startOf('day'), moment().endOf('day')],
                    'Yesterday': [moment().subtract(1, 'days').startOf('day'), moment().subtract(1, 'days').endOf('day')],
                    'Last 7 Days': [moment().subtract(6, 'days').startOf('day'), moment().endOf('day')],
                    'This Month': [moment().startOf('month').startOf('day'), moment().endOf('month').endOf('day')],
                },
                locale: {
                    format: "YYYY-MM-DD HH:mm:ss",
                }
            },
            function (start, end) {
                alert(start.format() + " - " + end.format());
            })
    });
</script>

See datetime example page

Extra

A Dark Version CSS

Dark Data Time Range Picker

change

<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alumuko/vanilla-datetimerange-picker@latest/dist/vanilla-datetimerange-picker.css">

to

<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alumuko/vanilla-datetimerange-picker@latest/extra/vanilla-datetimerange-picker-dark.css">

See datetime dark example page.

Dynamic DataRange Change (since 0.2.0)

you can change dateranges dynamically. with extra function updateRanges(Object)

See datetime example page.

Special Thanks

Special thanks to Dan Grossman

License

GNU General Public License v3.0.