@storybook/addon-onboarding 0.0.29 → 0.0.30-canary.40.ce4e7a6.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/index.mjs +0 -2
- package/dist/manager.mjs +55 -57
- package/dist/preset.js +7 -0
- package/package.json +25 -37
- package/preset.js +8 -0
- package/dist/index.js +0 -7
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
- package/dist/manager.js +0 -452
- package/dist/manager.js.map +0 -1
- package/dist/manager.mjs.map +0 -1
- package/dist/preview.d.ts +0 -9
- package/dist/preview.js +0 -7
- package/dist/preview.js.map +0 -1
- package/dist/preview.mjs +0 -5
- package/dist/preview.mjs.map +0 -1
- package/manager.js +0 -1
- package/preview.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-onboarding",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30-canary.40.ce4e7a6.0",
|
|
4
4
|
"description": "Storybook Addon Onboarding - Introduces a new onboarding experience",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook-addons",
|
|
@@ -15,15 +15,10 @@
|
|
|
15
15
|
"import": "./dist/index.mjs",
|
|
16
16
|
"types": "./dist/index.d.ts"
|
|
17
17
|
},
|
|
18
|
-
"./
|
|
19
|
-
"require": "./dist/
|
|
20
|
-
"import": "./dist/
|
|
21
|
-
"types": "./dist/
|
|
22
|
-
},
|
|
23
|
-
"./preview": {
|
|
24
|
-
"require": "./dist/preview.js",
|
|
25
|
-
"import": "./dist/preview.mjs",
|
|
26
|
-
"types": "./dist/preview.d.ts"
|
|
18
|
+
"./preset": {
|
|
19
|
+
"require": "./dist/preset.js",
|
|
20
|
+
"import": "./dist/preset.mjs",
|
|
21
|
+
"types": "./dist/preset.d.ts"
|
|
27
22
|
},
|
|
28
23
|
"./package.json": "./package.json"
|
|
29
24
|
},
|
|
@@ -38,16 +33,17 @@
|
|
|
38
33
|
],
|
|
39
34
|
"scripts": {
|
|
40
35
|
"build": "tsup",
|
|
41
|
-
"
|
|
42
|
-
"build:watch": "yarn build --watch",
|
|
36
|
+
"build:watch": "pnpm run build --watch",
|
|
43
37
|
"start": "run-p build:watch 'storybook --quiet'",
|
|
44
|
-
"release": "
|
|
38
|
+
"release": "pnpm run build && auto shipit",
|
|
45
39
|
"storybook": "storybook dev -p 6006",
|
|
46
40
|
"storybook:watch": "nodemon",
|
|
47
41
|
"build-storybook": "storybook build",
|
|
48
42
|
"chromatic": "npx chromatic"
|
|
49
43
|
},
|
|
50
44
|
"nodemonConfig": {
|
|
45
|
+
"exec": "pnpm run storybook --ci",
|
|
46
|
+
"ext": "js,jsx,ts,tsx",
|
|
51
47
|
"ignore": [
|
|
52
48
|
"src/stories",
|
|
53
49
|
"src/**/*.stories.*"
|
|
@@ -56,29 +52,36 @@
|
|
|
56
52
|
"src",
|
|
57
53
|
".storybook/main.ts",
|
|
58
54
|
"vite.config.ts"
|
|
59
|
-
]
|
|
60
|
-
|
|
61
|
-
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@radix-ui/react-dialog": "^1.0.4",
|
|
59
|
+
"framer-motion": "^6.5.1",
|
|
60
|
+
"react-confetti": "^6.1.0",
|
|
61
|
+
"react-joyride": "^2.5.4",
|
|
62
|
+
"react-use-measure": "^2.1.1",
|
|
63
|
+
"@storybook/channels": "^7.1.0-alpha.32",
|
|
64
|
+
"@storybook/components": "^7.1.0-alpha.32",
|
|
65
|
+
"@storybook/core-events": "^7.1.0-alpha.32",
|
|
66
|
+
"@storybook/manager-api": "^7.1.0-alpha.32",
|
|
67
|
+
"@storybook/telemetry": "^7.1.0-alpha.32",
|
|
68
|
+
"@storybook/theming": "^7.1.0-alpha.32",
|
|
69
|
+
"@storybook/types": "^7.1.0-alpha.32"
|
|
62
70
|
},
|
|
63
71
|
"devDependencies": {
|
|
64
72
|
"@storybook/addon-essentials": "^7.1.0-alpha.32",
|
|
65
73
|
"@storybook/addon-interactions": "^7.1.0-alpha.32",
|
|
66
74
|
"@storybook/addon-links": "^7.1.0-alpha.32",
|
|
67
75
|
"@storybook/blocks": "^7.1.0-alpha.32",
|
|
68
|
-
"@storybook/components": "^7.1.0-alpha.32",
|
|
69
|
-
"@storybook/core-events": "^7.1.0-alpha.32",
|
|
70
76
|
"@storybook/jest": "^0.1.0",
|
|
71
|
-
"@storybook/manager-api": "^7.1.0-alpha.32",
|
|
72
77
|
"@storybook/react": "^7.1.0-alpha.32",
|
|
73
78
|
"@storybook/react-vite": "^7.1.0-alpha.32",
|
|
74
79
|
"@storybook/testing-library": "^0.0.14-next.1",
|
|
75
|
-
"@storybook/theming": "^7.1.0-alpha.32",
|
|
76
80
|
"@types/node": "^18.15.0",
|
|
77
81
|
"@types/react": "^18.2.7",
|
|
78
82
|
"@types/react-dom": "^18.2.4",
|
|
79
83
|
"@vitejs/plugin-react": "^3.1.0",
|
|
80
84
|
"auto": "^10.3.0",
|
|
81
|
-
"boxen": "^5.0.1",
|
|
82
85
|
"chromatic": "^6.17.4",
|
|
83
86
|
"dedent": "^0.7.0",
|
|
84
87
|
"nodemon": "^2.0.22",
|
|
@@ -101,26 +104,11 @@
|
|
|
101
104
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
102
105
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
103
106
|
},
|
|
104
|
-
"peerDependenciesMeta": {
|
|
105
|
-
"react": {
|
|
106
|
-
"optional": true
|
|
107
|
-
},
|
|
108
|
-
"react-dom": {
|
|
109
|
-
"optional": true
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
107
|
"publishConfig": {
|
|
113
108
|
"access": "public"
|
|
114
109
|
},
|
|
115
110
|
"bugs": {
|
|
116
111
|
"url": "https://github.com/storybookjs/addon-onboarding/issues"
|
|
117
112
|
},
|
|
118
|
-
"homepage": "https://github.com/storybookjs/addon-onboarding#readme"
|
|
119
|
-
"dependencies": {
|
|
120
|
-
"@radix-ui/react-dialog": "^1.0.4",
|
|
121
|
-
"framer-motion": "^6.5.1",
|
|
122
|
-
"react-confetti": "^6.1.0",
|
|
123
|
-
"react-joyride": "^2.5.4",
|
|
124
|
-
"react-use-measure": "^2.1.1"
|
|
125
|
-
}
|
|
113
|
+
"homepage": "https://github.com/storybookjs/addon-onboarding#readme"
|
|
126
114
|
}
|
package/preset.js
ADDED
package/dist/index.js
DELETED
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":["src_default"],"mappings":"AACA,IAAOA,EAAQ,CAAC","sourcesContent":["// make it work with --isolatedModules\nexport default {};\n"]}
|
package/dist/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":["src_default"],"mappings":"AACA,IAAOA,EAAQ,CAAC","sourcesContent":["// make it work with --isolatedModules\nexport default {};\n"]}
|