@sproutsocial/racine 8.8.0-dar35-beta.0 → 9.1.0-token-beta.0

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 (47) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/__flow__/Button/styles.js +1 -1
  3. package/__flow__/Card/styles.js +1 -1
  4. package/__flow__/Drawer/index.stories.js +3 -3
  5. package/__flow__/Drawer/styles.js +1 -1
  6. package/__flow__/KeyboardKey/styles.js +1 -1
  7. package/__flow__/Menu/index.stories.js +1 -1
  8. package/__flow__/Modal/__snapshots__/index.test.js.snap +1 -1
  9. package/__flow__/Modal/styles.js +1 -1
  10. package/__flow__/Popout/index.js +1 -1
  11. package/__flow__/Token/index.js +4 -1
  12. package/__flow__/Token/index.stories.js +11 -0
  13. package/__flow__/Token/styles.js +43 -33
  14. package/__flow__/Tooltip/index.js +1 -1
  15. package/__flow__/themes/_themes.scss +23 -25
  16. package/__flow__/themes/dark/theme.js +179 -159
  17. package/__flow__/themes/default/theme.js +15 -8
  18. package/__flow__/themes/utils/interact.js +12 -0
  19. package/__flow__/types/system-props.flow.js +1 -2
  20. package/commonjs/Button/styles.js +1 -1
  21. package/commonjs/Card/styles.js +1 -1
  22. package/commonjs/Drawer/styles.js +1 -1
  23. package/commonjs/KeyboardKey/styles.js +1 -1
  24. package/commonjs/Modal/styles.js +1 -1
  25. package/commonjs/Popout/index.js +1 -1
  26. package/commonjs/Token/index.js +5 -2
  27. package/commonjs/Token/styles.js +19 -50
  28. package/commonjs/Tooltip/index.js +1 -1
  29. package/commonjs/themes/dark/theme.js +178 -157
  30. package/commonjs/themes/default/theme.js +15 -8
  31. package/commonjs/themes/utils/interact.js +19 -0
  32. package/dist/themes/_themes.scss +23 -25
  33. package/dist/themes/dark.scss +18 -11
  34. package/dist/themes/default.scss +14 -15
  35. package/lib/Button/styles.js +1 -1
  36. package/lib/Card/styles.js +1 -1
  37. package/lib/Drawer/styles.js +1 -1
  38. package/lib/KeyboardKey/styles.js +1 -1
  39. package/lib/Modal/styles.js +1 -1
  40. package/lib/Popout/index.js +1 -1
  41. package/lib/Token/index.js +5 -2
  42. package/lib/Token/styles.js +19 -50
  43. package/lib/Tooltip/index.js +1 -1
  44. package/lib/themes/dark/theme.js +173 -156
  45. package/lib/themes/default/theme.js +14 -8
  46. package/lib/themes/utils/interact.js +13 -0
  47. package/package.json +2 -2
@@ -1,6 +1,7 @@
1
1
  // @flow strict-local
2
2
 
3
3
  import COLORS from "@sproutsocial/seeds-color";
4
+ import DEPTH from "@sproutsocial/seeds-depth";
4
5
  import defaultTheme from "../default/theme";
5
6
  import { datavizPalette } from "./dataviz-palette";
6
7
  import {
@@ -13,189 +14,208 @@ import {
13
14
  neutral,
14
15
  } from "./decorative-palettes";
15
16
 
16
- const darkTheme = {
17
- ...defaultTheme,
18
- colors: {
19
- ...defaultTheme.colors,
20
- app: {
21
- background: {
22
- base: COLORS.COLOR_NEUTRAL_1000,
17
+ import interact from "../utils/interact";
18
+
19
+ const MODE = "default-dark";
20
+
21
+ export const shadows = {
22
+ low: `${DEPTH.ELEVATION_LEVEL_100} ${COLORS.COLOR_NEUTRAL_1100}FF`,
23
+ medium: `${DEPTH.ELEVATION_LEVEL_300} ${COLORS.COLOR_NEUTRAL_1100}FF`,
24
+ high: `${DEPTH.ELEVATION_LEVEL_400} ${COLORS.COLOR_NEUTRAL_1100}FF`,
25
+ };
26
+
27
+ const colors = {
28
+ ...defaultTheme.colors,
29
+ utils: {
30
+ interact: interact(MODE),
31
+ },
32
+ app: {
33
+ background: {
34
+ base: COLORS.COLOR_NEUTRAL_1000,
35
+ },
36
+ },
37
+ container: {
38
+ background: {
39
+ base: COLORS.COLOR_NEUTRAL_900,
40
+ success: green.background,
41
+ warning: yellow.background,
42
+ error: red.background,
43
+ info: blue.background,
44
+ opportunity: purple.background,
45
+ danger: red.background,
46
+ decorative: {
47
+ green: green.background,
48
+ blue: blue.background,
49
+ purple: purple.background,
50
+ yellow: yellow.background,
51
+ orange: orange.background,
52
+ red: red.background,
53
+ neutral: neutral.background,
54
+ },
55
+ selected: COLORS.COLOR_NEUTRAL_0,
56
+ },
57
+ border: {
58
+ base: COLORS.COLOR_NEUTRAL_1100,
59
+ success: green.highlight,
60
+ warning: yellow.highlight,
61
+ error: red.highlight,
62
+ danger: red.highlight,
63
+ info: blue.highlight,
64
+ opportunity: purple.highlight,
65
+ decorative: {
66
+ green: green.highlight,
67
+ blue: blue.highlight,
68
+ purple: purple.highlight,
69
+ yellow: yellow.highlight,
70
+ orange: orange.highlight,
71
+ red: red.highlight,
72
+ neutral: neutral.highlight,
23
73
  },
74
+ selected: COLORS.COLOR_NEUTRAL_0,
24
75
  },
25
- container: {
76
+ },
77
+ button: {
78
+ primary: {
26
79
  background: {
27
- base: COLORS.COLOR_NEUTRAL_900,
28
- success: green.background,
29
- warning: yellow.background,
30
- error: red.background,
31
- info: blue.background,
32
- opportunity: purple.background,
33
- danger: red.background,
34
- decorative: {
35
- green: green.background,
36
- blue: blue.background,
37
- purple: purple.background,
38
- yellow: yellow.background,
39
- orange: orange.background,
40
- red: red.background,
41
- neutral: neutral.background,
42
- },
43
- selected: COLORS.COLOR_NEUTRAL_0,
80
+ base: COLORS.COLOR_BLUE_400,
81
+ hover: COLORS.COLOR_BLUE_300,
82
+ active: COLORS.COLOR_BLUE_200,
44
83
  },
45
84
  border: {
46
- base: COLORS.COLOR_NEUTRAL_1100,
47
- success: green.highlight,
48
- warning: yellow.highlight,
49
- error: red.highlight,
50
- danger: red.highlight,
51
- info: blue.highlight,
52
- opportunity: purple.highlight,
53
- decorative: {
54
- green: green.highlight,
55
- blue: blue.highlight,
56
- purple: purple.highlight,
57
- yellow: yellow.highlight,
58
- orange: orange.highlight,
59
- red: red.highlight,
60
- neutral: neutral.highlight,
61
- },
62
- selected: COLORS.COLOR_NEUTRAL_0,
85
+ base: "transparent",
63
86
  },
64
- },
65
- button: {
66
- primary: {
67
- background: {
68
- base: COLORS.COLOR_BLUE_400,
69
- hover: COLORS.COLOR_BLUE_300,
70
- active: COLORS.COLOR_BLUE_200,
71
- },
72
- border: {
73
- base: "transparent",
74
- },
75
- text: {
76
- base: COLORS.COLOR_NEUTRAL_900,
77
- hover: COLORS.COLOR_NEUTRAL_1000,
78
- },
79
- },
80
- secondary: {
81
- background: {
82
- base: "transparent",
83
- hover: COLORS.COLOR_NEUTRAL_100,
84
- active: COLORS.COLOR_NEUTRAL_0,
85
- },
86
- border: {
87
- base: COLORS.COLOR_NEUTRAL_0,
88
- },
89
- text: {
90
- base: COLORS.COLOR_NEUTRAL_0,
91
- hover: COLORS.COLOR_NEUTRAL_800,
92
- },
93
- },
94
- pill: {
95
- background: {
96
- base: "transparent",
97
- hover: COLORS.COLOR_NEUTRAL_1000,
98
- active: COLORS.COLOR_NEUTRAL_900,
99
- },
100
- border: {
101
- base: "transparent",
102
- },
103
- text: {
104
- base: COLORS.COLOR_NEUTRAL_100,
105
- hover: COLORS.COLOR_NEUTRAL_0,
106
- },
107
- },
108
- destructive: {
109
- background: {
110
- base: COLORS.COLOR_RED_400,
111
- hover: COLORS.COLOR_RED_300,
112
- active: COLORS.COLOR_RED_200,
113
- },
114
- border: {
115
- base: "transparent",
116
- },
117
- text: {
118
- base: COLORS.COLOR_NEUTRAL_900,
119
- hover: COLORS.COLOR_NEUTRAL_1000,
120
- },
121
- },
122
- placeholder: {
123
- background: {
124
- base: "transparent",
125
- hover: COLORS.COLOR_NEUTRAL_1100,
126
- active: COLORS.COLOR_NEUTRAL_1100,
127
- },
128
- border: {
129
- base: COLORS.COLOR_NEUTRAL_500,
130
- },
131
- text: {
132
- base: COLORS.COLOR_BLUE_400,
133
- hover: COLORS.COLOR_BLUE_300,
134
- },
135
- },
136
- unstyled: {
137
- background: {
138
- base: "transparent",
139
- },
140
- border: {
141
- base: "transparent",
142
- },
143
- text: {
144
- base: COLORS.COLOR_NEUTRAL_300,
145
- hover: COLORS.COLOR_NEUTRAL_200,
146
- },
87
+ text: {
88
+ base: COLORS.COLOR_NEUTRAL_900,
89
+ hover: COLORS.COLOR_NEUTRAL_1000,
147
90
  },
148
91
  },
149
- link: {
150
- base: COLORS.COLOR_BLUE_400,
151
- hover: COLORS.COLOR_BLUE_300,
152
- },
153
- text: {
154
- headline: COLORS.COLOR_NEUTRAL_0,
155
- subtext: COLORS.COLOR_NEUTRAL_300,
156
- body: COLORS.COLOR_NEUTRAL_100,
157
- inverse: COLORS.COLOR_NEUTRAL_900,
158
- error: COLORS.COLOR_RED_400,
92
+ secondary: {
93
+ background: {
94
+ base: "transparent",
95
+ hover: COLORS.COLOR_NEUTRAL_100,
96
+ active: COLORS.COLOR_NEUTRAL_0,
97
+ },
98
+ border: {
99
+ base: COLORS.COLOR_NEUTRAL_0,
100
+ },
101
+ text: {
102
+ base: COLORS.COLOR_NEUTRAL_0,
103
+ hover: COLORS.COLOR_NEUTRAL_800,
104
+ },
159
105
  },
160
- icon: {
161
- base: COLORS.COLOR_NEUTRAL_100,
162
- inverse: COLORS.COLOR_NEUTRAL_900,
163
- success: green.foreground,
164
- warning: yellow.foreground,
165
- error: red.foreground,
166
- danger: red.foreground,
167
- info: blue.foreground,
168
- opportunity: purple.foreground,
106
+ pill: {
107
+ background: {
108
+ base: "transparent",
109
+ hover: COLORS.COLOR_NEUTRAL_1000,
110
+ active: COLORS.COLOR_NEUTRAL_900,
111
+ },
112
+ border: {
113
+ base: "transparent",
114
+ },
115
+ text: {
116
+ base: COLORS.COLOR_NEUTRAL_100,
117
+ hover: COLORS.COLOR_NEUTRAL_0,
118
+ },
169
119
  },
170
- form: {
120
+ destructive: {
171
121
  background: {
122
+ base: COLORS.COLOR_RED_400,
123
+ hover: COLORS.COLOR_RED_300,
124
+ active: COLORS.COLOR_RED_200,
125
+ },
126
+ border: {
127
+ base: "transparent",
128
+ },
129
+ text: {
172
130
  base: COLORS.COLOR_NEUTRAL_900,
173
- selected: COLORS.COLOR_NEUTRAL_0,
131
+ hover: COLORS.COLOR_NEUTRAL_1000,
132
+ },
133
+ },
134
+ placeholder: {
135
+ background: {
136
+ base: "transparent",
137
+ hover: COLORS.COLOR_NEUTRAL_1100,
138
+ active: COLORS.COLOR_NEUTRAL_1100,
174
139
  },
175
140
  border: {
176
141
  base: COLORS.COLOR_NEUTRAL_500,
177
- error: red.highlight,
178
- warning: yellow.highlight,
179
- selected: COLORS.COLOR_NEUTRAL_0,
180
142
  },
181
- placeholder: {
182
- base: COLORS.COLOR_NEUTRAL_500,
143
+ text: {
144
+ base: COLORS.COLOR_BLUE_400,
145
+ hover: COLORS.COLOR_BLUE_300,
183
146
  },
184
147
  },
185
- listItem: {
148
+ unstyled: {
186
149
  background: {
187
150
  base: "transparent",
188
- hover: COLORS.COLOR_NEUTRAL_800,
189
- selected: COLORS.COLOR_NEUTRAL_0,
190
151
  },
152
+ border: {
153
+ base: "transparent",
154
+ },
155
+ text: {
156
+ base: COLORS.COLOR_NEUTRAL_300,
157
+ hover: COLORS.COLOR_NEUTRAL_200,
158
+ },
159
+ },
160
+ },
161
+ link: {
162
+ base: COLORS.COLOR_BLUE_400,
163
+ hover: COLORS.COLOR_BLUE_300,
164
+ },
165
+ text: {
166
+ headline: COLORS.COLOR_NEUTRAL_0,
167
+ subtext: COLORS.COLOR_NEUTRAL_300,
168
+ body: COLORS.COLOR_NEUTRAL_100,
169
+ inverse: COLORS.COLOR_NEUTRAL_900,
170
+ error: COLORS.COLOR_RED_400,
171
+ },
172
+ icon: {
173
+ base: COLORS.COLOR_NEUTRAL_100,
174
+ inverse: COLORS.COLOR_NEUTRAL_900,
175
+ success: green.foreground,
176
+ warning: yellow.foreground,
177
+ error: red.foreground,
178
+ danger: red.foreground,
179
+ info: blue.foreground,
180
+ opportunity: purple.foreground,
181
+ },
182
+ form: {
183
+ background: {
184
+ base: COLORS.COLOR_NEUTRAL_900,
185
+ selected: COLORS.COLOR_NEUTRAL_0,
191
186
  },
192
- dataviz: {
193
- map: datavizPalette.DATAVIZ_COLORS_MAP,
194
- list: datavizPalette.DATAVIZ_COLORS_LIST,
187
+ border: {
188
+ base: COLORS.COLOR_NEUTRAL_500,
189
+ error: red.highlight,
190
+ warning: yellow.highlight,
191
+ selected: COLORS.COLOR_NEUTRAL_0,
192
+ },
193
+ placeholder: {
194
+ base: COLORS.COLOR_NEUTRAL_500,
195
195
  },
196
- ...datavizPalette,
197
196
  },
198
- mode: "dark",
197
+ listItem: {
198
+ background: {
199
+ base: "transparent",
200
+ hover: COLORS.COLOR_NEUTRAL_800,
201
+ selected: COLORS.COLOR_NEUTRAL_0,
202
+ },
203
+ },
204
+ elevation: {
205
+ base: COLORS.COLOR_NEUTRAL_1100,
206
+ },
207
+ dataviz: {
208
+ map: datavizPalette.DATAVIZ_COLORS_MAP,
209
+ list: datavizPalette.DATAVIZ_COLORS_LIST,
210
+ },
211
+ ...datavizPalette,
212
+ };
213
+
214
+ const darkTheme = {
215
+ ...defaultTheme,
216
+ colors,
217
+ shadows,
218
+ mode: MODE,
199
219
  };
200
220
 
201
221
  export default darkTheme;
@@ -19,8 +19,12 @@ import DEPTH from "@sproutsocial/seeds-depth";
19
19
  import MOTION from "@sproutsocial/seeds-motion";
20
20
  import BORDER from "@sproutsocial/seeds-border";
21
21
 
22
+ import interact from "../utils/interact";
23
+
22
24
  export const breakpoints = ["900px", "1200px", "1500px", "1800px"];
23
25
 
26
+ const MODE = "default-light";
27
+
24
28
  const colors = {
25
29
  app: {
26
30
  background: {
@@ -194,6 +198,9 @@ const colors = {
194
198
  selected: COLORS.COLOR_NEUTRAL_800,
195
199
  },
196
200
  },
201
+ elevation: {
202
+ base: `${COLORS.COLOR_NEUTRAL_900}3D`,
203
+ },
197
204
  network: {
198
205
  twitter: NETWORKCOLORS.NETWORK_COLOR_TWITTER,
199
206
  twitter_like: NETWORKCOLORS.NETWORK_COLOR_TWITTER_LIKE,
@@ -300,10 +307,9 @@ export const borderWidths = {
300
307
  };
301
308
 
302
309
  export const shadows = {
303
- "100": DEPTH.ELEVATION_LEVEL_100,
304
- "200": DEPTH.ELEVATION_LEVEL_200,
305
- "300": DEPTH.ELEVATION_LEVEL_300,
306
- "400": DEPTH.ELEVATION_LEVEL_400,
310
+ low: `${DEPTH.ELEVATION_LEVEL_100} ${COLORS.COLOR_NEUTRAL_900}3D`,
311
+ medium: `${DEPTH.ELEVATION_LEVEL_300} ${COLORS.COLOR_NEUTRAL_900}3D`,
312
+ high: `${DEPTH.ELEVATION_LEVEL_400} ${COLORS.COLOR_NEUTRAL_900}3D`,
307
313
  };
308
314
 
309
315
  export const easing = {
@@ -319,6 +325,9 @@ export const duration = {
319
325
  };
320
326
 
321
327
  const theme = {
328
+ utils: {
329
+ interact: interact(MODE),
330
+ },
322
331
  breakpoints,
323
332
  colors,
324
333
  typography: {
@@ -342,12 +351,10 @@ const theme = {
342
351
  },
343
352
  borders,
344
353
  borderWidths,
345
- shadows: {
346
- ...shadows,
347
- shadows,
348
- },
354
+ shadows,
349
355
  easing,
350
356
  duration,
357
+ mode: MODE,
351
358
  };
352
359
 
353
360
  export default theme;
@@ -0,0 +1,12 @@
1
+ //@flow strict-local
2
+ import { darken, lighten } from "polished";
3
+
4
+ const interact = (mode: string) => (themeValue: string) => {
5
+ if (mode === "default-dark") {
6
+ return lighten(0.2, themeValue);
7
+ } else {
8
+ return darken(0.2, themeValue);
9
+ }
10
+ };
11
+
12
+ export default interact;
@@ -67,7 +67,6 @@ export type TypeSystemCommonProps = $ReadOnly<{|
67
67
  ...TypeSpaceProps,
68
68
  cursor?: TypeResponsiveBase<>,
69
69
  |}>;
70
-
71
70
  export type TypeSystemBorderProps = $ReadOnly<{|
72
71
  border?: TypeResponsiveBase<>,
73
72
  borderWidth?: TypeResponsiveBase<>,
@@ -85,7 +84,7 @@ export type TypeSystemBorderProps = $ReadOnly<{|
85
84
  borderX?: TypeResponsiveBase<>,
86
85
  borderY?: TypeResponsiveBase<>,
87
86
  boxShadow?: TypeResponsiveBase<>,
88
- textShadow?: TypeResponsiveBase<>,
87
+ textShadow?: TypeResponsiveBase<>
89
88
  |}>;
90
89
 
91
90
  type TypeResponsiveTypeographySize = TypeResponsiveString<TypeTypography>;
@@ -47,7 +47,7 @@ var Container = _styledComponents.default.button.withConfig({
47
47
  }, function (props) {
48
48
  return props.theme.colors.button[props.appearance].background.hover;
49
49
  }, function (props) {
50
- return props.appearance === "placeholder" ? props.theme.shadows[100] : "none";
50
+ return props.appearance === "placeholder" ? props.theme.shadows.low : "none";
51
51
  }, function (props) {
52
52
  return props.theme.colors.button[props.appearance].text.hover;
53
53
  }, function (props) {
@@ -19,7 +19,7 @@ var Container = (0, _styledComponents.default)(_Box.default).withConfig({
19
19
  }, function (props) {
20
20
  return props.theme.radii[500];
21
21
  }, function (props) {
22
- return props.theme.shadows[100];
22
+ return props.theme.shadows.low;
23
23
  }, function (props) {
24
24
  return props.theme.duration.medium;
25
25
  }, function (props) {
@@ -29,7 +29,7 @@ var Container = _styledComponents.default.div.withConfig({
29
29
  }, function (props) {
30
30
  return props.theme.colors.container.background.base;
31
31
  }, function (props) {
32
- return props.theme.shadows[400];
32
+ return props.theme.shadows.high;
33
33
  }, function (props) {
34
34
  return (0, _styledComponents.css)(["", ":", "px;"], props.direction, props.offset);
35
35
  }, _systemProps.COMMON);
@@ -21,7 +21,7 @@ var Container = _styledComponents.default.div.withConfig({
21
21
  }, function (props) {
22
22
  return props.theme.radii[500];
23
23
  }, function (props) {
24
- return props.theme.shadows[100];
24
+ return props.theme.shadows.low;
25
25
  }, function (props) {
26
26
  return props.theme.space[200];
27
27
  }, _systemProps.COMMON);
@@ -72,7 +72,7 @@ var Container = (0, _styledComponents.default)(ReactModalAdapter).withConfig({
72
72
  }, function (props) {
73
73
  return props.theme.radii[500];
74
74
  }, function (props) {
75
- return props.theme.shadows[300];
75
+ return props.theme.shadows.medium;
76
76
  }, function (props) {
77
77
  return props.theme.colors.text.body;
78
78
  }, BODY_PADDING, BODY_PADDING, BODY_PADDING, _styledSystem.width, _systemProps.COMMON);
@@ -290,7 +290,7 @@ Popout.Content = function (_ref4) {
290
290
  border: 500,
291
291
  borderColor: "container.border.base",
292
292
  borderRadius: "outer",
293
- boxShadow: 300,
293
+ boxShadow: "medium",
294
294
  p: 400,
295
295
  m: 300
296
296
  }, rest), children);
@@ -33,14 +33,17 @@ var Token = function Token(_ref) {
33
33
  valid = _ref$valid === void 0 ? true : _ref$valid,
34
34
  _ref$disabled = _ref.disabled,
35
35
  disabled = _ref$disabled === void 0 ? false : _ref$disabled,
36
- rest = _objectWithoutPropertiesLoose(_ref, ["children", "closeable", "onClick", "qa", "valid", "disabled"]);
36
+ _ref$palette = _ref.palette,
37
+ palette = _ref$palette === void 0 ? "neutral" : _ref$palette,
38
+ rest = _objectWithoutPropertiesLoose(_ref, ["children", "closeable", "onClick", "qa", "valid", "disabled", "palette"]);
37
39
 
38
40
  var textContainer = (0, _hooks.useTextContent)("");
39
41
  return /*#__PURE__*/React.createElement(_styles.default, _extends({
40
42
  ref: textContainer,
41
43
  valid: valid,
42
- as: closeable || onClick ? "button" : "div",
44
+ palette: palette,
43
45
  type: closeable || onClick ? "button" : undefined,
46
+ as: closeable || onClick ? "button" : "div",
44
47
  closeable: closeable || onClick,
45
48
  disabled: disabled,
46
49
  onClick: onClick,
@@ -16,56 +16,25 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
16
16
  var Container = _styledComponents.default.button.withConfig({
17
17
  displayName: "styles__Container",
18
18
  componentId: "nyn5zy-0"
19
- })(["font-family:", ";", ";position:relative;display:inline-block;padding:", " ", ";margin:0;color:", ";background:", ";border:1px solid ", ";font-weight:", ";line-height:1;vertical-align:middle;border-radius:", ";outline:none;transition:all ", " ", ";&:focus{", "}", " ", " ", " ", ""], function (props) {
20
- return props.theme.fontFamily;
21
- }, function (props) {
22
- return props.theme.typography[200];
23
- }, function (props) {
24
- return props.theme.space[200];
25
- }, function (props) {
26
- return props.theme.space[300];
27
- }, function (props) {
28
- return props.theme.colors.text.body;
29
- }, function (props) {
30
- return props.theme.colors.container.background.base;
31
- }, function (props) {
32
- return props.theme.colors.container.border.base;
33
- }, function (props) {
34
- return props.theme.fontWeights.normal;
35
- }, function (props) {
36
- return props.theme.radii[500];
37
- }, function (props) {
38
- return props.theme.duration.fast;
39
- }, function (props) {
40
- return props.theme.easing.ease_inout;
41
- }, _mixins.focusRing, function (props) {
42
- return props.closeable && (0, _styledComponents.css)(["cursor:pointer;&:hover,&:active{color:", ";border:1px solid ", ";background-color:", ";}"], function (props) {
43
- return props.theme.colors.text.body;
44
- }, function (props) {
45
- return props.theme.colors.container.border.decorative.neutral;
46
- }, function (props) {
47
- return props.theme.colors.container.background.decorative.neutral;
48
- });
49
- }, function (props) {
50
- return props.disabled && (0, _styledComponents.css)(["opacity:0.4;cursor:not-allowed;&:hover,&:active{background:", ";border:1px solid ", ";}"], function (props) {
51
- return props.theme.colors.container.background.base;
52
- }, function (props) {
53
- return props.theme.colors.container.border.base;
54
- });
55
- }, function (props) {
56
- return !props.valid && (0, _styledComponents.css)(["color:", ";border-color:", ";background:", ";&:hover{color:", ";border:1px solid ", ";background-color:", ";}"], function (props) {
57
- return props.theme.colors.text.body;
58
- }, function (props) {
59
- return props.theme.colors.container.border.error;
60
- }, function (props) {
61
- return props.theme.colors.container.background.error;
62
- }, function (props) {
63
- return props.theme.colors.text.body;
64
- }, function (props) {
65
- return props.theme.colors.container.border.error;
66
- }, function (props) {
67
- return props.theme.colors.container.background.error;
68
- });
19
+ })(["position:relative;display:inline-block;margin:0;line-height:1;vertical-align:middle;outline:none;", " &:focus{", "}", " ", " ", " ", " ", ""], function (_ref) {
20
+ var theme = _ref.theme;
21
+ return (0, _styledComponents.css)(["", " font-family:", ";font-weight:", ";border:1px solid ", ";border-radius:", ";color:", ";background:", ";padding:", " ", ";transition:all ", " ", ";"], theme.typography[200], theme.fontFamily, theme.fontWeights.normal, theme.colors.container.border.base, theme.radii[500], theme.colors.text.body, theme.colors.container.background.base, theme.space[200], theme.space[300], theme.duration.fast, theme.easing.ease_inout);
22
+ }, _mixins.focusRing, function (_ref2) {
23
+ var theme = _ref2.theme,
24
+ palette = _ref2.palette;
25
+ return palette === "blue" && (0, _styledComponents.css)(["color:", ";background:", ";border:1px solid ", ";&:hover,&:active{cursor:pointer;box-shadow:", ";border:1px solid ", ";}"], theme.colors.text.body, theme.colors.container.background.decorative.blue, theme.colors.container.border.decorative.blue, theme.shadows.low, theme.utils.interact(theme.colors.container.border.decorative.blue));
26
+ }, function (_ref3) {
27
+ var closeable = _ref3.closeable,
28
+ theme = _ref3.theme;
29
+ return closeable && (0, _styledComponents.css)(["cursor:pointer;&:hover,&:active{box-shadow:", ";border:1px solid ", ";}"], theme.shadows.low, theme.utils.interact(theme.colors.container.border.base));
30
+ }, function (_ref4) {
31
+ var disabled = _ref4.disabled,
32
+ theme = _ref4.theme;
33
+ return disabled && (0, _styledComponents.css)(["opacity:0.4;cursor:not-allowed;&:hover,&:active{box-shadow:none;border:1px solid ", ";}"], theme.colors.container.border.base);
34
+ }, function (_ref5) {
35
+ var valid = _ref5.valid,
36
+ theme = _ref5.theme;
37
+ return !valid && (0, _styledComponents.css)(["color:", ";background:", ";border:1px solid ", ";&:hover{box-shadow:", ";border:1px solid ", ";}"], theme.colors.text.error, theme.colors.container.background.error, theme.colors.container.border.error, theme.shadows.low, theme.utils.interact(theme.colors.container.border.error));
69
38
  }, _systemProps.COMMON);
70
39
 
71
40
  var _default = Container;
@@ -132,7 +132,7 @@ var Content = function Content(_ref2) {
132
132
  m: 200,
133
133
  color: "text.body",
134
134
  bg: "container.background.base",
135
- boxShadow: 300,
135
+ boxShadow: "medium",
136
136
  border: 500,
137
137
  borderColor: "container.border.base" // $FlowIssue - upgrade v0.112.0
138
138