@storybook/angular 8.6.13 → 8.6.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/angular",
|
|
3
|
-
"version": "8.6.
|
|
3
|
+
"version": "8.6.15",
|
|
4
4
|
"description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"prep": "rimraf dist && jiti ../../../scripts/prepare/tsc.ts"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@storybook/builder-webpack5": "8.6.
|
|
56
|
-
"@storybook/components": "8.6.
|
|
57
|
-
"@storybook/core-webpack": "8.6.
|
|
55
|
+
"@storybook/builder-webpack5": "8.6.15",
|
|
56
|
+
"@storybook/components": "8.6.15",
|
|
57
|
+
"@storybook/core-webpack": "8.6.15",
|
|
58
58
|
"@storybook/global": "^5.0.0",
|
|
59
|
-
"@storybook/manager-api": "8.6.
|
|
60
|
-
"@storybook/preview-api": "8.6.
|
|
61
|
-
"@storybook/theming": "8.6.
|
|
59
|
+
"@storybook/manager-api": "8.6.15",
|
|
60
|
+
"@storybook/preview-api": "8.6.15",
|
|
61
|
+
"@storybook/theming": "8.6.15",
|
|
62
62
|
"@types/react": "^18.0.37",
|
|
63
63
|
"@types/react-dom": "^18.0.11",
|
|
64
64
|
"@types/semver": "^7.3.4",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@angular/platform-browser": ">=15.0.0 < 20.0.0",
|
|
111
111
|
"@angular/platform-browser-dynamic": ">=15.0.0 < 20.0.0",
|
|
112
112
|
"rxjs": "^6.0.0 || ^7.4.0",
|
|
113
|
-
"storybook": "^8.6.
|
|
113
|
+
"storybook": "^8.6.15",
|
|
114
114
|
"typescript": "^4.0.0 || ^5.0.0",
|
|
115
115
|
"zone.js": ">= 0.11.1 < 1.0.0"
|
|
116
116
|
},
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { CLIOptions } from 'storybook/internal/types';
|
|
2
|
-
import { BuilderOutput } from '@angular-devkit/architect';
|
|
3
|
-
import { StylePreprocessorOptions } from '@angular-devkit/build-angular';
|
|
4
|
-
import { AssetPattern, SourceMapUnion, StyleElement } from '@angular-devkit/build-angular/src/builders/browser/schema';
|
|
5
|
-
import { JsonObject } from '@angular-devkit/core';
|
|
6
|
-
export type StorybookBuilderOptions = JsonObject & {
|
|
7
|
-
browserTarget?: string | null;
|
|
8
|
-
tsConfig?: string;
|
|
9
|
-
test: boolean;
|
|
10
|
-
docs: boolean;
|
|
11
|
-
compodoc: boolean;
|
|
12
|
-
compodocArgs: string[];
|
|
13
|
-
enableProdMode?: boolean;
|
|
14
|
-
styles?: StyleElement[];
|
|
15
|
-
stylePreprocessorOptions?: StylePreprocessorOptions;
|
|
16
|
-
preserveSymlinks?: boolean;
|
|
17
|
-
assets?: AssetPattern[];
|
|
18
|
-
sourceMap?: SourceMapUnion;
|
|
19
|
-
experimentalZoneless?: boolean;
|
|
20
|
-
} & Pick<CLIOptions, 'outputDir' | 'configDir' | 'loglevel' | 'quiet' | 'test' | 'webpackStatsJson' | 'statsJson' | 'disableTelemetry' | 'debugWebpack' | 'previewUrl'>;
|
|
21
|
-
export type StorybookBuilderOutput = JsonObject & BuilderOutput & {
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
};
|
|
24
|
-
declare const _default: import("@angular-devkit/architect").Builder<JsonObject & {
|
|
25
|
-
browserTarget?: string | null;
|
|
26
|
-
tsConfig?: string;
|
|
27
|
-
test: boolean;
|
|
28
|
-
docs: boolean;
|
|
29
|
-
compodoc: boolean;
|
|
30
|
-
compodocArgs: string[];
|
|
31
|
-
enableProdMode?: boolean;
|
|
32
|
-
styles?: StyleElement[];
|
|
33
|
-
stylePreprocessorOptions?: StylePreprocessorOptions;
|
|
34
|
-
preserveSymlinks?: boolean;
|
|
35
|
-
assets?: AssetPattern[];
|
|
36
|
-
sourceMap?: SourceMapUnion;
|
|
37
|
-
experimentalZoneless?: boolean;
|
|
38
|
-
} & Pick<CLIOptions, "statsJson" | "outputDir" | "configDir" | "loglevel" | "quiet" | "test" | "webpackStatsJson" | "disableTelemetry" | "debugWebpack" | "previewUrl">>;
|
|
39
|
-
export default _default;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { CLIOptions } from 'storybook/internal/types';
|
|
2
|
-
import { BuilderOutput } from '@angular-devkit/architect';
|
|
3
|
-
import { StylePreprocessorOptions } from '@angular-devkit/build-angular';
|
|
4
|
-
import { AssetPattern, SourceMapUnion, StyleElement } from '@angular-devkit/build-angular/src/builders/browser/schema';
|
|
5
|
-
import { JsonObject } from '@angular-devkit/core';
|
|
6
|
-
export type StorybookBuilderOptions = JsonObject & {
|
|
7
|
-
browserTarget?: string | null;
|
|
8
|
-
tsConfig?: string;
|
|
9
|
-
compodoc: boolean;
|
|
10
|
-
compodocArgs: string[];
|
|
11
|
-
enableProdMode?: boolean;
|
|
12
|
-
styles?: StyleElement[];
|
|
13
|
-
stylePreprocessorOptions?: StylePreprocessorOptions;
|
|
14
|
-
assets?: AssetPattern[];
|
|
15
|
-
preserveSymlinks?: boolean;
|
|
16
|
-
sourceMap?: SourceMapUnion;
|
|
17
|
-
experimentalZoneless?: boolean;
|
|
18
|
-
} & Pick<CLIOptions, 'port' | 'host' | 'configDir' | 'https' | 'sslCa' | 'sslCert' | 'sslKey' | 'smokeTest' | 'ci' | 'quiet' | 'disableTelemetry' | 'initialPath' | 'open' | 'docs' | 'debugWebpack' | 'webpackStatsJson' | 'statsJson' | 'loglevel' | 'previewUrl'>;
|
|
19
|
-
export type StorybookBuilderOutput = JsonObject & BuilderOutput & {};
|
|
20
|
-
declare const _default: import("@angular-devkit/architect").Builder<JsonObject & {
|
|
21
|
-
browserTarget?: string | null;
|
|
22
|
-
tsConfig?: string;
|
|
23
|
-
compodoc: boolean;
|
|
24
|
-
compodocArgs: string[];
|
|
25
|
-
enableProdMode?: boolean;
|
|
26
|
-
styles?: StyleElement[];
|
|
27
|
-
stylePreprocessorOptions?: StylePreprocessorOptions;
|
|
28
|
-
assets?: AssetPattern[];
|
|
29
|
-
preserveSymlinks?: boolean;
|
|
30
|
-
sourceMap?: SourceMapUnion;
|
|
31
|
-
experimentalZoneless?: boolean;
|
|
32
|
-
} & Pick<CLIOptions, "docs" | "statsJson" | "configDir" | "loglevel" | "quiet" | "webpackStatsJson" | "disableTelemetry" | "debugWebpack" | "previewUrl" | "port" | "host" | "initialPath" | "https" | "sslCa" | "sslCert" | "sslKey" | "smokeTest" | "open" | "ci">>;
|
|
33
|
-
export default _default;
|