storybook-framework-qwik 0.0.7 → 0.0.8
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.js +1 -1
- package/dist/qwik-city-decorator.js +2 -4
- package/package.json +1 -1
- package/template/cli/button.tsx +1 -1
package/dist/preset.js
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { jsx as _jsx } from "
|
|
1
|
+
import { jsx as _jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { QwikCityMockProvider } from '@builder.io/qwik-city';
|
|
3
3
|
/** Wraps story in QwikCityMockProvider */
|
|
4
|
-
export const qwikCityDecorator = (Story) =>
|
|
5
|
-
// Something is out of sync with the JSXNode generated here and the type expected by Decorator
|
|
6
|
-
(_jsx(QwikCityMockProvider, { children: Story() }));
|
|
4
|
+
export const qwikCityDecorator = (Story) => (_jsx(QwikCityMockProvider, { children: Story() }));
|
package/package.json
CHANGED
package/template/cli/button.tsx
CHANGED