@storybook/addon-controls 6.1.16 → 6.1.20
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/README.md +10 -6
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -28,11 +28,15 @@ The usage is documented in the [documentation](https://storybook.js.org/docs/rea
|
|
|
28
28
|
|
|
29
29
|
## FAQs
|
|
30
30
|
|
|
31
|
-
- [
|
|
32
|
-
- [
|
|
33
|
-
- [
|
|
34
|
-
- [
|
|
35
|
-
- [How
|
|
31
|
+
- [Storybook Controls Addon](#storybook-controls-addon)
|
|
32
|
+
- [Installation](#installation)
|
|
33
|
+
- [Usage](#usage)
|
|
34
|
+
- [FAQs](#faqs)
|
|
35
|
+
- [How will this replace addon-knobs?](#how-will-this-replace-addon-knobs)
|
|
36
|
+
- [How do I migrate from addon-knobs?](#how-do-i-migrate-from-addon-knobs)
|
|
37
|
+
- [My controls aren't being auto-generated. What should I do?](#my-controls-arent-being-auto-generated-what-should-i-do)
|
|
38
|
+
- [How can I disable controls for certain fields on a particular story?](#how-can-i-disable-controls-for-certain-fields-on-a-particular-story)
|
|
39
|
+
- [How do controls work with MDX?](#how-do-controls-work-with-mdx)
|
|
36
40
|
|
|
37
41
|
### How will this replace addon-knobs?
|
|
38
42
|
|
|
@@ -40,7 +44,7 @@ Addon-knobs is one of Storybook's most popular addons with over 1M weekly downlo
|
|
|
40
44
|
|
|
41
45
|
Therefore, rather than deprecating addon-knobs immediately, we will continue to release knobs with the Storybook core distribution until 7.0. This will give us time to improve Controls based on user feedback, and also give knobs users ample time to migrate.
|
|
42
46
|
|
|
43
|
-
If you are somehow tied to knobs or prefer the knobs interface, we are happy to take on maintainers for the knobs project. If this interests you, hop on our [Discord](https://discord.gg/
|
|
47
|
+
If you are somehow tied to knobs or prefer the knobs interface, we are happy to take on maintainers for the knobs project. If this interests you, hop on our [Discord](https://discord.gg/storybook).
|
|
44
48
|
|
|
45
49
|
### How do I migrate from addon-knobs?
|
|
46
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-controls",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.20",
|
|
4
4
|
"description": "Interact with component inputs dynamically in the Storybook UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"addon",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"prepare": "node ../../scripts/prepare.js"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@storybook/addons": "6.1.
|
|
34
|
-
"@storybook/api": "6.1.
|
|
35
|
-
"@storybook/client-api": "6.1.
|
|
36
|
-
"@storybook/components": "6.1.
|
|
37
|
-
"@storybook/node-logger": "6.1.
|
|
38
|
-
"@storybook/theming": "6.1.
|
|
33
|
+
"@storybook/addons": "6.1.20",
|
|
34
|
+
"@storybook/api": "6.1.20",
|
|
35
|
+
"@storybook/client-api": "6.1.20",
|
|
36
|
+
"@storybook/components": "6.1.20",
|
|
37
|
+
"@storybook/node-logger": "6.1.20",
|
|
38
|
+
"@storybook/theming": "6.1.20",
|
|
39
39
|
"core-js": "^3.0.1",
|
|
40
40
|
"ts-dedent": "^2.0.0"
|
|
41
41
|
},
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "d09748c50c62a08e0498b681253cbfd9aa16dfc7"
|
|
58
58
|
}
|