@storybook/angular 10.6.0-alpha.6 → 10.6.0-alpha.8

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  config_exports
3
- } from "./chunk-ZPUBAGJU.js";
3
+ } from "./chunk-VRHTETWH.js";
4
4
  import {
5
5
  config_exports as config_exports2
6
6
  } from "./chunk-RV6FL7AO.js";
@@ -418,7 +418,7 @@ var EncodingMode;
418
418
  EncodingMode2[EncodingMode2.UTF8 = 0] = "UTF8", EncodingMode2[EncodingMode2.ASCII = 1] = "ASCII", EncodingMode2[EncodingMode2.Extensive = 2] = "Extensive", EncodingMode2[EncodingMode2.Attribute = 3] = "Attribute", EncodingMode2[EncodingMode2.Text = 4] = "Text";
419
419
  })(EncodingMode || (EncodingMode = {}));
420
420
 
421
- // ../../lib/angular-compodoc/dist/_browser-chunks/chunk-Q5BEVNMG.js
421
+ // ../../lib/angular-compodoc/dist/_browser-chunks/chunk-FMGKBLGO.js
422
422
  var NOOP_LOGGER = {
423
423
  warn: () => {
424
424
  },
@@ -493,7 +493,7 @@ var SECTION_ORDER = [
493
493
  componentFile
494
494
  );
495
495
  return typeAlias ? (seen.add(compodocType), resolveTypealias(typeAlias.rawtype, compodocJson, componentFile, seen)) : compodocType;
496
- }, isFunctionTypeString = (compodocType) => compodocType === "function" || /^\(.*\)\s*=>/.test(compodocType), extractType = (property, defaultValue, compodocJson, componentFile, modern = !1) => {
496
+ }, isFunctionTypeString = (compodocType) => compodocType === "function" || /^(new\s+)?(<.*>\s*)?\(.*\)\s*=>/.test(compodocType), extractType = (property, defaultValue, compodocJson, componentFile, modern = !1) => {
497
497
  let compodocType = property.type || extractTypeFromValue(defaultValue);
498
498
  switch (compodocType) {
499
499
  case "string":
@@ -659,16 +659,14 @@ import { logger } from "storybook/internal/client-logger";
659
659
  import { global as global2 } from "@storybook/global";
660
660
  var { FEATURES } = global2;
661
661
  var getCompodocJson = () => global2.__STORYBOOK_COMPODOC_JSON__;
662
- var unwrapHtml = (html) => new global2.DOMParser().parseFromString(html, "text/html").body.textContent ?? "", extractArgTypesFromData2 = (componentData) => extractArgTypesFromData(componentData, {
662
+ var unwrapHtml = (html) => new global2.DOMParser().parseFromString(html, "text/html").body.textContent ?? "", extractArgTypesFromData2 = (componentData, { filterNonInputControls = FEATURES.angularFilterNonInputControls } = {}) => extractArgTypesFromData(componentData, {
663
663
  compodocJson: getCompodocJson(),
664
- // Asserted rather than optional-chained: a preview without `FEATURES` is broken, and this has
665
- // always thrown there rather than silently reading the flag as `false`.
666
- filterNonInputControls: FEATURES.angularFilterNonInputControls,
664
+ filterNonInputControls,
667
665
  logger,
668
666
  unwrapHtml
669
- }), extractArgTypes = (component) => {
667
+ }), extractArgTypes = (component, options) => {
670
668
  let componentData = getComponentData(component, { compodocJson: getCompodocJson(), logger });
671
- return componentData && extractArgTypesFromData2(componentData);
669
+ return componentData && extractArgTypesFromData2(componentData, options);
672
670
  }, extractComponentDescription = (component) => {
673
671
  let componentData = getComponentData(component, { compodocJson: getCompodocJson(), logger });
674
672
  return componentData && (componentData.rawdescription || componentData.description);
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
@@ -12,6 +12,7 @@ var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
12
12
 
13
13
  // src/server/angular-cli-webpack.js
14
14
  import { createRequire } from "node:module";
15
+ import { getTsconfigPathsBaseDir } from "storybook/internal/common";
15
16
 
16
17
  // src/server/plugins/storybook-normalize-angular-entry-plugin.js
17
18
  var PLUGIN_NAME = "storybook-normalize-angular-entry-plugin", StorybookNormalizeAngularEntryPlugin = class {
@@ -145,6 +146,7 @@ var require2 = createRequire(import.meta.url), {
145
146
  plugins: [
146
147
  new TsconfigPathsPlugin({
147
148
  configFile: builderOptions.tsConfig,
149
+ ...builderOptions.tsConfig ? { baseUrl: getTsconfigPathsBaseDir(builderOptions.tsConfig) } : {},
148
150
  mainFields: ["browser", "module", "main"]
149
151
  })
150
152
  ]
@@ -1,17 +1,17 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
11
11
  // ------------------------------------------------------------
12
12
  import {
13
13
  up
14
- } from "./chunk-UNXAF6BE.js";
14
+ } from "./chunk-4MVTOOZA.js";
15
15
 
16
16
  // ../../../node_modules/empathic/package.mjs
17
17
  function up2(options) {
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
@@ -14,10 +14,10 @@ import {
14
14
  printErrorDetails,
15
15
  runCompodoc,
16
16
  up as up2
17
- } from "../../_node-chunks/chunk-LMHKUX55.js";
17
+ } from "../../_node-chunks/chunk-3KHH42WA.js";
18
18
  import {
19
19
  up
20
- } from "../../_node-chunks/chunk-UNXAF6BE.js";
20
+ } from "../../_node-chunks/chunk-4MVTOOZA.js";
21
21
 
22
22
  // src/builders/build-storybook/index.ts
23
23
  import { readFileSync } from "node:fs";
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
@@ -14,10 +14,10 @@ import {
14
14
  printErrorDetails,
15
15
  runCompodoc,
16
16
  up as up2
17
- } from "../../_node-chunks/chunk-LMHKUX55.js";
17
+ } from "../../_node-chunks/chunk-3KHH42WA.js";
18
18
  import {
19
19
  up
20
- } from "../../_node-chunks/chunk-UNXAF6BE.js";
20
+ } from "../../_node-chunks/chunk-4MVTOOZA.js";
21
21
 
22
22
  // src/builders/start-storybook/index.ts
23
23
  import { readFileSync } from "node:fs";
@@ -2,7 +2,7 @@ import {
2
2
  argTypesEnhancers,
3
3
  decorateStory,
4
4
  parameters
5
- } from "../_browser-chunks/chunk-ZPUBAGJU.js";
5
+ } from "../_browser-chunks/chunk-VRHTETWH.js";
6
6
  import {
7
7
  render,
8
8
  renderToCanvas
@@ -5,8 +5,8 @@ import {
5
5
  componentWrapperDecorator,
6
6
  moduleMetadata,
7
7
  setProjectAnnotations
8
- } from "../_browser-chunks/chunk-4JGENPWD.js";
9
- import "../_browser-chunks/chunk-ZPUBAGJU.js";
8
+ } from "../_browser-chunks/chunk-TDP52VBS.js";
9
+ import "../_browser-chunks/chunk-VRHTETWH.js";
10
10
  import "../_browser-chunks/chunk-RV6FL7AO.js";
11
11
  import "../_browser-chunks/chunk-FPQDYJYM.js";
12
12
  export {
package/dist/index.js CHANGED
@@ -5,8 +5,8 @@ import {
5
5
  componentWrapperDecorator,
6
6
  moduleMetadata,
7
7
  setProjectAnnotations
8
- } from "./_browser-chunks/chunk-4JGENPWD.js";
9
- import "./_browser-chunks/chunk-ZPUBAGJU.js";
8
+ } from "./_browser-chunks/chunk-TDP52VBS.js";
9
+ import "./_browser-chunks/chunk-VRHTETWH.js";
10
10
  import "./_browser-chunks/chunk-RV6FL7AO.js";
11
11
  import "./_browser-chunks/chunk-FPQDYJYM.js";
12
12
  export {
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
package/dist/preset.js CHANGED
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
@@ -1,17 +1,17 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
11
11
  // ------------------------------------------------------------
12
12
  import {
13
13
  up
14
- } from "../_node-chunks/chunk-UNXAF6BE.js";
14
+ } from "../_node-chunks/chunk-4MVTOOZA.js";
15
15
 
16
16
  // src/server/framework-preset-angular-cli.ts
17
17
  import { logger } from "storybook/internal/node-logger";
@@ -314,7 +314,7 @@ var delimiter = globalThis.process?.platform === "win32" ? ";" : ":", _platforms
314
314
  async function webpackFinal(baseConfig, options) {
315
315
  if (!resolvePackageDir("@angular-devkit/build-angular"))
316
316
  return logger.info('Using base config because "@angular-devkit/build-angular" is not installed'), baseConfig;
317
- let { WebpackDefinePlugin, WebpackIgnorePlugin } = await import("@storybook/builder-webpack5"), { getWebpackConfig: getCustomWebpackConfig } = await import("../_node-chunks/angular-cli-webpack-XYZ6XVTX.js");
317
+ let { WebpackDefinePlugin, WebpackIgnorePlugin } = await import("@storybook/builder-webpack5"), { getWebpackConfig: getCustomWebpackConfig } = await import("../_node-chunks/angular-cli-webpack-RRR7652P.js");
318
318
  checkForLegacyBuildOptions(options);
319
319
  let builderContext = getBuilderContext(options), builderOptions = await getBuilderOptions(options, builderContext), webpackConfig = await getCustomWebpackConfig(baseConfig, {
320
320
  builderOptions: {
@@ -1,10 +1,10 @@
1
- import CJS_COMPAT_NODE_URL_ka10qkhlmxh from 'node:url';
2
- import CJS_COMPAT_NODE_PATH_ka10qkhlmxh from 'node:path';
3
- import CJS_COMPAT_NODE_MODULE_ka10qkhlmxh from "node:module";
1
+ import CJS_COMPAT_NODE_URL_j4mw9rff3rm from 'node:url';
2
+ import CJS_COMPAT_NODE_PATH_j4mw9rff3rm from 'node:path';
3
+ import CJS_COMPAT_NODE_MODULE_j4mw9rff3rm from "node:module";
4
4
 
5
- var __filename = CJS_COMPAT_NODE_URL_ka10qkhlmxh.fileURLToPath(import.meta.url);
6
- var __dirname = CJS_COMPAT_NODE_PATH_ka10qkhlmxh.dirname(__filename);
7
- var require = CJS_COMPAT_NODE_MODULE_ka10qkhlmxh.createRequire(import.meta.url);
5
+ var __filename = CJS_COMPAT_NODE_URL_j4mw9rff3rm.fileURLToPath(import.meta.url);
6
+ var __dirname = CJS_COMPAT_NODE_PATH_j4mw9rff3rm.dirname(__filename);
7
+ var require = CJS_COMPAT_NODE_MODULE_j4mw9rff3rm.createRequire(import.meta.url);
8
8
 
9
9
  // ------------------------------------------------------------
10
10
  // end of CJS compatibility banner, injected by Storybook's esbuild configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/angular",
3
- "version": "10.6.0-alpha.6",
3
+ "version": "10.6.0-alpha.8",
4
4
  "description": "Storybook for Angular: Develop, document, and test UI components in isolation",
5
5
  "keywords": [
6
6
  "storybook",
@@ -59,7 +59,7 @@
59
59
  "!src/**/*"
60
60
  ],
61
61
  "dependencies": {
62
- "@storybook/builder-webpack5": "10.6.0-alpha.6",
62
+ "@storybook/builder-webpack5": "10.6.0-alpha.8",
63
63
  "@storybook/global": "^5.0.0",
64
64
  "telejson": "8.0.0",
65
65
  "ts-dedent": "^2.0.0",
@@ -79,8 +79,8 @@
79
79
  "@angular/forms": "^19.1.1",
80
80
  "@angular/platform-browser": "^19.1.1",
81
81
  "@angular/platform-browser-dynamic": "^19.1.1",
82
- "@storybook/angular-compodoc": "10.6.0-alpha.6",
83
- "@storybook/core-webpack": "10.6.0-alpha.6",
82
+ "@storybook/angular-compodoc": "10.6.0-alpha.8",
83
+ "@storybook/core-webpack": "10.6.0-alpha.8",
84
84
  "@types/node": "^22.19.1",
85
85
  "empathic": "^2.0.0",
86
86
  "rimraf": "^6.0.1",
@@ -101,7 +101,7 @@
101
101
  "@angular/platform-browser": ">=18.0.0 < 23.0.0",
102
102
  "@angular/platform-browser-dynamic": ">=18.0.0 < 23.0.0",
103
103
  "rxjs": "^6.5.3 || ^7.4.0",
104
- "storybook": "^10.6.0-alpha.6",
104
+ "storybook": "^10.6.0-alpha.8",
105
105
  "typescript": "^4.9.0 || ^5.0.0 || ^6.0.0",
106
106
  "zone.js": ">=0.14.0"
107
107
  },