@storybook/types 7.0.0-alpha.44
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 +8 -0
- package/dist/index.d.ts +2744 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +64 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var d=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var A=Object.getOwnPropertyNames;var s=Object.prototype.hasOwnProperty;var i=(e,r)=>{for(var n in r)d(e,n,{get:r[n],enumerable:!0})},S=(e,r,n,y)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of A(r))!s.call(e,o)&&o!==n&&d(e,o,{get:()=>r[o],enumerable:!(y=p(r,o))||y.enumerable});return e};var F=e=>S(d({},"__esModule",{value:!0}),e);var _={};i(_,{Addon_TypesEnum:()=>a});module.exports=F(_);var a=(t=>(t.TAB="tab",t.PANEL="panel",t.TOOL="tool",t.TOOLEXTRA="toolextra",t.PREVIEW="preview",t.NOTES_ELEMENT="notes-element",t))(a||{});0&&(module.exports={Addon_TypesEnum});
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var t=(r=>(r.TAB="tab",r.PANEL="panel",r.TOOL="tool",r.TOOLEXTRA="toolextra",r.PREVIEW="preview",r.NOTES_ELEMENT="notes-element",r))(t||{});export{t as Addon_TypesEnum};
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@storybook/types",
|
|
3
|
+
"version": "7.0.0-alpha.44",
|
|
4
|
+
"description": "Core Storybook Types",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"storybook"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://github.com/storybookjs/storybook/tree/main/code/lib/types",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/storybookjs/storybook/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/storybookjs/storybook.git",
|
|
15
|
+
"directory": "code/lib/types"
|
|
16
|
+
},
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "opencollective",
|
|
19
|
+
"url": "https://opencollective.com/storybook"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"require": "./dist/index.js",
|
|
26
|
+
"import": "./dist/index.mjs",
|
|
27
|
+
"types": "./dist/index.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./package.json": "./package.json"
|
|
30
|
+
},
|
|
31
|
+
"main": "dist/index.js",
|
|
32
|
+
"module": "dist/index.mjs",
|
|
33
|
+
"types": "dist/index.d.ts",
|
|
34
|
+
"files": [
|
|
35
|
+
"dist/**/*",
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
|
|
40
|
+
"prep": "../../../scripts/prepare/bundle.ts"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@babel/core": "^7.12.10",
|
|
44
|
+
"@types/babel__core": "^7.0.0",
|
|
45
|
+
"@types/express": "^4.7.0",
|
|
46
|
+
"express": "^4.17.1",
|
|
47
|
+
"file-system-cache": "^2.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@storybook/csf": " 0.0.2--canary.52.d2acbe4.0",
|
|
51
|
+
"@types/node": "^16.0.0",
|
|
52
|
+
"synchronous-promise": "^2.0.15",
|
|
53
|
+
"typescript": "~4.6.3"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"bundler": {
|
|
59
|
+
"entries": [
|
|
60
|
+
"./src/index.ts"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"gitHead": "d4965bd328d8f83c279560c7bc8428e490b275f3"
|
|
64
|
+
}
|