angularx-flatpickr-months
TypeScript icon, indicating that this package has built-in type declarations

5.1.1 • Public • Published

angularx flatpickr

Build Status codecov npm version devDependency Status GitHub issues GitHub stars GitHub license

Demo

https://mattlewis92.github.io/angularx-flatpickr/

Table of contents

About

An angular 5.0+ wrapper for flatpickr

Installation

Install through npm:

npm install --save flatpickr angularx-flatpickr

Then include in your apps module:

import 'flatpickr/dist/flatpickr.css'; // you may need to adjust the css import depending on your build tool
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { FlatpickrModule, FLATPICKR } from 'angularx-flatpickr';
// make sure "allowSyntheticDefaultImports": true is set in your tsconfig.json
import * as flatpickr from 'flatpickr';
 
export function flatpickrFactory() {
  return flatpickr;
}
 
@NgModule({
  imports: [
    FormsModule,
    FlatpickrModule.forRoot({
      provide: FLATPICKR,
      useFactory: flatpickrFactory
    })
  ]
})
export class MyModule {}

Finally use in one of your apps components:

import { Component } from '@angular/core';
 
@Component({
  template: `
    <input 
      type="text" 
      mwlFlatpickr 
      [(ngModel)]="selectedDate" 
      [altInput]="true" 
      [convertModelValue]="true">
  `
})
export class MyComponent {}

You may also find it useful to view the demo source.

Documentation

All documentation is auto-generated from the source via compodoc and can be viewed here: https://mattlewis92.github.io/angularx-flatpickr/docs/

Development

Prepare your environment

  • Install Node.js and npm
  • Install local dev dependencies: npm install while current directory is this repo

Development server

Run npm start to start a development server on port 8000 with auto reload + tests.

Testing

Run npm test to run tests once or npm run test:watch to continually run tests.

Release

npm run release

License

MIT

Dependencies (1)

Dev Dependencies (57)

Package Sidebar

Install

npm i angularx-flatpickr-months

Weekly Downloads

13

Version

5.1.1

License

MIT

Unpacked Size

241 kB

Total Files

19

Last publish

Collaborators

  • enric-masterasp