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

mtk-eui

v1.1.1

Published

npm install mtk-eui

Downloads

13

Readme

安装

npm install mtk-eui

引入

import tk-eui from 'tk-eui' import 'tk-eui/tk-eui.css'

全局注册

Vue.use(tk-eui)

1.最近新增了表格的操作(行点击事件) 2.修改了合并行的问题 统一传参callback({rowspan:x,colspan:x}) 3.监控输入时,如果输入法正在输入, 那么input不做(值得验证)监听 4.增加了下拉多选框的全选功能(复选框全选),传入参数showCheckboxCheckAll:true;isCheck是否默认全选 this.dialogForm_item.forEach((item) => { if (item.label === "适用车型") { item.isCheck = false; } }); 4.增加了下拉多选框的全选功能(文字全选),传入参数showWordCheckAll:true; 回显时需要处理全选问题: this.dialogForm_item.forEach((item) => { if (item.label === "适用车型") { this.$refs.elForm.checkAllOptions(this.form_data.trainIdList, item); } }) 5.优化了点击关闭弹出层会跳动的问题; 6.upload组件添加自定义tip 7.select组件新增超出部分自动展示title(单选) select多选组件还是:hideTooltip="false" 配合multiple展示 8. 解决input绑定值为数字类型控制台报错问题(toolTip的content类型校验报错) 9.新增form中的upload组件上传时,文件新增拦截器功能,通过判断传参中的item.config.accept来确定文件类型是否正确;通过判断参中的item.config.limitFileSize来判断文件大小是否正确(如果不传,默认允许上传大小为50MB); 10.新增form中的upload组件上传时,上传文件数量超过limit时提示信息