1.1.1 • Published 4 years ago
ngx-calendar-helper v1.1.1
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 Calendar - Event Selected:

Year Calendar:

Year Calendar - Event Selected:

Installation:
- Download from npm:
npm install ngx-calendar-helper --save - Import the
NgxCalendarHelperModulemodule:import {NgxCalendarHelperModule} from 'ngx-calendar-helper'; - Add
NgxCalendarHelperModuleto your module imports:
@NgModule({ ... imports: [ ... NgxCalendarHelperModule ] })Usage
Put the ngx-calendar-helper component wherever you need it.
Attributes (Input):
| Name | Type | Default | Description |
|---|---|---|---|
| calendarType | "month"\|"year" | "year" | The mode of the calender which will be displayed |
| showToggleButtons | Boolean | true | Show or hide the default toggle button for month and year calendar |
| calendarEvents | array | [] | 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
4 years ago
1.0.14
4 years ago
1.0.13
4 years ago
1.0.12
4 years ago
1.0.11
4 years ago
1.0.10
4 years ago
1.0.9
4 years ago
1.0.8
4 years ago
1.0.7
4 years ago
1.0.6
4 years ago
1.0.5
4 years ago
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago
0.0.5
4 years ago
0.0.4
4 years ago
0.0.3
4 years ago
0.0.2
4 years ago
0.0.1
4 years ago