@storybook/blocks 7.0.20 → 7.0.22
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/package.json +12 -12
- package/src/blocks/internal/README.md +8 -0
- package/src/typings.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/blocks",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.22",
|
|
4
4
|
"description": "Storybook Doc Blocks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@storybook/channels": "7.0.
|
|
47
|
-
"@storybook/client-logger": "7.0.
|
|
48
|
-
"@storybook/components": "7.0.
|
|
49
|
-
"@storybook/core-events": "7.0.
|
|
46
|
+
"@storybook/channels": "7.0.22",
|
|
47
|
+
"@storybook/client-logger": "7.0.22",
|
|
48
|
+
"@storybook/components": "7.0.22",
|
|
49
|
+
"@storybook/core-events": "7.0.22",
|
|
50
50
|
"@storybook/csf": "^0.1.0",
|
|
51
|
-
"@storybook/docs-tools": "7.0.
|
|
51
|
+
"@storybook/docs-tools": "7.0.22",
|
|
52
52
|
"@storybook/global": "^5.0.0",
|
|
53
|
-
"@storybook/manager-api": "7.0.
|
|
54
|
-
"@storybook/preview-api": "7.0.
|
|
55
|
-
"@storybook/theming": "7.0.
|
|
56
|
-
"@storybook/types": "7.0.
|
|
53
|
+
"@storybook/manager-api": "7.0.22",
|
|
54
|
+
"@storybook/preview-api": "7.0.22",
|
|
55
|
+
"@storybook/theming": "7.0.22",
|
|
56
|
+
"@storybook/types": "7.0.22",
|
|
57
57
|
"@types/lodash": "^4.14.167",
|
|
58
58
|
"color-convert": "^2.0.1",
|
|
59
59
|
"dequal": "^2.0.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"util-deprecate": "^1.0.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@storybook/addon-actions": "7.0.
|
|
70
|
+
"@storybook/addon-actions": "7.0.22",
|
|
71
71
|
"@types/color-convert": "^2.0.0"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
@@ -83,4 +83,4 @@
|
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
85
|
"gitHead": "9fb2573aa274f3f69d3358050e8df9c903e8245f"
|
|
86
|
-
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Internal `@storybook/blocks` Stories
|
|
2
|
+
|
|
3
|
+
This directory contains stories that are not suitable for public documentation, but that we still want to keep to ensure things don't break.
|
|
4
|
+
|
|
5
|
+
Some blocks have deprecated features that users shouldn't use moving forward, and these internal stories represents those.
|
|
6
|
+
That way we can still test them and ensure the features work, until they are removed for good.
|
|
7
|
+
|
|
8
|
+
This directory is not part of the (public) Blocks Storybook, but are included in the full UI Storybook.
|
package/src/typings.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/* eslint-disable no-underscore-dangle */
|
|
2
|
+
/* eslint-disable @typescript-eslint/naming-convention */
|
|
3
|
+
declare module '*.md';
|
|
4
|
+
|
|
5
|
+
declare var __DOCS_CONTEXT__: any;
|
|
6
|
+
declare var PREVIEW_URL: any;
|
|
7
|
+
declare var LOGLEVEL: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'silent' | undefined;
|