@storybook/preact-vite 8.0.0-alpha.7 → 8.0.0-alpha.8
Sign up to get free protection for your applications and to get access to all the features.
@@ -723,9 +723,6 @@ type StoryId = string;
|
|
723
723
|
type ComponentTitle = string;
|
724
724
|
type StoryName = string;
|
725
725
|
type Tag = string;
|
726
|
-
interface Parameters {
|
727
|
-
[name: string]: any;
|
728
|
-
}
|
729
726
|
|
730
727
|
interface Plugin {
|
731
728
|
(module: Program): Program;
|
@@ -2642,20 +2639,6 @@ type StoriesEntry = string | StoriesSpecifier;
|
|
2642
2639
|
interface IndexerOptions {
|
2643
2640
|
makeTitle: (userTitle?: string) => string;
|
2644
2641
|
}
|
2645
|
-
interface IndexedStory {
|
2646
|
-
id: string;
|
2647
|
-
name: string;
|
2648
|
-
tags?: Tag[];
|
2649
|
-
parameters?: Parameters;
|
2650
|
-
}
|
2651
|
-
interface IndexedCSFFile {
|
2652
|
-
meta: {
|
2653
|
-
id?: string;
|
2654
|
-
title?: string;
|
2655
|
-
tags?: Tag[];
|
2656
|
-
};
|
2657
|
-
stories: IndexedStory[];
|
2658
|
-
}
|
2659
2642
|
/**
|
2660
2643
|
* FIXME: This is a temporary type to allow us to deprecate the old indexer API.
|
2661
2644
|
* We should remove this type and the deprecated indexer API in 8.0.
|
@@ -2677,19 +2660,7 @@ type Indexer = BaseIndexer & {
|
|
2677
2660
|
* @returns A promise that resolves to an array of {@link IndexInput} objects.
|
2678
2661
|
*/
|
2679
2662
|
createIndex: (fileName: string, options: IndexerOptions) => Promise<IndexInput[]>;
|
2680
|
-
/**
|
2681
|
-
* @deprecated Use {@link index} instead
|
2682
|
-
*/
|
2683
|
-
indexer?: never;
|
2684
2663
|
};
|
2685
|
-
type DeprecatedIndexer = BaseIndexer & {
|
2686
|
-
indexer: (fileName: string, options: IndexerOptions) => Promise<IndexedCSFFile>;
|
2687
|
-
createIndex?: never;
|
2688
|
-
};
|
2689
|
-
/**
|
2690
|
-
* @deprecated Use {@link Indexer} instead
|
2691
|
-
*/
|
2692
|
-
type StoryIndexer = Indexer | DeprecatedIndexer;
|
2693
2664
|
/**
|
2694
2665
|
* The base input for indexing a story or docs entry.
|
2695
2666
|
*/
|
@@ -2825,10 +2796,6 @@ interface CLIOptions {
|
|
2825
2796
|
host?: string;
|
2826
2797
|
initialPath?: string;
|
2827
2798
|
exactPort?: boolean;
|
2828
|
-
/**
|
2829
|
-
* @deprecated Use 'staticDirs' Storybook Configuration option instead
|
2830
|
-
*/
|
2831
|
-
staticDir?: string[];
|
2832
2799
|
configDir?: string;
|
2833
2800
|
https?: boolean;
|
2834
2801
|
sslCa?: string[];
|
@@ -3020,7 +2987,6 @@ interface StorybookConfigRaw {
|
|
3020
2987
|
babelDefault?: TransformOptions;
|
3021
2988
|
config?: Entry[];
|
3022
2989
|
previewAnnotations?: Entry[];
|
3023
|
-
storyIndexers?: StoryIndexer[];
|
3024
2990
|
experimental_indexers?: Indexer[];
|
3025
2991
|
docs?: DocsOptions;
|
3026
2992
|
previewHead?: string;
|
@@ -3094,11 +3060,6 @@ interface StorybookConfig$1 {
|
|
3094
3060
|
* Add additional scripts to run in the preview a la `.storybook/preview.js`
|
3095
3061
|
*/
|
3096
3062
|
previewAnnotations?: PresetValue<StorybookConfigRaw['previewAnnotations']>;
|
3097
|
-
/**
|
3098
|
-
* Process CSF files for the story index.
|
3099
|
-
* @deprecated use {@link experimental_indexers} instead
|
3100
|
-
*/
|
3101
|
-
storyIndexers?: PresetValue<StorybookConfigRaw['storyIndexers']>;
|
3102
3063
|
/**
|
3103
3064
|
* Process CSF files for the story index.
|
3104
3065
|
*/
|
package/dist/index.d.ts
CHANGED
package/dist/preset.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/preact-vite",
|
3
|
-
"version": "8.0.0-alpha.
|
3
|
+
"version": "8.0.0-alpha.8",
|
4
4
|
"description": "Storybook for Preact and Vite: Develop Preact components in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,8 +47,8 @@
|
|
47
47
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-vite": "8.0.0-alpha.
|
51
|
-
"@storybook/preact": "8.0.0-alpha.
|
50
|
+
"@storybook/builder-vite": "8.0.0-alpha.8",
|
51
|
+
"@storybook/preact": "8.0.0-alpha.8"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
54
54
|
"@types/node": "^18.0.0",
|