storybook 9.0.11 → 9.0.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/dist/bin/index.cjs +43 -43
- package/dist/bin/index.js +43 -43
- package/dist/cli/bin/index.cjs +629 -629
- package/dist/cli/bin/index.js +202 -201
- package/dist/cli/index.cjs +13788 -13797
- package/dist/cli/index.d.ts +712 -15
- package/dist/cli/index.js +12364 -12372
- package/dist/common/index.cjs +10997 -10888
- package/dist/common/index.d.ts +348 -66
- package/dist/common/index.js +24318 -24206
- package/dist/components/index.cjs +632 -628
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.js +390 -386
- package/dist/core-server/index.cjs +4840 -4793
- package/dist/core-server/index.d.ts +10 -1
- package/dist/core-server/index.js +5748 -5701
- package/dist/core-server/presets/common-manager.js +257 -243
- package/dist/core-server/presets/common-preset.cjs +1048 -1046
- package/dist/core-server/presets/common-preset.js +2054 -2049
- package/dist/csf-tools/index.cjs +226 -224
- package/dist/csf-tools/index.js +116 -112
- package/dist/manager/globals-runtime.js +3286 -3282
- package/dist/manager-api/index.cjs +73 -73
- package/dist/manager-api/index.js +140 -140
- package/dist/node-logger/index.cjs +8520 -994
- package/dist/node-logger/index.d.ts +395 -2
- package/dist/node-logger/index.js +8535 -995
- package/dist/server-errors.cjs +201 -242
- package/dist/server-errors.d.ts +1 -12
- package/dist/server-errors.js +182 -223
- package/dist/telemetry/index.cjs +1224 -1223
- package/dist/telemetry/index.d.ts +3 -2
- package/dist/telemetry/index.js +1069 -1066
- package/dist/types/index.d.ts +3 -3
- package/package.json +2 -1
package/dist/server-errors.d.ts
CHANGED
|
@@ -265,20 +265,9 @@ declare class UpgradeStorybookToLowerVersionError extends StorybookError {
|
|
|
265
265
|
currentVersion: string;
|
|
266
266
|
});
|
|
267
267
|
}
|
|
268
|
-
declare class UpgradeStorybookToSameVersionError extends StorybookError {
|
|
269
|
-
data: {
|
|
270
|
-
beforeVersion: string;
|
|
271
|
-
};
|
|
272
|
-
constructor(data: {
|
|
273
|
-
beforeVersion: string;
|
|
274
|
-
});
|
|
275
|
-
}
|
|
276
268
|
declare class UpgradeStorybookUnknownCurrentVersionError extends StorybookError {
|
|
277
269
|
constructor();
|
|
278
270
|
}
|
|
279
|
-
declare class UpgradeStorybookInWrongWorkingDirectory extends StorybookError {
|
|
280
|
-
constructor();
|
|
281
|
-
}
|
|
282
271
|
declare class NoStatsForViteDevError extends StorybookError {
|
|
283
272
|
constructor();
|
|
284
273
|
}
|
|
@@ -313,4 +302,4 @@ declare class SavingGlobalSettingsFileError extends StorybookError {
|
|
|
313
302
|
});
|
|
314
303
|
}
|
|
315
304
|
|
|
316
|
-
export { AngularLegacyBuildOptionsError, Category, ConflictingStaticDirConfigError, CouldNotEvaluateFrameworkError, CriticalPresetLoadError, FindPackageVersionsError, GenerateNewProjectOnInitError, GoogleFontsDownloadError, GoogleFontsLoadingError, IncompatiblePostCssConfigError, InvalidFrameworkNameError, InvalidStoriesEntryError, MainFileESMOnlyImportError, MainFileEvaluationError, MainFileMissingError, MissingAngularJsonError, MissingBuilderError, MissingFrameworkFieldError, NoMatchingExportError, NoStatsForViteDevError, NxProjectDetectedError, SavingGlobalSettingsFileError, StatusTypeIdMismatchError, SvelteViteWithSvelteKitError,
|
|
305
|
+
export { AngularLegacyBuildOptionsError, Category, ConflictingStaticDirConfigError, CouldNotEvaluateFrameworkError, CriticalPresetLoadError, FindPackageVersionsError, GenerateNewProjectOnInitError, GoogleFontsDownloadError, GoogleFontsLoadingError, IncompatiblePostCssConfigError, InvalidFrameworkNameError, InvalidStoriesEntryError, MainFileESMOnlyImportError, MainFileEvaluationError, MainFileMissingError, MissingAngularJsonError, MissingBuilderError, MissingFrameworkFieldError, NoMatchingExportError, NoStatsForViteDevError, NxProjectDetectedError, SavingGlobalSettingsFileError, StatusTypeIdMismatchError, SvelteViteWithSvelteKitError, UpgradeStorybookToLowerVersionError, UpgradeStorybookUnknownCurrentVersionError, WebpackCompilationError, WebpackInvocationError, WebpackMissingStatsError };
|