Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,6 @@ module.exports = {
// Useful to add story descriptions via JSDoc without specifying params,
// or in TypeScript files where params are likely already documented outside of the JSDoc.
'jsdoc/require-param': 'off',
// Disable this rule as eslint-plugin-storybook 0.9.0 doesn't recognize the new
// `storybook/test` import path introduced in Storybook 9.
// TODO: Remove this override when we upgrade to eslint-plugin-storybook >= 0.10.0.
'storybook/use-storybook-expect': 'off',
},
},
{
Expand Down
251 changes: 226 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-compiler": "19.0.0-beta-0dec889-20241115",
"eslint-plugin-ssr-friendly": "1.0.6",
"eslint-plugin-storybook": "0.9.0",
"eslint-plugin-storybook": "10.1.11",
"eslint-plugin-testing-library": "6.0.2",
"execa": "4.0.2",
"fast-glob": "^3.2.7",
Expand Down
1 change: 0 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
},
"devDependencies": {
"@ariakit/test": "^0.4.7",
"@storybook/react": "9.1.17",
"timezone-mock": "^1.3.6"
},
"peerDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import type { Meta, StoryFn } from '@storybook/react';
import type { Meta, StoryFn } from '@storybook/react-webpack5';
import { fn } from 'storybook/test';

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import type { Meta, StoryFn } from '@storybook/react';
import type { Meta, StoryFn } from '@storybook/react-webpack5';
import { fn } from 'storybook/test';

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/animate/stories/index.story.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import type { Meta, StoryFn } from '@storybook/react';
import type { Meta, StoryFn } from '@storybook/react-webpack5';

/**
* Internal dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/badge/stories/index.story.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import type { Meta, StoryObj } from '@storybook/react';
import type { Meta, StoryObj } from '@storybook/react-webpack5';

/**
* Internal dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import type { Meta, StoryFn } from '@storybook/react';
import type { Meta, StoryFn } from '@storybook/react-webpack5';

/**
* Internal dependencies
Expand Down
Loading
Loading