0.2.6 • Published 5 years ago

@react-latest-ui/react-sticky-notes v0.2.6

Weekly downloads
49
License
MIT
Repository
github
Last release
5 years ago

React Sticky Notes

A lightweight react component to handle stickies, notes and reminders without any single dependencies(like jQuery) except React.

Demo

https://react-latest-ui.github.io/react-sticky-notes/

Sticky Notes for React Application

Installation

Install the React Sticky Notes package package using npm:

npm install @react-latest-ui/react-sticky-notes --save

Setting Up

git clone https://github.com/react-latest-ui/react-sticky-notes.git
npm install
npm start run

Features

  • Pure React Sticky Notes
  • Draggable & Resizable Stickies
  • Inline Content Editable
  • Configurable Sticky Colors

Usage

import React, { Component } from 'react';
import ReactStickyNotes from '@react-latest-ui/react-sticky-notes';

class MyApp extends Component {
	constructor(props) {
		super(props);
	}  
	render() {
		return (
			<ReactStickyNotes />
		)
	}
});

React Stickies Props

sessionKey: ?String,
colors: ?Array = [HexCodes],
notes: ?Array = [{
	color: ?HexCode,
	text: ?String
}],
containerWidth: ?String{px|%},
containerHeight: ?String{px|%},
noteWidth: ?Number,
noteHeight: ?Number,
footer: ?Boolean = {true|false},
onBeforeChange: (type:String, payload:Object, notes: Array) => {
	return payload;
}
onChange: (type:String, payload:Object, notes: Array) => {

}

Contribute

If you have a feature request, please add it as an issue or make a pull request.

TODO List

  • Basic Notes with CRUD
  • Resizable
  • Draggable
  • Responsive to all devices/desktop
  • Import notes from JSON/CSV

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago