Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bee-cascader

Package Overview
Dependencies
Maintainers
14
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bee-cascader

Cascader ui component for react

  • 2.1.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
23
increased by4.55%
Maintainers
14
Weekly downloads
 
Created
Source

bee-cascader

npm version Build Status Coverage Status

Browser Support

IEChromeFirefoxOperaSafari
IE 9+ ✔Chrome 31.0+ ✔Firefox 31.0+ ✔Opera 30.0+ ✔Safari 7.0+ ✔

react bee-cascader component for tinper-bee

组件引入

先进行下载cascader包

npm install --save bee-cascader

组件调用

import { Cascader } from 'bee-cascader';
React.render(<div>
    <div>
        <Cascader />
    </div>
</div>, document.getElementById('target'));
样式引入
  • 可以使用link引入dist目录下cascader
<link rel="stylesheet" href="./node_modules/build/bee-cascader.css">
  • 可以在js中import样式
import "./node_modules/src/cascader"
//或是
import "./node_modules/build/bee-cascader.css"

API

参数说明类型默认值
placeholderinput提示信息string""
options下拉列表数据json必填,无默认值
defaultValue默认的选中项string[][]
changeOnSelect当此项为 true 时,点选每级菜单选项值都会发生变化booleanfalse
disabled禁用booleanfalse
expandTrigger次级菜单的展开方式,可选 'click' 和 'hover'string'click'
size输入框大小,可选 lg md smstring'md'
onChange选择完成后的回调Function(value, selectedOptions)-
onClick选中节点的钩子函数,返回array选中的节点function-
inputValue自定义输入框展示内容string-

options格式如下:

const options = [
	label: '浙江',
	value: 'zj',
	children: [{
		label: '杭州',
		value: 'hz',
		children: [{
			label: '西湖',
			value: 'xh',
			children: [{
				label: '白娘子',
				value: 'bnz'
			},{
				label: '许仙',
				value: 'xx'
			}]
		}]
	}]
	},
	{
		label: '江苏',
		value: 'js',
		children: [{
			label: '南京',
			value: 'nj',
			children: [{
				label: '中华门',
				value: 'zhm'
			}]
		}]
 	},
 	{
		label: '山东',
 	    value: 'sd'
 	}
];
setup develop environment
$ git clone https://github.com/tinper-bee/bee-cascader
$ cd bee-cascader
$ npm install
$ npm run dev

TODO

  • test

Keywords

FAQs

Package last updated on 24 Apr 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc