Jonathan Bodling

Results 12 comments of Jonathan Bodling

We have a similar problem in our code. ``` const columns = useMemo( () => [ columnHelper.accessor("name", { cell: (info) => info.getValue(), header: "Name", }), columnHelper.accessor("totalUnits", { cell: (info) =>...

We skipped using columnDef, it still works as good and gives type help. ``` const columns = [ columnHelper.accessor("name", { cell: (info) => info.getValue(), }), columnHelper.accessor("age", { cell: (info) =>...

If I understand it, if you use grouped columns like this example https://tanstack.com/table/v8/docs/examples/react/column-sizing then it is correct. If you are not using grouped columns, you shouldn't use it.

Hello ! I've fixed it to the best of my ability and a little sunday afternon. And migrated to storybook v8. I'll create a PR and all of that

Here is a PR for the migration to v8 @elirov @nutboltu https://github.com/linearlabs-workspace/storybook-addon-mock/pull/209

This issue should be closed now right ? @nutboltu

> Hello 🖖 Node 16 is no longer supported: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#dropping-support-for-nodejs-16 I think you can replace node `16.x` by `20.x` in matrix Hi ! I updated it to 20 :)

> Is it only for me or the Mock pane is missing in the storybook panel? Maybe something broke the automatic handling. > > Screenshot for the previous version of...

> By using the info from [here](https://storybook.js.org/docs/addons/writing-presets#previewannotations) and changing `preview.js` to > > ```js > import { withRoundTrip } from '../withRoundTrip'; > > const preview = { > decorators: [withRoundTrip],...