@storybook/angular 7.0.0-alpha.37 → 7.0.0-alpha.38

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.
@@ -40,7 +40,7 @@ const cleanArgsDecorator = (storyFn, context) => {
40
40
  context.args = Object.entries(argsToClean).reduce((obj, [key, arg]) => {
41
41
  const argType = context.argTypes[key];
42
42
  // Only keeps args with a control or an action in argTypes
43
- if (argType.action || argType.control) {
43
+ if (argType?.action || argType?.control) {
44
44
  return { ...obj, [key]: arg };
45
45
  }
46
46
  return obj;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/angular",
3
- "version": "7.0.0-alpha.37",
3
+ "version": "7.0.0-alpha.38",
4
4
  "description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
5
5
  "keywords": [
6
6
  "storybook",
@@ -34,19 +34,19 @@
34
34
  "prep": "node ../../../scripts/prepare.js"
35
35
  },
36
36
  "dependencies": {
37
- "@storybook/addons": "7.0.0-alpha.37",
38
- "@storybook/api": "7.0.0-alpha.37",
39
- "@storybook/builder-webpack5": "7.0.0-alpha.37",
40
- "@storybook/client-logger": "7.0.0-alpha.37",
41
- "@storybook/core-client": "7.0.0-alpha.37",
42
- "@storybook/core-common": "7.0.0-alpha.37",
43
- "@storybook/core-events": "7.0.0-alpha.37",
44
- "@storybook/core-server": "7.0.0-alpha.37",
37
+ "@storybook/addons": "7.0.0-alpha.38",
38
+ "@storybook/api": "7.0.0-alpha.38",
39
+ "@storybook/builder-webpack5": "7.0.0-alpha.38",
40
+ "@storybook/client-logger": "7.0.0-alpha.38",
41
+ "@storybook/core-client": "7.0.0-alpha.38",
42
+ "@storybook/core-common": "7.0.0-alpha.38",
43
+ "@storybook/core-events": "7.0.0-alpha.38",
44
+ "@storybook/core-server": "7.0.0-alpha.38",
45
45
  "@storybook/csf": "0.0.2--canary.49.258942b.0",
46
- "@storybook/docs-tools": "7.0.0-alpha.37",
47
- "@storybook/node-logger": "7.0.0-alpha.37",
48
- "@storybook/store": "7.0.0-alpha.37",
49
- "@types/node": "^14.14.20 || ^16.0.0",
46
+ "@storybook/docs-tools": "7.0.0-alpha.38",
47
+ "@storybook/node-logger": "7.0.0-alpha.38",
48
+ "@storybook/store": "7.0.0-alpha.38",
49
+ "@types/node": "^16.0.0",
50
50
  "@types/react": "^16.14.23",
51
51
  "@types/react-dom": "^16.9.14",
52
52
  "@types/semver": "^7.3.4",
@@ -95,7 +95,8 @@
95
95
  "jest-specific-snapshot": "^5.0.0",
96
96
  "tmp": "^0.2.1",
97
97
  "typescript": "~4.6.3",
98
- "webpack": "5"
98
+ "webpack": "5",
99
+ "zone.js": "^0.11.0"
99
100
  },
100
101
  "peerDependencies": {
101
102
  "@angular-devkit/architect": ">=0.1300.0",
@@ -130,5 +131,5 @@
130
131
  "access": "public"
131
132
  },
132
133
  "builders": "dist/types/builders/builders.json",
133
- "gitHead": "82667a655108283aafc828427f00bb3590a334e5"
134
+ "gitHead": "438114fcf62a763f0e8c07e2c34890dd987ca431"
134
135
  }