Socket
Socket
Sign inDemoInstall

react-event-calendar

Package Overview
Dependencies
5
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.8 to 0.0.9

30

gulpfile.js

@@ -30,21 +30,19 @@ var gulp = require('gulp');

example: false
example: {
src: 'example/src',
dist: 'example/dist',
files: [
'index.html',
'.gitignore',
],
scripts: [
'example.js',
],
less: [
'example.less',
],
},
// example: {
// src: 'example/src',
// dist: 'example/dist',
// files: [
// 'index.html',
// '.gitignore',
// ],
// scripts: [
// 'example.js',
// ],
// less: [
// 'example.less',
// ],
// },
};
initGulpTasks(gulp, taskConfig);
{
"name": "react-event-calendar",
"version": "0.0.8",
"version": "0.0.9",
"description": "react-event-calendar",

@@ -5,0 +5,0 @@ "main": "lib/ReactEventCalendar.js",

# react-event-calendar
__COMPONENT DESCRIPTION GOES HERE__
Coming Soon... a much better description than this!

@@ -33,8 +33,21 @@

__EXPLAIN USAGE HERE__
Use this component to display a month view of a calendar with supplied event duration indicators.
```
var ReactEventCalendar = require('react-event-calendar');
const ReactEventCalendar = require('react-event-calendar');
<ReactEventCalendar>Example</ReactEventCalendar>
const events = [
{
start: '2015-07-20',
end: '2015-07-02',
title: 'test event',
description: 'This is a test description of an event',
},
];
<ReactEventCalendar
events={events}
month={7}
year={2015}
events={events} />
```

@@ -44,7 +57,9 @@

* __DOCUMENT PROPERTIES HERE__
* ```events```:```Array``` Array of event objects to be represented on the calendar
* ```month```: ```Integer``` Selected Month to display
* ```year```: ```Integer``` Selected Year to display
### Notes
__ADDITIONAL USAGE NOTES__
Requires Array.prototype.find and Arra.prototype.some. Please include ES6 Array polyfill for unsupported browsers.

@@ -51,0 +66,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc