Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@flamy-dev/react-spreadsheet
Advanced tools
Simple, customizable yet performant spreadsheet for React
Simple, customizable yet performant spreadsheet for React.
npm install react-spreadsheet
or
yarn add react-spreadsheet
import React from "react";
import Spreadsheet from "react-spreadsheet";
const data = [
[{ value: "Vanilla" }, { value: "Chocolate" }],
[{ value: "Strawberry" }, { value: "Cookies" }]
];
const MyComponent = () => <Spreadsheet data={data} />;
import React from "react";
import Spreadsheet from "react-spreadsheet";
const RangeView = ({ cell, getValue }) => (
<input
type="range"
value={getValue({ data: cell })}
disabled
style={{ pointerEvents: "none" }}
/>
);
const RangeEdit = ({ getValue, cell, onChange }) => (
<input
type="range"
onChange={e => {
onChange({ ...cell, value: e.target.value });
}}
value={getValue({ data: cell }) || 0}
autoFocus
/>
);
const data = [
[{ value: "Flavors" }],
[({ value: "Vanilla" }, { value: "Chocolate" })],
[{ value: "Strawberry" }, { value: "Cookies" }],
[
{ value: "How much do you like ice cream?" },
{ value: 100, DataViewer: RangeView, DataEditor: RangeEdit }
]
];
const MyComponent = () => <Spreadsheet data={data} />;
FAQs
Simple, customizable yet performant spreadsheet for React
The npm package @flamy-dev/react-spreadsheet receives a total of 6 weekly downloads. As such, @flamy-dev/react-spreadsheet popularity was classified as not popular.
We found that @flamy-dev/react-spreadsheet demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.