@analogjs/storybook-angular 2.0.0-beta.12 → 2.0.0-beta.13
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": "@analogjs/storybook-angular",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.13",
|
|
4
4
|
"description": "Storybook Integration for Angular & Vite",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
27
|
"types": "./src/index.d.ts",
|
|
28
|
-
"
|
|
29
|
-
|
|
28
|
+
"default": "./src/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./preset": {
|
|
31
|
+
"types": "./src/lib/preset.d.ts",
|
|
32
|
+
"default": "./src/lib/preset.js"
|
|
30
33
|
},
|
|
31
|
-
"./preset": "./preset.mjs",
|
|
32
34
|
"./package.json": "./package.json",
|
|
33
|
-
"./*": "./src/*",
|
|
34
35
|
"./testing": {
|
|
35
36
|
"types": "./src/lib/testing.d.ts",
|
|
36
|
-
"
|
|
37
|
-
"require": "./src/lib/testing.js"
|
|
37
|
+
"default": "./src/lib/testing.js"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"main": "src/index.js",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const previewAnnotations: (entries: any[], options: any) => Promise<any[]>;
|
|
2
|
+
export declare const core: (config: any, options: any) => Promise<any>;
|
|
3
|
+
export declare const viteFinal: (config: any, options: any) => Promise<Record<string, any>>;
|
|
4
|
+
export { addons } from '@storybook/angular/preset';
|
package/preset.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const previewAnnotations: (
|
|
2
|
-
entries: any[],
|
|
3
|
-
options: any,
|
|
4
|
-
) => Promise<any[]>;
|
|
5
|
-
export declare const core: (config: any, options: any) => Promise<any>;
|
|
6
|
-
export declare const viteFinal: (
|
|
7
|
-
config: any,
|
|
8
|
-
options: any,
|
|
9
|
-
) => Promise<Record<string, any>>;
|
|
10
|
-
export { addons } from '@storybook/angular/preset';
|
|
File without changes
|