Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

JS facing package does not expose the DataTable component #212

@Marc-Andre-Rivet

Description

@Marc-Andre-Rivet

Make it possible to use the DataTable easily from Javascript.

Currently it needs to be loaded like this:

import 'dash-table/dash_table/bundle';
import domReady from './domReady';

const DataTable = window.dash_table.DataTable;

ReactDOM.render(<DataTable columns={['a', 'b', 'c'].map(i => ({ id: i, name: i }))} />, document.getElementById('root'));

We want to be able to do this:

import DataTable from 'dash-table';

// etc...

Metadata

Metadata

Labels

dash-type-maintenanceTechnical debt, dependency management, additional testing, etc.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions