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

xys-component-library

v1.0.16

Published

XYS Component Library based on Vue 3 and Element Plus

Readme

xys-component-library

English

基于 Vue 3 和 Element Plus 的组件库。

安装

pnpm add xys-component-library

宿主项目需要自行安装以下 peerDependencies

pnpm add vue element-plus @element-plus/icons-vue

全量注册

import { createApp } from "vue"
import ElementPlus from "element-plus"
import XysComponentLibrary from "xys-component-library"
import "xys-component-library/style.css"

const app = createApp(App)

app.use(ElementPlus)
app.use(XysComponentLibrary)

按需引入

import {
  Button,
  Dialog,
  FilterForm,
  SelectSearch,
  XysForm,
  XysSearch,
  XysTable
} from "xys-component-library"

当前导出

Button
ConfigProvider
DeepButton
Dialog
Drawer
FilterForm
Panel
PanelFooter
PanelItem
PanelTitle
SelectSearch
Upload
XysButton
XysEllipsis
XysForm
XysSearch
XysTable

XysTable 示例

<script setup lang="ts">
import { ref } from "vue"
import { XysTable } from "xys-component-library"

const columns = [
  { label: "名称", prop: "name" },
  { label: "状态", prop: "status" },
  { label: "创建时间", prop: "createdAt", dataType: "time" }
]

const data = ref([
  { id: 1, name: "Alpha", status: "启用", createdAt: "2026-07-03 10:00:00" }
])
</script>

<template>
  <XysTable :columns="columns" :data="data" cid="demo-table" />
</template>

说明:

  • cid 用于区分表格列配置持久化作用域
  • 不想持久化列配置时,传 :persist="false"
  • 需要手动指定持久化键时,传 storageKey

构建与发布

pnpm run build:lib
npm publish

build:lib 会生成:

  • dist/xys-component-library.es.js
  • dist/xys-component-library.umd.js
  • dist/style.css
  • dist/types