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

@gct-paas/excel

v0.1.9

Published

GCT Excel online form rendering

Downloads

647

Readme

@gct-paas/excel

GCT Excel 在线表单渲染 npm 包。

位于 monorepo 子包 packages/excel

源码结构

packages/excel/
├── package.json
├── vite.config.ts            # 多入口 lib 构建 + alias
├── tsconfig.build.json
├── src/
│   ├── index.ts              # 主入口
│   ├── online-form/          # 在线表单业务层
│   ├── nocode-base/          # 核心层
│   ├── nocode-web-render/    # PC 适配层
│   ├── nocode-mobile-render/ # 移动端渲染
│   └── shared/               # 跨层共享
└── dist/                     # 构建产物

统一导入路径

本地开发(alias)与 npm 消费(exports)使用同一套写法:

| 导入路径 | 说明 | |---|---| | @gct-paas/excel | 主入口(设计器枚举/类型、组件、adapter) | | @gct-paas/excel/base | 核心层(平台枚举、PaperSizeMap、SubTableType 等) | | @gct-paas/excel/web-render | PC 适配层 | | @gct-paas/excel/mobile-render | 移动端渲染(包内 alias;未进正式 exports) | | @gct-paas/excel/shared | 共享枚举与类型(FIELD_TYPE 等) | | @gct-paas/excel/online-form | 在线表单业务层(包内 alias;未进正式 exports) | | @gct-paas/excel/adapter | 适配器 | | @gct-paas/excel/style.css | 样式(dist/excel.css) |

online-form / mobile-render 目前为包内 alias;对外正式导出以 package.jsonexports 为准。

枚举与类型应从哪取

| 来源 | 内容 | |---|---| | @gct-paas/excel | 设计器枚举(DesignModeCellWidgetCategoryPanelType 等)、设计器类型、CellWidget / PaperWidget | | @gct-paas/excel/base | 运行时/平台枚举与常量(含 PaperSizeMapSubTableType) | | @gct-paas/excel/shared | 业务共享枚举与类型(FIELD_TYPESignatureTypeEnum 等) |

不要从主入口再导出 PaperSizeMap / SubTableType(与 base 定义冲突)。

脚本

pnpm -F @gct-paas/excel build
pnpm -F @gct-paas/excel typecheck