
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
ra-antd-table
Advanced tools
Customizable editable table component based on React and antd-table
基于react antd进行拓展的表格组件
npm install ra-antd-table
import EditTable from "ra-antd-table";
const columns = [
{
key: "name",
dataIndex: "name",
sortKey: "name",
title: "姓名"
},
{
key: "age",
dataIndex: "age",
sortKey: "age",
filterKey: "age",
totalKey: "age",
width: 180,
title: "年龄"
},
{
key: "size",
dataIndex: "size",
sortKey: "size",
filterKey: "size",
title: "位置"
}
];
const data = [
{
key: "1",
name: "SystemLight",
age: 23,
size: 1
},
{
key: "2",
name: "Lisys",
age: 18,
size: 2
},
{
key: "3",
name: "kirito",
age: 12,
size: 3
}
];
function App() {
const [colState, setColState] = useState(columns);
return (
<>
<div className={"s-wrap"} style={{paddingTop: 15}}>
<EditTable
columns={colState}
data={data} title={"表格标题"}
onResize={(e, {size}, i) => {
colState[i].width = size.width;
setColState([...colState]);
}}
onChangeHide={(idx, status) => {
colState[idx].hide = status;
setColState([...colState]);
}}
onChangePin={(idx, val) => {
colState[idx].fixed = val === "none" ? undefined : val;
setColState([...colState]);
}}
/>
</div>
</>
);
}
FAQs
Customizable editable table component based on React and antd-table
We found that ra-antd-table 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.