5.5.9 • Published 11 months ago

@workfront-grid/glide-data-grid-cells v5.5.9

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

:warning: This is a temporary fork until our bug fixes have been merged into @glideapps/glide-data-grid. Afterwards the fork will be removed.

Version React 16+ npm bundle size License Made By Glide

Data Grid

Current cells

  • Star (Rating) Cell
  • Sparklines
  • Article
  • Dropdown
  • Range
  • User profile
  • Tags

Usage

Step 1: Add the extra cells to your grid.

import { useExtraCells } from "@glideapps/glide-data-grid-cells";

const Grid = () => {
    const { drawCell, provideEditor } = useExtraCells();

    return <DataEditor {...rest} drawCell={drawCell} provideEditor={provideEditor} />;
};

Step 2: Use the cells in your getCellContent callback

import type { StarCell } from "@glideapps/glide-data-grid-cells";

const getCellContent = React.useCallback(() => {
    const starCell: StarCell = {
        kind: GridCellKind.Custom,
        allowOverlay: true,
        copyData: "4 out of 5",
        data: {
            kind: "star-cell",
            label: "Test",
            rating: 4,
        },
    };

    return starCell;
}, []);

Note on ArticleCell

The ArticleCell uses @toast-ui/editor to provide its editor. To make sure it works correctly your project will need to import the css file it depends on.

import "@toast-ui/editor/dist/toastui-editor.css";
5.5.9

11 months ago

5.5.8

11 months ago

5.5.7

11 months ago

5.5.6

11 months ago

5.5.5

11 months ago

5.5.4

12 months ago

5.5.3

12 months ago

5.5.2

12 months ago

5.5.1

12 months ago

5.5.0

1 year ago

5.4.6

1 year ago

5.4.5

1 year ago

5.4.4

1 year ago

5.4.3

1 year ago

5.4.2

1 year ago

5.3.2

1 year ago

5.3.1

1 year ago

5.3.0

1 year ago

5.2.3-0

1 year ago