@sproutsocial/racine 12.8.0 → 12.11.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 (63) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/__flow__/EnumIconNames.js +1 -1
  3. package/__flow__/EnumIllustrationNames.js +1 -1
  4. package/__flow__/EnumLogoNames.js +1 -1
  5. package/__flow__/IconViewBoxes.js +1 -1
  6. package/__flow__/IllustrationViewBoxes.js +1 -1
  7. package/__flow__/LogoViewBoxes.js +1 -1
  8. package/__flow__/PartnerLogo/TypePartnerNames.js +2 -0
  9. package/__flow__/PartnerLogo/index.stories.js +2 -0
  10. package/__flow__/PartnerLogo/partnerLogos/facebook-groups-dark.svg +3 -0
  11. package/__flow__/PartnerLogo/partnerLogos/facebook-groups.svg +3 -0
  12. package/__flow__/PartnerLogo/partnerLogos/twitter-audience-network-dark.svg +3 -0
  13. package/__flow__/PartnerLogo/partnerLogos/twitter-audience-network.svg +3 -0
  14. package/__flow__/SpotIllustration/illustrationNames.js +1 -0
  15. package/__flow__/SpotIllustration/spotIllustrations/under-construction.svg +12 -0
  16. package/__flow__/Stack/TypeSpaceLiterals.js +13 -0
  17. package/__flow__/Stack/index.js +1 -1
  18. package/__flow__/Toast/styles.js +5 -0
  19. package/__flow__/index.js +1 -0
  20. package/__flow__/themes/dark/decorative-palettes.js +24 -0
  21. package/__flow__/themes/dark/theme.js +12 -0
  22. package/__flow__/themes/extendedThemes/sproutTheme/dark/theme.js +22 -0
  23. package/__flow__/themes/extendedThemes/sproutTheme/light/theme.js +22 -0
  24. package/__flow__/themes/light/decorative-palettes.js +24 -0
  25. package/__flow__/themes/light/theme.js +17 -11
  26. package/__flow__/types/theme.colors.flow.js +8 -0
  27. package/__flow__/types/theme.flow.js +2 -0
  28. package/commonjs/IconViewBoxes.js +9 -0
  29. package/commonjs/IllustrationViewBoxes.js +1 -0
  30. package/commonjs/LogoViewBoxes.js +4 -0
  31. package/commonjs/SpotIllustration/illustrationNames.js +1 -1
  32. package/commonjs/Stack/TypeSpaceLiterals.js +1 -0
  33. package/commonjs/Toast/styles.js +3 -1
  34. package/commonjs/themes/dark/decorative-palettes.js +26 -2
  35. package/commonjs/themes/dark/theme.js +10 -2
  36. package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +25 -3
  37. package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +25 -3
  38. package/commonjs/themes/light/decorative-palettes.js +26 -2
  39. package/commonjs/themes/light/theme.js +15 -2
  40. package/dist/icon.svg +1 -1
  41. package/dist/iconList.js +1 -1
  42. package/dist/illustration.svg +1 -1
  43. package/dist/illustrationList.js +1 -1
  44. package/dist/logo.svg +1 -1
  45. package/dist/logoList.js +1 -1
  46. package/dist/themes/dark/theme.scss +10 -2
  47. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +52 -4
  48. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +52 -4
  49. package/dist/themes/light/theme.scss +10 -2
  50. package/lib/IconViewBoxes.js +9 -0
  51. package/lib/IllustrationViewBoxes.js +1 -0
  52. package/lib/LogoViewBoxes.js +4 -0
  53. package/lib/SpotIllustration/illustrationNames.js +1 -1
  54. package/lib/Stack/TypeSpaceLiterals.js +0 -0
  55. package/lib/Toast/styles.js +3 -1
  56. package/lib/themes/dark/decorative-palettes.js +20 -0
  57. package/lib/themes/dark/theme.js +11 -3
  58. package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +23 -2
  59. package/lib/themes/extendedThemes/sproutTheme/light/theme.js +23 -2
  60. package/lib/themes/light/decorative-palettes.js +20 -0
  61. package/lib/themes/light/theme.js +16 -3
  62. package/lib/types/theme.flow.js +1 -1
  63. package/package.json +1 -1
@@ -11,6 +11,10 @@ import {
11
11
  orange,
12
12
  red,
13
13
  neutral,
14
+ magenta,
15
+ pink,
16
+ aqua,
17
+ teal,
14
18
  } from "./decorative-palettes";
15
19
  import NETWORKCOLORS from "@sproutsocial/seeds-networkcolor";
16
20
  import TYPOGRAPHY from "@sproutsocial/seeds-typography";
@@ -49,6 +53,10 @@ const colors = {
49
53
  orange: orange.background,
50
54
  red: red.background,
51
55
  neutral: neutral.background,
56
+ magenta: magenta.background,
57
+ pink: pink.background,
58
+ aqua: aqua.background,
59
+ teal: teal.background,
52
60
  },
53
61
  selected: COLORS.COLOR_NEUTRAL_800,
54
62
  positive_sentiment: COLORS.COLOR_BLUE_500,
@@ -71,6 +79,10 @@ const colors = {
71
79
  orange: orange.highlight,
72
80
  red: red.highlight,
73
81
  neutral: neutral.highlight,
82
+ magenta: magenta.highlight,
83
+ pink: pink.highlight,
84
+ aqua: aqua.highlight,
85
+ teal: teal.highlight,
74
86
  },
75
87
  selected: COLORS.COLOR_NEUTRAL_800,
76
88
  },
@@ -291,17 +303,11 @@ export const fontWeights = {
291
303
  extrabold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_EXTRA_BOLD,
292
304
  };
293
305
 
294
- export type TypeSpaceLiterals =
295
- | 0
296
- | 100
297
- | 200
298
- | 300
299
- | 350
300
- | 400
301
- | 450
302
- | 500
303
- | 600
304
- | string;
306
+ /**
307
+ * @deprecated
308
+ * Import from `Stack/TypeSpaceLiterals` instead.
309
+ */
310
+ export type { TypeSpaceLiterals } from "../../Stack/TypeSpaceLiterals";
305
311
 
306
312
  export const space = {
307
313
  "0": SPACE.SPACE_SIZE_0,
@@ -29,6 +29,10 @@ type TypeContainerColors = {|
29
29
  orange: string,
30
30
  red: string,
31
31
  neutral: string,
32
+ magenta: string,
33
+ pink: string,
34
+ aqua: string,
35
+ teal: string,
32
36
  },
33
37
  selected: string,
34
38
  positive_sentiment: string,
@@ -51,6 +55,10 @@ type TypeContainerColors = {|
51
55
  orange: string,
52
56
  red: string,
53
57
  neutral: string,
58
+ magenta: string,
59
+ pink: string,
60
+ aqua: string,
61
+ teal: string,
54
62
  },
55
63
  selected: string,
56
64
  },
@@ -18,6 +18,7 @@ import {
18
18
  navigation,
19
19
  analytics,
20
20
  growth,
21
+ cardControl,
21
22
  } from "../themes/extendedThemes/sproutTheme/light/theme";
22
23
 
23
24
  export type TypeThemeMode = "light" | "dark";
@@ -59,5 +60,6 @@ export type TypeSproutTheme = {
59
60
  datePicker: typeof datePicker,
60
61
  analytics: typeof analytics,
61
62
  growth: typeof growth,
63
+ cardControl: typeof cardControl,
62
64
  |},
63
65
  };
@@ -39,6 +39,7 @@ module.exports = {
39
39
  "bitly": "0 0 16 16",
40
40
  "bold": "0 0 16 16",
41
41
  "book": "0 0 14 16",
42
+ "bookmark": "0 0 12 16",
42
43
  "bot": "0 0 16 16",
43
44
  "browser": "0 0 16 16",
44
45
  "business": "0 0 16 16",
@@ -167,6 +168,8 @@ module.exports = {
167
168
  "grip": "0 0 8 18",
168
169
  "h1": "0 0 16 16",
169
170
  "h2": "0 0 16 16",
171
+ "h3": "0 0 16 16",
172
+ "h4": "0 0 16 16",
170
173
  "hamburger": "0 0 16 18",
171
174
  "hashtag": "0 0 16 16",
172
175
  "headset": "0 0 16 16",
@@ -271,6 +274,8 @@ module.exports = {
271
274
  "recommendation": "0 0 16 16",
272
275
  "reddit-alien": "0 0 16 16",
273
276
  "reddit": "0 0 16 16",
277
+ "reels-outline": "0 0 16 16",
278
+ "reels": "0 0 16 16",
274
279
  "referrals": "0 0 16 16",
275
280
  "refresh": "0 0 16 16",
276
281
  "rejected": "0 0 16 16",
@@ -283,6 +288,7 @@ module.exports = {
283
288
  "retweet": "0 0 18 16",
284
289
  "rss": "0 0 16 16",
285
290
  "sales": "0 0 9 16",
291
+ "salesforce-cloud": "0 0 20 16",
286
292
  "salesforce": "0 0 20 16",
287
293
  "save-assets": "0 0 16 16",
288
294
  "saved-messages": "0 0 16 16",
@@ -293,6 +299,8 @@ module.exports = {
293
299
  "sent-message": "0 0 16 14",
294
300
  "share": "0 0 16 14",
295
301
  "shopify": "0 0 16 18",
302
+ "shopping-bag-outline": "0 0 14 16",
303
+ "shopping-bag": "0 0 14 16",
296
304
  "show-navigation": "0 0 18 14",
297
305
  "slack": "0 0 16 16",
298
306
  "small-density": "0 0 16 16",
@@ -338,6 +346,7 @@ module.exports = {
338
346
  "tumblr": "0 0 16 16",
339
347
  "twitter-audience-network": "0 0 17 16",
340
348
  "twitter": "0 0 17 16",
349
+ "underline": "0 0 14 16",
341
350
  "unfollow-outline": "0 0 20 16",
342
351
  "unfollow": "0 0 20 16",
343
352
  "unlink": "0 0 16 16",
@@ -95,6 +95,7 @@ module.exports = {
95
95
  "tracking-time": "0 0 360 195",
96
96
  "twitter-messages": "0 0 220 228",
97
97
  "twitter-profiles": "0 0 335 187",
98
+ "under-construction": "0 0 343 243",
98
99
  "unsubscribe": "0 0 212 163",
99
100
  "upward-trend": "0 0 65 49",
100
101
  "user-task": "0 0 313 176",
@@ -8,6 +8,8 @@ module.exports = {
8
8
  "dropbox-dark": "0 0 140 119",
9
9
  "dropbox": "0 0 140 119",
10
10
  "facebook-dark": "0 0 141 139",
11
+ "facebook-groups-dark": "0 0 140 140",
12
+ "facebook-groups": "0 0 140 140",
11
13
  "facebook-shops-dark": "0 0 141 155",
12
14
  "facebook-shops": "0 0 141 155",
13
15
  "facebook": "0 0 141 139",
@@ -51,6 +53,8 @@ module.exports = {
51
53
  "tripadvisor": "0 0 140 140",
52
54
  "tumblr-dark": "0 0 140 140",
53
55
  "tumblr": "0 0 140 140",
56
+ "twitter-audience-network-dark": "0 0 140 140",
57
+ "twitter-audience-network": "0 0 140 140",
54
58
  "twitter-dark": "0 0 140 114",
55
59
  "twitter": "0 0 140 114",
56
60
  "whatsapp-dark": "0 0 140 140",
@@ -2,5 +2,5 @@
2
2
 
3
3
  exports.__esModule = true;
4
4
  exports.illustrationNames = void 0;
5
- var illustrationNames = ["abacus", "analytics-offering", "astronaut", "brand-keyword", "business", "calendar-event", "calendar-reporting", "cat-error", "cat-no-access", "cat", "checkbox-alert", "coffee-cup", "compose-window", "compose", "computer-error", "connect", "contact", "conversation", "custom-branding", "customer-service", "dashboard", "exclamation-mark", "face-happy", "find-bookmark", "flask", "general-topic", "global-features", "global-trend", "hands-raised", "headset", "heartbeat-connection", "invoice", "jewel", "keyword-tracking", "lightbulb-alt", "lightbulb", "like-conversation", "link-broken", "link-messages", "link-sections", "link-upload", "listening-pendo", "listening-tour", "loading", "mailbox-empty", "mailbox-full", "network-data", "no-messages-found", "no-notifications", "notification", "notifications-onboarding", "organize-message", "outbox-queue", "outbox-reviews", "pdf", "podium", "pointer", "publish-assets", "publish-links", "puzzle-piece", "question-mark", "reporting-folder", "reporting", "review-location", "review", "robot-assembly", "robot-error", "robot-happy", "rocket", "schedule-date", "schedule-messages", "search-keywords", "search-success", "search-trends", "search", "security", "sentiment", "shopping-bag", "spark-line", "stamp", "storefront", "success", "tag-message", "tag", "team-roles", "team", "telescope", "tha-mel", "thumbs-up", "toggle-switch", "toolset-strength", "tracking-time", "twitter-messages", "twitter-profiles", "unsubscribe", "upward-trend", "user-task", "view-connections", "vip-list", "warning", "wifi"];
5
+ var illustrationNames = ["abacus", "analytics-offering", "astronaut", "brand-keyword", "business", "calendar-event", "calendar-reporting", "cat-error", "cat-no-access", "cat", "checkbox-alert", "coffee-cup", "compose-window", "compose", "computer-error", "connect", "contact", "conversation", "custom-branding", "customer-service", "dashboard", "exclamation-mark", "face-happy", "find-bookmark", "flask", "general-topic", "global-features", "global-trend", "hands-raised", "headset", "heartbeat-connection", "invoice", "jewel", "keyword-tracking", "lightbulb-alt", "lightbulb", "like-conversation", "link-broken", "link-messages", "link-sections", "link-upload", "listening-pendo", "listening-tour", "loading", "mailbox-empty", "mailbox-full", "network-data", "no-messages-found", "no-notifications", "notification", "notifications-onboarding", "organize-message", "outbox-queue", "outbox-reviews", "pdf", "podium", "pointer", "publish-assets", "publish-links", "puzzle-piece", "question-mark", "reporting-folder", "reporting", "review-location", "review", "robot-assembly", "robot-error", "robot-happy", "rocket", "schedule-date", "schedule-messages", "search-keywords", "search-success", "search-trends", "search", "security", "sentiment", "shopping-bag", "spark-line", "stamp", "storefront", "success", "tag-message", "tag", "team-roles", "team", "telescope", "tha-mel", "thumbs-up", "toggle-switch", "toolset-strength", "tracking-time", "twitter-messages", "twitter-profiles", "under-construction", "unsubscribe", "upward-trend", "user-task", "view-connections", "vip-list", "warning", "wifi"];
6
6
  exports.illustrationNames = illustrationNames;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -39,7 +39,9 @@ var CustomIcon = (0, _styledComponents.default)(_Icon.default).withConfig({
39
39
  return p.customColor ? undefined : p.theme.colors.icon[p.type];
40
40
  });
41
41
  exports.CustomIcon = CustomIcon;
42
- var GlobalToastStyles = (0, _styledComponents.createGlobalStyle)(["", " .Toastify__toast:last-of-type{margin-bottom:0;}.Toastify-container-overrides{padding:0;width:360px;}.Toastify-toast-overrides{padding:0;min-height:0;border-radius:2px;}.Toastify__toast-container--bottom-right{bottom:", ";right:", ";}@media only screen and (max-width:480px){.Toastify-container-overrides{min-width:initial;}}"], _ReactToastify.default, function (p) {
42
+ var GlobalToastStyles = (0, _styledComponents.createGlobalStyle)(["", " .Toastify__toast{box-shadow:", ";background:transparent;}.Toastify__toast:last-of-type{margin-bottom:0;}.Toastify-container-overrides{padding:0;width:360px;}.Toastify-toast-overrides{padding:0;min-height:0;border-radius:2px;}.Toastify__toast-container--bottom-right{bottom:", ";right:", ";}@media only screen and (max-width:480px){.Toastify-container-overrides{min-width:initial;}}"], _ReactToastify.default, function (p) {
43
+ return p.theme.shadows.low;
44
+ }, function (p) {
43
45
  return p.theme.space[400];
44
46
  }, function (p) {
45
47
  return p.theme.space[400];
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
- exports.yellow = exports.red = exports.purple = exports.orange = exports.neutral = exports.green = exports.blue = void 0;
4
+ exports.yellow = exports.teal = exports.red = exports.purple = exports.pink = exports.orange = exports.neutral = exports.magenta = exports.green = exports.blue = exports.aqua = void 0;
5
5
 
6
6
  var _seedsColor = _interopRequireDefault(require("@sproutsocial/seeds-color"));
7
7
 
@@ -48,4 +48,28 @@ var neutral = {
48
48
  highlight: _seedsColor.default.COLOR_NEUTRAL_500,
49
49
  foreground: _seedsColor.default.COLOR_NEUTRAL_100
50
50
  };
51
- exports.neutral = neutral;
51
+ exports.neutral = neutral;
52
+ var magenta = {
53
+ background: _seedsColor.default.COLOR_MAGENTA_900,
54
+ highlight: _seedsColor.default.COLOR_MAGENTA_600,
55
+ foreground: _seedsColor.default.COLOR_MAGENTA_100
56
+ };
57
+ exports.magenta = magenta;
58
+ var pink = {
59
+ background: _seedsColor.default.COLOR_PINK_900,
60
+ highlight: _seedsColor.default.COLOR_PINK_600,
61
+ foreground: _seedsColor.default.COLOR_PINK_100
62
+ };
63
+ exports.pink = pink;
64
+ var aqua = {
65
+ background: _seedsColor.default.COLOR_AQUA_900,
66
+ highlight: _seedsColor.default.COLOR_AQUA_500,
67
+ foreground: _seedsColor.default.COLOR_AQUA_100
68
+ };
69
+ exports.aqua = aqua;
70
+ var teal = {
71
+ background: _seedsColor.default.COLOR_TEAL_900,
72
+ highlight: _seedsColor.default.COLOR_TEAL_500,
73
+ foreground: _seedsColor.default.COLOR_TEAL_100
74
+ };
75
+ exports.teal = teal;
@@ -50,7 +50,11 @@ var colors = _extends({}, _theme.default.colors, {
50
50
  yellow: _decorativePalettes.yellow.background,
51
51
  orange: _decorativePalettes.orange.background,
52
52
  red: _decorativePalettes.red.background,
53
- neutral: _decorativePalettes.neutral.background
53
+ neutral: _decorativePalettes.neutral.background,
54
+ magenta: _decorativePalettes.magenta.background,
55
+ pink: _decorativePalettes.pink.background,
56
+ aqua: _decorativePalettes.aqua.background,
57
+ teal: _decorativePalettes.teal.background
54
58
  },
55
59
  selected: _seedsColor.default.COLOR_NEUTRAL_0,
56
60
  positive_sentiment: _seedsColor.default.COLOR_BLUE_500,
@@ -72,7 +76,11 @@ var colors = _extends({}, _theme.default.colors, {
72
76
  yellow: _decorativePalettes.yellow.highlight,
73
77
  orange: _decorativePalettes.orange.highlight,
74
78
  red: _decorativePalettes.red.highlight,
75
- neutral: _decorativePalettes.neutral.highlight
79
+ neutral: _decorativePalettes.neutral.highlight,
80
+ magenta: _decorativePalettes.magenta.highlight,
81
+ pink: _decorativePalettes.pink.highlight,
82
+ aqua: _decorativePalettes.aqua.highlight,
83
+ teal: _decorativePalettes.teal.highlight
76
84
  },
77
85
  selected: _seedsColor.default.COLOR_NEUTRAL_0
78
86
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
- exports.navigation = exports.growth = exports.default = exports.datePicker = exports.analytics = void 0;
4
+ exports.navigation = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = void 0;
5
5
 
6
6
  var _polished = require("polished");
7
7
 
@@ -16,6 +16,9 @@ var navigation = {
16
16
  background: {
17
17
  base: _theme.default.colors.neutral[1000],
18
18
  overflowGradient: _theme.default.colors.neutral[1100]
19
+ },
20
+ border: {
21
+ base: _theme.default.colors.neutral[1100]
19
22
  }
20
23
  },
21
24
  secondary: {
@@ -87,7 +90,9 @@ var growth = {
87
90
  },
88
91
  opportunity: {
89
92
  background: {
90
- base: _theme.default.colors.purple[700]
93
+ base: _theme.default.colors.purple[700],
94
+ secondary: _theme.default.colors.neutral[700],
95
+ hover: _theme.default.colors.purple[500]
91
96
  },
92
97
  button: {
93
98
  primary: {
@@ -137,16 +142,33 @@ var growth = {
137
142
  hover: _theme.default.colors.purple[700]
138
143
  }
139
144
  }
145
+ },
146
+ user: {
147
+ status: {
148
+ online: _theme.default.colors.green[700]
149
+ }
140
150
  }
141
151
  };
142
152
  exports.growth = growth;
153
+ var cardControl = {
154
+ background: {
155
+ base: _theme.default.colors.neutral[900],
156
+ selected: _theme.default.colors.neutral[700],
157
+ hover: _theme.default.colors.neutral[800]
158
+ },
159
+ text: {
160
+ selected: _theme.default.colors.text.body
161
+ }
162
+ };
163
+ exports.cardControl = cardControl;
143
164
 
144
165
  var darkTheme = _extends({}, _theme.default, {
145
166
  colors: _extends({}, _theme.default.colors, {
146
167
  navigation: navigation,
147
168
  datePicker: datePicker,
148
169
  analytics: analytics,
149
- growth: growth
170
+ growth: growth,
171
+ cardControl: cardControl
150
172
  })
151
173
  });
152
174
 
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
- exports.navigation = exports.growth = exports.default = exports.datePicker = exports.analytics = void 0;
4
+ exports.navigation = exports.growth = exports.default = exports.datePicker = exports.cardControl = exports.analytics = void 0;
5
5
 
6
6
  var _polished = require("polished");
7
7
 
@@ -16,6 +16,9 @@ var navigation = {
16
16
  background: {
17
17
  base: _theme.default.colors.neutral[900],
18
18
  overflowGradient: _theme.default.colors.neutral[1000]
19
+ },
20
+ border: {
21
+ base: _theme.default.colors.neutral[1000]
19
22
  }
20
23
  },
21
24
  secondary: {
@@ -87,7 +90,9 @@ var growth = {
87
90
  },
88
91
  opportunity: {
89
92
  background: {
90
- base: _theme.default.colors.purple[700]
93
+ base: _theme.default.colors.purple[700],
94
+ secondary: _theme.default.colors.neutral[900],
95
+ hover: _theme.default.colors.purple[300]
91
96
  },
92
97
  button: {
93
98
  primary: {
@@ -137,16 +142,33 @@ var growth = {
137
142
  hover: _theme.default.colors.purple[700]
138
143
  }
139
144
  }
145
+ },
146
+ user: {
147
+ status: {
148
+ online: _theme.default.colors.green[700]
149
+ }
140
150
  }
141
151
  };
142
152
  exports.growth = growth;
153
+ var cardControl = {
154
+ background: {
155
+ base: _theme.default.colors.neutral[0],
156
+ selected: _theme.default.colors.neutral[800],
157
+ hover: _theme.default.colors.neutral[100]
158
+ },
159
+ text: {
160
+ selected: _theme.default.colors.text.inverse
161
+ }
162
+ };
163
+ exports.cardControl = cardControl;
143
164
 
144
165
  var lightTheme = _extends({}, _theme.default, {
145
166
  colors: _extends({}, _theme.default.colors, {
146
167
  navigation: navigation,
147
168
  datePicker: datePicker,
148
169
  analytics: analytics,
149
- growth: growth
170
+ growth: growth,
171
+ cardControl: cardControl
150
172
  })
151
173
  });
152
174
 
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  exports.__esModule = true;
4
- exports.yellow = exports.red = exports.purple = exports.orange = exports.neutral = exports.green = exports.blue = void 0;
4
+ exports.yellow = exports.teal = exports.red = exports.purple = exports.pink = exports.orange = exports.neutral = exports.magenta = exports.green = exports.blue = exports.aqua = void 0;
5
5
 
6
6
  var _seedsColor = _interopRequireDefault(require("@sproutsocial/seeds-color"));
7
7
 
@@ -48,4 +48,28 @@ var neutral = {
48
48
  highlight: _seedsColor.default.COLOR_NEUTRAL_500,
49
49
  foreground: _seedsColor.default.COLOR_NEUTRAL_900
50
50
  };
51
- exports.neutral = neutral;
51
+ exports.neutral = neutral;
52
+ var magenta = {
53
+ background: _seedsColor.default.COLOR_MAGENTA_100,
54
+ highlight: _seedsColor.default.COLOR_MAGENTA_600,
55
+ foreground: _seedsColor.default.COLOR_MAGENTA_900
56
+ };
57
+ exports.magenta = magenta;
58
+ var pink = {
59
+ background: _seedsColor.default.COLOR_PINK_100,
60
+ highlight: _seedsColor.default.COLOR_PINK_600,
61
+ foreground: _seedsColor.default.COLOR_PINK_900
62
+ };
63
+ exports.pink = pink;
64
+ var aqua = {
65
+ background: _seedsColor.default.COLOR_AQUA_100,
66
+ highlight: _seedsColor.default.COLOR_AQUA_500,
67
+ foreground: _seedsColor.default.COLOR_AQUA_900
68
+ };
69
+ exports.aqua = aqua;
70
+ var teal = {
71
+ background: _seedsColor.default.COLOR_TEAL_100,
72
+ highlight: _seedsColor.default.COLOR_TEAL_500,
73
+ foreground: _seedsColor.default.COLOR_TEAL_900
74
+ };
75
+ exports.teal = teal;
@@ -55,7 +55,11 @@ var colors = _extends({
55
55
  yellow: _decorativePalettes.yellow.background,
56
56
  orange: _decorativePalettes.orange.background,
57
57
  red: _decorativePalettes.red.background,
58
- neutral: _decorativePalettes.neutral.background
58
+ neutral: _decorativePalettes.neutral.background,
59
+ magenta: _decorativePalettes.magenta.background,
60
+ pink: _decorativePalettes.pink.background,
61
+ aqua: _decorativePalettes.aqua.background,
62
+ teal: _decorativePalettes.teal.background
59
63
  },
60
64
  selected: _seedsColor.default.COLOR_NEUTRAL_800,
61
65
  positive_sentiment: _seedsColor.default.COLOR_BLUE_500,
@@ -77,7 +81,11 @@ var colors = _extends({
77
81
  yellow: _decorativePalettes.yellow.highlight,
78
82
  orange: _decorativePalettes.orange.highlight,
79
83
  red: _decorativePalettes.red.highlight,
80
- neutral: _decorativePalettes.neutral.highlight
84
+ neutral: _decorativePalettes.neutral.highlight,
85
+ magenta: _decorativePalettes.magenta.highlight,
86
+ pink: _decorativePalettes.pink.highlight,
87
+ aqua: _decorativePalettes.aqua.highlight,
88
+ teal: _decorativePalettes.teal.highlight
81
89
  },
82
90
  selected: _seedsColor.default.COLOR_NEUTRAL_800
83
91
  }
@@ -290,6 +298,11 @@ var fontWeights = {
290
298
  bold: _seedsTypography.default.TYPOGRAPHY_WEIGHT_BOLD,
291
299
  extrabold: _seedsTypography.default.TYPOGRAPHY_WEIGHT_EXTRA_BOLD
292
300
  };
301
+ /**
302
+ * @deprecated
303
+ * Import from `Stack/TypeSpaceLiterals` instead.
304
+ */
305
+
293
306
  exports.fontWeights = fontWeights;
294
307
  var space = {
295
308
  "0": _seedsSpace.default.SPACE_SIZE_0,