8000 GitHub - ThyssenK/angular2-calendar: A flexible calendar component for angular2 that can display events on a month, week or day view.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ThyssenK/angular2-calendar

 
 

Repository files navigation

angular2 calendar

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

Demo

https://mattlewis92.github.io/angular2-calendar/demo/

Table of contents

About

A calendar component that can display events on a month, week or day view. The successor of: https://github.com/mattlewis92/angular-bootstrap-calendar

Getting started

First install through npm:

npm install --save angular2-calendar

Next include the CSS file somewhere into your app:

node_modules/angular2-calendar/dist/css/angular2-calendar.css

Finally import the calendar module into your apps module:

import { NgModule } from '@angular/core';
import { CalendarModule } from 'angular2-calendar';

@NgModule({
  imports: [
    CalendarModule.forRoot()
  ]
})
export class MyModule {}

Then you can use the mwl-calendar-month-view, mwl-calendar-week-view and mwl-calendar-day-view components in your app. For a full e2e example see the demo source.

To see all available API options see the auto generated documentation. Full e2e examples will follow in the future

Module bundlers

You can find quick start examples for all common module bundlers in the examples folder.

Usage without a module bundler

<script src="node_modules/angular2-calendar/dist/umd/angular2-calendar.js"></script>
<script>
    // everything is exported angular2Calendar namespace
</script>

Angular 1 version

https://github.com/mattlewis92/angular-bootstrap-calendar

Development

Prepare your environment

  • Install Node.js and NPM (should come with)
  • 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

  • Bump the version in package.json (once the module hits 1.0 this will become automatic)
npm run release

License

MIT

About

A flexible calendar component for angular2 that can display events on a month, week or day view.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 93.5%
  • CSS 4.9%
  • HTML 1.6%
0