- Implement column pinning functionality allowing users to pin columns to the left or right. - Introduce data grouping capabilities for better data organization. - Enhance the theming guide with new styles for pinned columns and loading indicators. - Add infinite scroll support with loading indicators for improved user experience. - Update CSS styles to accommodate new features and improve visual feedback.
21 lines
434 B
TypeScript
21 lines
434 B
TypeScript
import type { Preview } from '@storybook/react-vite';
|
|
|
|
import { PreviewDecorator } from './previewDecorator';
|
|
|
|
const preview: Preview = {
|
|
decorators: [PreviewDecorator],
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
layout: 'fullscreen',
|
|
viewMode: 'responsive',
|
|
},
|
|
};
|
|
|
|
export default preview;
|