@storybook/addon-onboarding 0.0.29--canary.40.69103b8.0 → 0.0.29--canary.40.3282e5c.0
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/manager.js +312 -88
- package/dist/manager.js.map +1 -1
- package/dist/manager.mjs +308 -82
- package/dist/manager.mjs.map +1 -1
- package/package.json +8 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-onboarding",
|
|
3
|
-
"version": "0.0.29--canary.40.
|
|
3
|
+
"version": "0.0.29--canary.40.3282e5c.0",
|
|
4
4
|
"description": "Storybook Addon Onboarding - Introduces a new onboarding experience",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook-addons",
|
|
@@ -41,8 +41,6 @@
|
|
|
41
41
|
"*.d.ts"
|
|
42
42
|
],
|
|
43
43
|
"scripts": {
|
|
44
|
-
"clean": "rimraf ./dist",
|
|
45
|
-
"prebuild": "yarn clean",
|
|
46
44
|
"build": "tsup",
|
|
47
45
|
"build:watch": "yarn build --watch",
|
|
48
46
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -88,42 +86,32 @@
|
|
|
88
86
|
"@storybook/telemetry": "^7.1.0-alpha.32",
|
|
89
87
|
"@storybook/theming": "^7.1.0-alpha.32",
|
|
90
88
|
"@storybook/types": "^7.1.0-alpha.32",
|
|
91
|
-
"@types/lodash.throttle": "^4.1.7",
|
|
92
89
|
"@types/node": "^18.15.0",
|
|
93
90
|
"@types/react": "^18.2.7",
|
|
94
91
|
"@types/react-dom": "^18.2.4",
|
|
95
92
|
"@vitejs/plugin-react": "^3.1.0",
|
|
96
93
|
"auto": "^10.3.0",
|
|
97
|
-
"boxen": "^5.0.1",
|
|
98
94
|
"chromatic": "^6.17.4",
|
|
99
95
|
"dedent": "^0.7.0",
|
|
100
96
|
"nodemon": "^2.0.22",
|
|
101
97
|
"npm-run-all": "^4.1.5",
|
|
102
98
|
"prettier": "^2.3.1",
|
|
103
|
-
"prompts": "^2.4.2",
|
|
104
|
-
"prop-types": "^15.8.1",
|
|
105
99
|
"react": "^18.0.0",
|
|
106
100
|
"react-dom": "^18.0.0",
|
|
107
|
-
"rimraf": "^3.0.2",
|
|
108
101
|
"storybook": "^7.1.0-alpha.32",
|
|
109
102
|
"tsup": "^6.6.3",
|
|
110
103
|
"typescript": "^4.9.5",
|
|
111
104
|
"vite": "^4.1.4"
|
|
112
105
|
},
|
|
113
106
|
"peerDependencies": {
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
},
|
|
121
|
-
"react-dom": {
|
|
122
|
-
"optional": true
|
|
123
|
-
}
|
|
107
|
+
"@storybook/blocks": "^7.0.0",
|
|
108
|
+
"@storybook/components": "^7.0.0",
|
|
109
|
+
"@storybook/core-events": "^7.0.0",
|
|
110
|
+
"@storybook/manager-api": "^7.0.0",
|
|
111
|
+
"@storybook/theming": "^7.0.0",
|
|
112
|
+
"@storybook/types": "^7.0.0"
|
|
124
113
|
},
|
|
125
114
|
"publishConfig": {
|
|
126
115
|
"access": "public"
|
|
127
|
-
}
|
|
128
|
-
"readme": "ERROR: No README data found!"
|
|
116
|
+
}
|
|
129
117
|
}
|