mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:11:07 +08:00
Merge remote-tracking branch 'origin/next' into tom/sb-831-only-generate-docs-page-for-tagged
This commit is contained in:
commit
06907e106e
@ -7,7 +7,7 @@ executors:
|
||||
description: The Resource class
|
||||
type: enum
|
||||
enum: ['small', 'medium', 'medium+', 'large', 'xlarge']
|
||||
default: 'medium'
|
||||
default: 'small'
|
||||
working_directory: /tmp/storybook
|
||||
docker:
|
||||
- image: cimg/node:16.17.1
|
||||
@ -20,7 +20,7 @@ executors:
|
||||
description: The Resource class
|
||||
type: enum
|
||||
enum: ['small', 'medium', 'medium+', 'large', 'xlarge']
|
||||
default: 'medium'
|
||||
default: 'small'
|
||||
working_directory: /tmp/storybook
|
||||
docker:
|
||||
- image: cimg/node:16.17.1-browsers
|
||||
@ -33,7 +33,7 @@ executors:
|
||||
description: The Resource class
|
||||
type: enum
|
||||
enum: ['small', 'medium', 'medium+', 'large', 'xlarge']
|
||||
default: 'medium'
|
||||
default: 'small'
|
||||
working_directory: /tmp/storybook
|
||||
docker:
|
||||
- image: mcr.microsoft.com/playwright:v1.27.0-focal
|
||||
@ -77,7 +77,7 @@ commands:
|
||||
jobs:
|
||||
build:
|
||||
executor:
|
||||
class: xlarge
|
||||
class: large
|
||||
name: sb_node_16_classic
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
@ -111,7 +111,7 @@ jobs:
|
||||
- code/presets
|
||||
publish:
|
||||
executor:
|
||||
class: medium
|
||||
class: small
|
||||
name: sb_node_16_classic
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
@ -129,7 +129,7 @@ jobs:
|
||||
- .verdaccio-cache
|
||||
cra-bench:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_playwright
|
||||
working_directory: /tmp/storybook
|
||||
steps:
|
||||
@ -169,7 +169,7 @@ jobs:
|
||||
destination: sb-bench.tar.gz
|
||||
react-vite-bench:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_playwright
|
||||
working_directory: /tmp/storybook
|
||||
steps:
|
||||
@ -223,7 +223,7 @@ jobs:
|
||||
yarn lint
|
||||
check:
|
||||
executor:
|
||||
class: xlarge
|
||||
class: large
|
||||
name: sb_node_16_classic
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
@ -250,7 +250,9 @@ jobs:
|
||||
- store_test_results:
|
||||
path: scripts/junit.xml
|
||||
unit-tests:
|
||||
executor: sb_node_16_browsers
|
||||
executor:
|
||||
class: medium+
|
||||
name: sb_node_16_browsers
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -283,7 +285,7 @@ jobs:
|
||||
yarn coverage
|
||||
chromatic-internal-storybooks:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_node_16_browsers
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
@ -301,9 +303,9 @@ jobs:
|
||||
## new workflow
|
||||
create-sandboxes:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_node_16_browsers
|
||||
parallelism: 24
|
||||
parallelism: 9
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -320,9 +322,9 @@ jobs:
|
||||
path: test-results
|
||||
smoke-test-sandboxes:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_node_16_browsers
|
||||
parallelism: 24
|
||||
parallelism: 9
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -337,7 +339,7 @@ jobs:
|
||||
executor:
|
||||
class: medium+
|
||||
name: sb_node_16_browsers
|
||||
parallelism: 24
|
||||
parallelism: 9
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -354,9 +356,9 @@ jobs:
|
||||
- sandbox/*/storybook-static
|
||||
test-runner-sandboxes:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_playwright
|
||||
parallelism: 22
|
||||
parallelism: 8
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -369,9 +371,9 @@ jobs:
|
||||
path: test-results
|
||||
chromatic-sandboxes:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_node_16_browsers
|
||||
parallelism: 24
|
||||
parallelism: 9
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
@ -384,9 +386,9 @@ jobs:
|
||||
path: test-results
|
||||
e2e-sandboxes:
|
||||
executor:
|
||||
class: medium+
|
||||
class: medium
|
||||
name: sb_playwright
|
||||
parallelism: 24
|
||||
parallelism: 9
|
||||
steps:
|
||||
- git-shallow-clone/checkout_advanced:
|
||||
clone_options: '--depth 1 --verbose'
|
||||
|
50
CHANGELOG.md
50
CHANGELOG.md
@ -1,3 +1,53 @@
|
||||
## 7.0.0-alpha.45 (October 28, 2022)
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Svelte: Fix regression causing all stories to error [#19653](https://github.com/storybooks/storybook/pull/19653)
|
||||
- CSF: Fix `StoryObj<typeof Cmp>` to work the same as old ComponentStoryObj [#19651](https://github.com/storybooks/storybook/pull/19651)
|
||||
|
||||
#### Maintenance
|
||||
|
||||
- Core: Misc dead code removal [#19654](https://github.com/storybooks/storybook/pull/19654)
|
||||
- Addon-actions: Move decorator to its own entrypoint [#19650](https://github.com/storybooks/storybook/pull/19650)
|
||||
|
||||
#### Build
|
||||
|
||||
- Build: Reduce resource classes [#19652](https://github.com/storybooks/storybook/pull/19652)
|
||||
|
||||
## 7.0.0-alpha.44 (October 27, 2022)
|
||||
|
||||
#### Features
|
||||
|
||||
- Add tags to story and index [#19625](https://github.com/storybooks/storybook/pull/19625)
|
||||
- CSF tools: Add tags support [#19626](https://github.com/storybooks/storybook/pull/19626)
|
||||
- Vue2: Improve CSF3 types [#19603](https://github.com/storybooks/storybook/pull/19603)
|
||||
- Vue3: Improve CSF3 types [#19602](https://github.com/storybooks/storybook/pull/19602)
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Core: Fix v6 store when no explicit renderer [#19624](https://github.com/storybooks/storybook/pull/19624)
|
||||
- CLI/React native: Fix addons template to import register instead of manager [#19620](https://github.com/storybooks/storybook/pull/19620)
|
||||
|
||||
#### Maintenance
|
||||
|
||||
- Build-storybook: Only copy .mjs files for manager build [#19647](https://github.com/storybooks/storybook/pull/19647)
|
||||
- Rename storybook/ui to storybook/manager [#19635](https://github.com/storybooks/storybook/pull/19635)
|
||||
- Addons: Support SSR by not using global.window to store hooks context [#19631](https://github.com/storybooks/storybook/pull/19631)
|
||||
- Breaking: Final few deprecations removal in a batch [#19553](https://github.com/storybooks/storybook/pull/19553)
|
||||
- TypeScript: Misc types improvements [#19633](https://github.com/storybooks/storybook/pull/19633)
|
||||
- TypeScript: Restructure storybook types [#19580](https://github.com/storybooks/storybook/pull/19580)
|
||||
- TypeScript: cleanup types [#19621](https://github.com/storybooks/storybook/pull/19621)
|
||||
|
||||
#### Build
|
||||
|
||||
- Build: Reduce CI usage by 60% [#19644](https://github.com/storybooks/storybook/pull/19644)
|
||||
- Remove `netlify.toml` [#19645](https://github.com/storybooks/storybook/pull/19645)
|
||||
- Small fixes for `check` task [#19643](https://github.com/storybooks/storybook/pull/19643)
|
||||
- Storybook for `@storybook/blocks` only [#19630](https://github.com/storybooks/storybook/pull/19630)
|
||||
- Fix broken stories in UI Storybook [#19632](https://github.com/storybooks/storybook/pull/19632)
|
||||
- Ugrade eslint [#19601](https://github.com/storybooks/storybook/pull/19601)
|
||||
- Integrate standalone Storybook with Chromatic [#19619](https://github.com/storybooks/storybook/pull/19619)
|
||||
|
||||
## 7.0.0-alpha.43 (October 25, 2022)
|
||||
|
||||
#### Bug Fixes
|
||||
|
28
MIGRATION.md
28
MIGRATION.md
@ -3,6 +3,7 @@
|
||||
- [From version 6.5.x to 7.0.0](#from-version-65x-to-700)
|
||||
- [Alpha release notes](#alpha-release-notes)
|
||||
- [7.0 breaking changes](#70-breaking-changes)
|
||||
- [removed auto injection of @storybook/addon-actions decorator](#removed-auto-injection-of-storybookaddon-actions-decorator)
|
||||
- [register.js removed](#registerjs-removed)
|
||||
- [Change of root html IDs](#change-of-root-html-ids)
|
||||
- [No more default export from `@storybook/addons`](#no-more-default-export-from-storybookaddons)
|
||||
@ -39,6 +40,7 @@
|
||||
- [Dropped addon-docs manual configuration](#dropped-addon-docs-manual-configuration)
|
||||
- [7.0 Deprecations](#70-deprecations)
|
||||
- [`Story` type deprecated](#story-type-deprecated)
|
||||
- [`ComponentStory`, `ComponentStoryObj`, `ComponentStoryFn` and `ComponentMeta` types are deprecated](#componentstory-componentstoryobj-componentstoryfn-and-componentmeta-types-are-deprecated)
|
||||
- [From version 6.4.x to 6.5.0](#from-version-64x-to-650)
|
||||
- [Vue 3 upgrade](#vue-3-upgrade)
|
||||
- [React18 new root API](#react18-new-root-api)
|
||||
@ -251,6 +253,32 @@ In the meantime, these migration notes are the best available documentation on t
|
||||
|
||||
### 7.0 breaking changes
|
||||
|
||||
#### removed auto injection of @storybook/addon-actions decorator
|
||||
|
||||
The `withActions` decorator is no longer automatically added to stories. This is because it is really only used in the html renderer, for all other renderers it's redundant.
|
||||
If you are using the html renderer and use the `handles` parameter, you'll need to manually add the `withActions` decorator:
|
||||
|
||||
```diff
|
||||
import globalThis from 'global';
|
||||
+import { withActions } from '@storybook/addon-actions/decorator';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Button,
|
||||
args: {
|
||||
label: 'Click Me!',
|
||||
},
|
||||
parameters: {
|
||||
chromatic: { disable: true },
|
||||
},
|
||||
};
|
||||
export const Basic = {
|
||||
parameters: {
|
||||
handles: [{ click: 'clicked', contextmenu: 'right clicked' }],
|
||||
},
|
||||
+ decorators: [withActions],
|
||||
};
|
||||
```
|
||||
|
||||
#### register.js removed
|
||||
|
||||
In SB 6.x and earlier, addons exported a `register.js` entry point by convention, and users would import this in `.storybook/manager.js`. This was [deprecated in SB 6.5](#deprecated-registerjs)
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-a11y",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Test component compliance with web accessibility standards",
|
||||
"keywords": [
|
||||
"a11y",
|
||||
@ -62,15 +62,15 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addon-highlight": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addon-highlight": "7.0.0-alpha.45",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"axe-core": "^4.2.0",
|
||||
"global": "^4.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
@ -102,7 +102,7 @@
|
||||
"./src/preview.tsx"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Accessibility",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991665-47042f80-3c7c-11eb-8f00-64b5a18f498a.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-actions",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Get UI feedback when an action is performed on an interactive element",
|
||||
"keywords": [
|
||||
"storybook",
|
||||
@ -27,6 +27,11 @@
|
||||
"import": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts"
|
||||
},
|
||||
"./decorator": {
|
||||
"require": "./dist/decorator.js",
|
||||
"import": "./dist/decorator.mjs",
|
||||
"types": "./dist/decorator.d.ts"
|
||||
},
|
||||
"./manager": {
|
||||
"require": "./dist/manager.js",
|
||||
"import": "./dist/manager.mjs",
|
||||
@ -58,13 +63,13 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"dequal": "^2.0.2",
|
||||
"global": "^4.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
@ -73,7 +78,6 @@
|
||||
"react-inspector": "^6.0.0",
|
||||
"telejson": "^6.0.8",
|
||||
"ts-dedent": "^2.0.0",
|
||||
"util-deprecate": "^1.0.2",
|
||||
"uuid-browser": "^3.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -98,11 +102,12 @@
|
||||
"bundler": {
|
||||
"entries": [
|
||||
"./src/index.ts",
|
||||
"./src/decorator.ts",
|
||||
"./src/manager.tsx",
|
||||
"./src/preview.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Actions",
|
||||
"unsupportedFrameworks": [
|
||||
|
@ -1,3 +1,7 @@
|
||||
import type { ArgsEnhancer } from '@storybook/types';
|
||||
import { addActionsFromArgTypes, inferActionsFromArgTypesRegex } from './addArgsHelpers';
|
||||
|
||||
export const argsEnhancers = [addActionsFromArgTypes, inferActionsFromArgTypesRegex];
|
||||
export const argsEnhancers: ArgsEnhancer[] = [
|
||||
addActionsFromArgTypes,
|
||||
inferActionsFromArgTypesRegex,
|
||||
];
|
||||
|
@ -1,3 +0,0 @@
|
||||
import { withActions } from './runtime/withActions';
|
||||
|
||||
export const decorators = [withActions];
|
65
code/addons/actions/src/decorator.ts
Normal file
65
code/addons/actions/src/decorator.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import global from 'global';
|
||||
import { useEffect, makeDecorator } from '@storybook/addons';
|
||||
import { actions } from './runtime/actions';
|
||||
|
||||
import { PARAM_KEY } from './constants';
|
||||
|
||||
const { document, Element } = global;
|
||||
|
||||
const delegateEventSplitter = /^(\S+)\s*(.*)$/;
|
||||
|
||||
const isIE = Element != null && !Element.prototype.matches;
|
||||
const matchesMethod = isIE ? 'msMatchesSelector' : 'matches';
|
||||
|
||||
const hasMatchInAncestry = (element: any, selector: any): boolean => {
|
||||
if (element[matchesMethod](selector)) {
|
||||
return true;
|
||||
}
|
||||
const parent = element.parentElement;
|
||||
if (!parent) {
|
||||
return false;
|
||||
}
|
||||
return hasMatchInAncestry(parent, selector);
|
||||
};
|
||||
|
||||
const createHandlers = (actionsFn: (...arg: any[]) => object, ...handles: any[]) => {
|
||||
const actionsObject = actionsFn(...handles);
|
||||
return Object.entries(actionsObject).map(([key, action]) => {
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
const [_, eventName, selector] = key.match(delegateEventSplitter) || [];
|
||||
return {
|
||||
eventName,
|
||||
handler: (e: { target: any }) => {
|
||||
if (!selector || hasMatchInAncestry(e.target, selector)) {
|
||||
action(e);
|
||||
}
|
||||
},
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
const applyEventHandlers = (actionsFn: any, ...handles: any[]) => {
|
||||
const root = document && document.getElementById('storybook-root');
|
||||
useEffect(() => {
|
||||
if (root != null) {
|
||||
const handlers = createHandlers(actionsFn, ...handles);
|
||||
handlers.forEach(({ eventName, handler }) => root.addEventListener(eventName, handler));
|
||||
return () =>
|
||||
handlers.forEach(({ eventName, handler }) => root.removeEventListener(eventName, handler));
|
||||
}
|
||||
return undefined;
|
||||
}, [root, actionsFn, handles]);
|
||||
};
|
||||
|
||||
export const withActions = makeDecorator({
|
||||
name: 'withActions',
|
||||
parameterName: PARAM_KEY,
|
||||
skipIfNoParametersOrOptions: true,
|
||||
wrapper: (getStory, context, { parameters }) => {
|
||||
if (parameters?.handles) {
|
||||
applyEventHandlers(actions, ...parameters.handles);
|
||||
}
|
||||
|
||||
return getStory(context);
|
||||
},
|
||||
});
|
@ -1,2 +1 @@
|
||||
export * from './addDecorator';
|
||||
export * from './addArgs';
|
||||
|
@ -1,37 +0,0 @@
|
||||
import deprecate from 'util-deprecate';
|
||||
import { dedent } from 'ts-dedent';
|
||||
|
||||
import { DecoratorFunction } from '../models';
|
||||
|
||||
export const decorateAction = (_decorators: DecoratorFunction[]) => {
|
||||
return deprecate(
|
||||
() => {},
|
||||
dedent`
|
||||
decorateAction is no longer supported as of Storybook 6.0.
|
||||
`
|
||||
);
|
||||
};
|
||||
|
||||
const deprecatedCallback = deprecate(() => {},
|
||||
'decorate.* is no longer supported as of Storybook 6.0.');
|
||||
|
||||
export const decorate = (_decorators: DecoratorFunction[]) => {
|
||||
return deprecate(
|
||||
() => {
|
||||
return {
|
||||
action: deprecatedCallback,
|
||||
actions: deprecatedCallback,
|
||||
withActions: deprecatedCallback,
|
||||
};
|
||||
},
|
||||
dedent`
|
||||
decorate is deprecated, please configure addon-actions using the addParameter api:
|
||||
|
||||
addParameters({
|
||||
actions: {
|
||||
handles: options
|
||||
},
|
||||
});
|
||||
`
|
||||
);
|
||||
};
|
@ -1,5 +1,3 @@
|
||||
export * from './action';
|
||||
export * from './actions';
|
||||
export * from './configureActions';
|
||||
export * from './decorateAction';
|
||||
export * from './withActions';
|
||||
|
@ -1,88 +0,0 @@
|
||||
// Based on http://backbonejs.org/docs/backbone.html#section-164
|
||||
import global from 'global';
|
||||
import { useEffect, makeDecorator } from '@storybook/addons';
|
||||
import deprecate from 'util-deprecate';
|
||||
import { dedent } from 'ts-dedent';
|
||||
|
||||
import { actions } from './actions';
|
||||
|
||||
import { PARAM_KEY } from '../constants';
|
||||
|
||||
const { document, Element } = global;
|
||||
|
||||
const delegateEventSplitter = /^(\S+)\s*(.*)$/;
|
||||
|
||||
const isIE = Element != null && !Element.prototype.matches;
|
||||
const matchesMethod = isIE ? 'msMatchesSelector' : 'matches';
|
||||
|
||||
const hasMatchInAncestry = (element: any, selector: any): boolean => {
|
||||
if (element[matchesMethod](selector)) {
|
||||
return true;
|
||||
}
|
||||
const parent = element.parentElement;
|
||||
if (!parent) {
|
||||
return false;
|
||||
}
|
||||
return hasMatchInAncestry(parent, selector);
|
||||
};
|
||||
|
||||
const createHandlers = (actionsFn: (...arg: any[]) => object, ...handles: any[]) => {
|
||||
const actionsObject = actionsFn(...handles);
|
||||
return Object.entries(actionsObject).map(([key, action]) => {
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
const [_, eventName, selector] = key.match(delegateEventSplitter) || [];
|
||||
return {
|
||||
eventName,
|
||||
handler: (e: { target: any }) => {
|
||||
if (!selector || hasMatchInAncestry(e.target, selector)) {
|
||||
action(e);
|
||||
}
|
||||
},
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
const applyEventHandlers = deprecate(
|
||||
(actionsFn: any, ...handles: any[]) => {
|
||||
const root = document && document.getElementById('storybook-root');
|
||||
useEffect(() => {
|
||||
if (root != null) {
|
||||
const handlers = createHandlers(actionsFn, ...handles);
|
||||
handlers.forEach(({ eventName, handler }) => root.addEventListener(eventName, handler));
|
||||
return () =>
|
||||
handlers.forEach(({ eventName, handler }) =>
|
||||
root.removeEventListener(eventName, handler)
|
||||
);
|
||||
}
|
||||
return undefined;
|
||||
}, [root, actionsFn, handles]);
|
||||
},
|
||||
dedent`
|
||||
withActions(options) is deprecated, please configure addon-actions using the addParameter api:
|
||||
|
||||
addParameters({
|
||||
actions: {
|
||||
handles: options
|
||||
},
|
||||
});
|
||||
`
|
||||
);
|
||||
|
||||
const applyDeprecatedOptions = (actionsFn: any, options: any[]) => {
|
||||
if (options) {
|
||||
applyEventHandlers(actionsFn, options);
|
||||
}
|
||||
};
|
||||
|
||||
export const withActions = makeDecorator({
|
||||
name: 'withActions',
|
||||
parameterName: PARAM_KEY,
|
||||
skipIfNoParametersOrOptions: true,
|
||||
wrapper: (getStory, context, { parameters, options }) => {
|
||||
applyDeprecatedOptions(actions, options as any[]);
|
||||
|
||||
if (parameters && parameters.handles) applyEventHandlers(actions, ...parameters.handles);
|
||||
|
||||
return getStory(context);
|
||||
},
|
||||
});
|
@ -1,4 +1,5 @@
|
||||
import globalThis from 'global';
|
||||
import { withActions } from '@storybook/addon-actions/decorator';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Button,
|
||||
@ -14,4 +15,5 @@ export const Basic = {
|
||||
parameters: {
|
||||
handles: [{ click: 'clicked', contextmenu: 'right clicked' }],
|
||||
},
|
||||
decorators: [withActions],
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-backgrounds",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Switch backgrounds to view components in different settings",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -62,13 +62,13 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"memoizerific": "^1.11.3",
|
||||
"ts-dedent": "^2.0.0"
|
||||
@ -98,7 +98,7 @@
|
||||
"./src/preview.tsx"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Backgrounds",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991667-479cc600-3c7c-11eb-96d3-410e936252e7.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-controls",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Interact with component inputs dynamically in the Storybook UI",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -57,16 +57,16 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/blocks": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/blocks": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"lodash": "^4.17.21",
|
||||
"ts-dedent": "^2.0.0"
|
||||
},
|
||||
@ -92,7 +92,7 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Controls",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991669-479cc600-3c7c-11eb-93d9-38b67e8371f2.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-docs",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Document component usage and properties in Markdown",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -52,22 +52,22 @@
|
||||
"@babel/plugin-transform-react-jsx": "^7.12.12",
|
||||
"@jest/transform": "^26.6.2",
|
||||
"@mdx-js/react": "^2.1.5",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/blocks": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/blocks": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/mdx2-csf": "0.1.0-next.0",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/postinstall": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/source-loader": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/postinstall": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/source-loader": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"dequal": "^2.0.2",
|
||||
"fs-extra": "^9.0.1",
|
||||
"global": "^4.4.0",
|
||||
@ -94,7 +94,7 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Docs",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991672-48355c80-3c7c-11eb-82d9-95fa12438f64.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-essentials",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Curated addons to bring out the best of Storybook",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -41,24 +41,24 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addon-actions": "7.0.0-alpha.43",
|
||||
"@storybook/addon-backgrounds": "7.0.0-alpha.43",
|
||||
"@storybook/addon-controls": "7.0.0-alpha.43",
|
||||
"@storybook/addon-docs": "7.0.0-alpha.43",
|
||||
"@storybook/addon-highlight": "7.0.0-alpha.43",
|
||||
"@storybook/addon-measure": "7.0.0-alpha.43",
|
||||
"@storybook/addon-outline": "7.0.0-alpha.43",
|
||||
"@storybook/addon-toolbars": "7.0.0-alpha.43",
|
||||
"@storybook/addon-viewport": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/addon-actions": "7.0.0-alpha.45",
|
||||
"@storybook/addon-backgrounds": "7.0.0-alpha.45",
|
||||
"@storybook/addon-controls": "7.0.0-alpha.45",
|
||||
"@storybook/addon-docs": "7.0.0-alpha.45",
|
||||
"@storybook/addon-highlight": "7.0.0-alpha.45",
|
||||
"@storybook/addon-measure": "7.0.0-alpha.45",
|
||||
"@storybook/addon-outline": "7.0.0-alpha.45",
|
||||
"@storybook/addon-toolbars": "7.0.0-alpha.45",
|
||||
"@storybook/addon-viewport": "7.0.0-alpha.45",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"ts-dedent": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@storybook/vue": "7.0.0-alpha.43",
|
||||
"@storybook/vue": "7.0.0-alpha.45",
|
||||
"@types/jest": "^26.0.16",
|
||||
"typescript": "~4.6.3"
|
||||
},
|
||||
@ -112,5 +112,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-highlight",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Highlight DOM nodes within your stories",
|
||||
"keywords": [
|
||||
"storybook-addons",
|
||||
@ -50,8 +50,8 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -67,7 +67,7 @@
|
||||
"./src/highlight.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"sbmodern": "dist/modern/index.js",
|
||||
"storybook": {
|
||||
"displayName": "Highlight",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-interactions",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Automate, test and debug user interactions",
|
||||
"keywords": [
|
||||
"storybook-addons",
|
||||
@ -59,15 +59,15 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@devtools-ds/object-inspector": "^1.1.2",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/instrumenter": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/instrumenter": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"jest-mock": "^27.0.6",
|
||||
"polished": "^4.2.2",
|
||||
@ -104,7 +104,7 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Interactions",
|
||||
"unsupportedFrameworks": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-jest",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "React storybook addon that show component jest report",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -59,12 +59,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"react-sizeme": "^3.0.1",
|
||||
"upath": "^1.2.0"
|
||||
@ -94,7 +94,7 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Jest",
|
||||
"icon": "https://pbs.twimg.com/profile_images/821713465245102080/mMtKIMax_400x400.jpg",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-links",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Link stories together to build demos and prototypes with your UI components",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -63,12 +63,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/router": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/router": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"ts-dedent": "^2.0.0"
|
||||
@ -99,7 +99,7 @@
|
||||
"./src/react/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Links",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991673-48355c80-3c7c-11eb-9b6e-b627c96a75f6.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-measure",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Inspect layouts by visualizing the box model",
|
||||
"keywords": [
|
||||
"storybook-addons",
|
||||
@ -61,12 +61,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -94,7 +94,7 @@
|
||||
"./src/preview.tsx"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Measure",
|
||||
"unsupportedFrameworks": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-outline",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Outline all elements with CSS to help with layout placement and alignment",
|
||||
"keywords": [
|
||||
"storybook-addons",
|
||||
@ -64,12 +64,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"ts-dedent": "^2.0.0"
|
||||
},
|
||||
@ -98,7 +98,7 @@
|
||||
"./src/preset/preview.tsx"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Outline",
|
||||
"unsupportedFrameworks": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-storyshots",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Take a code snapshot of every story automatically with Jest",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -38,13 +38,13 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@jest/transform": "^26.6.2",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/babel-plugin-require-context-hook": "1.0.1",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/glob": "^7.1.3",
|
||||
"@types/jest": "^26.0.16",
|
||||
"@types/jest-specific-snapshot": "^0.5.3",
|
||||
@ -62,11 +62,11 @@
|
||||
"@angular/core": "^13.3.6",
|
||||
"@angular/platform-browser-dynamic": "^13.3.6",
|
||||
"@emotion/jest": "^11.8.0",
|
||||
"@storybook/addon-docs": "7.0.0-alpha.43",
|
||||
"@storybook/angular": "7.0.0-alpha.43",
|
||||
"@storybook/react": "7.0.0-alpha.43",
|
||||
"@storybook/vue": "7.0.0-alpha.43",
|
||||
"@storybook/vue3": "7.0.0-alpha.43",
|
||||
"@storybook/addon-docs": "7.0.0-alpha.45",
|
||||
"@storybook/angular": "7.0.0-alpha.45",
|
||||
"@storybook/react": "7.0.0-alpha.45",
|
||||
"@storybook/vue": "7.0.0-alpha.45",
|
||||
"@storybook/vue3": "7.0.0-alpha.45",
|
||||
"babel-loader": "^8.2.5",
|
||||
"enzyme": "^3.11.0",
|
||||
"enzyme-to-json": "^3.6.1",
|
||||
@ -144,7 +144,7 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Storyshots",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991676-48cdf300-3c7c-11eb-8aa1-944dab6ab29b.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-storyshots-puppeteer",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Image snapshots addition to StoryShots based on puppeteer",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -35,8 +35,8 @@
|
||||
"dependencies": {
|
||||
"@axe-core/puppeteer": "^4.2.0",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/jest-image-snapshot": "^4.1.3",
|
||||
"jest-image-snapshot": "^4.3.0"
|
||||
},
|
||||
@ -45,7 +45,7 @@
|
||||
"puppeteer": "^2.0.0 || ^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@storybook/addon-storyshots": "7.0.0-alpha.43",
|
||||
"@storybook/addon-storyshots": "7.0.0-alpha.45",
|
||||
"puppeteer": ">=2.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
@ -56,5 +56,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-storysource",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "View a story’s source code to see how it works and paste into your app",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -53,13 +53,13 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/router": "7.0.0-alpha.43",
|
||||
"@storybook/source-loader": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/router": "7.0.0-alpha.45",
|
||||
"@storybook/source-loader": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"estraverse": "^5.2.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"react-syntax-highlighter": "^15.5.0"
|
||||
@ -91,7 +91,7 @@
|
||||
"./src/preset.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Storysource",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991675-48cdf300-3c7c-11eb-9400-58de5ac6daa7.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-toolbars",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Create your own toolbar items that control story rendering",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -57,11 +57,11 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43"
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "~4.6.3"
|
||||
@ -88,7 +88,7 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Toolbars",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991677-48cdf300-3c7c-11eb-93b4-19b0e3366959.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addon-viewport",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Build responsive components by adjusting Storybook’s viewport size and orientation",
|
||||
"keywords": [
|
||||
"addon",
|
||||
@ -59,12 +59,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"memoizerific": "^1.11.3",
|
||||
"prop-types": "^15.7.2"
|
||||
@ -95,7 +95,7 @@
|
||||
"./src/preview.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b",
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532",
|
||||
"storybook": {
|
||||
"displayName": "Viewport",
|
||||
"icon": "https://user-images.githubusercontent.com/263385/101991678-48cdf300-3c7c-11eb-9764-f8af293c1b28.png",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/angular",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
|
||||
"keywords": [
|
||||
"storybook",
|
||||
@ -34,19 +34,19 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"@types/react": "^16.14.23",
|
||||
"@types/react-dom": "^16.9.14",
|
||||
@ -120,5 +120,5 @@
|
||||
"access": "public"
|
||||
},
|
||||
"builders": "dist/types/builders/builders.json",
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/ember",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
|
||||
"homepage": "https://github.com/storybookjs/storybook/tree/main/frameworks/ember",
|
||||
"bugs": {
|
||||
@ -30,12 +30,12 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
@ -59,5 +59,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/html-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/html": "7.0.0-alpha.43",
|
||||
"@storybook/preset-html-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/html": "7.0.0-alpha.45",
|
||||
"@storybook/preset-html-webpack": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"global": "^4.4.0",
|
||||
"react": "16.14.0",
|
||||
@ -78,5 +78,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/nextjs",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Next.js",
|
||||
"keywords": [
|
||||
"storybook",
|
||||
@ -59,12 +59,12 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-typescript": "^7.18.6",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/preset-react-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/react": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/preset-react-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/react": "7.0.0-alpha.45",
|
||||
"@types/node": "^14.14.20 || ^16.0.0",
|
||||
"find-up": "^5.0.0",
|
||||
"fs-extra": "^9.0.1",
|
||||
@ -80,7 +80,7 @@
|
||||
"tsconfig-paths-webpack-plugin": "^3.5.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/addon-actions": "7.0.0-alpha.43",
|
||||
"@storybook/addon-actions": "7.0.0-alpha.45",
|
||||
"@types/loader-utils": "^2.0.3",
|
||||
"next": "^12.2.4",
|
||||
"typescript": "~4.6.3",
|
||||
@ -120,5 +120,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preact-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Preact: Develop Preact Component in isolation.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preact": "7.0.0-alpha.43",
|
||||
"@storybook/preset-preact-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preact": "7.0.0-alpha.45",
|
||||
"@storybook/preset-preact-webpack": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -79,5 +79,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/react-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for React and Vite: Develop React components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -53,13 +53,13 @@
|
||||
"dependencies": {
|
||||
"@joshwooding/vite-plugin-react-docgen-typescript": "^0.0.5",
|
||||
"@rollup/pluginutils": "^4.2.0",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/react": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/react": "7.0.0-alpha.45",
|
||||
"@vitejs/plugin-react": "^2.0.0",
|
||||
"ast-types": "^0.14.2",
|
||||
"magic-string": "^0.26.1",
|
||||
@ -88,5 +88,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/react-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,9 +51,9 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/preset-react-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/react": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/preset-react-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/react": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -86,5 +86,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/server-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preset-server-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/server": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preset-server-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/server": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -74,5 +74,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/svelte-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Svelte and Vite: Develop Svelte components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -52,14 +52,14 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addon-svelte-csf": "^2.0.0",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/svelte": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/svelte": "7.0.0-alpha.45",
|
||||
"@sveltejs/vite-plugin-svelte": "^1.0.0",
|
||||
"magic-string": "^0.26.1",
|
||||
"svelte": "^3.0.0",
|
||||
@ -92,5 +92,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/svelte-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Svelte: Develop Svelte Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,10 +51,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preset-svelte-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/svelte": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preset-svelte-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/svelte": "7.0.0-alpha.45",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
},
|
||||
@ -81,5 +81,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/vue-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue2 and Vite: Develop Vue2 Components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,15 +50,15 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/vue": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/vue": "7.0.0-alpha.45",
|
||||
"magic-string": "^0.26.1",
|
||||
"vite": "^3.1.3",
|
||||
"vue-docgen-api": "^4.40.0"
|
||||
@ -83,5 +83,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/vue-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue: Develop Vue Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preset-vue-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/vue": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preset-vue-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/vue": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -85,5 +85,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/vue3-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue3 and Vite: Develop Vue3 components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,14 +51,14 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/vue3": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/vue3": "7.0.0-alpha.45",
|
||||
"@vitejs/plugin-vue": "^3.0.0",
|
||||
"magic-string": "^0.26.1",
|
||||
"vite": "^3.1.3",
|
||||
@ -82,5 +82,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/vue3-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preset-vue3-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/vue3": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preset-vue3-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/vue3": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -82,5 +82,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/web-components-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for web-components and Vite: Develop Web Components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,15 +51,15 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/web-components": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/builder-vite": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/web-components": "7.0.0-alpha.45",
|
||||
"magic-string": "^0.26.1",
|
||||
"vite": "3"
|
||||
},
|
||||
@ -81,5 +81,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/web-components-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"lit-html",
|
||||
@ -53,10 +53,10 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/preset-web-components-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/web-components": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/preset-web-components-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/web-components": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -81,5 +81,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -2,5 +2,5 @@
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true,
|
||||
"registry": "https://registry.npmjs.org",
|
||||
"version": "7.0.0-alpha.43"
|
||||
"version": "7.0.0-alpha.45"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/addons",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook addons store",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,13 +42,13 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/router": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/router": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
@ -63,5 +63,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/api",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Core Storybook API & Context",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -45,13 +45,13 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/router": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/router": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"dequal": "^2.0.2",
|
||||
"global": "^4.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
@ -64,7 +64,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "^26.6.2",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@types/lodash": "^4.14.167",
|
||||
"@types/qs": "^6",
|
||||
"flush-promises": "^1.0.2",
|
||||
@ -84,5 +84,5 @@
|
||||
"./src/shortcut.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
export const version = '7.0.0-alpha.43';
|
||||
export const version = '7.0.0-alpha.45';
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/builder-manager",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook manager builder",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,9 +42,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/manager": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/manager": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@types/ejs": "^3.1.1",
|
||||
"@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10",
|
||||
"browser-assert": "^1.2.1",
|
||||
@ -69,5 +69,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { dirname, join } from 'path';
|
||||
import { dirname, join, parse } from 'path';
|
||||
import fs from 'fs-extra';
|
||||
import express from 'express';
|
||||
|
||||
@ -192,7 +192,15 @@ const builder: BuilderFunction = async function* builderGeneratorFn({ startTime,
|
||||
|
||||
yield;
|
||||
|
||||
const managerFiles = fs.copy(coreDirOrigin, coreDirTarget);
|
||||
const managerFiles = fs.copy(coreDirOrigin, coreDirTarget, {
|
||||
filter: (src) => {
|
||||
const { ext } = parse(src);
|
||||
if (ext) {
|
||||
return ext === '.mjs';
|
||||
}
|
||||
return true;
|
||||
},
|
||||
});
|
||||
const { cssFiles, jsFiles } = await readOrderedFiles(addonsDir, compilation?.outputFiles);
|
||||
|
||||
yield;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/builder-vite",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "A plugin to run and build Storybooks with Vite",
|
||||
"homepage": "https://github.com/storybookjs/storybook/tree/main/code/lib/builder-vite/#readme",
|
||||
"repository": {
|
||||
@ -19,14 +19,14 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@joshwooding/vite-plugin-react-docgen-typescript": "0.0.5",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/mdx2-csf": "0.1.0-next.0",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/source-loader": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/source-loader": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@vitejs/plugin-react": "^2.0.0",
|
||||
"browser-assert": "^1.2.1",
|
||||
"es-module-lexer": "^0.9.3",
|
||||
@ -45,5 +45,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/builder-webpack5",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook framework-agnostic API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -53,22 +53,22 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/api": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/components": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/router": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/theming": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/api": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/components": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/router": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/theming": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"@types/semver": "^7.3.4",
|
||||
"babel-loader": "^8.2.5",
|
||||
@ -120,5 +120,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/channel-postmessage",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,9 +42,9 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"qs": "^6.10.0",
|
||||
"telejson": "^6.0.8"
|
||||
@ -60,5 +60,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/channel-websocket",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -34,8 +34,8 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"telejson": "^6.0.8"
|
||||
},
|
||||
@ -45,5 +45,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/channels",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -52,5 +52,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sb",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook CLI",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -24,7 +24,7 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/cli": "7.0.0-alpha.43"
|
||||
"@storybook/cli": "7.0.0-alpha.45"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "~4.6.3"
|
||||
@ -32,5 +32,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "storybook",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook CLI",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -27,7 +27,7 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/cli": "7.0.0-alpha.43"
|
||||
"@storybook/cli": "7.0.0-alpha.45"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "~4.6.3"
|
||||
@ -35,5 +35,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/cli",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook's CLI - easiest method of adding storybook to your projects",
|
||||
"keywords": [
|
||||
"cli",
|
||||
@ -43,13 +43,13 @@
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@storybook/codemod": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/telemetry": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/codemod": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/telemetry": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/semver": "^7.3.4",
|
||||
"boxen": "^5.1.2",
|
||||
"chalk": "^4.1.0",
|
||||
@ -77,7 +77,7 @@
|
||||
"util-deprecate": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@types/cross-spawn": "^6.0.2",
|
||||
"@types/degit": "^2.8.3",
|
||||
"@types/prompts": "^2.0.9",
|
||||
@ -99,5 +99,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -2,7 +2,7 @@ const craTemplates = {
|
||||
'cra/default-js': {
|
||||
name: 'Create React App (Javascript)',
|
||||
script: 'npx create-react-app .',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
// TODO: change this to @storybook/cra once that package is created
|
||||
framework: '@storybook/react-webpack5',
|
||||
@ -29,7 +29,7 @@ const nextjsTemplates = {
|
||||
'nextjs/default-js': {
|
||||
name: 'Next.js (JavaScript)',
|
||||
script: 'npx create-next-app {{beforeDir}}',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/nextjs',
|
||||
renderer: '@storybook/react',
|
||||
@ -52,7 +52,7 @@ const reactViteTemplates = {
|
||||
'react-vite/default-js': {
|
||||
name: 'React Vite (JS)',
|
||||
script: 'yarn create vite . --template react',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/react-vite',
|
||||
renderer: '@storybook/react',
|
||||
@ -75,7 +75,7 @@ const reactWebpackTemplates = {
|
||||
'react-webpack/18-ts': {
|
||||
name: 'React Webpack5 (TS)',
|
||||
script: 'yarn create webpack5-react .',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/react-webpack5',
|
||||
renderer: '@storybook/react',
|
||||
@ -85,7 +85,7 @@ const reactWebpackTemplates = {
|
||||
'react-webpack/17-ts': {
|
||||
name: 'React Webpack5 (TS)',
|
||||
script: 'yarn create webpack5-react . --version-react="17" --version-react-dom="17"',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/react-webpack5',
|
||||
renderer: '@storybook/react',
|
||||
@ -98,7 +98,7 @@ const vue3ViteTemplates = {
|
||||
'vue3-vite/default-js': {
|
||||
name: 'Vue3 Vite (JS)',
|
||||
script: 'yarn create vite . --template vue',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/vue3-vite',
|
||||
renderer: '@storybook/vue3',
|
||||
@ -125,7 +125,7 @@ const vue2ViteTemplates = {
|
||||
// preferring community bootstrap scripts / generators instead.
|
||||
script:
|
||||
'yarn create vite . --template vanilla && yarn add --dev @vitejs/plugin-vue2 vue-template-compiler vue@2 && echo "import vue2 from \'@vitejs/plugin-vue2\';\n\nexport default {\n\tplugins: [vue2()]\n};" > vite.config.js',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
// Re-enable once https://github.com/storybookjs/storybook/issues/19351 is fixed.
|
||||
skipTasks: ['smoke-test'],
|
||||
expected: {
|
||||
@ -140,7 +140,7 @@ const htmlWebpackTemplates = {
|
||||
'html-webpack/default': {
|
||||
name: 'HTML Webpack5',
|
||||
script: 'yarn create webpack5-html .',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/html-webpack5',
|
||||
renderer: '@storybook/html',
|
||||
@ -153,7 +153,7 @@ const svelteViteTemplates = {
|
||||
'svelte-vite/default-js': {
|
||||
name: 'Svelte Vite (JS)',
|
||||
script: 'yarn create vite . --template svelte',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/svelte-vite',
|
||||
renderer: '@storybook/svelte',
|
||||
@ -190,7 +190,7 @@ const angularCliTemplates = {
|
||||
name: 'Angular CLI (Version 13)',
|
||||
script:
|
||||
'npx -p @angular/cli@13 ng new angular-v13 --directory . --routing=true --minimal=true --style=scss --strict --skip-git --skip-install --package-manager=yarn',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/angular',
|
||||
renderer: '@storybook/angular',
|
||||
@ -204,7 +204,7 @@ const svelteKitTemplates = {
|
||||
name: 'Svelte Kit (JS)',
|
||||
script:
|
||||
'yarn create svelte-with-args --name=svelte-kit/skeleton-js --directory=. --template=skeleton --types=null --no-prettier --no-eslint --no-playwright',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/svelte-vite',
|
||||
renderer: '@storybook/svelte',
|
||||
@ -228,7 +228,7 @@ const litViteTemplates = {
|
||||
'lit-vite/default-js': {
|
||||
name: 'Lit Vite (JS)',
|
||||
script: 'yarn create vite . --template lit',
|
||||
cadence: ['ci', 'daily', 'weekly'] as any,
|
||||
cadence: ['daily', 'weekly'] as any,
|
||||
// Re-enable once https://github.com/storybookjs/storybook/issues/19351 is fixed.
|
||||
skipTasks: ['smoke-test'],
|
||||
expected: {
|
||||
@ -255,7 +255,7 @@ const vueCliTemplates = {
|
||||
'vue-cli/default-js': {
|
||||
name: 'Vue-CLI (Default JS)',
|
||||
script: 'npx -p @vue/cli vue create . --default --packageManager=yarn --force --merge',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
skipTasks: [
|
||||
// Re-enable once https://github.com/storybookjs/storybook/issues/19351 is fixed.
|
||||
'smoke-test',
|
||||
@ -291,7 +291,7 @@ const preactWebpackTemplates = {
|
||||
'preact-webpack5/default-js': {
|
||||
name: 'Preact CLI (Default JS)',
|
||||
script: 'npx preact-cli create default {{beforeDir}} --name preact-app --yarn --no-install',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/preact-webpack5',
|
||||
renderer: '@storybook/preact',
|
||||
@ -301,7 +301,7 @@ const preactWebpackTemplates = {
|
||||
'preact-webpack5/default-ts': {
|
||||
name: 'Preact CLI (Default TS)',
|
||||
script: 'npx preact-cli create typescript {{beforeDir}} --name preact-app --yarn --no-install',
|
||||
cadence: ['ci', 'daily', 'weekly'],
|
||||
cadence: ['daily', 'weekly'],
|
||||
expected: {
|
||||
framework: '@storybook/preact-webpack5',
|
||||
renderer: '@storybook/preact',
|
||||
|
@ -1,85 +1,85 @@
|
||||
// auto generated file, do not edit
|
||||
export default {
|
||||
'@storybook/addon-a11y': '7.0.0-alpha.43',
|
||||
'@storybook/addon-actions': '7.0.0-alpha.43',
|
||||
'@storybook/addon-backgrounds': '7.0.0-alpha.43',
|
||||
'@storybook/addon-controls': '7.0.0-alpha.43',
|
||||
'@storybook/addon-docs': '7.0.0-alpha.43',
|
||||
'@storybook/addon-essentials': '7.0.0-alpha.43',
|
||||
'@storybook/addon-highlight': '7.0.0-alpha.43',
|
||||
'@storybook/addon-interactions': '7.0.0-alpha.43',
|
||||
'@storybook/addon-jest': '7.0.0-alpha.43',
|
||||
'@storybook/addon-links': '7.0.0-alpha.43',
|
||||
'@storybook/addon-measure': '7.0.0-alpha.43',
|
||||
'@storybook/addon-outline': '7.0.0-alpha.43',
|
||||
'@storybook/addon-storyshots': '7.0.0-alpha.43',
|
||||
'@storybook/addon-storyshots-puppeteer': '7.0.0-alpha.43',
|
||||
'@storybook/addon-storysource': '7.0.0-alpha.43',
|
||||
'@storybook/addon-toolbars': '7.0.0-alpha.43',
|
||||
'@storybook/addon-viewport': '7.0.0-alpha.43',
|
||||
'@storybook/addons': '7.0.0-alpha.43',
|
||||
'@storybook/angular': '7.0.0-alpha.43',
|
||||
'@storybook/api': '7.0.0-alpha.43',
|
||||
'@storybook/blocks': '7.0.0-alpha.43',
|
||||
'@storybook/builder-manager': '7.0.0-alpha.43',
|
||||
'@storybook/builder-vite': '7.0.0-alpha.43',
|
||||
'@storybook/builder-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/channel-postmessage': '7.0.0-alpha.43',
|
||||
'@storybook/channel-websocket': '7.0.0-alpha.43',
|
||||
'@storybook/channels': '7.0.0-alpha.43',
|
||||
'@storybook/cli': '7.0.0-alpha.43',
|
||||
'@storybook/client-api': '7.0.0-alpha.43',
|
||||
'@storybook/client-logger': '7.0.0-alpha.43',
|
||||
'@storybook/codemod': '7.0.0-alpha.43',
|
||||
'@storybook/components': '7.0.0-alpha.43',
|
||||
'@storybook/core-client': '7.0.0-alpha.43',
|
||||
'@storybook/core-common': '7.0.0-alpha.43',
|
||||
'@storybook/core-events': '7.0.0-alpha.43',
|
||||
'@storybook/core-server': '7.0.0-alpha.43',
|
||||
'@storybook/core-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/csf-tools': '7.0.0-alpha.43',
|
||||
'@storybook/docs-tools': '7.0.0-alpha.43',
|
||||
'@storybook/ember': '7.0.0-alpha.43',
|
||||
'@storybook/html': '7.0.0-alpha.43',
|
||||
'@storybook/html-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/instrumenter': '7.0.0-alpha.43',
|
||||
'@storybook/nextjs': '7.0.0-alpha.43',
|
||||
'@storybook/node-logger': '7.0.0-alpha.43',
|
||||
'@storybook/postinstall': '7.0.0-alpha.43',
|
||||
'@storybook/preact': '7.0.0-alpha.43',
|
||||
'@storybook/preact-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/preset-html-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-preact-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-react-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-server-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-svelte-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-vue-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-vue3-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preset-web-components-webpack': '7.0.0-alpha.43',
|
||||
'@storybook/preview-web': '7.0.0-alpha.43',
|
||||
'@storybook/react': '7.0.0-alpha.43',
|
||||
'@storybook/react-vite': '7.0.0-alpha.43',
|
||||
'@storybook/react-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/router': '7.0.0-alpha.43',
|
||||
'@storybook/server': '7.0.0-alpha.43',
|
||||
'@storybook/server-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/source-loader': '7.0.0-alpha.43',
|
||||
'@storybook/store': '7.0.0-alpha.43',
|
||||
'@storybook/svelte': '7.0.0-alpha.43',
|
||||
'@storybook/svelte-vite': '7.0.0-alpha.43',
|
||||
'@storybook/svelte-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/telemetry': '7.0.0-alpha.43',
|
||||
'@storybook/theming': '7.0.0-alpha.43',
|
||||
'@storybook/manager': '7.0.0-alpha.43',
|
||||
'@storybook/vue': '7.0.0-alpha.43',
|
||||
'@storybook/vue-vite': '7.0.0-alpha.43',
|
||||
'@storybook/vue-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/vue3': '7.0.0-alpha.43',
|
||||
'@storybook/vue3-vite': '7.0.0-alpha.43',
|
||||
'@storybook/vue3-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/web-components': '7.0.0-alpha.43',
|
||||
'@storybook/web-components-webpack5': '7.0.0-alpha.43',
|
||||
'@storybook/web-components-vite': '7.0.0-alpha.43',
|
||||
sb: '7.0.0-alpha.43',
|
||||
storybook: '7.0.0-alpha.43',
|
||||
'@storybook/addon-a11y': '7.0.0-alpha.45',
|
||||
'@storybook/addon-actions': '7.0.0-alpha.45',
|
||||
'@storybook/addon-backgrounds': '7.0.0-alpha.45',
|
||||
'@storybook/addon-controls': '7.0.0-alpha.45',
|
||||
'@storybook/addon-docs': '7.0.0-alpha.45',
|
||||
'@storybook/addon-essentials': '7.0.0-alpha.45',
|
||||
'@storybook/addon-highlight': '7.0.0-alpha.45',
|
||||
'@storybook/addon-interactions': '7.0.0-alpha.45',
|
||||
'@storybook/addon-jest': '7.0.0-alpha.45',
|
||||
'@storybook/addon-links': '7.0.0-alpha.45',
|
||||
'@storybook/addon-measure': '7.0.0-alpha.45',
|
||||
'@storybook/addon-outline': '7.0.0-alpha.45',
|
||||
'@storybook/addon-storyshots': '7.0.0-alpha.45',
|
||||
'@storybook/addon-storyshots-puppeteer': '7.0.0-alpha.45',
|
||||
'@storybook/addon-storysource': '7.0.0-alpha.45',
|
||||
'@storybook/addon-toolbars': '7.0.0-alpha.45',
|
||||
'@storybook/addon-viewport': '7.0.0-alpha.45',
|
||||
'@storybook/addons': '7.0.0-alpha.45',
|
||||
'@storybook/angular': '7.0.0-alpha.45',
|
||||
'@storybook/api': '7.0.0-alpha.45',
|
||||
'@storybook/blocks': '7.0.0-alpha.45',
|
||||
'@storybook/builder-manager': '7.0.0-alpha.45',
|
||||
'@storybook/builder-vite': '7.0.0-alpha.45',
|
||||
'@storybook/builder-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/channel-postmessage': '7.0.0-alpha.45',
|
||||
'@storybook/channel-websocket': '7.0.0-alpha.45',
|
||||
'@storybook/channels': '7.0.0-alpha.45',
|
||||
'@storybook/cli': '7.0.0-alpha.45',
|
||||
'@storybook/client-api': '7.0.0-alpha.45',
|
||||
'@storybook/client-logger': '7.0.0-alpha.45',
|
||||
'@storybook/codemod': '7.0.0-alpha.45',
|
||||
'@storybook/components': '7.0.0-alpha.45',
|
||||
'@storybook/core-client': '7.0.0-alpha.45',
|
||||
'@storybook/core-common': '7.0.0-alpha.45',
|
||||
'@storybook/core-events': '7.0.0-alpha.45',
|
||||
'@storybook/core-server': '7.0.0-alpha.45',
|
||||
'@storybook/core-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/csf-tools': '7.0.0-alpha.45',
|
||||
'@storybook/docs-tools': '7.0.0-alpha.45',
|
||||
'@storybook/ember': '7.0.0-alpha.45',
|
||||
'@storybook/html': '7.0.0-alpha.45',
|
||||
'@storybook/html-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/instrumenter': '7.0.0-alpha.45',
|
||||
'@storybook/nextjs': '7.0.0-alpha.45',
|
||||
'@storybook/node-logger': '7.0.0-alpha.45',
|
||||
'@storybook/postinstall': '7.0.0-alpha.45',
|
||||
'@storybook/preact': '7.0.0-alpha.45',
|
||||
'@storybook/preact-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/preset-html-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-preact-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-react-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-server-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-svelte-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-vue-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-vue3-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preset-web-components-webpack': '7.0.0-alpha.45',
|
||||
'@storybook/preview-web': '7.0.0-alpha.45',
|
||||
'@storybook/react': '7.0.0-alpha.45',
|
||||
'@storybook/react-vite': '7.0.0-alpha.45',
|
||||
'@storybook/react-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/router': '7.0.0-alpha.45',
|
||||
'@storybook/server': '7.0.0-alpha.45',
|
||||
'@storybook/server-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/source-loader': '7.0.0-alpha.45',
|
||||
'@storybook/store': '7.0.0-alpha.45',
|
||||
'@storybook/svelte': '7.0.0-alpha.45',
|
||||
'@storybook/svelte-vite': '7.0.0-alpha.45',
|
||||
'@storybook/svelte-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/telemetry': '7.0.0-alpha.45',
|
||||
'@storybook/theming': '7.0.0-alpha.45',
|
||||
'@storybook/manager': '7.0.0-alpha.45',
|
||||
'@storybook/vue': '7.0.0-alpha.45',
|
||||
'@storybook/vue-vite': '7.0.0-alpha.45',
|
||||
'@storybook/vue-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/vue3': '7.0.0-alpha.45',
|
||||
'@storybook/vue3-vite': '7.0.0-alpha.45',
|
||||
'@storybook/vue3-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/web-components': '7.0.0-alpha.45',
|
||||
'@storybook/web-components-webpack5': '7.0.0-alpha.45',
|
||||
'@storybook/web-components-vite': '7.0.0-alpha.45',
|
||||
sb: '7.0.0-alpha.45',
|
||||
storybook: '7.0.0-alpha.45',
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/client-api",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook Client API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,11 +42,11 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/qs": "^6.9.5",
|
||||
"@types/webpack-env": "^1.16.4",
|
||||
"global": "^4.4.0",
|
||||
@ -56,7 +56,7 @@
|
||||
"util-deprecate": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"typescript": "~4.6.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
@ -71,5 +71,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/client-logger",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -55,5 +55,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/codemod",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "A collection of codemod scripts written with JSCodeshift",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -39,9 +39,9 @@
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.12.11",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"cross-spawn": "^7.0.3",
|
||||
"globby": "^11.0.2",
|
||||
"jscodeshift": "^0.13.1",
|
||||
@ -64,5 +64,5 @@
|
||||
"./src/index.js"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/core-client",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook framework-agnostic API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -35,20 +35,18 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-api": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"@storybook/channel-websocket": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-api": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/manager": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"regenerator-runtime": "^0.13.7",
|
||||
"util-deprecate": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -67,5 +65,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1 +0,0 @@
|
||||
import 'regenerator-runtime/runtime';
|
@ -1 +1,5 @@
|
||||
export * from './preview';
|
||||
import { ClientApi } from '@storybook/client-api';
|
||||
import { StoryStore } from '@storybook/store';
|
||||
import { start } from './start';
|
||||
|
||||
export { start, ClientApi, StoryStore };
|
||||
|
@ -1,13 +0,0 @@
|
||||
import global from 'global';
|
||||
import { renderStorybookUI } from '@storybook/manager';
|
||||
|
||||
import Provider from './provider';
|
||||
|
||||
const { document } = global;
|
||||
|
||||
// We need to wait a promise "tick" to allow all subsequent addons etc to execute
|
||||
// (alternatively, we could ensure this entry point is always loaded last)
|
||||
Promise.resolve().then(() => {
|
||||
const rootEl = document.getElementById('root');
|
||||
renderStorybookUI(rootEl, new Provider());
|
||||
});
|
@ -1,48 +0,0 @@
|
||||
import global from 'global';
|
||||
import { Provider } from '@storybook/manager';
|
||||
import { Channel } from '@storybook/channels';
|
||||
import type { Addon_Types, Addon_Config } from '@storybook/types';
|
||||
import { addons, AddonStore } from '@storybook/addons';
|
||||
import * as postMessage from '@storybook/channel-postmessage';
|
||||
import * as webSocket from '@storybook/channel-websocket';
|
||||
import { CHANNEL_CREATED } from '@storybook/core-events';
|
||||
|
||||
const { FEATURES, SERVER_CHANNEL_URL } = global;
|
||||
|
||||
export default class ReactProvider extends Provider {
|
||||
private addons: AddonStore;
|
||||
|
||||
private channel: Channel;
|
||||
|
||||
private serverChannel?: Channel;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
const channel = postMessage.createChannel({ page: 'manager' });
|
||||
|
||||
addons.setChannel(channel);
|
||||
channel.emit(CHANNEL_CREATED);
|
||||
|
||||
this.addons = addons;
|
||||
this.channel = channel;
|
||||
|
||||
if (FEATURES?.storyStoreV7 && SERVER_CHANNEL_URL) {
|
||||
const serverChannel = webSocket.createChannel({ url: SERVER_CHANNEL_URL });
|
||||
this.serverChannel = serverChannel;
|
||||
addons.setServerChannel(this.serverChannel);
|
||||
}
|
||||
}
|
||||
|
||||
getElements(type: Addon_Types) {
|
||||
return this.addons.getElements(type);
|
||||
}
|
||||
|
||||
getConfig(): Addon_Config {
|
||||
return this.addons.getConfig();
|
||||
}
|
||||
|
||||
handleAPI(api: unknown) {
|
||||
this.addons.loadAddons(api);
|
||||
}
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
import { ClientApi } from '@storybook/client-api';
|
||||
import { StoryStore } from '@storybook/store';
|
||||
import { start } from './start';
|
||||
|
||||
export { start, ClientApi, StoryStore };
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/core-common",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook framework-agnostic API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -47,8 +47,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/babel__core": "^7.0.0",
|
||||
"@types/express": "^4.7.0",
|
||||
"@types/node": "^16.0.0",
|
||||
@ -97,5 +97,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/core-events",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Event names used in storybook core",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -52,5 +52,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/core-server",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook framework-agnostic API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -35,17 +35,17 @@
|
||||
"dependencies": {
|
||||
"@aw-web-design/x-default-browser": "1.4.88",
|
||||
"@discoveryjs/json-ext": "^0.5.3",
|
||||
"@storybook/builder-manager": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/builder-manager": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.43",
|
||||
"@storybook/csf-tools": "7.0.0-alpha.45",
|
||||
"@storybook/docs-mdx": "0.0.1-canary.12433cf.0",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/telemetry": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/telemetry": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"@types/node-fetch": "^2.5.7",
|
||||
"@types/pretty-hrtime": "^1.0.0",
|
||||
@ -77,7 +77,7 @@
|
||||
"ws": "^8.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.43",
|
||||
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
||||
"@types/compression": "^1.7.0",
|
||||
"@types/ip": "^1.1.0",
|
||||
"@types/serve-favicon": "^2.5.2",
|
||||
@ -103,5 +103,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/core-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook framework-agnostic API",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,9 +42,9 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"ts-dedent": "^2.0.0"
|
||||
},
|
||||
@ -61,5 +61,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/csf-tools",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -47,7 +47,7 @@
|
||||
"@babel/traverse": "^7.12.11",
|
||||
"@babel/types": "^7.12.11",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"fs-extra": "^9.0.1",
|
||||
"ts-dedent": "^2.0.0"
|
||||
},
|
||||
@ -64,5 +64,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/docs-tools",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Shared utility functions for frameworks to implement docs",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -43,9 +43,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"doctrine": "^3.0.0",
|
||||
"lodash": "^4.17.21"
|
||||
},
|
||||
@ -62,5 +62,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/instrumenter",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,10 +42,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"core-js": "^3.8.2",
|
||||
"global": "^4.4.0"
|
||||
},
|
||||
@ -60,5 +60,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/node-logger",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -59,5 +59,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/postinstall",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook addons postinstall utilities",
|
||||
"keywords": [
|
||||
"api",
|
||||
@ -56,5 +56,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preview-web",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -34,12 +34,12 @@
|
||||
"prep": "node ../../../scripts/prepare.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/channels": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/channels": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"ansi-to-html": "^0.6.11",
|
||||
"global": "^4.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
@ -49,7 +49,7 @@
|
||||
"util-deprecate": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.43",
|
||||
"@storybook/channel-postmessage": "7.0.0-alpha.45",
|
||||
"react": "16.14.0",
|
||||
"ts-jest": "^28.0.8",
|
||||
"typescript": "~4.6.3"
|
||||
@ -57,5 +57,5 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/router",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Core Storybook Router",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -47,7 +47,7 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"memoizerific": "^1.11.3",
|
||||
"qs": "^6.10.0"
|
||||
},
|
||||
@ -74,5 +74,5 @@
|
||||
"./src/utils.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/source-loader",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Source loader",
|
||||
"keywords": [
|
||||
"lib",
|
||||
@ -44,7 +44,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"estraverse": "^5.2.0",
|
||||
"lodash": "^4.17.21",
|
||||
"prettier": ">=2.2.1 <=2.3.0"
|
||||
@ -66,5 +66,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/store",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,11 +42,11 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-events": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-events": "7.0.0-alpha.45",
|
||||
"@storybook/csf": "next",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"dequal": "^2.0.2",
|
||||
"global": "^4.4.0",
|
||||
"lodash": "^4.17.21",
|
||||
@ -72,5 +72,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/telemetry",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Telemetry logging for crash reports and usage statistics",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -42,8 +42,8 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-common": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-common": "7.0.0-alpha.45",
|
||||
"chalk": "^4.1.0",
|
||||
"detect-package-manager": "^2.0.1",
|
||||
"fetch-retry": "^5.0.2",
|
||||
@ -64,5 +64,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/theming",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Core Storybook Components",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -48,7 +48,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"memoizerific": "^1.11.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -79,5 +79,5 @@
|
||||
],
|
||||
"post": "./scripts/fix-theme-type-export.ts"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/types",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Core Storybook Types",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -60,5 +60,5 @@
|
||||
"./src/index.ts"
|
||||
]
|
||||
},
|
||||
"gitHead": "8f6d8629f1ad7e776c39e2c7621f4a0d538aa93c"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/root",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"private": true,
|
||||
"description": "Storybook is an open source tool for developing UI components in isolation for React, Vue and Angular. It makes building stunning UIs organized and efficient.",
|
||||
"keywords": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-html-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,7 +50,7 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"html-loader": "^3.1.0",
|
||||
"react": "16.14.0",
|
||||
@ -75,5 +75,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-preact-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Preact: Develop Preact Component in isolation.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,7 +51,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/plugin-transform-react-jsx": "^7.12.12",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0"
|
||||
@ -76,5 +76,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-react-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -74,10 +74,10 @@
|
||||
"@babel/preset-flow": "^7.12.1",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/react": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"@storybook/react": "7.0.0-alpha.45",
|
||||
"@storybook/react-docgen-typescript-plugin": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0",
|
||||
"@types/node": "^16.0.0",
|
||||
"@types/semver": "^7.3.4",
|
||||
@ -123,5 +123,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-server-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -55,9 +55,9 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-server": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/server": "7.0.0-alpha.43",
|
||||
"@storybook/core-server": "7.0.0-alpha.45",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/server": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"global": "^4.4.0",
|
||||
"react": "16.14.0",
|
||||
@ -85,5 +85,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-svelte-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Svelte: Develop Svelte Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -65,8 +65,8 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/node-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/node-logger": "7.0.0-alpha.45",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
"sveltedoc-parser": "^4.2.1",
|
||||
@ -97,5 +97,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-vue-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue: Develop Vue Component in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -60,8 +60,8 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
@ -99,5 +99,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-vue3-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -60,8 +60,8 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
@ -96,5 +96,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preset-web-components-webpack",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook for web-components: View web components snippets in isolation with Hot Reloading.",
|
||||
"keywords": [
|
||||
"lit-html",
|
||||
@ -55,7 +55,7 @@
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.43",
|
||||
"@storybook/core-webpack": "7.0.0-alpha.45",
|
||||
"@types/node": "^16.0.0",
|
||||
"babel-loader": "^7.0.0 || ^8.0.0",
|
||||
"babel-plugin-bundled-import-meta": "^0.3.1",
|
||||
@ -81,5 +81,5 @@
|
||||
],
|
||||
"platform": "node"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/html",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook HTML renderer",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,12 +50,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/preview-web": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/preview-web": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
@ -80,5 +80,5 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/preact",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook Preact renderer",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -50,10 +50,10 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"global": "^4.4.0",
|
||||
"react": "16.14.0",
|
||||
"react-dom": "16.14.0",
|
||||
@ -79,5 +79,5 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@storybook/react",
|
||||
"version": "7.0.0-alpha.43",
|
||||
"version": "7.0.0-alpha.45",
|
||||
"description": "Storybook React renderer",
|
||||
"keywords": [
|
||||
"storybook"
|
||||
@ -51,12 +51,12 @@
|
||||
"prep": "../../../scripts/prepare/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@storybook/addons": "7.0.0-alpha.43",
|
||||
"@storybook/client-logger": "7.0.0-alpha.43",
|
||||
"@storybook/core-client": "7.0.0-alpha.43",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.43",
|
||||
"@storybook/store": "7.0.0-alpha.43",
|
||||
"@storybook/types": "7.0.0-alpha.43",
|
||||
"@storybook/addons": "7.0.0-alpha.45",
|
||||
"@storybook/client-logger": "7.0.0-alpha.45",
|
||||
"@storybook/core-client": "7.0.0-alpha.45",
|
||||
"@storybook/docs-tools": "7.0.0-alpha.45",
|
||||
"@storybook/store": "7.0.0-alpha.45",
|
||||
"@storybook/types": "7.0.0-alpha.45",
|
||||
"@types/estree": "^0.0.51",
|
||||
"@types/node": "^16.0.0",
|
||||
"acorn": "^7.4.1",
|
||||
@ -103,5 +103,5 @@
|
||||
],
|
||||
"platform": "browser"
|
||||
},
|
||||
"gitHead": "f801c26f7bdcbfeeeca6706c0854d130bfb2f38b"
|
||||
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user