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

star-horse-form

v2.1.0

Published

星马动态表单组件

Readme

#说明

现单独拆分出来作为独立的组件一起使用,在后期还会发布动态页面组件(StarHorsePage),是单独发布还是跟随此
组件发布目前还没考虑好,此组件由于是从内部项目中分离出来的,初期难免会有强业务的逻辑,或者和后端交互逻辑在里面,
本人会利用业余时间逐步进行优化,目前发布的版本不适合用于生产,如果现了解的,可以下载看看;
可用于生产的迭代在后期的迭代中会进行说明。

#配置方法

在main.js 中引入以下代码

//加载star-horse-lowcode 和star-horse-form 的css文件
import "star-horse-lowcode/assets/index.css"
import "star-horse-form/assets/index.css"
import "element-plus/dist/index.css"
import {createApp} from 'vue'
import App from './App.vue'
//加载star-horse-form 表单组件
import StartHorseForm from 'star-horse-form';

const app = createApp(App);
//挂载到实例中
app.use(StartHorseForm, {});
app.mount('#app')

#在组件中使用

<script setup>
import {StarHorseFormDesign,FormConfig} from "star-horse-form";
const optional:FormConfig={};
</script>
<template>
   <StarHorseFormDesign :optional="optional"/>
 </template>
<style scoped>
</style>

#更新日志:

v1.2.0

 - 升级内部组件,清理无用代码

v1.3.0

 - 修复对话框超出高度显示异常

v1.4.0

 - 修复optional 可选项没有赋值时报错的bug

v1.5.0

 - 修复配置关联关系,表单不能选中的bug

v1.6.0

 - 修复头部按钮区域自定义按钮不显示问题

v1.7.0

 - 修复在full模式下快捷菜单列表不显示问题

v1.7.1

- 增加PreviewDialog和DbListComp 组件导出

v1.7.2

- 增加FormView 组件导出

v1.8.0

- 优化列表容器禁止在单元格内显示标签

v1.9.0

- 增加dialog 组件

v2.0.0

- 增加DataSourceComp,DbListComp,FormMenuShot,WebUrlComp组件导出

v2.0.0

- 更新star-horse-lowcode 版本

v2.1.0

- 更新star-horse-lowcode 版本
--修复其它bug