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

@bitbite/datepicker-plus

v1.1.4

Published

Stencil Datepicker Web Component

Downloads

205

Readme

Datepicker Plus

select date range

Datepicker Plus is an input control to select dates. It's a web component built with StencilJS. Datepicker Plus can be used directly in a web page or you can integrate the Datepicker with other frameworks, like angular, react or Vue. check stenciljs framework integration for more info.

Features

  • supports single, multiple and range select mode
  • flexible view range
  • dynamic date attributes
  • fully customizable
  • supports select constraints
  • i18n support
  • ability to integrate with other frameworks

Documentation


Installation

npm i @bitbite/datepicker-plus --save

Integration


Configuration

  • Datepicker Plus takes a single config. Object as a prop. check below:
/**
 * datepicker web component configuration
 *
 * The standard date format for datepicker config.
 * is the DateString. DateString is a formatted string
 * that can be converted to a Javascript Date Object.
 * 
 * example dateString:
 * 2019-10-19 (YYYY-MM-dd)
 */
export interface IPlusConfig {
    /**
     * Optionally set select mode to one of the available
     * select modes listed below:
     * 
     * 'single'   - select a single date 
     * 'multiple' - select multiple distinct dates
     * 'range'    - select a range between two dates (default)
     */
    selectMode?: SelectMode
    
    /**
     * Optionally set the view range given the pair
     * (start date string, end date string).
     * 
     * if not provided, the current month will be
     * the default view range.
     */
    viewRange ?: [DateString, DateString]
  
    /**
     * Optionally provide one 'dateString', date attribute
     * or more to be selected on init.
     */
    selected  ?: DateString[]
  
    /**
     * Optionally provide one 'dateString', date attribute
     * to be disabled on init.
     */
    disabled  ?: DateString[]
  
    /**
     * Optionally select week header mode.
     * 
     * there are two modes available:
     * 'single'     - a single header for all months
     * 'per-month'  - each month has his own header (default)
     */
    weekHeader?: WeekHeader
  
    /**
     * Optionally set a scope size. if present
     * a scope size larger than 0. on date select
     * the user will be limited to choose from within
     * the scope.
     * 
     * for example, give the configuration below.
     * { selectScopeSize: 7 }
     * 
     * The user can select up to 7 dates
     * [-6][-5][-4][-3][-2][-1][ <-*-> ][1][2][3][4][5][6]
     */
    selectScopeSize?: number
  
    /**
     * Optionally provide a custom style sheet url to be
     * loaded and injected inside the datepicker component.
     */
    stylesheetUrl ?: string
  
    /**
     * optionally provide a localized content
     * for datepicker.
     */
    i18n?: {
      /**
       * (default)
       *  1 Sunday     (Sun)
       *  2 Monday     (Mon)
       *  3 Tuesday    (Tue)
       *  4 Wednesday  (Wed)
       *  5 Thursday   (Thu)
       *  6 Friday     (Fri)
       *  7 Saturday   (Sat)
       */
      weekDays?: IWeekDay[]
      /**
       * (default)
       *  01 January        (Jan)
       *  02 February       (Feb)
       *  03 March          (Mar)
       *  04 April          (Apr)
       *  05 May            (May)
       *  06 June           (Jun)
       *  07 July           (Jul)
       *  08 August         (Aug)
       *  09 September      (Sep)
       *  10 October        (Oct)
       *  11 November       (Nov)
       *  12 December       (Dec)
       */
      months?: IMonth[]
    }
    
    /**
     * Optionally select datepicker layout
     * 'vertical' (default)
     */
    layout?: 'vertical' | 'horizontal'
  }

Events

onDateSelect

  • emits when a date is selected. use it to react to a date selected.

  • emitted CustomEvent<string[]>


onDeselect

  • emits when a date is deselected use it to react to date deselected

  • emitted CustomEvent<string[]>


onHighlight

  • emits when a date or more is highlighted as potential select candidate

  • emitted CustomEvent<string[]>


onHighlight

  • emits when a date or more is highlighted as potential select candidate

  • emitted CustomEvent<string[]>


onHighlightClear

  • emits when date highlight is cleared after dates deselect

  • emitted CustomEvent<void>


onRangeSelect

  • emits when a complete date range is selected use it to react to a complete date range selected

  • emitted CustomEvent<string[]>


Custom Styling

Applying custom styles to Datepicker plus is as easy as passing a stylesheet url as a prop. to the config. Object. You can as well use web component stylable parts to style the datepicker.

{
   stylesheetUrl ?: string // stylesheet url
}

| selector | description | | -------------- | --------------------------------------------------------- | | .dpp-custom | targets datepicker plus container | | .day | targets every datepicker day control | | .year | targets date controls in a year | | .disabled | targets disabled date controls | | .checked | targets selected date controls | | .month | targets month container | | .month-name | targets month name | | .month-header | targets month header | | .month-content | targets month controls container | | .week | targets week container | | .empty | targets empty slots | | .week-header | targets week header | | .week-header > abbr | targets week header abbreviation | | .week-content | targets week controls container | | .weekend | targets weekend header | | .checkbox | targets hidden checkbox controls | | .single-header | if header mode is single you can override this class | | .highlight | targets highlighted controls | | .connector | targets selected date controls between two selected dates | | .rangeStart | targets selected range start date controls | | .rangeEnd | targets selected range end date controls |

Dynamic attributes will reflect it's class to every control that has an attribute enabled. This attributes can be styled as well. ( .today - .tomorrow - .yesterday - .past - .future )

Web Component parts styling is also available:

datepicker-plus::part(dpp-container) { ... }
datepicker-plus::part(month-header) { ... }
datepicker-plus::part(month) { ... }
datepicker-plus::part(week-header) { ... }
datepicker-plus::part(week) { ... }
datepicker-plus::part(day) { ... }

Development

Built With Stencil


Getting Started

  • install dependencies
npm install
  • start development server
npm start

To build the component for production, run:

npm run build

To run the unit tests for the components, run:

npm test

Need help? Check out stencilJS docs here.