storybook-framework-qwik 0.3.0 → 0.4.1

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.
@@ -1,9 +1,5 @@
1
1
  // This file is entirely copied from @storybook/addon-actions (changing the action import)
2
2
  import { action } from "@storybook/addon-actions";
3
- // interface ActionsParameter {
4
- // disable?: boolean;
5
- // argTypesRegex?: RegExp;
6
- // }
7
3
  const isInInitialArgs = (name, initialArgs) => typeof initialArgs[name] === "undefined" && !(name in initialArgs);
8
4
  /**
9
5
  * Automatically add action args for argTypes whose name
@@ -24,7 +24,7 @@ function extractArgTypes() {
24
24
  table: {
25
25
  type: {
26
26
  summary: value.type.name,
27
- required: value.required,
27
+ // required: value.required,
28
28
  },
29
29
  defaultValue: {
30
30
  summary: value.defaultValue?.value,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storybook-framework-qwik",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "Storybook for Qwik: View Qwik components in isolation.",
5
5
  "keywords": [
6
6
  "storybook",
@@ -83,8 +83,8 @@
83
83
  "fmt.check": "prettier --check ."
84
84
  },
85
85
  "dependencies": {
86
- "@storybook/builder-vite": "^7.6.16",
87
- "@storybook/docs-tools": "^7.6.16",
86
+ "@storybook/builder-vite": "^7.6.16 || ^8.0.0",
87
+ "@storybook/docs-tools": "^7.6.16 || ^8.0.0",
88
88
  "magic-string": "^0.30.7",
89
89
  "react-docgen-typescript": "^2.2.2"
90
90
  },
@@ -92,15 +92,15 @@
92
92
  "@builder.io/qwik": ">=0.15.2"
93
93
  },
94
94
  "optionalDependencies": {
95
- "@builder.io/qwik-city": "1.4.1"
95
+ "@builder.io/qwik-city": ">=1.4.1"
96
96
  },
97
97
  "devDependencies": {
98
- "@storybook/types": "^7.6.16",
98
+ "@storybook/types": "^8.4.1",
99
99
  "@suin/semantic-release-yarn": "1.1.0",
100
- "@types/node": "^18.19.17",
101
- "semantic-release": "^22.0.12",
102
- "typescript": "~5.3.3",
103
- "vite": "^5.1.3"
100
+ "@types/node": "^22.8.7",
101
+ "semantic-release": "^24.2.0",
102
+ "typescript": "~5.6.3",
103
+ "vite": "^5.4.10"
104
104
  },
105
105
  "engines": {
106
106
  "node": "^14.18 || >=16"
@@ -1,5 +1,5 @@
1
1
  import type { Meta, StoryObj } from "storybook-framework-qwik";
2
- import { within, userEvent } from "@storybook/testing-library";
2
+ import { within, userEvent } from "@storybook/test";
3
3
 
4
4
  import { Page } from "./page";
5
5