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

@beisen-phoenix/drawer

v3.3.55

Published

--- type: 反馈 category: Components subtitle: 抽屉 title: Drawer ---

Readme


type: 反馈 category: Components subtitle: 抽屉 title: Drawer

屏幕边缘滑出的浮层面板。

何时使用

抽屉从父窗体边缘滑入,覆盖住部分父窗体内容。用户在抽屉内操作时不必离开当前任务,操作完成后,可以平滑地回到到原任务。

  • 当需要一个附加的面板来控制父窗体内容,这个面板在需要时呼出。比如,控制界面展示样式,往界面中添加内容。
  • 当需要在当前任务流中插入临时任务,创建或预览附加内容。比如展示协议条款,创建子对象。

API

| 参数 | 说明 | 类型 | 默认值 | 版本 | | --- | --- | --- | --- | --- | | closable | 是否显示右上角的关闭按钮 | boolean | true | | | destroyOnClose | 关闭时销毁 Drawer 里的子元素 | boolean | false | | | getContainer | 指定 Drawer 挂载的 HTML 节点, false 为挂载在当前 dom | HTMLElement | () => HTMLElement | Selectors | false | 'body' | | | maskClosable | 点击蒙层是否允许关闭 | boolean | true | | | mask | 是否展示遮罩 | Boolean | true | | | maskStyle | 遮罩样式 | object | {} | | | style | 可用于设置 Drawer 最外层容器的样式 | object | - | | | bodyStyle | 可用于设置 Drawer 的样式,调整浮层位置等 | object | - | | | title | 标题 | string | ReactNode | - | | | visible | Drawer 是否可见 | boolean | - | | | width | 宽度 | string | number | 256 | | | height | 高度, 在 placementtopbottom 时使用 | string | number | 256 | | | className | 对话框外层容器的类名 | string | - | 3.8.0 | | zIndex | 设置 Drawer 的 z-index | Number | 1000 | | | placement | 抽屉的方向 | 'top' | 'right' | 'bottom' | 'left' | 'right' | | | onClose | 点击遮罩层或右上角叉或取消按钮的回调 | function(e) | 无 | | | afterVisibleChange | 切换抽屉时动画结束后的回调 | function(visible) | 无 | | | keyboard | 是否支持键盘 esc 关闭 | boolean | true | | | size | 右推屏的大小 | string | lg | |