@vueless/storybook 0.0.75-beta.14 → 0.0.75-beta.15

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.
@@ -38,7 +38,10 @@ export const vue3SourceDecorator = makeDecorator({
38
38
  onMounted(async () => {
39
39
  updateArgs({ ...context.args, ...urlArgs });
40
40
 
41
- /* rerender code snippet by optimized source code */
41
+ /* override default code snippet by optimized ones */
42
+ setTimeout(setSourceCode, 500);
43
+
44
+ /* rerender code snippet by optimized ones */
42
45
  channel.on(SNIPPET_RENDERED, async (payload) => {
43
46
  if (payload.source.includes(`<script lang="ts" setup>`)) {
44
47
  await setSourceCode();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueless/storybook",
3
- "version": "0.0.75-beta.14",
3
+ "version": "0.0.75-beta.15",
4
4
  "description": "Simplifies Storybook configuration for Vueless UI library.",
5
5
  "homepage": "https://vueless.com",
6
6
  "author": "Johnny Grid",
@@ -48,6 +48,7 @@
48
48
  "prettier-eslint": "^16.3.0",
49
49
  "release-it": "^19.0.2",
50
50
  "tailwindcss": "^4.1.7",
51
+ "vue": "^3.5.16",
51
52
  "vue-router": "^4.5.1",
52
53
  "vueless": "^0.0.825-beta.169"
53
54
  },