Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@protacon/ngx-resource-calendar
Advanced tools
Resource calendar for Angular 18+
$ npm install --save @protacon/ngx-resource-calendar
Add NgxResourceCalendarModule
as an import in your app's root NgModule.
import { NgxResourceCalendarModule } from '@protacon/ngx-resource-calendar';
@NgModule({
...
imports: [
...
NgxResourceCalendarModule,
],
...
})
export class AppModule { }
Simple usage example
<pinja-resource-calendar
[dates]="dates"
[events]="events"
[startHour]="8"
[endHour]="17"
[infoTemplate]="infoTemplate"
[hourTemplate]="hourTemplate"
>
</pinja-resource-calendar>
<ng-template #infoTemplate> Info view </ng-template>
<ng-template #hourTemplate let-slot="slot">
<div>{{ slot.time | data: 'shortTime' }}</div>
</ng-template>
Attribute | Description | Template output |
---|---|---|
dates | Specifies the dates and resources which calendar shows | |
events | Events to show in calendar | |
slotDurationInMinutes | How many minutes one slot is in the hour row. Default 15 minutes. | |
height | Heigh of one slot in pixels. Default 60px. | |
startHour | First hour in the calendar. | |
endHour | Last hour in the calendar. | |
infoTemplate | A custom template to use for the header empty space top of hours. | - |
dayTemplate | A custom template to use for day view in header | day = DateModel |
resourceTemplate | A custom template to use for day view resource in header (below day template) | resource = ResourceModel |
hourTemplate | A custom template to use for hour view (left to calendar) | time = Date |
eventTemplate | A custom template to use for events | event = EventModel, resource = ResourceModel, day = DayModel |
slotTemplate | A custom template to use for slots | slot = SlotModel, resource = ResourceModel, day = DayModel |
currentTimeTemplate | A custom template to show current time etc. custom overlay | day = DateModel |
$ npm run build
$ cd dist/ngx-resource-calendar
$ npm pack
Copy protacon-ngx-resource-calendar-0.0.1.tgz
from dist/ngx-resource-calendar to other project root and change to package.json
"@protacon/ngx-resource-calendar": "file:protacon-ngx-resource-calendar-0.0.1.tgz",
Copyright (c) 2020 Pinja
FAQs
Resource calendar for Angular
The npm package @protacon/ngx-resource-calendar receives a total of 21 weekly downloads. As such, @protacon/ngx-resource-calendar popularity was classified as not popular.
We found that @protacon/ngx-resource-calendar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.