New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@gluttons/tablex

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gluttons/tablex

基于canvas的高性能表格

latest
npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

基于 Canvas 的高性能表格插件

  • 基于 @gluttons 生态及 Typescript
  • 作者:GT<769416198@qq.com>
  • 日期:2025-07-30

安装使用

  • npm i @gluttons/tablex -S
<div id="container"></div>
import { TableX } from '@gluttons/tablex';

/**
 * 原始 tablex 对象,核心
 */
const tablex = new Tablex({
    /**
     * 模块配置
     */
    modules: [{
        /**
         * 表格数据
         */
        data: [
            // 行
            ['分类', '名称', '数量'],
            [{
                value: '大类1',
                // 跨越两行
                rowspan: 2
            }, '小分类1', 10],
            ['小分类2', 15]
        ]
    }],
});

const {
    /**
     * 视图实例对象
     */
    view,
    /**
     * 绘制钩子
     * @description 调用可强制重绘
     */
    draw,
    /**
     * 卸载钩子
     * @description 卸载此视图实例
     */
    unmount,
} = tablex.mount(container);

上面代码显示以下效果

分类名称数量
大类1小分类110
小分类215

使用编辑器

import { TableX, Editor } from '@gluttons/tablex';

const tablex = new TableX({
    // ...省略代码
});

const editor = new Editor(container, tablex);
tablex.mount(editor);

FAQs

Package last updated on 18 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts