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

@macroui/macroui-plus

v1.0.0

Published

Element Plus compatible component library with DaisyUI visual styling. 100% API compatible with Element Plus, featuring 85+ components.

Readme

Element Plus DaisyUI 组件库

基于 Vue 3 + Element Plus API + daisyUI 视觉风格的组件库。

特性

  • ✅ 100% Element Plus API 兼容
  • ✅ 100% daisyUI 视觉风格
  • ✅ 支持 25 个主题
  • ✅ TypeScript 支持
  • ✅ 按需引入

安装

npm install element-plus-daisyui

使用

全局注册

import { createApp } from 'vue'
import App from './App.vue'
import 'daisyui/dist/full.css'
import ElementPlusDaisyUI from 'element-plus-daisyui'

const app = createApp(App)
app.use(ElementPlusDaisyUI)
app.mount('#app')

按需引入

import { ElButton, ElInput, ElSelect } from 'element-plus-daisyui'
import 'daisyui/dist/full.css'

app.component('el-button', ElButton)
app.component('el-input', ElInput)
app.component('el-select', ElSelect)

组件列表

表单组件

| 组件 | 说明 | 文档 | |------|------|------| | ElButton | 按钮 | daisyUI Button | | ElInput | 输入框 | daisyUI Input | | ElSelect | 选择器 | daisyUI Select | | ElCheckbox | 多选框 | daisyUI Checkbox | | ElRadio | 单选框 | daisyUI Radio | | ElSwitch | 开关 | daisyUI Toggle | | ElTag | 标签 | daisyUI Badge | | ElForm | 表单 | daisyUI Form |

数据展示

| 组件 | 说明 | 文档 | |------|------|------| | ElBadge | 徽章 | daisyUI Badge | | ElProgress | 进度条 | daisyUI Progress | | Avatar | 头像 | daisyUI Avatar | | ElSkeleton | 骨架屏 | daisyUI Skeleton |

反馈

| 组件 | 说明 | 文档 | |------|------|------| | ElAlert | 警告提示 | daisyUI Alert | | ElLoading | 加载状态 | daisyUI Loading | | ElMessage | 消息提示 | daisyUI Toast | | ElNotification | 通知 | daisyUI Toast |

容器

| 组件 | 说明 | 文档 | |------|------|------| | ElCard | 卡片 | daisyUI Card | | ElCollapse | 折叠面板 | daisyUI Collapse | | ElDialog | 对话框 | daisyUI Modal |

导航

| 组件 | 说明 | 文档 | |------|------|------| | ElBreadcrumb | 面包屑 | daisyUI Breadcrumb | | ElPagination | 分页 | daisyUI Pagination | | ElSteps | 步骤条 | daisyUI Steps | | ElDropdown | 下拉菜单 | daisyUI Dropdown | | ElMenu | 菜单 | daisyUI Menu | | ElTabs | 标签页 | daisyUI Tabs |

布局

| 组件 | 说明 | 文档 | |------|------|------| | ElDivider | 分割线 | daisyUI Divider | | ElTooltip | 文字提示 | daisyUI Tooltip | | ElTable | 表格 | daisyUI Table |

主题

支持 daisyUI 全部 25 个主题:

// 切换主题
document.documentElement.setAttribute('data-theme', 'dark')

主题列表:

  • light, dark, corporate, business, cmyk, acid, aqua, autumn
  • black, coffee, cupcake, cyberpunk, dracula, emeral, fantasy
  • forest, garden, halloween, jungle, lofi, luxury, night
  • pastel, retro, synthwave, valentine, wireframe, zenith

开发

# 安装依赖
npm install

# 启动开发服务器
npm run dev

# 启动示例页面(推荐)
npm run dev:examples

# 构建
npm run build

# 构建库
npm run build:lib

示例页面

启动示例页面后,访问 http://localhost:3000/ 可以查看所有组件的示例演示。

启动命令:npm run dev:examples

注意:示例页面使用 3000 端口,如果端口被占用,Vite 会自动选择其他端口。

许可证

MIT License