New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@hi-ui/select

Package Overview
Dependencies
Maintainers
2
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hi-ui/select

A sub-package for @hi-ui/hiui.

latest
Source
npmnpm
Version
4.6.2
Version published
Weekly downloads
171
-8.56%
Maintainers
2
Weekly downloads
 
Created
Source

Select 选择器

选择器是一种接收数据的容器,为用户提供选择一部分数据的能力。

何时使用

需要从大量的离散型数据中选择一部分时使用

备选项数量 5 个以上时

不需要将全部备选项都展示给用户时

使用示例

Props

参数说明类型可选值默认值
data下拉框选项数据源DataItem[] | groupDataItem[]--
fieldNames设置 data 中 id, title, disabled, children 对应的 keyobject-{ title: 'title', id: 'id',disabled:'disabled', children: 'children'}
dataSource关键词搜索时,触发异步下拉框选项数据源DataSource (keyword: string) => (DataSource | DataItem | Promise | void)--
value被选中项的值ReactText--
defaultValue默认被选中项的值ReactText--
searchable是否可以筛选booleantrue | falsefalse
filterOption第一个参数为输入的关键字,第二个为数据项,返回值为 true 时将出现在结果项。仅在 searchable 为 true 时有效(keyword: string, item: DataItem) => boolean(keyword: string, item: DataItem) => boolean-
clearable是否可以清空booleantrue | falsetrue
disabled是否禁用booleantrue | falsefalse
placeholder输入框占位string-'请选择'
searchPlaceholder搜索输入框占位string-'搜索'
emptyContent设置选项为空时展示的内容ReactNode-'无匹配数据'
loadingContent设置加载中时展示的内容ReactNode-'数据加载中...'
optionWidth自定义下拉选项宽度number-
renderExtraFooter自定义下拉菜单底部渲染() => ReactNode-无内容
overlayClassName下拉根元素的类名称string--
onOverlayScroll下拉列表滚动时的回调function--
popper自定义控制弹出层 popper 行为Omit<PopperProps, 'visible' | 'attachEl'>--
render自定义渲染节点的 title 内容径(item: CheckSelectItemEventData) => React.ReactNode-
displayRender自定义选择后展示的内容(selectedItem: CheckSelectItemEventData) => string--

注意,如果发现下拉菜单跟随页面滚动,或者需要在其他弹层中触发 CheckSelect,请尝试使用 popper={ container: triggerNode.parentElement } 将下拉弹层渲染节点固定在触发器的父元素中。

Events

名称说明类型参数返回值
onChange改变选项时触发函数(selectedId: ReactText, changedItem: DataItem, shouldChecked: boolean) => voidselectedId: 选中项的 id
changedItem: 变更的选项
-

Type

groupDataItem

参数说明类型可选值默认值
groupId下拉选项组唯一 idstring | number--
groupTitle下拉选项组标题string--
children分组的时候使用DataItem[]--

DataItem

参数说明类型可选值默认值
id下拉选择项唯一 idReactText--
title下拉选择项标题string--
disabled是否禁用booleantrue | falsefalse

CheckSelectItemEventData

参数说明类型可选值默认值
id选择项值string--
title选择项string--
disabled是否禁用booleantrue | falsefalse
raw原始数据,包括约定模型之外的数据object--
selected节点是否被选中booleantrue | false-
focused节点是否被聚焦booleantrue | false-

DataSource

继承 Axios 的 api

参数说明类型可选值默认值
url请求的 urlstring--
method请求方法stringget | postget
datapost 请求时请求体参数object--
paramsurl 查询参数object--
headers请求头object--
withCredentials上传请求时是否携带 cookiebooleantrue | falsefalse
transformResponse成功时的回调,用于对数据进行预处理(response: object) => DataItem[]--
error请求发生异常的回调方法(error: object) => void--

CHANGELOG

参数变更类型变更内容解决的问题
propNamefeature | deprecated | update变更了什么之前是什么样子,解决什么问题
----------------
valueupdate类型 string[] -> string | number对于表单控件 id 值的控制,均使用 React.ReactText(即 string 和 number 都支持)
defaultValueupdate类型 string[] -> string | number对于表单控件 id 值的控制,均使用 React.ReactText(即 string 和 number 都支持)
idupdate类型 string -> string | number对于表单控件 id 值的控制,均使用 React.ReactText(即 string 和 number 都支持)
bordereddeprecated字段 bordered -> appearance对于 Picker 类型的组件,统一使用 appearance 设置外形(线\面\无边框)值
searchPlaceholderfeature-Picker 类型组件统一支持
loadingContentfeature-Picker 类型组件统一支持,适配新 UI
popperfeature-Picker 类型组件统一支持,聚合管理。比如: placement,之前有的加了有的没加
virtualfeature-支持虚拟列表
heightfeature-支持虚拟列表
itemHeightfeature-支持虚拟列表
typedeprecated-拆分单选多选组件单独维护
autoloaddeprecated-页面级首次渲染执行数据加载操作,取消内置
onSearchdeprecated-使用 dataSource 替代,功能重合
appearancefeature-统一支持:线性\面性\无边框
displayRenderfeature-统一支持选择后内容自定义渲染
setOverlayContainerdeprecated-使用 popper.container 替代,功能重合
onChangeupdate类型:(selectedIds: string[], changedItem: DataItem, changedItems:DataItem[]) => void -> (selectedId: ReactText, changedItem: DataItem) => void1. 移除数组结构,方便用户获取;2. 暴露 shouldSelected 执行相应拦截之类的操作

FAQs

Package last updated on 03 Jul 2025

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