-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25882 from storybookjs/version-non-patch-from-8.0…
….0-beta.0 Release: Prerelease 8.0.0-beta.1
- Loading branch information
Showing
69 changed files
with
443 additions
and
510 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
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
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,44 +1,66 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<!--suppress HtmlUnknownTarget --> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Storybook</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Storybook</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link | ||
rel="prefetch" | ||
href="./sb-common-assets/nunito-sans-regular.woff2" | ||
as="font" | ||
type="font/woff2" | ||
crossorigin | ||
/> | ||
<link | ||
rel="prefetch" | ||
href="./sb-common-assets/nunito-sans-italic.woff2" | ||
as="font" | ||
type="font/woff2" | ||
crossorigin | ||
/> | ||
<link | ||
rel="prefetch" | ||
href="./sb-common-assets/nunito-sans-bold.woff2" | ||
as="font" | ||
type="font/woff2" | ||
crossorigin | ||
/> | ||
<link | ||
rel="prefetch" | ||
href="./sb-common-assets/nunito-sans-bold-italic.woff2" | ||
as="font" | ||
type="font/woff2" | ||
crossorigin | ||
/> | ||
<link rel="stylesheet" href="./sb-common-assets/fonts.css" /> | ||
|
||
<link rel="prefetch" href="./sb-common-assets/nunito-sans-regular.woff2" as="font" type="font/woff2" crossorigin /> | ||
<link rel="prefetch" href="./sb-common-assets/nunito-sans-italic.woff2" as="font" type="font/woff2" crossorigin /> | ||
<link rel="prefetch" href="./sb-common-assets/nunito-sans-bold.woff2" as="font" type="font/woff2" crossorigin /> | ||
<link rel="prefetch" href="./sb-common-assets/nunito-sans-bold-italic.woff2" as="font" type="font/woff2" crossorigin /> | ||
<link rel="stylesheet" href="./sb-common-assets/fonts.css" /> | ||
<script> | ||
window.CONFIG_TYPE = '[CONFIG_TYPE HERE]'; | ||
window.LOGLEVEL = '[LOGLEVEL HERE]'; | ||
window.FRAMEWORK_OPTIONS = '[FRAMEWORK_OPTIONS HERE]'; | ||
window.CHANNEL_OPTIONS = '[CHANNEL_OPTIONS HERE]'; | ||
window.FEATURES = '[FEATURES HERE]'; | ||
window.STORIES = '[STORIES HERE]'; | ||
window.DOCS_OPTIONS = '[DOCS_OPTIONS HERE]'; | ||
window.TAGS_OPTIONS = '[TAGS_OPTIONS HERE]'; | ||
|
||
<script> | ||
window.CONFIG_TYPE = '[CONFIG_TYPE HERE]'; | ||
window.LOGLEVEL = '[LOGLEVEL HERE]'; | ||
window.FRAMEWORK_OPTIONS = '[FRAMEWORK_OPTIONS HERE]'; | ||
window.CHANNEL_OPTIONS = '[CHANNEL_OPTIONS HERE]'; | ||
window.FEATURES = '[FEATURES HERE]'; | ||
window.STORIES = '[STORIES HERE]'; | ||
window.DOCS_OPTIONS = '[DOCS_OPTIONS HERE]'; | ||
window.TAGS_OPTIONS = '[TAGS_OPTIONS HERE]'; | ||
('OTHER_GLOBLALS HERE'); | ||
|
||
('OTHER_GLOBLALS HERE'); | ||
// We do this so that "module && module.hot" etc. in Storybook source code | ||
// doesn't fail (it will simply be disabled) | ||
window.module = undefined; | ||
window.global = window; | ||
</script> | ||
<!-- [HEAD HTML SNIPPET HERE] --> | ||
</head> | ||
|
||
// We do this so that "module && module.hot" etc. in Storybook source code | ||
// doesn't fail (it will simply be disabled) | ||
window.module = undefined; | ||
window.global = window; | ||
</script> | ||
<!-- [HEAD HTML SNIPPET HERE] --> | ||
</head> | ||
|
||
<body> | ||
<!-- [BODY HTML SNIPPET HERE] --> | ||
<div id="storybook-root"></div> | ||
<div id="storybook-docs"></div> | ||
<script type="module" src="./sb-preview/runtime.js"></script> | ||
<script type="module" src="/virtual:/@storybook/builder-vite/vite-app.js"></script> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<!-- [BODY HTML SNIPPET HERE] --> | ||
<div id="storybook-root"></div> | ||
<div id="storybook-docs"></div> | ||
<script type="module" src="./sb-preview/runtime.js"></script> | ||
<script type="module" src="/virtual:/@storybook/builder-vite/vite-app.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.