Components: Deprecate html components entry point

This commit is contained in:
Michael Shilman 2021-03-29 11:37:12 +08:00
parent feda2810ad
commit c62ece088d
5 changed files with 32 additions and 1 deletions

View File

@ -11,6 +11,7 @@
- [Deprecated default PostCSS plugins](#deprecated-default-postcss-plugins)
- [Deprecated showRoots config option](#deprecated-showroots-config-option)
- [Deprecated control.options](#deprecated-controloptions)
- [Deprecated storybook components html entry point](#deprecated-storybook-components-html-entry-point)
- [From version 6.0.x to 6.1.0](#from-version-60x-to-610)
- [Addon-backgrounds preset](#addon-backgrounds-preset)
- [Single story hoisting](#single-story-hoisting)
@ -274,6 +275,18 @@ Keys in `control.labels` as well as in `mapping` should match the values in `opt
If you are currently using an object as value for `control.options`, be aware that the key and value are reversed in `control.labels`.
#### Deprecated storybook components html entry point
Storybook HTML components are now exported directly from '@storybook/components' for better ESM and Typescript compatibility. The old entry point will be removed in SB 7.0.
```js
// before
import { components } from '@storybook/components/html';
// after
import { components } from '@storybook/components';
```
## From version 6.0.x to 6.1.0
### Addon-backgrounds preset

1
lib/components/html.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './dist/ts3.9/html.d';

1
lib/components/html.js Normal file
View File

@ -0,0 +1 @@
module.exports = require('./dist/cjs/html');

View File

@ -58,7 +58,8 @@
"react-syntax-highlighter": "^13.5.3",
"react-textarea-autosize": "^8.3.0",
"regenerator-runtime": "^0.13.7",
"ts-dedent": "^2.0.0"
"ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"css": "^3.0.0",

View File

@ -0,0 +1,15 @@
import dedent from 'ts-dedent';
import deprecate from 'util-deprecate';
const deprecatedHtmlEndpoint = deprecate(
() => {},
dedent`
The entry point '@storybook/components/html' is deprecated. Please use '@storybook/components' directly instead.
See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-storybook-components-html-entry-point
`
);
deprecatedHtmlEndpoint();
export * from './typography/DocumentFormatting';
export { components, resetComponents } from './index';