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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tntd-virtual-tree-select

v0.0.1

Published

| 属性名称 | 属性说明 | 类型 | 默认值 | 是否必须 | | :------- | :------------ | :----- | :----- | :------- | | value | 指定当前选中的条目 | string | | | | onChange | 选中树节点时调用此函数 | function(value, label) | | | | treeData | treeNodes

Readme

TntdVirtualTreeSelect

| 属性名称 | 属性说明 | 类型 | 默认值 | 是否必须 | | :------- | :------------ | :----- | :----- | :------- | | value | 指定当前选中的条目 | string | | | | onChange | 选中树节点时调用此函数 | function(value, label) | | | | treeData | treeNodes 数据,如果设置则不需要手动构造 TreeNode 节点(value 在整个树范围内唯一) | array<{value, title, children, [disabled, disableCheckbox, selectable, checkable]}> | [] | 是 | | showSearch | 是否支持搜索框 | boolean | false | | | fieldNames | 自定义 options 中 label name children 的字段 | object | { title: 'title', value: 'value', children: 'children', disabled: 'disabled' } | | | showCheckedStrategy | 搜索框显示所有/父节点 | TntdVirtualTreeSelect.SHOW_CHILD/TntdVirtualTreeSelect.SHOW_ALL | TntdVirtualTreeSelect.SHOW_CHILD | | | treeCheckable | 节点前添加 Checkbox 复选框 | boolean | false | | | treeCheckStrictly | checkable 状态下节点选择完全受控(父子节点选中状态不再关联) | boolean | false | | | treeDefaultExpandAll | 默认展开所有树节点 | boolean | true | | | treeExpandedKeys | (受控)展开指定的树节点 | string[] | | 否 | | treeDefaultExpandAll | 默认展开所有树节点 | false | | 否 | | treeTitleRender | 自定义渲染每一列的内容(不包含前面的icon) | function(item, expandedKeys) | | 否 | | onTreeCheck | 点击复选框触发 | function(checkedKeys, item, checkedStatus) | | 否 | | onTreeExpand | 展开/收起节点时触发 | function(expandedKeys, {expanded: boolean, node}) | | 否 | | displayRender | 自定义select选中节点的展示 | function(selectValue, value, treeList, isOrg) => selectValue | | 否 |