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

@goldnet/react

v0.0.30

Published

v0.0.28

Downloads

21

Readme

v0.0.28

  1. table修改自动序号的宽度

v0.0.27

  1. zpage进行搜索时,重置到第一页

v0.0.26

  1. zmodal 组件增加获取表单内容接口 getFieldsValue

v0.0.26

  1. ZStatistic 增加value = null的类型,默认不显示

v0.0.23

  1. zsearchBar 增加设置高级按钮
  2. zpage 增加ant:{searchbar} 透传

v0.0.22

  1. zmodal增加 modal 源属性

v0.0.21

  1. zform增加 inputNumber 类型

v0.0.20

  1. ztable 增加setRowStyle方法,用于设置行样式

v0.0.19

  1. ztable增加table属性,用于调用桥接原生ant组件
  2. zpage增加 ant.table属性,用于传递属性

v0.0.18

  1. zsearch增加 style 样式设置
  2. 增加ZStatistic组件,用于展示统计数据或货币值。

v0.0.17

  1. zform增加 styleFormStyle,用于设置row-style customCol, 自定义列

v0.0.16

  1. zpage增加 zTableHidePagination,隐藏表格分页 zTableScroll,设置表格滚动条

v0.0.15

  1. zpage增加 header,顶部内容 tableHeader,表头内容

v0.0.14

  1. zpage增加 zpage日期屏蔽清楚 搜索回调增加空判断

v0.0.13

  1. zpage增加 getTableRef(), 用于回去table的方法

  2. zsearch优化 增加数据对象是[]数组情况下的处理,显示顶部背景,不显示搜索框。

  3. ztable优化 分页增加跳转和页数大小选择

v0.0.12

  1. zpage增加

    size 字段: 'large' | 'middle' | 'small' , 用于设置搜索与表格大小。 zTableHideSerialNumber 字段:隐藏序号 loading 字段, 用于网络请求时设置

  2. 表单类型增加switch

    {
        type: 'switch',
        key: 'isDeleted',
        label: '状态',
        placeholder: '请输入',
        value: item && item.isDeleted,
        option: [
            { label: '已启用', value: true },
            { label: '已停用', value: false }
        ]
    }

    表单增类型加上传upload

    {
        type: 'upload',
        key: 'docId',
        label: '上传授信批复函',
        placeholder: '上传文件',
        option: [
            {
                label: '*',
                value: uploadFile
            }
        ],
        rules: [{ required: true, message: '请上传批复函件' }]
    }
  3. zmodal弹出组件增加点击空白区域能否关闭弹窗字段:maskClosable。

  4. ztable增加

    hideSerialNumber字段, 隐藏序号 scroll 设置滚动条,使用同ant table一致。 onRow 设置表格选中,使用同ant table一致。 replace()方法,用于替换表格数据。

  5. ztableForm增加

    handleSave 可编辑值变化后时调用 onValuesChange?: (values: any) => void; 属性变化时调用