New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-heat-calendar

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-heat-calendar - npm Package Compare versions

Comparing version

to
1.0.2

2

package.json
{
"name": "react-heat-calendar",
"version": "1.0.0",
"version": "1.0.2",
"description": "react heat calendar, which is like a Github's contribution calendar",

@@ -5,0 +5,0 @@ "main": "./build/index.js",

@@ -1,20 +0,32 @@

# react heat calendar
# React Heat Calendar
Get the AMD module located at `react-heat-calendar.js` and include it in your project.
Like a Github's contribution calendar.
Here is a sample integration:
## Installation
```js
require.config({
paths: {
'react': 'vendor/bower_components/react/react',
'ReactHeatCalendar': 'react-heat-calendar'
}
});
Install the npm module:
require(['react', 'ReactHeatCalendar'], function(React, ReactHeatCalendar) {
```bash
yarn add react-heat-calendar
# Or
npm install react-heat-calendar
```
React.render(React.createElement(ReactHeatCalendar), document.getElementById('widget-container'));
## Usage
});
Import the component:
```javascript
import HeatCalendar from 'react-heat-calendar';
<HeatCalendar
beginDate={new Date('2016-12-01')}
endDate={new Date('2017-01-31')}
data={[
{ date: '2016-12-02', someAttr: "foo" },
{ date: '2016-12-03', someAttr: "bar" },
{ date: '2016-12-03', someAttr: "baz" },
// ...and so on
]}
/>
```

@@ -21,0 +33,0 @@