@storybook/components 6.4.0-beta.2 → 6.4.0-beta.23

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.
Files changed (42) hide show
  1. package/dist/cjs/ScrollArea/GlobalScrollAreaStyles.js +1 -1
  2. package/dist/cjs/bar/bar.js +5 -3
  3. package/dist/cjs/bar/button.js +25 -17
  4. package/dist/cjs/bar/button.stories.js +60 -0
  5. package/dist/cjs/bar/separator.js +4 -2
  6. package/dist/cjs/icon/icons.js +2 -0
  7. package/dist/cjs/tabs/tabs.js +1 -1
  8. package/dist/cjs/tooltip/TooltipNote.js +1 -1
  9. package/dist/cjs/typography/DocumentFormatting.js +15 -4
  10. package/dist/cjs/typography/typography.stories.mdx +75 -0
  11. package/dist/esm/ScrollArea/GlobalScrollAreaStyles.js +1 -1
  12. package/dist/esm/bar/bar.js +5 -3
  13. package/dist/esm/bar/button.js +23 -17
  14. package/dist/esm/bar/button.stories.js +35 -0
  15. package/dist/esm/bar/separator.js +4 -2
  16. package/dist/esm/icon/icons.js +2 -0
  17. package/dist/esm/tabs/tabs.js +1 -1
  18. package/dist/esm/tooltip/TooltipNote.js +1 -1
  19. package/dist/esm/typography/DocumentFormatting.js +12 -3
  20. package/dist/esm/typography/typography.stories.mdx +75 -0
  21. package/dist/modern/ScrollArea/GlobalScrollAreaStyles.js +1 -1
  22. package/dist/modern/bar/bar.js +5 -3
  23. package/dist/modern/bar/button.js +23 -17
  24. package/dist/modern/bar/button.stories.js +27 -0
  25. package/dist/modern/bar/separator.js +4 -2
  26. package/dist/modern/icon/icons.js +2 -0
  27. package/dist/modern/tabs/tabs.js +1 -1
  28. package/dist/modern/tooltip/TooltipNote.js +1 -1
  29. package/dist/modern/typography/DocumentFormatting.js +7 -2
  30. package/dist/modern/typography/typography.stories.mdx +75 -0
  31. package/dist/ts3.4/ScrollArea/GlobalScrollAreaStyles.d.ts +1 -0
  32. package/dist/ts3.4/blocks/ArgsTable/NoControlsWarning.d.ts +1 -0
  33. package/dist/ts3.4/blocks/EmptyBlock.d.ts +1 -0
  34. package/dist/ts3.4/icon/icons.d.ts +2 -0
  35. package/dist/ts3.9/ScrollArea/GlobalScrollAreaStyles.d.ts +1 -0
  36. package/dist/ts3.9/blocks/ArgsTable/NoControlsWarning.d.ts +1 -0
  37. package/dist/ts3.9/blocks/EmptyBlock.d.ts +1 -0
  38. package/dist/ts3.9/icon/icons.d.ts +2 -0
  39. package/package.json +5 -5
  40. package/dist/cjs/typography/typography.stories.js +0 -130
  41. package/dist/esm/typography/typography.stories.js +0 -106
  42. package/dist/modern/typography/typography.stories.js +0 -91
@@ -431,7 +431,7 @@ var getScrollAreaStyles = function getScrollAreaStyles(theme) {
431
431
  borderRadius: 10
432
432
  },
433
433
  '.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle': {
434
- background: theme.color.darker,
434
+ background: theme.color.mediumdark,
435
435
  opacity: 0.5
436
436
  },
437
437
  '.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle': {
@@ -63,12 +63,14 @@ var Side = _theming.styled.div({
63
63
  display: 'flex',
64
64
  whiteSpace: 'nowrap',
65
65
  flexBasis: 'auto',
66
- flexShrink: 0
66
+ flexShrink: 0,
67
+ marginLeft: 3,
68
+ marginRight: 3
67
69
  }, function (_ref) {
68
70
  var left = _ref.left;
69
71
  return left ? {
70
72
  '& > *': {
71
- marginLeft: 15
73
+ marginLeft: 4
72
74
  }
73
75
  } : {};
74
76
  }, function (_ref2) {
@@ -76,7 +78,7 @@ var Side = _theming.styled.div({
76
78
  return right ? {
77
79
  marginLeft: 30,
78
80
  '& > *': {
79
- marginRight: 15
81
+ marginRight: 4
80
82
  }
81
83
  } : {};
82
84
  });
@@ -15,6 +15,10 @@ var _react = _interopRequireDefault(require("react"));
15
15
 
16
16
  var _theming = require("@storybook/theming");
17
17
 
18
+ var _polished = require("polished");
19
+
20
+ var _core = require("@popperjs/core");
21
+
18
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19
23
 
20
24
  function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
@@ -84,36 +88,40 @@ var IconButton = (0, _theming.styled)(ButtonOrLink, {
84
88
  })(function (_ref4) {
85
89
  var theme = _ref4.theme;
86
90
  return {
87
- display: 'inline-flex',
88
- justifyContent: 'center',
89
91
  alignItems: 'center',
90
- height: 40,
91
- background: 'none',
92
+ background: 'transparent',
93
+ border: 'none',
94
+ borderRadius: 4,
92
95
  color: 'inherit',
93
- padding: 0,
94
96
  cursor: 'pointer',
95
- // Icon Buttons may have text depending on user preferences.
96
- // While we don't recommend having text for IconButtons, this style ensures that the text is the correct size.
97
- fontWeight: 'bold',
97
+ display: 'inline-flex',
98
98
  fontSize: 13,
99
- border: '0 solid transparent',
100
- borderTop: '3px solid transparent',
101
- borderBottom: '3px solid transparent',
102
- transition: 'color 0.2s linear, border-bottom-color 0.2s linear',
103
- '&:hover, &:focus': {
104
- outline: '0 none',
99
+ fontWeight: 'bold',
100
+ height: 28,
101
+ justifyContent: 'center',
102
+ marginTop: 6,
103
+ padding: '8px 7px',
104
+ '&:hover, &:focus-visible': {
105
+ background: (0, _polished.transparentize)(0.88, theme.color.secondary),
105
106
  color: theme.color.secondary
106
107
  },
108
+ '&:focus-visible': {
109
+ outline: _core.auto // Ensures links have the same focus style
110
+
111
+ },
112
+ '&:focus:not(:focus-visible)': {
113
+ outline: 'none'
114
+ },
107
115
  '& > svg': {
108
- width: 15
116
+ width: 14
109
117
  }
110
118
  };
111
119
  }, function (_ref5) {
112
120
  var active = _ref5.active,
113
121
  theme = _ref5.theme;
114
122
  return active ? {
115
- outline: '0 none',
116
- borderBottomColor: theme.color.secondary
123
+ backgroundColor: theme.background.hoverable,
124
+ color: theme.color.secondary
117
125
  } : {};
118
126
  });
119
127
  exports.IconButton = IconButton;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.WithTextActive = exports.WithText = exports.Active = exports._IconButton = exports.default = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _button = require("./button");
11
+
12
+ var _icon = require("../icon/icon");
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ var _default = {
17
+ component: _button.IconButton,
18
+ title: 'Basics/IconButton'
19
+ };
20
+ exports.default = _default;
21
+
22
+ var _IconButton = function _IconButton() {
23
+ return /*#__PURE__*/_react.default.createElement(_button.IconButton, null, /*#__PURE__*/_react.default.createElement(_icon.Icons, {
24
+ icon: "bookmark"
25
+ }));
26
+ };
27
+
28
+ exports._IconButton = _IconButton;
29
+ _IconButton.displayName = "_IconButton";
30
+
31
+ var Active = function Active() {
32
+ return /*#__PURE__*/_react.default.createElement(_button.IconButton, {
33
+ active: true
34
+ }, /*#__PURE__*/_react.default.createElement(_icon.Icons, {
35
+ icon: "beaker"
36
+ }));
37
+ };
38
+
39
+ exports.Active = Active;
40
+ Active.displayName = "Active";
41
+
42
+ var WithText = function WithText() {
43
+ return /*#__PURE__*/_react.default.createElement(_button.IconButton, null, /*#__PURE__*/_react.default.createElement(_icon.Icons, {
44
+ icon: "circlehollow"
45
+ }), "\xA0Howdy!");
46
+ };
47
+
48
+ exports.WithText = WithText;
49
+ WithText.displayName = "WithText";
50
+
51
+ var WithTextActive = function WithTextActive() {
52
+ return /*#__PURE__*/_react.default.createElement(_button.IconButton, {
53
+ active: true
54
+ }, /*#__PURE__*/_react.default.createElement(_icon.Icons, {
55
+ icon: "circlehollow"
56
+ }), "\xA0Howdy!");
57
+ };
58
+
59
+ exports.WithTextActive = WithTextActive;
60
+ WithTextActive.displayName = "WithTextActive";
@@ -37,9 +37,11 @@ var Separator = _theming.styled.span(function (_ref) {
37
37
  var theme = _ref.theme;
38
38
  return {
39
39
  width: 1,
40
- height: 24,
40
+ height: 20,
41
41
  background: theme.appBorderColor,
42
- marginTop: 8
42
+ marginTop: 10,
43
+ marginLeft: 6,
44
+ marginRight: 2
43
45
  };
44
46
  }, function (_ref2) {
45
47
  var force = _ref2.force;
@@ -117,6 +117,8 @@ var icons = {
117
117
  playback: 'M823 136L311 478l-12 10V192a64 64 0 00-128 0v640a64 64 0 10128 0V536l12 10 512 342c8 5 16 8 23 8 17 0 29-16 29-42V170c0-26-12-42-29-42-7 0-15 3-23 8z',
118
118
  stop: 'M1024 512A512 512 0 100 512a512 512 0 001024 0zM215 809a418 418 0 010-594 418 418 0 01594 0 418 418 0 010 594 418 418 0 01-594 0zm471-78H338c-25 0-45-20-45-45V338c0-25 20-45 45-45h348c25 0 45 20 45 45v348c0 25-20 45-45 45z',
119
119
  stopalt: 'M894 85H130c-25 0-45 20-45 45v764c0 25 20 45 45 45h764c25 0 45-20 45-45V130c0-25-20-45-45-45z',
120
+ rewind: 'm631.8 642.6 345 245.4c7.7 5.4 15 8 21.4 8 15.9 0 26.8-15.5 26.8-42.3V170.3c0-26.8-11-42.3-26.8-42.3-6.4 0-13.7 2.6-21.4 8l-345 245.4v-211c0-26.9-10.9-42.4-26.8-42.4-6.4 0-13.7 2.6-21.4 8L129 459.4V192a64 64 0 0 0-128 0v640a64 64 0 0 0 128 0V564.6L583.6 888c7.7 5.4 15 8 21.4 8 15.9 0 26.8-15.5 26.8-42.3v-211Z',
121
+ fastforward: 'M398.2 386.4 53.2 141c-7.7-5.4-15-8-21.4-8C15.9 133 5 148.5 5 175.3v683.4C5 885.5 16 901 31.8 901c6.4 0 13.7-2.6 21.4-8l345-245.4v211c0 26.9 11 42.4 26.8 42.4 6.4 0 13.7-2.6 21.4-8L901 569.6V837a64 64 0 0 0 128 0V197a64 64 0 0 0-128 0v267.4L446.4 141c-7.7-5.4-15-8-21.4-8-15.9 0-26.8 15.5-26.8 42.3v211Z',
120
122
  email: 'M960.032 268.004c0.748-10.040-2.246-20.364-9.226-28.684-5.984-7.132-13.938-11.62-22.394-13.394-0.13-0.026-0.268-0.066-0.396-0.092-1.082-0.22-2.172-0.376-3.272-0.5-0.25-0.032-0.492-0.080-0.742-0.102-1.028-0.096-2.052-0.136-3.090-0.156-0.292-0.002-0.582-0.042-0.876-0.042h-816.008c-21.416 0-38.848 16.844-39.898 38-0.034 0.628-0.092 1.256-0.096 1.89 0 0.034-0.006 0.074-0.006 0.114 0 0.050 0.008 0.102 0.008 0.152v495.692c0 0.054-0.008 0.106-0.008 0.156 0 22.090 17.91 40 40 40h816.004c13.808 0 25.98-6.996 33.17-17.636 0.1-0.148 0.182-0.312 0.28-0.458 0.606-0.93 1.196-1.868 1.722-2.84 0.046-0.082 0.080-0.172 0.124-0.258 2.992-5.604 4.704-12.008 4.704-18.804v0 0-493.038zM144.032 350.156l339.946 281.188c6.568 6.434 14.918 10.168 23.564 11.122 0.16 0.024 0.32 0.050 0.48 0.066 0.838 0.082 1.676 0.114 2.518 0.14 0.496 0.020 0.994 0.058 1.492 0.058s0.996-0.042 1.492-0.058c0.842-0.028 1.68-0.058 2.518-0.14 0.16-0.016 0.32-0.042 0.48-0.066 8.646-0.958 16.996-4.688 23.564-11.122l339.946-281.206v370.894h-736v-370.876zM215.066 305.030h593.91l-296.946 245.422-296.964-245.422z',
121
123
  link: 'M743.52 529.234c5.616-5.616 83.048-83.046 88.462-88.46 30.944-32.778 47.97-75.636 47.97-120.792 0-47.048-18.304-91.26-51.542-124.484-33.228-33.22-77.43-51.516-124.458-51.516-45.024 0-87.792 16.94-120.536 47.72l-104.458 104.456c-30.792 32.738-47.734 75.512-47.734 120.548 0 41.916 14.576 81.544 41.248 113.196 3.264 3.876 6.666 7.664 10.292 11.29 4.258 4.258 8.704 8.262 13.304 12.022 0.054 0.080 0.096 0.152 0.148 0.232 9.572 7.308 15.778 18.804 15.778 31.776 0 22.094-17.914 40-40.004 40-8.542 0-16.442-2.696-22.938-7.26-2.746-1.93-20.622-17.43-30.35-28.050-0.008-0.010-0.018-0.018-0.026-0.028-4.992-5.432-13.234-15.23-18.552-22.65s-16.556-25.872-17.036-26.736c-0.7-1.262-2.974-5.526-3.422-6.39-0.69-1.334-6.118-12.67-6.114-12.67-14.342-31.96-22.332-67.4-22.332-104.728 0-60.826 21.198-116.648 56.58-160.544 0.252-0.314 4.61-5.594 6.594-7.866 0.304-0.35 5.038-5.636 7.16-7.874 0.252-0.268 105.86-105.874 106.128-106.126 45.902-43.584 107.958-70.314 176.264-70.314 141.382 0 255.998 114.5 255.998 256 0 68.516-26.882 130.688-70.652 176.61-0.144 0.148-109.854 109.546-112.090 111.528-0.958 0.848-5.072 4.352-5.072 4.352-6.448 5.434-13.132 10.592-20.1 15.378 0.412-6.836 0.644-13.702 0.644-20.6 0-26.46-3.108-52.206-8.918-76.918l-0.236-1.102zM616.144 767.82c35.382-43.896 56.58-99.718 56.58-160.544 0-37.328-7.99-72.768-22.332-104.728 0.004 0 0.006-0.002 0.010-0.004-0.258-0.576-0.538-1.14-0.8-1.714-0.686-1.498-2.894-6.112-3.296-6.93-0.668-1.344-2.952-5.732-3.386-6.604-3.48-6.982-8.708-15.126-9.49-16.366-0.498-0.792-0.996-1.58-1.502-2.364-0.834-1.29-15.364-22.066-26.656-34.466-0.008-0.010-0.018-0.018-0.026-0.028-7.056-8.448-24.932-24.198-30.35-28.050-6.47-4.602-14.396-7.26-22.938-7.26-22.090 0-40.004 17.906-40.004 40 0 12.97 6.206 24.466 15.778 31.776 0.052 0.080 0.094 0.152 0.148 0.232 4.602 3.76 20.334 19.434 23.598 23.31 26.672 31.65 41.248 71.28 41.248 113.196 0 45.038-16.944 87.81-47.734 120.548l-104.458 104.456c-32.742 30.782-75.512 47.72-120.536 47.72-47.028 0-91.228-18.294-124.458-51.516-33.236-33.224-51.542-77.436-51.542-124.484 0-45.154 17.028-88.014 47.97-120.792 5.414-5.414 40.812-40.812 68.958-68.958 7.176-7.176 13.888-13.886 19.504-19.502v-0.002c-0.356-1.562-0.246-1.096-0.246-1.096-5.81-24.712-8.918-50.458-8.918-76.918 0-6.898 0.232-13.764 0.644-20.6-6.966 4.788-20.1 15.33-20.1 15.33-0.734 0.62-9.518 8.388-11.68 10.45-0.16 0.154-105.338 105.33-105.482 105.478-43.77 45.922-70.652 108.094-70.652 176.61 0 141.5 114.616 256 255.998 256 68.306 0 130.362-26.73 176.264-70.314 0.27-0.254 105.876-105.86 106.128-106.126 0.004-0.002 13.506-15.426 13.758-15.74z',
122
124
  paperclip: 'M824.25 369.354c68.146-70.452 67.478-182.784-2.094-252.354-70.296-70.296-184.266-70.296-254.558 0-0.014 0.012-0.028 0.026-0.042 0.042-0.004 0.002-0.006 0.004-0.010 0.008l-433.144 433.142c-0.036 0.036-0.074 0.068-0.11 0.106-0.054 0.052-0.106 0.11-0.16 0.162l-2.668 2.67c-0.286 0.286-0.528 0.596-0.8 0.888-43.028 44.88-66.664 103.616-66.664 165.986 0 64.106 24.962 124.376 70.292 169.704 45.328 45.33 105.598 70.292 169.706 70.292 50.612 0 98.822-15.57 139.186-44.428 4.932-1.952 9.556-4.906 13.544-8.894l16.802-16.802c0.056-0.056 0.116-0.112 0.172-0.168 0.038-0.038 0.074-0.076 0.112-0.116l289.010-289.014c15.622-15.618 15.62-40.942 0-56.56s-40.948-15.62-56.566 0l-289.124 289.122c-62.482 62.484-163.792 62.484-226.274 0-62.484-62.482-62.484-163.79 0-226.272h-0.002l433.134-433.12c0.058-0.060 0.112-0.122 0.172-0.18 38.99-38.99 102.43-38.99 141.42 0 38.992 38.99 38.99 102.432 0 141.422-0.058 0.060-0.122 0.114-0.18 0.17l0.006 0.006-280.536 280.534c-0.002-0.002-0.002-0.004-0.004-0.006l-79.978 79.98c-0.010 0.010-0.016 0.020-0.028 0.028-0.008 0.012-0.018 0.018-0.028 0.028l-0.064 0.062c-15.622 15.624-40.944 15.624-56.562 0-15.624-15.62-15.624-40.944-0.002-56.566l0.062-0.062c0.010-0.010 0.018-0.020 0.028-0.028 0.008-0.012 0.020-0.018 0.028-0.028l79.98-79.978c-0.002-0.002-0.004-0.002-0.006-0.004l136.508-136.512c15.622-15.62 15.62-40.944-0.002-56.562-15.618-15.62-40.946-15.62-56.564 0l-219.342 219.344c-1.284 1.284-2.42 2.652-3.494 4.052-40.4 47.148-38.316 118.184 6.322 162.824 44.64 44.638 115.674 46.722 162.82 6.324 1.402-1.072 2.772-2.21 4.054-3.494l2.83-2.832c0.002 0 0.002 0 0.002 0s0 0 0 0l360.54-360.54c0.058-0.056 0.12-0.114 0.18-0.172 0.050-0.050 0.098-0.106 0.15-0.158l0.994-0.994c0.34-0.338 0.63-0.702 0.952-1.052z',
@@ -99,7 +99,7 @@ var Wrapper = _theming.styled.div(function (_ref) {
99
99
  var TabBar = _theming.styled.div({
100
100
  overflow: 'hidden',
101
101
  '&:first-of-type': {
102
- marginLeft: 0
102
+ marginLeft: -3
103
103
  }
104
104
  });
105
105
 
@@ -34,7 +34,7 @@ var Note = _theming.styled.div(function (_ref) {
34
34
  whiteSpace: 'nowrap',
35
35
  pointerEvents: 'none',
36
36
  zIndex: -1,
37
- background: 'rgba(0, 0, 0, 0.4)',
37
+ background: theme.base === 'light' ? 'rgba(60, 60, 60, 0.9)' : 'rgba(20, 20, 20, 0.85)',
38
38
  margin: 6
39
39
  };
40
40
  });
@@ -13,10 +13,10 @@ require("core-js/modules/es.string.match.js");
13
13
 
14
14
  require("core-js/modules/es.regexp.exec.js");
15
15
 
16
- require("core-js/modules/es.array.join.js");
17
-
18
16
  require("core-js/modules/es.array.filter.js");
19
17
 
18
+ require("core-js/modules/es.array.join.js");
19
+
20
20
  require("core-js/modules/es.array.concat.js");
21
21
 
22
22
  require("core-js/modules/es.object.keys.js");
@@ -442,6 +442,12 @@ var DefaultCodeBlock = _theming.styled.code(function (_ref16) {
442
442
  };
443
443
  }, _shared.codeCommon);
444
444
 
445
+ var isInlineCodeRegex = /[\n\r]/g;
446
+
447
+ var isReactChildString = function isReactChildString(child) {
448
+ return typeof child === 'string';
449
+ };
450
+
445
451
  var Code = function Code(_ref17) {
446
452
  var _language$;
447
453
 
@@ -450,12 +456,17 @@ var Code = function Code(_ref17) {
450
456
  props = _objectWithoutProperties(_ref17, ["className", "children"]);
451
457
 
452
458
  var language = (className || '').match(/lang-(\S+)/);
453
- var isInlineCode = !children.match(/[\n\r]/g);
459
+
460
+ var childrenArray = _react.default.Children.toArray(children);
461
+
462
+ var isInlineCode = !childrenArray.filter(isReactChildString).some(function (child) {
463
+ return child.match(isInlineCodeRegex);
464
+ });
454
465
 
455
466
  if (isInlineCode) {
456
467
  return /*#__PURE__*/_react.default.createElement(DefaultCodeBlock, _extends({}, props, {
457
468
  className: className
458
- }), children);
469
+ }), childrenArray);
459
470
  }
460
471
 
461
472
  return /*#__PURE__*/_react.default.createElement(_Source.StyledSyntaxHighlighter, _extends({
@@ -0,0 +1,75 @@
1
+ import { typography } from '@storybook/theming';
2
+ import { Meta, Typeset } from '@storybook/addon-docs';
3
+
4
+ export const fontSizes = ['l3', 'l2', 'l1', 'm3', 'm2', 'm1', 's3', 's2', 's1'].map(
5
+ (size) => `${typography.size[size]}px`
6
+ );
7
+
8
+ export const sampleText =
9
+ 'Storybook is an open source tool for building UI components and pages in isolation. It streamlines UI development, testing, and documentation.';
10
+
11
+ <Meta title="Basics/Typography" />
12
+
13
+ ## Sans-serif
14
+
15
+ ```
16
+ font-family:
17
+ "Nunito Sans",
18
+ -apple-system,
19
+ ".SFNSText-Regular",
20
+ "San Francisco",
21
+ BlinkMacSystemFont,
22
+ "Segoe UI",
23
+ "Helvetica Neue",
24
+ Helvetica,
25
+ Arial,
26
+ sans-serif;
27
+ ```
28
+
29
+ <Typeset
30
+ fontFamily={typography.fonts.base}
31
+ fontSizes={fontSizes}
32
+ fontWeight={typography.weight.regular}
33
+ sampleText={sampleText}
34
+ />
35
+ <Typeset
36
+ fontFamily={typography.fonts.base}
37
+ fontSizes={fontSizes}
38
+ fontWeight={typography.weight.bold}
39
+ sampleText={sampleText}
40
+ />
41
+ <Typeset
42
+ fontFamily={typography.fonts.base}
43
+ fontSizes={fontSizes}
44
+ fontWeight={typography.weight.black}
45
+ sampleText={sampleText}
46
+ />
47
+
48
+ ## Monospace
49
+
50
+ ```
51
+ font-family:
52
+ ui-monospace,
53
+ Menlo,
54
+ Monaco,
55
+ "Roboto Mono",
56
+ "Oxygen Mono",
57
+ "Ubuntu Monospace",
58
+ "Source Code Pro",
59
+ "Droid Sans Mono",
60
+ "Courier New",
61
+ monospace;
62
+ ```
63
+
64
+ <Typeset
65
+ fontFamily={typography.fonts.mono}
66
+ fontSizes={fontSizes}
67
+ fontWeight={typography.weight.regular}
68
+ sampleText={sampleText}
69
+ />
70
+ <Typeset
71
+ fontFamily={typography.fonts.mono}
72
+ fontSizes={fontSizes}
73
+ fontWeight={typography.weight.bold}
74
+ sampleText={sampleText}
75
+ />
@@ -418,7 +418,7 @@ export var getScrollAreaStyles = function getScrollAreaStyles(theme) {
418
418
  borderRadius: 10
419
419
  },
420
420
  '.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle': {
421
- background: theme.color.darker,
421
+ background: theme.color.mediumdark,
422
422
  opacity: 0.5
423
423
  },
424
424
  '.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle': {
@@ -33,12 +33,14 @@ var Side = styled.div({
33
33
  display: 'flex',
34
34
  whiteSpace: 'nowrap',
35
35
  flexBasis: 'auto',
36
- flexShrink: 0
36
+ flexShrink: 0,
37
+ marginLeft: 3,
38
+ marginRight: 3
37
39
  }, function (_ref) {
38
40
  var left = _ref.left;
39
41
  return left ? {
40
42
  '& > *': {
41
- marginLeft: 15
43
+ marginLeft: 4
42
44
  }
43
45
  } : {};
44
46
  }, function (_ref2) {
@@ -46,7 +48,7 @@ var Side = styled.div({
46
48
  return right ? {
47
49
  marginLeft: 30,
48
50
  '& > *': {
49
- marginRight: 15
51
+ marginRight: 4
50
52
  }
51
53
  } : {};
52
54
  });
@@ -10,6 +10,8 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
10
10
 
11
11
  import React from 'react';
12
12
  import { styled, isPropValid } from '@storybook/theming';
13
+ import { transparentize } from 'polished';
14
+ import { auto } from '@popperjs/core';
13
15
 
14
16
  var ButtonOrLink = function ButtonOrLink(_ref) {
15
17
  var children = _ref.children,
@@ -71,36 +73,40 @@ export var IconButton = styled(ButtonOrLink, {
71
73
  })(function (_ref4) {
72
74
  var theme = _ref4.theme;
73
75
  return {
74
- display: 'inline-flex',
75
- justifyContent: 'center',
76
76
  alignItems: 'center',
77
- height: 40,
78
- background: 'none',
77
+ background: 'transparent',
78
+ border: 'none',
79
+ borderRadius: 4,
79
80
  color: 'inherit',
80
- padding: 0,
81
81
  cursor: 'pointer',
82
- // Icon Buttons may have text depending on user preferences.
83
- // While we don't recommend having text for IconButtons, this style ensures that the text is the correct size.
84
- fontWeight: 'bold',
82
+ display: 'inline-flex',
85
83
  fontSize: 13,
86
- border: '0 solid transparent',
87
- borderTop: '3px solid transparent',
88
- borderBottom: '3px solid transparent',
89
- transition: 'color 0.2s linear, border-bottom-color 0.2s linear',
90
- '&:hover, &:focus': {
91
- outline: '0 none',
84
+ fontWeight: 'bold',
85
+ height: 28,
86
+ justifyContent: 'center',
87
+ marginTop: 6,
88
+ padding: '8px 7px',
89
+ '&:hover, &:focus-visible': {
90
+ background: transparentize(0.88, theme.color.secondary),
92
91
  color: theme.color.secondary
93
92
  },
93
+ '&:focus-visible': {
94
+ outline: auto // Ensures links have the same focus style
95
+
96
+ },
97
+ '&:focus:not(:focus-visible)': {
98
+ outline: 'none'
99
+ },
94
100
  '& > svg': {
95
- width: 15
101
+ width: 14
96
102
  }
97
103
  };
98
104
  }, function (_ref5) {
99
105
  var active = _ref5.active,
100
106
  theme = _ref5.theme;
101
107
  return active ? {
102
- outline: '0 none',
103
- borderBottomColor: theme.color.secondary
108
+ backgroundColor: theme.background.hoverable,
109
+ color: theme.color.secondary
104
110
  } : {};
105
111
  });
106
112
  IconButton.displayName = 'IconButton';
@@ -0,0 +1,35 @@
1
+ import React from 'react';
2
+ import { IconButton } from './button';
3
+ import { Icons } from '../icon/icon';
4
+ export default {
5
+ component: IconButton,
6
+ title: 'Basics/IconButton'
7
+ };
8
+ export var _IconButton = function _IconButton() {
9
+ return /*#__PURE__*/React.createElement(IconButton, null, /*#__PURE__*/React.createElement(Icons, {
10
+ icon: "bookmark"
11
+ }));
12
+ };
13
+ _IconButton.displayName = "_IconButton";
14
+ export var Active = function Active() {
15
+ return /*#__PURE__*/React.createElement(IconButton, {
16
+ active: true
17
+ }, /*#__PURE__*/React.createElement(Icons, {
18
+ icon: "beaker"
19
+ }));
20
+ };
21
+ Active.displayName = "Active";
22
+ export var WithText = function WithText() {
23
+ return /*#__PURE__*/React.createElement(IconButton, null, /*#__PURE__*/React.createElement(Icons, {
24
+ icon: "circlehollow"
25
+ }), "\xA0Howdy!");
26
+ };
27
+ WithText.displayName = "WithText";
28
+ export var WithTextActive = function WithTextActive() {
29
+ return /*#__PURE__*/React.createElement(IconButton, {
30
+ active: true
31
+ }, /*#__PURE__*/React.createElement(Icons, {
32
+ icon: "circlehollow"
33
+ }), "\xA0Howdy!");
34
+ };
35
+ WithTextActive.displayName = "WithTextActive";
@@ -4,9 +4,11 @@ export var Separator = styled.span(function (_ref) {
4
4
  var theme = _ref.theme;
5
5
  return {
6
6
  width: 1,
7
- height: 24,
7
+ height: 20,
8
8
  background: theme.appBorderColor,
9
- marginTop: 8
9
+ marginTop: 10,
10
+ marginLeft: 6,
11
+ marginRight: 2
10
12
  };
11
13
  }, function (_ref2) {
12
14
  var force = _ref2.force;
@@ -111,6 +111,8 @@ export var icons = {
111
111
  playback: 'M823 136L311 478l-12 10V192a64 64 0 00-128 0v640a64 64 0 10128 0V536l12 10 512 342c8 5 16 8 23 8 17 0 29-16 29-42V170c0-26-12-42-29-42-7 0-15 3-23 8z',
112
112
  stop: 'M1024 512A512 512 0 100 512a512 512 0 001024 0zM215 809a418 418 0 010-594 418 418 0 01594 0 418 418 0 010 594 418 418 0 01-594 0zm471-78H338c-25 0-45-20-45-45V338c0-25 20-45 45-45h348c25 0 45 20 45 45v348c0 25-20 45-45 45z',
113
113
  stopalt: 'M894 85H130c-25 0-45 20-45 45v764c0 25 20 45 45 45h764c25 0 45-20 45-45V130c0-25-20-45-45-45z',
114
+ rewind: 'm631.8 642.6 345 245.4c7.7 5.4 15 8 21.4 8 15.9 0 26.8-15.5 26.8-42.3V170.3c0-26.8-11-42.3-26.8-42.3-6.4 0-13.7 2.6-21.4 8l-345 245.4v-211c0-26.9-10.9-42.4-26.8-42.4-6.4 0-13.7 2.6-21.4 8L129 459.4V192a64 64 0 0 0-128 0v640a64 64 0 0 0 128 0V564.6L583.6 888c7.7 5.4 15 8 21.4 8 15.9 0 26.8-15.5 26.8-42.3v-211Z',
115
+ fastforward: 'M398.2 386.4 53.2 141c-7.7-5.4-15-8-21.4-8C15.9 133 5 148.5 5 175.3v683.4C5 885.5 16 901 31.8 901c6.4 0 13.7-2.6 21.4-8l345-245.4v211c0 26.9 11 42.4 26.8 42.4 6.4 0 13.7-2.6 21.4-8L901 569.6V837a64 64 0 0 0 128 0V197a64 64 0 0 0-128 0v267.4L446.4 141c-7.7-5.4-15-8-21.4-8-15.9 0-26.8 15.5-26.8 42.3v211Z',
114
116
  email: 'M960.032 268.004c0.748-10.040-2.246-20.364-9.226-28.684-5.984-7.132-13.938-11.62-22.394-13.394-0.13-0.026-0.268-0.066-0.396-0.092-1.082-0.22-2.172-0.376-3.272-0.5-0.25-0.032-0.492-0.080-0.742-0.102-1.028-0.096-2.052-0.136-3.090-0.156-0.292-0.002-0.582-0.042-0.876-0.042h-816.008c-21.416 0-38.848 16.844-39.898 38-0.034 0.628-0.092 1.256-0.096 1.89 0 0.034-0.006 0.074-0.006 0.114 0 0.050 0.008 0.102 0.008 0.152v495.692c0 0.054-0.008 0.106-0.008 0.156 0 22.090 17.91 40 40 40h816.004c13.808 0 25.98-6.996 33.17-17.636 0.1-0.148 0.182-0.312 0.28-0.458 0.606-0.93 1.196-1.868 1.722-2.84 0.046-0.082 0.080-0.172 0.124-0.258 2.992-5.604 4.704-12.008 4.704-18.804v0 0-493.038zM144.032 350.156l339.946 281.188c6.568 6.434 14.918 10.168 23.564 11.122 0.16 0.024 0.32 0.050 0.48 0.066 0.838 0.082 1.676 0.114 2.518 0.14 0.496 0.020 0.994 0.058 1.492 0.058s0.996-0.042 1.492-0.058c0.842-0.028 1.68-0.058 2.518-0.14 0.16-0.016 0.32-0.042 0.48-0.066 8.646-0.958 16.996-4.688 23.564-11.122l339.946-281.206v370.894h-736v-370.876zM215.066 305.030h593.91l-296.946 245.422-296.964-245.422z',
115
117
  link: 'M743.52 529.234c5.616-5.616 83.048-83.046 88.462-88.46 30.944-32.778 47.97-75.636 47.97-120.792 0-47.048-18.304-91.26-51.542-124.484-33.228-33.22-77.43-51.516-124.458-51.516-45.024 0-87.792 16.94-120.536 47.72l-104.458 104.456c-30.792 32.738-47.734 75.512-47.734 120.548 0 41.916 14.576 81.544 41.248 113.196 3.264 3.876 6.666 7.664 10.292 11.29 4.258 4.258 8.704 8.262 13.304 12.022 0.054 0.080 0.096 0.152 0.148 0.232 9.572 7.308 15.778 18.804 15.778 31.776 0 22.094-17.914 40-40.004 40-8.542 0-16.442-2.696-22.938-7.26-2.746-1.93-20.622-17.43-30.35-28.050-0.008-0.010-0.018-0.018-0.026-0.028-4.992-5.432-13.234-15.23-18.552-22.65s-16.556-25.872-17.036-26.736c-0.7-1.262-2.974-5.526-3.422-6.39-0.69-1.334-6.118-12.67-6.114-12.67-14.342-31.96-22.332-67.4-22.332-104.728 0-60.826 21.198-116.648 56.58-160.544 0.252-0.314 4.61-5.594 6.594-7.866 0.304-0.35 5.038-5.636 7.16-7.874 0.252-0.268 105.86-105.874 106.128-106.126 45.902-43.584 107.958-70.314 176.264-70.314 141.382 0 255.998 114.5 255.998 256 0 68.516-26.882 130.688-70.652 176.61-0.144 0.148-109.854 109.546-112.090 111.528-0.958 0.848-5.072 4.352-5.072 4.352-6.448 5.434-13.132 10.592-20.1 15.378 0.412-6.836 0.644-13.702 0.644-20.6 0-26.46-3.108-52.206-8.918-76.918l-0.236-1.102zM616.144 767.82c35.382-43.896 56.58-99.718 56.58-160.544 0-37.328-7.99-72.768-22.332-104.728 0.004 0 0.006-0.002 0.010-0.004-0.258-0.576-0.538-1.14-0.8-1.714-0.686-1.498-2.894-6.112-3.296-6.93-0.668-1.344-2.952-5.732-3.386-6.604-3.48-6.982-8.708-15.126-9.49-16.366-0.498-0.792-0.996-1.58-1.502-2.364-0.834-1.29-15.364-22.066-26.656-34.466-0.008-0.010-0.018-0.018-0.026-0.028-7.056-8.448-24.932-24.198-30.35-28.050-6.47-4.602-14.396-7.26-22.938-7.26-22.090 0-40.004 17.906-40.004 40 0 12.97 6.206 24.466 15.778 31.776 0.052 0.080 0.094 0.152 0.148 0.232 4.602 3.76 20.334 19.434 23.598 23.31 26.672 31.65 41.248 71.28 41.248 113.196 0 45.038-16.944 87.81-47.734 120.548l-104.458 104.456c-32.742 30.782-75.512 47.72-120.536 47.72-47.028 0-91.228-18.294-124.458-51.516-33.236-33.224-51.542-77.436-51.542-124.484 0-45.154 17.028-88.014 47.97-120.792 5.414-5.414 40.812-40.812 68.958-68.958 7.176-7.176 13.888-13.886 19.504-19.502v-0.002c-0.356-1.562-0.246-1.096-0.246-1.096-5.81-24.712-8.918-50.458-8.918-76.918 0-6.898 0.232-13.764 0.644-20.6-6.966 4.788-20.1 15.33-20.1 15.33-0.734 0.62-9.518 8.388-11.68 10.45-0.16 0.154-105.338 105.33-105.482 105.478-43.77 45.922-70.652 108.094-70.652 176.61 0 141.5 114.616 256 255.998 256 68.306 0 130.362-26.73 176.264-70.314 0.27-0.254 105.876-105.86 106.128-106.126 0.004-0.002 13.506-15.426 13.758-15.74z',
116
118
  paperclip: 'M824.25 369.354c68.146-70.452 67.478-182.784-2.094-252.354-70.296-70.296-184.266-70.296-254.558 0-0.014 0.012-0.028 0.026-0.042 0.042-0.004 0.002-0.006 0.004-0.010 0.008l-433.144 433.142c-0.036 0.036-0.074 0.068-0.11 0.106-0.054 0.052-0.106 0.11-0.16 0.162l-2.668 2.67c-0.286 0.286-0.528 0.596-0.8 0.888-43.028 44.88-66.664 103.616-66.664 165.986 0 64.106 24.962 124.376 70.292 169.704 45.328 45.33 105.598 70.292 169.706 70.292 50.612 0 98.822-15.57 139.186-44.428 4.932-1.952 9.556-4.906 13.544-8.894l16.802-16.802c0.056-0.056 0.116-0.112 0.172-0.168 0.038-0.038 0.074-0.076 0.112-0.116l289.010-289.014c15.622-15.618 15.62-40.942 0-56.56s-40.948-15.62-56.566 0l-289.124 289.122c-62.482 62.484-163.792 62.484-226.274 0-62.484-62.482-62.484-163.79 0-226.272h-0.002l433.134-433.12c0.058-0.060 0.112-0.122 0.172-0.18 38.99-38.99 102.43-38.99 141.42 0 38.992 38.99 38.99 102.432 0 141.422-0.058 0.060-0.122 0.114-0.18 0.17l0.006 0.006-280.536 280.534c-0.002-0.002-0.002-0.004-0.004-0.006l-79.978 79.98c-0.010 0.010-0.016 0.020-0.028 0.028-0.008 0.012-0.018 0.018-0.028 0.028l-0.064 0.062c-15.622 15.624-40.944 15.624-56.562 0-15.624-15.62-15.624-40.944-0.002-56.566l0.062-0.062c0.010-0.010 0.018-0.020 0.028-0.028 0.008-0.012 0.020-0.018 0.028-0.028l79.98-79.978c-0.002-0.002-0.004-0.002-0.006-0.004l136.508-136.512c15.622-15.62 15.62-40.944-0.002-56.562-15.618-15.62-40.946-15.62-56.564 0l-219.342 219.344c-1.284 1.284-2.42 2.652-3.494 4.052-40.4 47.148-38.316 118.184 6.322 162.824 44.64 44.638 115.674 46.722 162.82 6.324 1.402-1.072 2.772-2.21 4.054-3.494l2.83-2.832c0.002 0 0.002 0 0.002 0s0 0 0 0l360.54-360.54c0.058-0.056 0.12-0.114 0.18-0.172 0.050-0.050 0.098-0.106 0.15-0.158l0.994-0.994c0.34-0.338 0.63-0.702 0.952-1.052z',
@@ -65,7 +65,7 @@ var Wrapper = styled.div(function (_ref) {
65
65
  export var TabBar = styled.div({
66
66
  overflow: 'hidden',
67
67
  '&:first-of-type': {
68
- marginLeft: 0
68
+ marginLeft: -3
69
69
  }
70
70
  });
71
71
  var Content = styled.div({
@@ -20,7 +20,7 @@ var Note = styled.div(function (_ref) {
20
20
  whiteSpace: 'nowrap',
21
21
  pointerEvents: 'none',
22
22
  zIndex: -1,
23
- background: 'rgba(0, 0, 0, 0.4)',
23
+ background: theme.base === 'light' ? 'rgba(60, 60, 60, 0.9)' : 'rgba(20, 20, 20, 0.85)',
24
24
  margin: 6
25
25
  };
26
26
  });
@@ -1,8 +1,8 @@
1
1
  import "core-js/modules/es.object.assign.js";
2
2
  import "core-js/modules/es.string.match.js";
3
3
  import "core-js/modules/es.regexp.exec.js";
4
- import "core-js/modules/es.array.join.js";
5
4
  import "core-js/modules/es.array.filter.js";
5
+ import "core-js/modules/es.array.join.js";
6
6
  import "core-js/modules/es.array.concat.js";
7
7
  import "core-js/modules/es.object.keys.js";
8
8
  import "core-js/modules/es.symbol.js";
@@ -366,6 +366,12 @@ var DefaultCodeBlock = styled.code(function (_ref16) {
366
366
  color: 'inherit'
367
367
  };
368
368
  }, codeCommon);
369
+ var isInlineCodeRegex = /[\n\r]/g;
370
+
371
+ var isReactChildString = function isReactChildString(child) {
372
+ return typeof child === 'string';
373
+ };
374
+
369
375
  export var Code = function Code(_ref17) {
370
376
  var _language$;
371
377
 
@@ -374,12 +380,15 @@ export var Code = function Code(_ref17) {
374
380
  props = _objectWithoutProperties(_ref17, ["className", "children"]);
375
381
 
376
382
  var language = (className || '').match(/lang-(\S+)/);
377
- var isInlineCode = !children.match(/[\n\r]/g);
383
+ var childrenArray = React.Children.toArray(children);
384
+ var isInlineCode = !childrenArray.filter(isReactChildString).some(function (child) {
385
+ return child.match(isInlineCodeRegex);
386
+ });
378
387
 
379
388
  if (isInlineCode) {
380
389
  return /*#__PURE__*/React.createElement(DefaultCodeBlock, _extends({}, props, {
381
390
  className: className
382
- }), children);
391
+ }), childrenArray);
383
392
  }
384
393
 
385
394
  return /*#__PURE__*/React.createElement(StyledSyntaxHighlighter, _extends({
@@ -0,0 +1,75 @@
1
+ import { typography } from '@storybook/theming';
2
+ import { Meta, Typeset } from '@storybook/addon-docs';
3
+
4
+ export const fontSizes = ['l3', 'l2', 'l1', 'm3', 'm2', 'm1', 's3', 's2', 's1'].map(
5
+ (size) => `${typography.size[size]}px`
6
+ );
7
+
8
+ export const sampleText =
9
+ 'Storybook is an open source tool for building UI components and pages in isolation. It streamlines UI development, testing, and documentation.';
10
+
11
+ <Meta title="Basics/Typography" />
12
+
13
+ ## Sans-serif
14
+
15
+ ```
16
+ font-family:
17
+ "Nunito Sans",
18
+ -apple-system,
19
+ ".SFNSText-Regular",
20
+ "San Francisco",
21
+ BlinkMacSystemFont,
22
+ "Segoe UI",
23
+ "Helvetica Neue",
24
+ Helvetica,
25
+ Arial,
26
+ sans-serif;
27
+ ```
28
+
29
+ <Typeset
30
+ fontFamily={typography.fonts.base}
31
+ fontSizes={fontSizes}
32
+ fontWeight={typography.weight.regular}
33
+ sampleText={sampleText}
34
+ />
35
+ <Typeset
36
+ fontFamily={typography.fonts.base}
37
+ fontSizes={fontSizes}
38
+ fontWeight={typography.weight.bold}
39
+ sampleText={sampleText}
40
+ />
41
+ <Typeset
42
+ fontFamily={typography.fonts.base}
43
+ fontSizes={fontSizes}
44
+ fontWeight={typography.weight.black}
45
+ sampleText={sampleText}
46
+ />
47
+
48
+ ## Monospace
49
+
50
+ ```
51
+ font-family:
52
+ ui-monospace,
53
+ Menlo,
54
+ Monaco,
55
+ "Roboto Mono",
56
+ "Oxygen Mono",
57
+ "Ubuntu Monospace",
58
+ "Source Code Pro",
59
+ "Droid Sans Mono",
60
+ "Courier New",
61
+ monospace;
62
+ ```
63
+
64
+ <Typeset
65
+ fontFamily={typography.fonts.mono}
66
+ fontSizes={fontSizes}
67
+ fontWeight={typography.weight.regular}
68
+ sampleText={sampleText}
69
+ />
70
+ <Typeset
71
+ fontFamily={typography.fonts.mono}
72
+ fontSizes={fontSizes}
73
+ fontWeight={typography.weight.bold}
74
+ sampleText={sampleText}
75
+ />
@@ -410,7 +410,7 @@ export const getScrollAreaStyles = theme => ({
410
410
  borderRadius: 10
411
411
  },
412
412
  '.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle': {
413
- background: theme.color.darker,
413
+ background: theme.color.mediumdark,
414
414
  opacity: 0.5
415
415
  },
416
416
  '.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle': {