@storybook/components 7.0.0-alpha.52 → 7.0.0-alpha.53
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/index.d.ts +1 -2
- package/dist/index.js +81 -81
- package/dist/index.mjs +5 -5
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -870,8 +870,7 @@ interface LoaderProps {
|
|
|
870
870
|
error?: Error;
|
|
871
871
|
size?: number;
|
|
872
872
|
}
|
|
873
|
-
declare const
|
|
874
|
-
declare const Loader: FC<ComponentProps<typeof PureLoader>>;
|
|
873
|
+
declare const Loader: FC<LoaderProps & ComponentProps<typeof ProgressWrapper>>;
|
|
875
874
|
|
|
876
875
|
declare const getStoryHref: (baseUrl: string, storyId: string, additionalParams?: Record<string, string>) => string;
|
|
877
876
|
|