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

@unicorn1984/mkui

v0.5.4

Published

mkui

Downloads

3

Readme

quick start

install

package.json 中加入 "mkui": "git+ssh://[email protected]:maycur_front/mkui-runtime.git#0.3.9",
$ npm install mkui

使用-

import { DatePicker } from 'mkui';

按需加载

下面两种方式都可以只加载用到的组件。

  • 使用 babel-plugin-import(推荐)。

    // .babelrc or babel-loader option
    {
      "plugins": [
        ["import", { "libraryName": "mkui", "libraryDirectory": "es", "style": "css" }] // `style: true` 会加载 less 文件
      ]
    }

    注意:webpack 1 无需设置 libraryDirectory

    然后只需从 mkui 引入模块即可,无需单独引入样式。等同于下面手动引入的方式。

    // babel-plugin-import 会帮助你加载 JS 和 CSS
    import { DatePicker } from 'mkui';

版本记录

0.1.0

Hello Word

0.2.0

从antd 3.4.1 更新后的版本。

0.3.0

从antd 3.6.2 更新后的版本 2018-06-11 by pzf

0.3.1

增加icon。

0.3.2

把每刻所有icon迁移进来。

0.3.3

修复了import-plugin插件无法引入css的问题。

0.3.4 2018-06-27

增加tableFilter;helpComponent组件,增加Icon。

0.3.6 2018-07-18

增加helpComponent组件MoreButton,增加Icon。

0.3.7 2018-07-19

优化Form中label和input的布局。

0.3.8 2018-07-20

增加RangePickerButton组件。

0.3.9 2018-07-23

项目迁移。

0.3.10 2018-07-25

修正List.Item样式前缀的问题。

0.4.0 2018-08-10

更新antd 3.8.0。

0.4.1 2018-08-21

修改drawer样式。

0.5.0 2018-10-27

升级至antd 3.10.2。

0.5.1

2018-11-14

  • 🌟 更新antd 3.10.3