
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
react-scheduler-pro
Advanced tools
React Scheduler Pro is a lightweight and powerful event Calender built with Flexbox. React Scheduler Pro – your essential toolkit for effortlessly managing schedules and events within your React applications.
npm i react-scheduler-pro
or
yarn add react-scheduler-pro
import { Scheduler } from "react-scheduler-pro";
function App() {
const evs = [
{
_id: 36,
name: 'Owais',
startDate: new Date(
new Date(new Date(new Date().setHours(1))).setDate(12)
),
endDate: new Date(new Date(new Date(new Date().setHours(5))).setDate(15)),
resourceId: 2,
backgroundColor: '#FFA447',
isAllDay: true,
},
{
_id: 47,
name: 'B',
startDate: new Date(
new Date(new Date(new Date().setHours(1))).setDate(13)
),
endDate: new Date(new Date(new Date(new Date().setHours(5))).setDate(31)),
resourceId: 1,
backgroundColor: '#0079FF',
},
];
const [events, setEvents] = useState<
{
_id: number;
name: string;
startDate: Date;
endDate: Date;
backgroundColor?: string;
resourceId?: string | number;
isAllDay?: boolean;
}[]
>(evs);
return (
<div className="App p-2">
<Scheduler
events={events}
fields={{
id: '_id',
subject: 'name',
start: 'startDate',
end: 'endDate',
allDay: 'isAllDay',
}}
/>
</div>
);
}
Show your ❤️ and support by giving a ⭐. Any suggestions are welcome! Take a look at the contributing guide.
Help us improve Scheduler Pro! Join us on Slack. (Slack invite links do expire. If you can't get in, just file an issue and we'll get a new link.)
FAQs
React scheduler pro is light weight scheduler package.
The npm package react-scheduler-pro receives a total of 6 weekly downloads. As such, react-scheduler-pro popularity was classified as not popular.
We found that react-scheduler-pro demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.