@storybook/ember 7.0.0-alpha.43 → 7.0.0-alpha.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/src/client/preview/index.d.ts +2 -2
- package/dist/types/src/client/preview/render.d.ts +2 -2
- package/dist/types/src/client/preview/types.d.ts +1 -1
- package/dist/types/src/preset.d.ts +1 -1
- package/dist/types/src/server/framework-preset-babel-ember.d.ts +1 -1
- package/dist/types/src/server/framework-preset-ember-docs.d.ts +1 -1
- package/package.json +8 -7
@@ -1,6 +1,6 @@
|
|
1
1
|
import './globals';
|
2
2
|
declare const forceReRender: () => void;
|
3
|
-
export declare const raw: ((...args: any[]) => never) | (() => import("lib/
|
4
|
-
export declare const storiesOf: (kind: string, m: any) => import("lib/
|
3
|
+
export declare const raw: ((...args: any[]) => never) | (() => import("lib/types/dist").Store_BoundStory<import("./types").EmberFramework>[]);
|
4
|
+
export declare const storiesOf: (kind: string, m: any) => import("lib/types/dist").Addon_StoryApi<import("./types").OptionsArgs>;
|
5
5
|
export declare const configure: (loadable: any, m: any) => any;
|
6
6
|
export { forceReRender };
|
@@ -1,3 +1,3 @@
|
|
1
|
-
import type {
|
1
|
+
import type { Store_RenderContext } from '@storybook/types';
|
2
2
|
import { EmberFramework } from './types';
|
3
|
-
export declare function renderToDOM({ storyFn, kind, name, showMain, showError }:
|
3
|
+
export declare function renderToDOM({ storyFn, kind, name, showMain, showError }: Store_RenderContext<EmberFramework>, domElement: Element): void;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { PresetProperty } from '@storybook/
|
1
|
+
import type { PresetProperty } from '@storybook/types';
|
2
2
|
import type { StorybookConfig } from './types';
|
3
3
|
export declare const addons: PresetProperty<'addons', StorybookConfig>;
|
4
4
|
export declare const core: PresetProperty<'core', StorybookConfig>;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import type { TransformOptions } from '@babel/core';
|
2
|
-
import type { StorybookConfig, Options } from '@storybook/
|
2
|
+
import type { StorybookConfig, Options } from '@storybook/types';
|
3
3
|
export declare function babel(config: TransformOptions, options: Options): TransformOptions;
|
4
4
|
export declare const previewAnnotations: StorybookConfig['previewAnnotations'];
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import type { StorybookConfig } from '@storybook/
|
1
|
+
import type { StorybookConfig } from '@storybook/types';
|
2
2
|
export declare const previewAnnotations: StorybookConfig['previewAnnotations'];
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/ember",
|
3
|
-
"version": "7.0.0-alpha.
|
3
|
+
"version": "7.0.0-alpha.45",
|
4
4
|
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
|
5
5
|
"homepage": "https://github.com/storybookjs/storybook/tree/main/frameworks/ember",
|
6
6
|
"bugs": {
|
@@ -30,11 +30,12 @@
|
|
30
30
|
"prep": "node ../../../scripts/prepare.js"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@storybook/builder-webpack5": "7.0.0-alpha.
|
34
|
-
"@storybook/core-client": "7.0.0-alpha.
|
35
|
-
"@storybook/core-common": "7.0.0-alpha.
|
36
|
-
"@storybook/docs-tools": "7.0.0-alpha.
|
37
|
-
"@storybook/store": "7.0.0-alpha.
|
33
|
+
"@storybook/builder-webpack5": "7.0.0-alpha.45",
|
34
|
+
"@storybook/core-client": "7.0.0-alpha.45",
|
35
|
+
"@storybook/core-common": "7.0.0-alpha.45",
|
36
|
+
"@storybook/docs-tools": "7.0.0-alpha.45",
|
37
|
+
"@storybook/store": "7.0.0-alpha.45",
|
38
|
+
"@storybook/types": "7.0.0-alpha.45",
|
38
39
|
"global": "^4.4.0",
|
39
40
|
"react": "16.14.0",
|
40
41
|
"react-dom": "16.14.0",
|
@@ -58,5 +59,5 @@
|
|
58
59
|
"publishConfig": {
|
59
60
|
"access": "public"
|
60
61
|
},
|
61
|
-
"gitHead": "
|
62
|
+
"gitHead": "3ef14366115c56c1d45c0359ff681cc47ed50532"
|
62
63
|
}
|