@storybook/components 5.2.2 → 5.2.6

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.
@@ -67,7 +67,6 @@ var DocsWrapper = _theming.styled.div(function (_ref5) {
67
67
  background: theme.background.content,
68
68
  display: 'flex',
69
69
  justifyContent: 'center',
70
- minHeight: '100vh',
71
70
  padding: '4rem 20px'
72
71
  }, "@media (min-width: ".concat(breakpoint * 1, "px)"), {});
73
72
  });
@@ -35,7 +35,7 @@ var List = _theming.styled.div({
35
35
  minWidth: 180,
36
36
  overflow: 'hidden',
37
37
  overflowY: 'auto',
38
- maxHeight: 10.5 * 32 // 10.5 items
38
+ maxHeight: 20.5 * 32 // 20.5 items
39
39
 
40
40
  }, function (_ref) {
41
41
  var theme = _ref.theme;
@@ -378,7 +378,10 @@ var LI = _theming.styled.li(_withReset.withReset, function (_ref14) {
378
378
  '& ul, & ol': {
379
379
  marginTop: '.25em',
380
380
  marginBottom: 0
381
- }
381
+ },
382
+ '& code': codeCommon({
383
+ theme: theme
384
+ })
382
385
  };
383
386
  });
384
387
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/components",
3
- "version": "5.2.2",
3
+ "version": "5.2.6",
4
4
  "description": "Core Storybook Components",
5
5
  "keywords": [
6
6
  "storybook"
@@ -18,8 +18,8 @@
18
18
  "files": [
19
19
  "dist/**/*",
20
20
  "README.md",
21
- "html.d.ts",
22
- "html.js"
21
+ "*.js",
22
+ "*.d.ts"
23
23
  ],
24
24
  "main": "dist/index.js",
25
25
  "types": "dist/index.d.ts",
@@ -27,9 +27,10 @@
27
27
  "prepare": "node ../../scripts/prepare.js"
28
28
  },
29
29
  "dependencies": {
30
- "@storybook/client-logger": "5.2.2",
31
- "@storybook/theming": "5.2.2",
30
+ "@storybook/client-logger": "5.2.6",
31
+ "@storybook/theming": "5.2.6",
32
32
  "@types/react-syntax-highlighter": "10.1.0",
33
+ "@types/react-textarea-autosize": "^4.3.3",
33
34
  "core-js": "^3.0.1",
34
35
  "global": "^4.3.2",
35
36
  "markdown-to-jsx": "^6.9.1",
@@ -47,7 +48,6 @@
47
48
  "simplebar-react": "^1.0.0-alpha.6"
48
49
  },
49
50
  "devDependencies": {
50
- "@types/react-textarea-autosize": "^4.3.3",
51
51
  "enzyme": "^3.9.0",
52
52
  "jest": "^24.7.1",
53
53
  "jest-enzyme": "^7.0.2"
@@ -59,5 +59,5 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "fc0e18c5bddc69493f9a912e46d5558d4bc215e9"
62
+ "gitHead": "ec8ef5c144e73ce8f762df03da0ac6c2375c223b"
63
63
  }