wsuite-event-calendar
v0.0.57
Published
- Event Calender Widget Library
Downloads
4
Readme
Features
- Event Calender Widget Library
Install
npm install wsuite-event-calendar --save
Setup
step 1: add PROJECT_API_URL in environment.ts file
export const environment = {
PROJECT_API_URL: 'project api url' // Add this line in your all environment.ts file
}
step 2: impliment wsuite-event-calendar lib in your respective angular module
import { WsuiteEventCalendarModule } from 'wsuite-event-calendar';
@NgModule({
imports: [
...,
WsuiteEventCalendarModule.forRoot(environment),
],
.....
})
class XyzModule {}
step 3: add in your sidebar html
multi_id = your brand id userLoggedData = this.authenticationService.getLoginUserData();
<div class="gadget-icon">
<lib-wsuite-event-calendar
[multi_id]='multi_id'
[userLoggedData]='userLoggedData'>
</lib-wsuite-event-calendar>
</div>