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

vxe-table-plugin-shortcut-key

v4.0.0

Published

基于 vxe-table 表格的扩展插件,为键盘操作提供快捷键设置

Downloads

208

Readme

vxe-table-plugin-shortcut-key

gitee star npm version npm downloads npm license

基于 vxe-table 的表格插件,为键盘操作提供快捷键的设置

Compatibility

依赖 vxe-table v4 版本

Installing

npm install xe-utils vxe-table@next vxe-table-plugin-shortcut-key@next
// ...
import VXETable from 'vxe-table'
import VXETablePluginShortcutKey from 'vxe-table-plugin-shortcut-key'
// ...

VXETable.use(VXETablePluginShortcutKey, {
  // 快捷键监听
  listener: {
    'Ctrl + V' (params, evnt) {
      console.log('粘贴')
    }
  },
  // 功能键设置
  setting: {
    'pager.prevPage': 'ArrowLeft',
    'pager.nextPage': 'ArrowRight', // 单个按键
    'pager.prevJump': 'Shift + W',
    'pager.nextJump': 'Shift + S' // 组合键
  }
})

API

disabled 禁用快捷键

disabled: string[]

listener 快捷键监听

listener: { key: Function(params, event) }

setting 功能键设置

setting: { code: string }

| code 功能编码 | describe 描述 | key 参考键值 | |------|------|------| | table.edit.actived | 只对 edit-config 启用后有效,当单元格处于选中状态时,则进入编辑 | F2 | | table.edit.closed | 只对 edit-config 启用后有效,当单元格处于激活状态时,则退出编辑 | Esc | | table.edit.tab.leftMove | 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到左侧单元格 | Shift + Tab | | table.edit.tab.rightMove | 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到右侧单元格 | Tab | | table.edit.enter.upMove | 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到上面单元格 | Shift + Enter | | table.edit.enter.downMove | 只对 edit-config.mode=cell / mouse-config.selected 启用后有效,当单元格处于激活状态或者选中状态,则移动到下面单元格 | Enter | | table.cell.upMove | 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到上面的单元格 | ArrowUp | | table.cell.downMove | 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到下面的单元格 | ArrowDown | | table.cell.leftMove | 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到左边的单元格 | ArrowLeft | | table.cell.rightMove | 只对 mouse-config.selected 启用后有效,当单元格处于选中状态,则移动到右边的单元格 | ArrowRight | | table.row.current.topMove | 只对 highlight-current-row 启用后有效,高亮行向上移动 | | | table.row.current.downMove | 只对 highlight-current-row 启用后有效,高亮行向上移动 | | | pager.prevPage | 只对 grid.pager-config 启用后有效,则进入上一页 | | | pager.nextPage | 只对 grid.pager-config 启用后有效,则进入下一页 | | | pager.prevJump | 只对 grid.pager-config 启用后有效,则向上翻页 | | | pager.nextJump | 只对 grid.pager-config 启用后有效,则向下翻页 | |

License

MIT © 2019-present, Xu Liangzhan