@storybook/html-webpack5 0.0.0-pr-23626-sha-e84041f2 → 0.0.0-pr-23611-sha-0c8cd76e
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/dist/preset.d.ts +1 -65
- package/package.json +5 -5
package/dist/preset.d.ts
CHANGED
@@ -765,16 +765,11 @@ PackageJson$1.NonStandardEntryPoints &
|
|
765
765
|
PackageJson$1.TypeScriptConfiguration &
|
766
766
|
PackageJson$1.YarnConfiguration &
|
767
767
|
PackageJson$1.JSPMConfiguration;
|
768
|
-
|
769
|
-
type StoryId = string;
|
770
|
-
type ComponentTitle = string;
|
771
|
-
type StoryName = string;
|
772
768
|
type Tag = string;
|
773
769
|
interface Parameters {
|
774
770
|
[name: string]: any;
|
775
771
|
}
|
776
772
|
|
777
|
-
type ExportKey = string;
|
778
773
|
interface StoriesSpecifier {
|
779
774
|
/**
|
780
775
|
* When auto-titling, what to prefix all generated titles with (default: '')
|
@@ -808,64 +803,10 @@ interface IndexedCSFFile {
|
|
808
803
|
};
|
809
804
|
stories: IndexedStory[];
|
810
805
|
}
|
811
|
-
|
812
|
-
* FIXME: This is a temporary type to allow us to deprecate the old indexer API.
|
813
|
-
* We should remove this type and the deprecated indexer API in 8.0.
|
814
|
-
*/
|
815
|
-
type BaseIndexer = {
|
816
|
-
/**
|
817
|
-
* A regular expression that should match all files to be handled by this indexer
|
818
|
-
*/
|
806
|
+
interface StoryIndexer {
|
819
807
|
test: RegExp;
|
820
|
-
};
|
821
|
-
/**
|
822
|
-
* An indexer describes which filenames it handles, and how to index each individual file - turning it into an entry in the index.
|
823
|
-
*/
|
824
|
-
type Indexer = BaseIndexer & {
|
825
|
-
/**
|
826
|
-
* Indexes a file containing stories or docs.
|
827
|
-
* @param fileName The name of the file to index.
|
828
|
-
* @param options {@link IndexerOptions} for indexing the file.
|
829
|
-
* @returns A promise that resolves to an array of {@link IndexInput} objects.
|
830
|
-
*/
|
831
|
-
index: (fileName: string, options: IndexerOptions) => Promise<IndexInput[]>;
|
832
|
-
/**
|
833
|
-
* @deprecated Use {@link index} instead
|
834
|
-
*/
|
835
|
-
indexer?: never;
|
836
|
-
};
|
837
|
-
type DeprecatedIndexer = BaseIndexer & {
|
838
808
|
indexer: (fileName: string, options: IndexerOptions) => Promise<IndexedCSFFile>;
|
839
|
-
index?: never;
|
840
|
-
};
|
841
|
-
/**
|
842
|
-
* @deprecated Use {@link Indexer} instead
|
843
|
-
*/
|
844
|
-
type StoryIndexer = Indexer | DeprecatedIndexer;
|
845
|
-
interface BaseIndexInput {
|
846
|
-
/** the file to import from e.g. the story file */
|
847
|
-
importPath: Path;
|
848
|
-
/** the key to import from the file e.g. the story export for this entry */
|
849
|
-
key: ExportKey;
|
850
|
-
/** the location in the sidebar, auto-generated from {@link importPath} if unspecified */
|
851
|
-
title?: ComponentTitle;
|
852
|
-
/** the name of the story, auto-generated from {@link key} if unspecified */
|
853
|
-
name?: StoryName;
|
854
|
-
/** the unique story ID, auto-generated from {@link title} and {@link name} if unspecified */
|
855
|
-
id?: StoryId;
|
856
|
-
/** tags for filtering entries in Storybook and its tools */
|
857
|
-
tags?: Tag[];
|
858
809
|
}
|
859
|
-
type StoryIndexInput = BaseIndexInput & {
|
860
|
-
type: 'story';
|
861
|
-
};
|
862
|
-
type DocsIndexInput = BaseIndexInput & {
|
863
|
-
type: 'docs';
|
864
|
-
/** paths to story files that must be pre-loaded for this docs entry */
|
865
|
-
storiesImports?: Path[];
|
866
|
-
};
|
867
|
-
type IndexInput = StoryIndexInput | DocsIndexInput;
|
868
|
-
type Path = string;
|
869
810
|
|
870
811
|
interface Options$1 {
|
871
812
|
allowRegExp: boolean;
|
@@ -1140,13 +1081,8 @@ interface StorybookConfig {
|
|
1140
1081
|
previewAnnotations?: PresetValue<Entry[]>;
|
1141
1082
|
/**
|
1142
1083
|
* Process CSF files for the story index.
|
1143
|
-
* @deprecated use {@link indexers} instead
|
1144
1084
|
*/
|
1145
1085
|
storyIndexers?: PresetValue<StoryIndexer[]>;
|
1146
|
-
/**
|
1147
|
-
* Process CSF files for the story index.
|
1148
|
-
*/
|
1149
|
-
indexers?: PresetValue<Indexer[]>;
|
1150
1086
|
/**
|
1151
1087
|
* Docs related features in index generation
|
1152
1088
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/html-webpack5",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-23611-sha-0c8cd76e",
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,11 +47,11 @@
|
|
47
47
|
"prep": "../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/builder-webpack5": "0.0.0-pr-
|
51
|
-
"@storybook/core-common": "0.0.0-pr-
|
50
|
+
"@storybook/builder-webpack5": "0.0.0-pr-23611-sha-0c8cd76e",
|
51
|
+
"@storybook/core-common": "0.0.0-pr-23611-sha-0c8cd76e",
|
52
52
|
"@storybook/global": "^5.0.0",
|
53
|
-
"@storybook/html": "0.0.0-pr-
|
54
|
-
"@storybook/preset-html-webpack": "0.0.0-pr-
|
53
|
+
"@storybook/html": "0.0.0-pr-23611-sha-0c8cd76e",
|
54
|
+
"@storybook/preset-html-webpack": "0.0.0-pr-23611-sha-0c8cd76e",
|
55
55
|
"@types/node": "^16.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|