@analogjs/storybook-angular 2.0.0-beta.11 → 2.0.0-beta.12

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.11",
3
+ "version": "2.0.0-beta.12",
4
4
  "description": "Storybook Integration for Angular & Vite",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -28,7 +28,7 @@
28
28
  "import": "./src/index.js",
29
29
  "require": "./src/index.js"
30
30
  },
31
- "./preset": "./src/lib/preset.js",
31
+ "./preset": "./preset.mjs",
32
32
  "./package.json": "./package.json",
33
33
  "./*": "./src/*",
34
34
  "./testing": {
package/preset.d.ts ADDED
@@ -0,0 +1,10 @@
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';
@@ -135,4 +135,3 @@ function storybookEsbuildPlugin() {
135
135
  }
136
136
  export { addons } from '@storybook/angular/preset';
137
137
  //# sourceMappingURL=preset.js.map
138
- //# sourceMappingURL=preset.js.map
@@ -1,4 +0,0 @@
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';
File without changes