-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INT-3291: Support for TinyMCE Version 7 release (#506)
* INT-3291: Add tinymce 7 as a dep * INT-3291: Added licenseKey prop * INT-3291: Test against version 7 as well * INT-3291: Add technical reference to Editor's JSDoc * INT-3291: Remove @storybook/addon-onboarding dev dep * INT-3291: Updated stories to use newer StoryObj API * INT-3291: Change default `cloudChannel` to '7' * INT-3291: Upgrade dependencies * INT-3291: Disable storybook actions * INT-3291: Fix version 7 discrepency that's carried over from 6 * INT-3291: Upgrade storybook to use react-vite instead of webpack * INT-3291: Use an `as` assertion for `cloudChannel` * INT-3291: Added input and composition related event handlers * INT-3291: Turn off no-unsafe-arguments eslint rule as certain internal testing libraries return generics containing `any` * INT-3291: Updated codesandbox link * INT-3291: Added changelog entries
- Loading branch information
1 parent
dbdf516
commit 185cf43
Showing
15 changed files
with
4,655 additions
and
4,204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
import type { StorybookConfig } from "@storybook/react-webpack5"; | ||
|
||
const config: StorybookConfig = { | ||
export default { | ||
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"], | ||
addons: [ | ||
"@storybook/addon-links", | ||
"@storybook/addon-essentials", | ||
"@storybook/addon-onboarding", | ||
"@storybook/addon-interactions", | ||
], | ||
framework: { | ||
name: "@storybook/react-webpack5", | ||
options: {}, | ||
core: { | ||
disableTelemetry: true | ||
}, | ||
docs: { | ||
autodocs: "tag", | ||
}, | ||
}; | ||
export default config; | ||
framework: { | ||
name: "@storybook/react-vite", | ||
options: {} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.