@storybook/addon-controls 6.5.0-alpha.52 → 6.5.0-alpha.53
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/cjs/{register.js → manager.js} +0 -0
- package/dist/esm/{register.js → manager.js} +0 -0
- package/dist/modern/{register.js → manager.js} +0 -0
- package/dist/ts3.4/{register.d.ts → manager.d.ts} +0 -0
- package/dist/ts3.9/{register.d.ts → manager.d.ts} +0 -0
- package/manager.js +1 -0
- package/package.json +13 -13
- package/register.js +6 -1
- package/preset.js +0 -8
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/manager.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './dist/esm/manager';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-controls",
|
|
3
|
-
"version": "6.5.0-alpha.
|
|
3
|
+
"version": "6.5.0-alpha.53",
|
|
4
4
|
"description": "Interact with component inputs dynamically in the Storybook UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"addon",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"url": "https://opencollective.com/storybook"
|
|
26
26
|
},
|
|
27
27
|
"license": "MIT",
|
|
28
|
-
"main": "dist/cjs/
|
|
29
|
-
"module": "dist/esm/
|
|
28
|
+
"main": "dist/cjs/manager.js",
|
|
29
|
+
"module": "dist/esm/manager.js",
|
|
30
30
|
"types": "dist/ts3.9/index.d.ts",
|
|
31
31
|
"typesVersions": {
|
|
32
32
|
"<3.8": {
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"prepare": "node ../../scripts/prepare.js"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@storybook/addons": "6.5.0-alpha.
|
|
49
|
-
"@storybook/api": "6.5.0-alpha.
|
|
50
|
-
"@storybook/client-logger": "6.5.0-alpha.
|
|
51
|
-
"@storybook/components": "6.5.0-alpha.
|
|
52
|
-
"@storybook/core-common": "6.5.0-alpha.
|
|
48
|
+
"@storybook/addons": "6.5.0-alpha.53",
|
|
49
|
+
"@storybook/api": "6.5.0-alpha.53",
|
|
50
|
+
"@storybook/client-logger": "6.5.0-alpha.53",
|
|
51
|
+
"@storybook/components": "6.5.0-alpha.53",
|
|
52
|
+
"@storybook/core-common": "6.5.0-alpha.53",
|
|
53
53
|
"@storybook/csf": "0.0.2--canary.507502b.0",
|
|
54
|
-
"@storybook/node-logger": "6.5.0-alpha.
|
|
55
|
-
"@storybook/store": "6.5.0-alpha.
|
|
56
|
-
"@storybook/theming": "6.5.0-alpha.
|
|
54
|
+
"@storybook/node-logger": "6.5.0-alpha.53",
|
|
55
|
+
"@storybook/store": "6.5.0-alpha.53",
|
|
56
|
+
"@storybook/theming": "6.5.0-alpha.53",
|
|
57
57
|
"core-js": "^3.8.2",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
59
|
"ts-dedent": "^2.0.0"
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
77
|
-
"sbmodern": "dist/modern/
|
|
76
|
+
"gitHead": "652768b3ff83a355651d5636ccc4d78bee2cdbf9",
|
|
77
|
+
"sbmodern": "dist/modern/manager.js",
|
|
78
78
|
"storybook": {
|
|
79
79
|
"displayName": "Controls",
|
|
80
80
|
"icon": "https://user-images.githubusercontent.com/263385/101991669-479cc600-3c7c-11eb-93d9-38b67e8371f2.png",
|
package/register.js
CHANGED
package/preset.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
function managerEntries(entry = [], options) {
|
|
2
|
-
// eslint-disable-next-line global-require
|
|
3
|
-
const { checkDocsLoaded } = require('./dist/cjs/preset/checkDocsLoaded');
|
|
4
|
-
checkDocsLoaded(options.configDir);
|
|
5
|
-
return [...entry, require.resolve('./dist/esm/register')];
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
module.exports = { managerEntries };
|