npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

transfer-box

v1.0.1

Published

支持多选穿梭框

Downloads

1

Readme

transfer-box

安装

npm install "transfer-box"

使用

  • 引入组件,因为selectbox依赖于antd的table,所以如果发现样式缺失,说明项目启动后从没引用过antd的table,此时需要手动引用
import SelectBox from 'transfer-box';
import 'antd/lib/table/style'; //如果需要的话引用antd的table样式
  • 引入selectbox样式

在项目入口引入“transfer-box/lib/index.less” 或 “transfer-box/lib/index.css”

@import '~transfer-box/lib/index.less';

参数

Prop | Type | Description | default ---|---|---|--- style | object | 样式,如果此处设置了width或height会覆盖掉上边的width,height | - childrenLoadQueryKey | string | 请求子节点key名称 | planId childrenLoadUrl | string | 请求子节点的url, expandable为true时,该属性必须设置 | - childrenLoadParam | object | 请求子节点参数 | - disabledPropsKey | string | 用于判断选中状态的key | isSelected height | number | 高度 | 450 width | number | 宽度 | - loadingL | bool | 左侧显示loading | - loadingR | bool | 右侧显示loading | - parentSelectable | bool | 父节点是否可选中 | true allSelect | bool | 是否显示全部添加 | false expandable | bool | 是否可展开 | true dataSourceL | array | 左侧数据源 | [] dataSourceR | array | 右侧数据源 | [] keyField | string | id字段名 | id displayField | string | 展示字段名 | name childCountField | string | 表示子节点数量的字段名称 | - searchPlaceholder | string | 搜索框提示语 | - title | string | 左右两侧box标题,左侧目前无效 | { l: '', r: '' } maxSelectedCount | number | 最大可选择数量 | - maxErrorCB | function | 超出最大数量的回调函数 | 弹框提示 labelRenderFunc | function | 标签渲染函数 | -

API

方法名 | Description | params ---|---|--- getSelection | 返回当前selectbox的状态 | 无 clear | 清空box状态 | 无

图示