Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angularx-calendar

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angularx-calendar

Angular 5.x Calendar, using Drag and Drop API, no jQuery. Currently in develop.

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

AngularX-Calendar

Angular 5.x Calendar, using Drag and Drop API, no jQuery. Currently in develop.

How to use?

First of all install it with npm using: npm install angularx-calendar

Then import it in your ngModule: import CalendarModule from 'angularx-calendar' And reference it in the imports:

...
imports: [
  ...,
  CalendarModule,
  ...
]

And apply it in your HTML:

<ngx-calendar [eventList]="eventList"></ngx-calendar>

Required Inputs

For get it running, you just need to specify 'eventList' object. Every value should have an id by key, and for value, your event.

Example:

eventList = {
  0: 'EventOne',
  1: 'EventTwo',
  2: 'EventThree'
}

Required Inputs

Optional Inputs

Months

You can specify the Months in your language, they must have more than 11 months to work (I didn't test it with more than 11 months)

Days

Like months, you can specify the days at the header calendar in your language. Just make sure to index 0 be equal Sunday.

RemoveAfterDrop

Use it if you want to remove the events when use it.

Okay, but what should I do?

This calendar is currently in development, but you can use it if you want to modify an object of events. You can do Pull Requests if you want to contribute, I'll try to document PR later.

Next-steps

  • - Calendar Month Navigation
  • - Add event system for the Calendar using Drag and Drop API
  • - Style Calendar
  • - Remove Event (and remove it from cell when passed to another)
  • - Remove After Drop feature
  • - Multiple Event Handling
  • - Error Handling (Also provide option to deny add more than one equal entry)
  • - Custom Events (Because now you need to provide a list with event array containing every event id)
  • - Insert event in another cell
  • - Better Documentation and organization
  • - Publish in NPM
  • - Responsive UI
  • - Custom Styles

FAQs

Package last updated on 29 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc