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

@beisen/base-button

v0.1.53

Published

BaseButton

Downloads

58

Readme

base-button 使用说明

项目运行

  1. cnpm install 或 npm install cnpm使用教程

  2. npm run dev (开发环境打包 port:8080)

  3. npm run test (测试用例)

  4. npm run build (生产环境打包)

base-button参数

{
  /** 按钮类型(string)。参数:
        1.默认: 'default'
        2.弱化按钮:'weaken'
        3.连接按钮:'link'
        4.打赏按钮: "reward"
    */
  bsStyle: 'default',

  /** 按钮尺寸(string)。参数:
      1.默认: 'default'
      2.小按钮:'small'
      3.块状按钮:'block'
  */
  bsSize: 'default',

  /** 是否选中(Boolean)。参数:
        1.默认未选中:false
        2.选中:true
    */
  active: true,

  /** 是否禁用(Boolean)。参数:
      1.默认不禁用:false
      2.禁用:true
  */
  disabled: true,

  /** 如果该字段有定义且非空,return(<a/>),否则return(</button>)*/
  href: '',

  /** 如果禁用出现tips的提示原因 */
  tipsReason: '禁用理由是balalalalalalalal',

  /** ToolTip的tipsDes属性 */
  tipsDes:'',

  /** 禁用后总是出现tips提示,只有disabled为true生效 */
  alwaysShowTips: true,

  /** 显示文本(string) */
  title: '测试11',

  /** 是否显示按钮 */
  hidden: false,

  /** 埋点数据 */
  dataUdt: 'id',

  /** 最大宽度,默认为"" ,超出后,超出的部门显示... */
  maxWidth: '20px',

  /** 点击后事件回调 **/
  onClick: function (target, onClick, btnInfo) {
    console.log(target);  //输出e
    console.log(onClick); //输出true
    console.log(btnInfo); //输出this.state
  }
}

base-button调用方法

1.安装npm组件包

npm install @beisen/base-button --save-dev

2.引用组件

import BaseButton from "@beisen/base-button"
  1. 传入参数

    该参数为上述参数,传入方式使用: {...参数}

    {
        "bsStyle":"default"
                            /**按钮类型(string)。参数:
                                1.默认:“default”
                                2.弱化按钮:“weaken”
                                3.连接按钮:“link”
                            **/
        ,"bsSize":"default"
                                    /**按钮尺寸(string)。参数:
                                        1.默认:“default”
                                        2.小按钮:“small”
                                        3.块状按钮:“block”
                                    **/
        ,"active":true
                                    /**是否选中(Boolean)。参数:
                                        1.默认未选中:false
                                        2.选中:true
                                    **/
        ,"disabled":true
                                    /**是否禁用(Boolean)。参数:
                                        1.默认不禁用:false
                                        2.禁用:true
                                    **/
        ,"href":""          /**如果该字段有定义且非空,return(<a/>),否则return(</button>)**/
        ,"title":"测试11"         /**显示文本(string)**/
        ,"hidden":false   //是否显示按钮
        ,"maxWidth":"20px"          //最大宽度,默认为"" ,超出后,超出的部门显示...
        ,"onClick": function(target,onClick,btnInfo) {
          console.log(target);  //输出e
          console.log(onClick); //输出true
          console.log(btnInfo); //输出this.state
        } /**点击后事件回调**/
    }
    
    render () {
    		return (
    			<BaseButton {...this.state.BaseData} />
    		)
    	}