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

@rax-ui/button

v1.0.0-beta.62

Published

Rax UI Button

Downloads

22

Readme


display: Button family: general

Button

点击后会触发一个操作。

API

Button

|名称 | 说明 | 类型 | 默认值 | |:---------------|:--------|:----|:----------| | type | 按钮的强调程度类型 可选值: normal, primary, secondary, warning, light, dark | enum | normal | | size | 按钮大小 可选值: small, medium, large | enum | medium | | block | 按钮是否为占满一行 | bool | false | | text | 是否是纯文字按钮 | bool | false | | cell | 是否是单元格按钮 | bool | false | | prefixIcon | 前置图标 | string | | | suffixIcon | 后置图标 | string | | | disabled | 是否禁用 | bool | false | | onClick | 按钮被点击时回调 | func | | | platform | 组件的平台特有样式, 可选值有 iOSAndroid, 由 ConfigPovider 传入 | enum | iOS | | style | 按钮的 style | object | {} | | className | 按钮的 className | string | | | children | 按钮的子元素,可以是 icon 或者文字 | any | |

Button.Group

|名称 | 说明 | 类型 | 默认值 | |:---------------|:--------|:----|:----------| | size | 按钮大小 可选值: small, medium, large | enum | medium | | cell | 是否是单元格按钮 | bool | false | | buttons | 按钮大小 | ButtonProps[] | medium | | onButtonClick | 按钮点击时的回调 | (index: number, e) => void |

CSS API

| 名称 | 说明 | |:---------------|:--------| | button | 默认样式 | | button__text | 文字默认样式 | | button__icon | 图标默认样式 | button--small | size="small" 的样式 | | button--small__text | size="small" 的文字样式 | | button--small__icon | size="small" 的图标样式 | | button--large | size="large" 的样式 | | button--large__text | size="large" 的文字样式 | | button--large__icon | size="large" 的图标样式 | | button--primary | type="primary" 的样式 | | button--primary__text | type="primary" 的文字样式 | | button--primary__icon | type="primary" 的图标样式 | | button--secondary | type="secondary" 的样式 | | button--secondary__text | type="secondary" 的文字样式 | | button--secondary__icon | type="secondary" 的图标样式 | | button--light | type="light" 的样式 | | button--light__text | type="light" 的文字样式 | | button--light__icon | type="light" 的图标样式 | | button--dark | type="dark" 的样式 | | button--dark__text | type="dark" 的文字样式 | | button--dark__icon | type="dark" 的图标样式 | | button--warning | type="warning" 的样式 | | button--warning__text | type="warning" 的文字样式 | | button--warning__icon | type="warning" 的图标样式 | | button--block | block={true} 的样式 | | button--press | 按下时的样式 | | button--press__text | 按下时的文字样式 | | button--press__icon | 按下时的图标样式 | | button--primary--press | type="primary" 按下时的样式 | | button--primary--press__text | type="primary" 按下时的文字样式 | | button--primary--press__icon | type="primary" 按下时的图标样式 | | button--secondary--press | type="secondary" 按下时的样式 | | button--secondary--press__text | type="secondary" 按下时的文字样式 | | button--secondary--press__icon | type="secondary" 按下时的图标样式 | | button--light--press | type="light" 按下时的样式 | | button--light--press__text | type="light" 按下时的文字样式 | | button--light--press__icon | type="light" 按下时的图标样式 | | button--dark--press | type="dark" 按下时的样式 | | button--dark--press__text | type="dark" 按下时的文字样式 | | button--dark--press__icon | type="dark" 按下时的图标样式 | | button--warning--press | type="warning" 按下时的样式 | | button--warning--press__text | type="warning" 按下时的文字样式 | | button--warning--press__icon | type="warning" 按下时的图标样式 | | button--disabled | disabled={true} 的样式 | | button--disabled__text | disabled={true} 的文字样式 | | button--disabled__icon | disabled={true} 的图标样式 | | button--primary--disabled | disabled={true} && type="primary" 的样式 | | button--primary--disabled__text | disabled={true} && type="primary" 的文字样式 | | button--primary--disabled__icon | disabled={true} && type="primary" 的图标样式 | | button--secondary--disabled | disabled={true} && type="secondary" 的样式 | | button--secondary--disabled__text | disabled={true} && type="secondary" 的文字样式 | | button--secondary--disabled__icon | disabled={true} && type="secondary" 的图标样式 | | button--light--disabled | disabled={true} && type="light" 的样式 | | button--light--disabled__text | disabled={true} && type="light" 的文字样式 | | button--light--disabled__icon | disabled={true} && type="light" 的图标样式 | | button--dark--disabled | disabled={true} && type="dark" 的样式 | | button--dark--disabled__text | disabled={true} && type="dark" 的文字样式 | | button--dark--disabled__icon | disabled={true} && type="dark" 的图标样式 | | button--warning--disabled | disabled={true} && type="warning" 的样式 | | button--warning--disabled__text | disabled={true} && type="warning" 的文字样式 | | button--warning--disabled__icon | disabled={true} && type="warning" 的图标样式 | | button--text | text={true} 的样式 | | button--text__icon | text={true} 的文字样式 | | button--text__text | text={true} 的图标样式 | | button--text--small__text | text={true} && size="small" 的文字样式 | | button--text--small__icon | text={true} && size="small" 的图标样式 | | button--text--primary__text | text={true} && type="primary" 的文字样式 | | button--text--primary__icon | text={true} && type="primary" 的图标样式 | | button--text--press__text | text={true} 按下时的文字样式 | | button--text--press__icon | text={true} 按下时的图标样式 | | button--text--disabled__text | text={true} && disabled={true} 的文字样式 | | button--text--disabled__icon | text={true} && disabled={true} 的图标样式 | | button--text--primary--press__text | text={true} && type="primary" 按下时的文字样式 | | button--text--primary--press__icon | text={true} && type="primary" 按下时的图标样式 | | button--text--primary--disabled__text | text={true} && disabled={true} && type="primary" 的文字样式 | | button--text--primary--disabled__icon | text={true} && disabled={true} && type="primary" 的图标样式 |