npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@groupecomplus/evo-calendar

v2.0.1

Published

Fork of Simple Modern-looking Event Calendar by @edlynvillegas

Downloads

3

Readme

evo-calendar

Simple Modern-looking Event Calendar

NPM

Known Vulnerabilities FOSSA Status

:eyes: Demo:

https://edlynvillegas.github.io/evo-calendar/

Evo Calendar Preview

:bulb: Features:

  • Flexible and fully customizable
  • Responsive Calendar (desktop, tablet and mobile)
  • Add, Remove and View single/multiple calendar events
  • Set event type (event, holiday, birthday)
  • Events and methods that lets you think outside the box!

:atom_symbol: If you are using React, I recommend you to try this RevoCalendar

:art: Usage

CDN

Start working with Evo Calendar using CDN (jsDelivr)

  • https://www.jsdelivr.com/package/npm/evo-calendar

Adding links using jsDelivr:

Just add a link to the css file in your <head>:

<!-- Add the evo-calendar.css for styling -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/evo-calendar/css/evo-calendar.min.css"/>

Then, before your closing <body> tag add:

<!-- Add jQuery library (required) -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>

<!-- Add the evo-calendar.js for.. obviously, functionality! -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/evo-calendar/js/evo-calendar.min.js"></script>

Initialization:

In your html file:

<div id="calendar"></div>

Then in your javascript file:

<script>
  $("#calendar").evoCalendar();
</script>

Package Managers:

# NPM
$ npm install evo-calendar

# YARN
$ yarn add evo-calendar

:hammer_and_wrench: Settings

Settings | Type | Default | Description | Options ------ | ---- | ------- | ----------- | ------- theme | string | Default | Define calendar's theme | Default, Midnight Blue, Orange Coral, Royal Navy format | string | 'mm/dd/yyyy' | Date format | Date string format titleFormat | string | 'MM yyyy' | Date format for calendar title | Date string format eventHeaderFormat | string | 'MM d, yyyy' | Date format for calendar event's title | Date string format firstDayOfWeek | number | 0 | Displayed first day of the week | 0 (Sunday) - 6 (Saturday) language | string | 'en' | Calendar's language | en, es, de, pt, fr, nl todayHighlight | boolean | false | Highlight today's date in calendar | true, false sidebarDisplayDefault | boolean | true | Set default visibility of sidebar | true, false sidebarToggler | boolean | true | Display the button for toggling the sidebar | true, false eventDisplayDefault | boolean | true | Set default visibility of event lists | true, false eventListToggler | boolean | true | Display the button for toggling the event lists | true, false calendarEvents | array | null | Defined events for calendar to show | Array of events

calendarEvent Options Example

  $("#evoCalendar").evoCalendar({
    calendarEvents: [
      {
        id: 'bHay68s', // Event's ID (required)
        name: "New Year", // Event name (required)
        date: "January/1/2020", // Event date (required)
        type: "holiday", // Event type (required)
        everyYear: true // Same event every year (optional)
      },
      {
        name: "Vacation Leave",
        badge: "02/13 - 02/15", // Event badge (optional)
        date: ["February/13/2020", "February/15/2020"], // Date range
        description: "Vacation leave for 3 days.", // Event description (optional)
        type: "event",
        color: "#63d867" // Event custom color (optional)
      }
    ]
  });

Methods

Method | Argument | Description ------ | -------| ----------- setTheme | string | Set/Change theme toggleSidebar | boolean (optional) | Toggle sidebar display toggleEventList | boolean (optional) | Toggle event list display getActiveDate | none | Get the selected date getActiveEvents | none | Get the event(s) of selected date selectYear | number | Select year programmatically selectMonth | number (0-11) | Select month programmatically selectDate | string | Select date programmatically addCalendarEvent | array/object | Add Calendar event(s) removeCalendarEvent | array/string | Remove event(s) by their id destroy | none | Well.. destroy the calendar

addCalendarEvent Method Example
  $("#evoCalendar").evoCalendar('addCalendarEvent', [
    {
      id: '09nk7Ts',
      name: "My Birthday",
      date: "February/15/2020",
      type: "birthday",
      everyYear: true
    }
  ]);

Events

Event | Argument | Description ------ | -------| ----------- selectDate | newDate, oldDate | Fires after selecting date selectEvent | activeEvent | Fires after selecting event selectMonth | activeMonth, monthIndex | Fires after selecting month selectYear | activeYear | Fires after changing year destroy | calendar | Fires after destroying calendar

selectDate Event Example
  $("#evoCalendar").on('selectDate', function() {
    // code here
  });

Need customization? Go here!

Go to demo page for more example! :hugs::purple_heart:

:mag: License

FOSSA Status

MIT License

Copyright (c) 2020 edlynvillegas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.