Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@beisen/Paging
Advanced tools
hidden: false, // 是否渲染 默认false
total: 20, //总页数
currentPage: 1, // 当前页数
visiblePages: 9, // 显示的页数 min = 5
capacity: 10, // 每页条数,页面容量
capacityList:[15,30,60,100],//可选的页面容量
onIndexChange: index => console.log(index), // 页数变化
onCapacityChange: index => console.log(index) //页面容量变化
focusCallBack: event => console.log(event), // input
blurCallBack: event => console.log(event), // input
changeCallBack: event => console.log(event) // input
Paging.propTypes = {
hidden: PropTypes.bool,
total: PropTypes.number.isRequired,
currentPage: PropTypes.number.isRequired,
visiblePages: PropTypes.number.isRequired,
capacity: PropTypes.number.isRequired,
capacityList: PropTypes.array.isRequired,
onIndexChange: PropTypes.func.isRequired,
onCapacityChange: PropTypes.func.isRequired
}
1.安装npm组件包
npm install @beisen/Paging --save-dev
2.引用组件
import Paging from "@beisen/Paging"
3.传入参数
该参数为上述参数,传入方式使用: {...参数}
class Paging extends Component {
render() {
const options = {
hidden: false, // 是否渲染 默认false
total: 20, //总页数
currentPage: 1, // 当前页数
visiblePages: 9, // 显示的页数 min = 5
capacity: 10, // 每页条数,页面容量
capacityList:[15,30,60,100],//可选的页面容量
onIndexChange: index => console.log(index), // 页数变化
onCapacityChange: index => console.log(index) //页面容量变化
};
return <Paging {...options} />
}
}
React.render(<Paging />, document.getElementById('content'))
FAQs
configurable page component
The npm package @beisen/Paging receives a total of 0 weekly downloads. As such, @beisen/Paging popularity was classified as not popular.
We found that @beisen/Paging 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.