reg-viz / storycap

A Storybook Addon, Save the screenshot image of your stories :camera: via puppeteer.
https://www.npmjs.com/package/storycap
MIT License
709 stars 89 forks source link

Has `withScreenshot` been deprecated? #869

Closed k35o closed 6 months ago

k35o commented 6 months ago

The interface in withScreenshot was marked @deprecated. https://github.com/reg-viz/storycap/blob/masater/packages/storycap/src/client/with-screenshot.ts#L14-L19

However, the v8 example used withScreenshot until.

What is the status of withScreenshot now? If withScreenshot has been deprecated, I need an example of not using it!

Quramy commented 6 months ago

The withScreenshot decorator itself is NOT deprecated.

But, higher order function usage of this like withScreenshot({ viewport: ,,, }) is deprecated.

k35o commented 6 months ago

Thanks!