@storybook/preact-vite 7.0.16 → 7.0.18
Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts
CHANGED
package/dist/preset.d.ts
CHANGED
@@ -1050,13 +1050,19 @@ interface StorybookConfig$1 {
|
|
1050
1050
|
previewHead?: PresetValue<string>;
|
1051
1051
|
previewBody?: PresetValue<string>;
|
1052
1052
|
/**
|
1053
|
-
*
|
1053
|
+
* Programmatically override the preview's main page template.
|
1054
1054
|
* This should return a reference to a file containing an `.ejs` template
|
1055
1055
|
* that will be interpolated with environment variables.
|
1056
1056
|
*
|
1057
1057
|
* @example '.storybook/index.ejs'
|
1058
1058
|
*/
|
1059
1059
|
previewMainTemplate?: string;
|
1060
|
+
/**
|
1061
|
+
* Programmatically modify the preview head/body HTML.
|
1062
|
+
* The managerHead function accept a string,
|
1063
|
+
* which is the existing head content, and return a modified string.
|
1064
|
+
*/
|
1065
|
+
managerHead?: PresetValue<string>;
|
1060
1066
|
}
|
1061
1067
|
type PresetValue<T> = T | ((config: T, options: Options) => T | Promise<T>);
|
1062
1068
|
type PresetProperty<K, TStorybookConfig = StorybookConfig$1> = TStorybookConfig[K extends keyof TStorybookConfig ? K : never] | PresetPropertyFn<K, TStorybookConfig>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/preact-vite",
|
3
|
-
"version": "7.0.
|
3
|
+
"version": "7.0.18",
|
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
|
},
|
48
48
|
"dependencies": {
|
49
49
|
"@preact/preset-vite": "^2.0.0",
|
50
|
-
"@storybook/builder-vite": "7.0.
|
51
|
-
"@storybook/preact": "7.0.
|
50
|
+
"@storybook/builder-vite": "7.0.18",
|
51
|
+
"@storybook/preact": "7.0.18"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
54
54
|
"@types/node": "^16.0.0",
|
@@ -72,5 +72,5 @@
|
|
72
72
|
],
|
73
73
|
"platform": "node"
|
74
74
|
},
|
75
|
-
"gitHead": "
|
75
|
+
"gitHead": "8edc25418ec52a0ff223860677716303df7cb09f"
|
76
76
|
}
|