1.1.1 • Published 2 years ago

ngx-calendar-helper v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Angular Calendar Helper

This library was generated with Angular CLI version 13.0.0. This is a simple calendar helper build to show events in month or year style.

Screenshots

Month Calendar:

Month Cal

Month Calendar - Event Selected:

Month Cal with events

Year Calendar:

Year Cal

Year Calendar - Event Selected:

Year Cal with events

Installation:

  1. Download from npm: npm install ngx-calendar-helper --save
  2. Import the NgxCalendarHelperModule module: import {NgxCalendarHelperModule} from 'ngx-calendar-helper';
  3. Add NgxCalendarHelperModule to your module imports:
 @NgModule({ ... imports: [ ... NgxCalendarHelperModule ] })

Usage

Put the ngx-calendar-helper component wherever you need it.

Attributes (Input):

NameTypeDefaultDescription
calendarType"month"\|"year""year"The mode of the calender which will be displayed
showToggleButtonsBooleantrueShow or hide the default toggle button for month and year calendar
calendarEventsarray[]Pass in array of events to be displayed in the calendar
calendarEvent: {
  title: string;
  date: string;
}
[] = [
  { title: "This is a special day", date: "2021-11-07" },
  { title: "This is a good day", date: "2021-01-27" },
  { title: "This is a nice day", date: "2021-08-17" },
];
1.1.1

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago