@opendatasoft/visualizations-react
Version:
Opendatasoft's React wrapper for visualization components.
21 lines (20 loc) • 1.06 kB
TypeScript
import { Meta, StoryObj } from '@storybook/react';
import './custom-style.css';
import { Table } from '../../src';
import { PaginatedTemplate, PageSizeTemplate } from './PaginatedTemplates';
declare const meta: Meta<typeof Table>;
export default meta;
export declare const Playground: StoryObj<typeof Table>;
export declare const CustomStyle: StoryObj<typeof PageSizeTemplate>;
export declare const Scroll: StoryObj<typeof Table>;
export declare const TwoColumns: StoryObj<typeof Table>;
export declare const Unstyled: StoryObj<typeof Table>;
export declare const Loading: StoryObj<typeof Table>;
export declare const emptyState: StoryObj<typeof Table>;
export declare const RtlDirection: StoryObj<typeof PaginatedTemplate>;
/**
* Column headers truncate when the table is too narrow, and reveal the full title via tooltip on hover.
* Includes both plain headers and sortable headers (with SortButton) to cover both code paths.
*/
export declare const LongColumnTitles: StoryObj<typeof Table>;
export declare const RowHoverAndClick: StoryObj<typeof Table>;