@storybook/angular 9.0.0-alpha.1 → 9.0.0-alpha.3

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.
@@ -7,6 +7,6 @@ export declare const checkValidComponentOrDirective: (component: Component | Dir
7
7
  export declare const checkValidCompodocJson: (compodocJson: CompodocJson) => void;
8
8
  export declare const findComponentByName: (name: string, compodocJson: CompodocJson) => Class | Injectable | Pipe | Directive | undefined;
9
9
  export declare const extractType: (property: Property, defaultValue: any) => SBType;
10
- export declare const extractArgTypesFromData: (componentData: Class | Directive | Injectable | Pipe) => ArgTypes<import("@storybook/core/csf").Args>;
11
- export declare const extractArgTypes: (component: Component | Directive) => ArgTypes<import("@storybook/core/csf").Args> | null | undefined;
10
+ export declare const extractArgTypesFromData: (componentData: Class | Directive | Injectable | Pipe) => ArgTypes<import("storybook/internal/csf").Args>;
11
+ export declare const extractArgTypes: (component: Component | Directive) => ArgTypes<import("storybook/internal/csf").Args> | null | undefined;
12
12
  export declare const extractComponentDescription: (component: Component | Directive) => string | null | undefined;
@@ -7,4 +7,4 @@ export declare const skipSourceRender: (context: StoryContext) => any;
7
7
  * @param storyFn Fn
8
8
  * @param context StoryContext
9
9
  */
10
- export declare const sourceDecorator: (storyFn: PartialStoryFn<AngularRenderer>, context: StoryContext) => import("../types").StoryFnAngularReturnType;
10
+ export declare const sourceDecorator: (storyFn: PartialStoryFn<AngularRenderer>, context: StoryContext) => import("..").IStory;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/angular",
3
- "version": "9.0.0-alpha.1",
3
+ "version": "9.0.0-alpha.3",
4
4
  "description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
5
5
  "keywords": [
6
6
  "storybook",
@@ -53,13 +53,9 @@
53
53
  "prep": "rimraf dist && jiti ../../../scripts/prepare/tsc.ts"
54
54
  },
55
55
  "dependencies": {
56
- "@storybook/builder-webpack5": "9.0.0-alpha.1",
57
- "@storybook/components": "9.0.0-alpha.1",
58
- "@storybook/core-webpack": "9.0.0-alpha.1",
56
+ "@storybook/builder-webpack5": "9.0.0-alpha.3",
57
+ "@storybook/core-webpack": "9.0.0-alpha.3",
59
58
  "@storybook/global": "^5.0.0",
60
- "@storybook/manager-api": "9.0.0-alpha.1",
61
- "@storybook/preview-api": "9.0.0-alpha.1",
62
- "@storybook/theming": "9.0.0-alpha.1",
63
59
  "@types/react": "^18.0.37",
64
60
  "@types/react-dom": "^18.0.11",
65
61
  "@types/semver": "^7.3.4",
@@ -111,8 +107,8 @@
111
107
  "@angular/platform-browser": ">=15.0.0 < 20.0.0",
112
108
  "@angular/platform-browser-dynamic": ">=15.0.0 < 20.0.0",
113
109
  "rxjs": "^6.0.0 || ^7.4.0",
114
- "storybook": "^9.0.0-alpha.1",
115
- "typescript": "^4.0.0 || ^5.0.0",
110
+ "storybook": "^9.0.0-alpha.3",
111
+ "typescript": "^4.9.0 || ^5.0.0",
116
112
  "zone.js": ">= 0.11.1 < 1.0.0"
117
113
  },
118
114
  "peerDependenciesMeta": {
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from '@storybook/angular';
2
- import { fn } from '@storybook/test';
2
+ import { fn } from 'storybook/test';
3
3
 
4
4
  import { ButtonComponent } from './button.component';
5
5
 
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from '@storybook/angular';
2
- import { fn } from '@storybook/test';
2
+ import { fn } from 'storybook/test';
3
3
 
4
4
  import { HeaderComponent } from './header.component';
5
5
 
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from '@storybook/angular';
2
- import { expect, userEvent, within } from '@storybook/test';
2
+ import { expect, userEvent, within } from 'storybook/test';
3
3
 
4
4
  import { PageComponent } from './page.component';
5
5