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

extended-datetimepicker

v1.0.10

Published

Basic date time picker with ability to disable set of continuous or non-continuous date sets.

Downloads

91

Readme

Angular Material DateTimePicker

An Angular Material based, an Android style date-time picker. Some basic functionalities are:

  • Double click to select date or time
  • Swipe left to go to next month or Swipe right to go to previous month.
  • Disable the set of continous or non-continous date sets.
  • Jump to current day
  • Highlight Week days (Business Days)
  • Display week number (in header)
  • Weekdays as per browser language

Updates

| Date | Author | Description | | ----------------- | ----------------- | --------------------------------------------------- | | 2016-11-21 | AmittK | Extended version of angular-material-datetimepicker | | 2017-04-14 | AmittK | Changes to the display structure of date and month | | 2017-07-26 | AmittK | Jump to today date is introduced | | 2017-07-28 | AmittK | Highlight only week-days (working business days) | | 2017-07-30 | AmittK | Displaying the week number in header, UI updated | | 2017-07-30 | AmittK | UI updated with icons and tooltips |

Dependencies

Depends on the following library:

  • Angular Material & it's dependencies
  • Angular Touch
  • MomentJS

Installing via Bower

bower install extended-datetimepicker

Installing via Npm

npm install extended-datetimepicker

Live Example

Click [here] (http://rawgit.com/amittkSharma/extended-datetimepicker/master/index.html) to visualize live examples.

Usage

Add the plugin module as a dependency to your AngularJS module:

    angular.module('myAwesomeModule', [
      //other dependencies ignored
      'ngMaterialDatePicker'
    ]);

This plugin exposes a directive which should be used as an attribute for an input element. The directive is mdc-datetime-picker. An example of this is given below:

    <md-input-container flex-gt-md="30">
        <label>Timepicker Only</label>
        <input mdc-datetime-picker date="false" time="true" type="text" id="time" short-time="true"
               placeholder="Time"
               min-date="minDate"
               format="hh:mm a"
               ng-model="time">
    </md-input-container>

Directive Attributes

The directive accepts several attributes which are described below:

| Name | Type | Description | | ----------------- | ----------------------------- | --------------------------------------------- | | ng-model | (String|Date|Moment) | Initial Date or model to assign the date to| | format | String | MomentJS Format,defaults to HH:mm for time picker only, YYYY-MM-DD for date picker only and YYYY-MM-DD HH:mm for both timepicker and date picker | | short-time | Boolean | true => Display 12 hours AM|PM | | min-date | (String|Date|Moment) | Minimum selectable date | | max-date | (String|Date|Moment) | Maximum selectable date | | date | Boolean | true => Has Datepicker (default: true) | | time | Boolean | true => Has Timepicker (default: true) | | cancel-text | String | Text for the cancel button (default: Cancel) | | ok-text | String | Text for the OK button (default: OK) | | disable-dates | Date[] | Dates to be disabled or not selectable by user. | | week-days | Boolean | true => Highlight only working days (default: false). |