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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@framebase/element-plus-pro-components

v0.2.0

Published

Vue 3 and Element Plus Pro components for forms, tables and data-heavy interfaces.

Downloads

671

Readme

@framebase/element-plus-pro-components

Vue 3.5 + Element Plus 的业务级 ProComponents。组件保持独立使用,同时共享字段渲染、请求生命周期、表单和表格基础能力。

使用

import { ProForm, ProTable } from '@framebase/element-plus-pro-components'
import '@framebase/element-plus-pro-components/style.css'

如需使用配套的 Element Plus 全局视觉主题,在组件样式之前引入:

import '@framebase/element-plus-theme/style.css'
import '@framebase/element-plus-pro-components/style.css'

支持根入口和组件子路径入口:

import { ProTable } from '@framebase/element-plus-pro-components/pro-table'

数据请求类组件统一暴露 getRequestLifecycle()getError()retryRequest()cancelRequest()ProTable 可通过 urlState 同步分页、排序和筛选状态; ProTreeSelect 可通过 request 加载整树,通过 pathRequest 补全异步选中路径。

命令式调用使用 Vue 3.5 模板 Ref 与对应 Hook,例如 useProTable()useProSelect()useProForm()useProTreeSelect(),无需注册事件。

Peer Dependencies

  • Vue 3.5+
  • Vue Router 4.5+
  • Element Plus 2.9+
  • @element-plus/icons-vue
  • lodash-es
  • sortablejs

ProPreviewFile 不直接依赖应用预览器。PDF、XLSX、DOCX 渲染器通过 registerProPreviewFileRenderer() 注册。

命令

  • pnpm build:生成 ESM、类型声明和样式产物。
  • pnpm typecheck:检查包内类型。
  • pnpm test:运行包内单元测试。
  • pnpm lint:检查包内源码。