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

react-core-form

v2.1.2

Published

基于数据模型快速搭建表单

Downloads

88

Readme

介绍

react-core-form 目前是一套基于 arco.design 二次封装的,可快捷开发中后台项目的解决方案

安装

组件库本身依赖 arco.design,使用需要同时安装 arco.design

yarn add @arco-design/web-react
yarn add react-core-form
@import '@arco-design/web-react/dist/css/arco.css';
@import 'react-core-form/dist/index.css';

采用 cdn 引入

<link
  rel="stylesheet"
  href="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/react-core-form.min.css"
/>
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/react-core-form.min.js"></script>

前提需要引入 cdn 前置依赖 到 window

<!-- window.React -->
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/react.production.min.js"></script>
<!-- window.ReactDOM -->
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/react-dom.production.min.js"></script>
<!-- window.arco -->
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/arco.min.js"></script>
<!-- window.arcoicon -->
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/arco-icon.min.js"></script>
<!-- window.jsxRuntime -->
<script src="http://react-core-form.oss-cn-beijing.aliyuncs.com/cdn/jsx-runtime.polyfill.js"></script>

基于 arco.design 的扩展点

  • 扩展 Button,自带 loading,二次确认,支持弹框和抽屉的模型配置
  • 扩展 Form,基于数据模型的表单渲染,表单联动,异步选择器,自定义组件,默认配置
  • 扩展 ModalForm, DrawerForm, CardForm, AnchorCardForm, SetpForm, SearchForm 提交表单
  • 扩展 Table ,基于数据模型渲染,扩展 toolBar 配置,request 配置,search 配置
  • 扩展 TableListEditableTable 针对表格编辑的场景
  • 扩展 OssFileUpload 文件上传组件
  • 新增 CerateModal, CreateDrawer,支持 api 打开抽屉或者弹框,Modal 支持可拖拽
  • 新增 AppLayout,中后台布局统一大模版
  • 新增 MarkDownPreview,渲染 markdown 组件
  • 新增 Suspend 悬浮组件

在线文档

点击跳转文档