mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Components: Deprecate html components entry point
This commit is contained in:
parent
feda2810ad
commit
c62ece088d
13
MIGRATION.md
13
MIGRATION.md
@ -11,6 +11,7 @@
|
|||||||
- [Deprecated default PostCSS plugins](#deprecated-default-postcss-plugins)
|
- [Deprecated default PostCSS plugins](#deprecated-default-postcss-plugins)
|
||||||
- [Deprecated showRoots config option](#deprecated-showroots-config-option)
|
- [Deprecated showRoots config option](#deprecated-showroots-config-option)
|
||||||
- [Deprecated control.options](#deprecated-controloptions)
|
- [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)
|
- [From version 6.0.x to 6.1.0](#from-version-60x-to-610)
|
||||||
- [Addon-backgrounds preset](#addon-backgrounds-preset)
|
- [Addon-backgrounds preset](#addon-backgrounds-preset)
|
||||||
- [Single story hoisting](#single-story-hoisting)
|
- [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`.
|
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
|
## From version 6.0.x to 6.1.0
|
||||||
|
|
||||||
### Addon-backgrounds preset
|
### Addon-backgrounds preset
|
||||||
|
1
lib/components/html.d.ts
vendored
Normal file
1
lib/components/html.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/ts3.9/html.d';
|
1
lib/components/html.js
Normal file
1
lib/components/html.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
module.exports = require('./dist/cjs/html');
|
@ -58,7 +58,8 @@
|
|||||||
"react-syntax-highlighter": "^13.5.3",
|
"react-syntax-highlighter": "^13.5.3",
|
||||||
"react-textarea-autosize": "^8.3.0",
|
"react-textarea-autosize": "^8.3.0",
|
||||||
"regenerator-runtime": "^0.13.7",
|
"regenerator-runtime": "^0.13.7",
|
||||||
"ts-dedent": "^2.0.0"
|
"ts-dedent": "^2.0.0",
|
||||||
|
"util-deprecate": "^1.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"css": "^3.0.0",
|
"css": "^3.0.0",
|
||||||
|
15
lib/components/src/html.tsx
Normal file
15
lib/components/src/html.tsx
Normal 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';
|
Loading…
x
Reference in New Issue
Block a user