@storybook/components 5.1.7 → 5.1.11

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 (25) hide show
  1. package/dist/syntaxhighlighter/syntaxhighlighter.js +1 -1
  2. package/dist/typings.d.js +1 -0
  3. package/package.json +4 -4
  4. package/src/syntaxhighlighter/__snapshots__/syntaxhighlighter.stories.storyshot +1 -1
  5. package/src/syntaxhighlighter/syntaxhighlighter.tsx +1 -1
  6. package/dist/Badge/__snapshots__/Badge.stories.storyshot +0 -96
  7. package/dist/Button/__snapshots__/Button.stories.storyshot +0 -1028
  8. package/dist/brand/__snapshots__/StorybookIcon.stories.storyshot +0 -36
  9. package/dist/form/__snapshots__/form.stories.storyshot +0 -2756
  10. package/dist/icon/__snapshots__/icon.stories.storyshot +0 -4960
  11. package/dist/spaced/__snapshots__/Spaced.stories.storyshot +0 -249
  12. package/dist/syntaxhighlighter/__snapshots__/syntaxhighlighter.stories.storyshot +0 -3971
  13. package/dist/syntaxhighlighter/formatter.test.js +0 -59
  14. package/dist/tabs/__snapshots__/tabs.stories.storyshot +0 -2029
  15. package/dist/tooltip/__snapshots__/ListItem.stories.storyshot +0 -1212
  16. package/dist/tooltip/__snapshots__/Tooltip.stories.storyshot +0 -269
  17. package/dist/tooltip/__snapshots__/TooltipLinkList.stories.storyshot +0 -326
  18. package/dist/tooltip/__snapshots__/TooltipMessage.stories.storyshot +0 -514
  19. package/dist/tooltip/__snapshots__/TooltipNote.stories.storyshot +0 -54
  20. package/dist/tooltip/__snapshots__/WithTooltip.stories.storyshot +0 -448
  21. package/dist/typings.d.ts +0 -4
  22. package/dist/typography/__snapshots__/typography.stories.storyshot +0 -186
  23. package/dist/typography/link/__snapshots__/link.stories.storyshot +0 -664
  24. package/dist/typography/link/link.test.d.ts +0 -1
  25. package/dist/typography/link/link.test.js +0 -162
@@ -136,7 +136,7 @@ var Wrapper = _theming.styled.div(function (_ref3) {
136
136
  return bordered ? {
137
137
  border: "1px solid ".concat(theme.appBorderColor),
138
138
  borderRadius: theme.borderRadius,
139
- background: theme.background.bar
139
+ background: theme.background.content
140
140
  } : {};
141
141
  });
142
142
 
@@ -0,0 +1 @@
1
+ "use strict";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/components",
3
- "version": "5.1.7",
3
+ "version": "5.1.11",
4
4
  "description": "Core Storybook Components",
5
5
  "keywords": [
6
6
  "storybook"
@@ -21,8 +21,8 @@
21
21
  "prepare": "node ../../scripts/prepare.js"
22
22
  },
23
23
  "dependencies": {
24
- "@storybook/client-logger": "5.1.7",
25
- "@storybook/theming": "5.1.7",
24
+ "@storybook/client-logger": "5.1.11",
25
+ "@storybook/theming": "5.1.11",
26
26
  "core-js": "^3.0.1",
27
27
  "global": "^4.3.2",
28
28
  "markdown-to-jsx": "^6.9.1",
@@ -55,5 +55,5 @@
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "4c4c1a9fd7461860299ff70ce1e548536a912664"
58
+ "gitHead": "aeeafda2de3e97cd91e36c3dc7bdb0543d073429"
59
59
  }
@@ -799,7 +799,7 @@ exports[`Storyshots Basics|SyntaxHighlighter dark unsupported 1`] = `
799
799
  overflow: hidden;
800
800
  color: #FFFFFF;
801
801
  border: 1px solid rgba(255,255,255,.1);
802
- background: #333333;
802
+ background: #333;
803
803
  }
804
804
 
805
805
  .emotion-2 {
@@ -40,7 +40,7 @@ const Wrapper = styled.div<WrapperProps>(
40
40
  ? {
41
41
  border: `1px solid ${theme.appBorderColor}`,
42
42
  borderRadius: theme.borderRadius,
43
- background: theme.background.bar,
43
+ background: theme.background.content,
44
44
  }
45
45
  : {}
46
46
  );
@@ -1,96 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`Storyshots Basics|Badge all badges 1`] = `
4
- .emotion-0 {
5
- display: inline-block;
6
- font-size: 11px;
7
- line-height: 12px;
8
- -webkit-align-self: center;
9
- -ms-flex-item-align: center;
10
- align-self: center;
11
- padding: 4px 12px;
12
- border-radius: 3em;
13
- font-weight: 700;
14
- color: #66BF3C;
15
- background: #E1FFD4;
16
- }
17
-
18
- .emotion-0 svg {
19
- height: 12px;
20
- width: 12px;
21
- margin-right: 4px;
22
- margin-top: -2px;
23
- }
24
-
25
- .emotion-0 svg path {
26
- fill: currentColor;
27
- }
28
-
29
- .emotion-1 {
30
- display: inline-block;
31
- font-size: 11px;
32
- line-height: 12px;
33
- -webkit-align-self: center;
34
- -ms-flex-item-align: center;
35
- align-self: center;
36
- padding: 4px 12px;
37
- border-radius: 3em;
38
- font-weight: 700;
39
- color: #FF4400;
40
- background: #FEDED2;
41
- }
42
-
43
- .emotion-1 svg {
44
- height: 12px;
45
- width: 12px;
46
- margin-right: 4px;
47
- margin-top: -2px;
48
- }
49
-
50
- .emotion-1 svg path {
51
- fill: currentColor;
52
- }
53
-
54
- .emotion-2 {
55
- display: inline-block;
56
- font-size: 11px;
57
- line-height: 12px;
58
- -webkit-align-self: center;
59
- -ms-flex-item-align: center;
60
- align-self: center;
61
- padding: 4px 12px;
62
- border-radius: 3em;
63
- font-weight: 700;
64
- color: #666666;
65
- background: #EEEEEE;
66
- }
67
-
68
- .emotion-2 svg {
69
- height: 12px;
70
- width: 12px;
71
- margin-right: 4px;
72
- margin-top: -2px;
73
- }
74
-
75
- .emotion-2 svg path {
76
- fill: currentColor;
77
- }
78
-
79
- <div>
80
- <div
81
- class="emotion-0"
82
- >
83
- Positive
84
- </div>
85
- <div
86
- class="emotion-1"
87
- >
88
- Negative
89
- </div>
90
- <div
91
- class="emotion-2"
92
- >
93
- Neutral
94
- </div>
95
- </div>
96
- `;