# @revolist/revogrid-column-date

> Date format for RevoGrid system based on duetds-date-picker

Latest version **2.0.27** (published 2026-09-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @revolist/revogrid-column-date
pnpm add @revolist/revogrid-column-date
yarn add @revolist/revogrid-column-date
bun add @revolist/revogrid-column-date
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 2.0.27 |
| Published | 2026-09-16 |
| First published | 2020-11-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 251.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 3 |
| Author | revolist |
| Maintainers | kumakint |
| Keywords | revo-grid, revolist, datagrid, revoGrid, stenciljs, reactive, virtualgrid, virtual, react, editable, excel, webcomponent, datepicker, date, duetds-date-picker |

## Links

- npm: https://www.npmjs.com/package/@revolist/revogrid-column-date
- Repository: https://github.com/revolist/revogrid-column-date
- Homepage: https://github.com/revolist/revogrid-column-date#readme
- Issues: https://github.com/revolist/revogrid-column-date/issues
- npm.io page: https://npm.io/package/@revolist/revogrid-column-date

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 2.0.27 (latest) — 2026-09-16
- 2.0.18 (pre-release) — 2024-07-10
- 2.0.6 (prerelease) — 2024-07-10
- 2.0.25 — 2025-01-15
- 2.0.24 — 2024-09-19
- 2.0.23 — 2024-09-09
- 2.0.22 — 2024-09-08
- 2.0.21 — 2024-07-24
- 2.0.20 — 2024-07-16
- 2.0.19 — 2024-07-16
- 2.0.17 — 2024-07-10
- 2.0.16 — 2024-07-10
- 2.0.15 — 2024-07-10
- 2.0.14 — 2024-07-10
- 2.0.13 — 2024-07-10
- … 18 more at https://npm.io/package/@revolist/revogrid-column-date/versions

## README

# `revogrid-column-date`
Custom column type for [RevoGrid](https://github.com/revolist/revogrid) component based on [duetds-date-picker](https://github.com/duetds/date-picker) library.


## Installation
`npm i @revolist/revogrid-column-date`

## How to use

- Import Select Column type;
- Specify table data;
- Per column specify column type;
- Register your column type;
```js

// do import
import Plugin from "@revolist/revogrid-column-date";

const columns = [{ prop: 'name', columnType: 'date' }];
const rows = [{ name: '2020-08-24' }, { name: '2022-08-24' }];

// register column type
const columnTypes = { 'date': new Plugin() };

// apply data to grid per your framework approach
<revo-grid source={rows} columns={columns} columnTypes={columnTypes}/>
```

---
_Source: https://npm.io/package/@revolist/revogrid-column-date · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
