@sproutsocial/racine 12.7.0 → 12.10.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 (50) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/__flow__/Checkbox/styles.js +75 -75
  3. package/__flow__/Collapsible/index.js +2 -3
  4. package/__flow__/EnumIconNames.js +1 -1
  5. package/__flow__/IconViewBoxes.js +1 -1
  6. package/__flow__/Image/index.js +2 -10
  7. package/__flow__/SegmentedControl/index.js +2 -3
  8. package/__flow__/TableCell/index.js +2 -9
  9. package/__flow__/Toast/styles.js +5 -0
  10. package/__flow__/ToggleHint/index.js +2 -9
  11. package/__flow__/index.js +1 -0
  12. package/__flow__/systemProps/color.js +2 -1
  13. package/__flow__/themes/dark/decorative-palettes.js +24 -0
  14. package/__flow__/themes/dark/theme.js +12 -0
  15. package/__flow__/themes/extendedThemes/sproutTheme/dark/theme.js +21 -0
  16. package/__flow__/themes/extendedThemes/sproutTheme/light/theme.js +21 -0
  17. package/__flow__/themes/light/decorative-palettes.js +24 -0
  18. package/__flow__/themes/light/theme.js +12 -0
  19. package/__flow__/types/theme.colors.flow.js +8 -0
  20. package/__flow__/types/theme.flow.js +2 -0
  21. package/__flow__/utils/responsiveProps/index.test.js +2 -10
  22. package/commonjs/EnumIconNames.js +1 -0
  23. package/commonjs/EnumIllustrationNames.js +1 -0
  24. package/commonjs/EnumLogoNames.js +1 -0
  25. package/commonjs/IconViewBoxes.js +374 -0
  26. package/commonjs/IllustrationViewBoxes.js +105 -0
  27. package/commonjs/LogoViewBoxes.js +66 -0
  28. package/commonjs/Toast/styles.js +3 -1
  29. package/commonjs/themes/dark/decorative-palettes.js +26 -2
  30. package/commonjs/themes/dark/theme.js +10 -2
  31. package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +24 -3
  32. package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +24 -3
  33. package/commonjs/themes/light/decorative-palettes.js +26 -2
  34. package/commonjs/themes/light/theme.js +10 -2
  35. package/dist/icon.svg +1 -1
  36. package/dist/iconList.js +1 -1
  37. package/dist/themes/dark/theme.scss +10 -2
  38. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +50 -4
  39. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +50 -4
  40. package/dist/themes/light/theme.scss +10 -2
  41. package/lib/IconViewBoxes.js +9 -0
  42. package/lib/Toast/styles.js +3 -1
  43. package/lib/themes/dark/decorative-palettes.js +20 -0
  44. package/lib/themes/dark/theme.js +11 -3
  45. package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +22 -2
  46. package/lib/themes/extendedThemes/sproutTheme/light/theme.js +22 -2
  47. package/lib/themes/light/decorative-palettes.js +20 -0
  48. package/lib/themes/light/theme.js +11 -3
  49. package/lib/types/theme.flow.js +1 -1
  50. package/package.json +1 -1
@@ -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
  };
@@ -19,21 +19,13 @@ describe("normalizeResponsiveProp", () => {
19
19
 
20
20
  it("should handle arrays with 4 values", () => {
21
21
  expect(normalizeResponsiveProp([0, 1, 2, 3])).toMatchObject([
22
- 0,
23
- 1,
24
- 2,
25
- 3,
26
- 3,
22
+ 0, 1, 2, 3, 3,
27
23
  ]);
28
24
  });
29
25
 
30
26
  it("should handle arrays with 5 values", () => {
31
27
  expect(normalizeResponsiveProp([0, 1, 2, 3, 4])).toMatchObject([
32
- 0,
33
- 1,
34
- 2,
35
- 3,
36
- 4,
28
+ 0, 1, 2, 3, 4,
37
29
  ]);
38
30
  });
39
31
  });
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,374 @@
1
+ "use strict";
2
+
3
+ module.exports = {
4
+ "active-listener": "0 0 16 16",
5
+ "add-item": "0 0 16 16",
6
+ "add-keyword": "0 0 16 16",
7
+ "add-team-member": "0 0 18 13",
8
+ "add-variable": "0 0 18 14",
9
+ "address-card-outline": "0 0 16 16",
10
+ "address-card-solid": "0 0 18 16",
11
+ "adobe-experience-manager": "0 0 16 18",
12
+ "ads": "0 0 9 16",
13
+ "android": "0 0 14 16",
14
+ "apple": "0 0 14 16",
15
+ "approval-indicator-outline": "0 0 14 16",
16
+ "approval-indicator": "0 0 14 16",
17
+ "archive": "0 0 16 16",
18
+ "arrow-down-line": "0 0 14 16",
19
+ "arrow-down": "0 0 16 16",
20
+ "arrow-left-line": "0 0 16 18",
21
+ "arrow-left": "0 0 16 16",
22
+ "arrow-right-line": "0 0 16 18",
23
+ "arrow-right": "0 0 16 16",
24
+ "arrow-up-line": "0 0 14 16",
25
+ "arrow-up": "0 0 16 16",
26
+ "arrows": "0 0 16 16",
27
+ "asset-library-outline": "0 0 16 16",
28
+ "asset-library": "0 0 16 16",
29
+ "assign": "0 0 18 15",
30
+ "atom": "0 0 14 16",
31
+ "audio": "0 0 16 14",
32
+ "back-to-top": "0 0 15 16",
33
+ "bambu-icon-outline": "0 0 16 16",
34
+ "bambu-icon": "0 0 16 16",
35
+ "barcode": "0 0 18 16",
36
+ "basketball": "0 0 16 16",
37
+ "bell-outline": "0 0 14 16",
38
+ "bigcommerce": "0 0 16 16",
39
+ "bitly": "0 0 16 16",
40
+ "bold": "0 0 16 16",
41
+ "book": "0 0 14 16",
42
+ "bookmark": "0 0 12 16",
43
+ "bot": "0 0 16 16",
44
+ "browser": "0 0 16 16",
45
+ "business": "0 0 16 16",
46
+ "calendar-outline": "0 0 14 16",
47
+ "calendar": "0 0 14 16",
48
+ "camera-outline": "0 0 18 16",
49
+ "camera-story": "0 0 18 16",
50
+ "camera": "0 0 18 16",
51
+ "campaign": "0 0 16 14",
52
+ "canva": "0 0 16 18",
53
+ "carousel": "0 0 16 18",
54
+ "cart-plus-outline": "0 0 17 15",
55
+ "cart-plus": "0 0 17 15",
56
+ "check": "0 0 16 16",
57
+ "chevron-down-filled": "0 0 16 21",
58
+ "chevron-down": "0 0 16 18",
59
+ "chevron-left": "0 0 10 16",
60
+ "chevron-right": "0 0 10 17",
61
+ "chevron-up-down-filled": "0 0 12 20",
62
+ "chevron-up-filled": "0 0 16 21",
63
+ "chevron-up": "0 0 16 18",
64
+ "circle-check-outline": "0 0 16 16",
65
+ "circle-check": "0 0 16 16",
66
+ "circle": "0 0 16 16",
67
+ "circle+": "0 0 16 16",
68
+ "circles": "0 0 16 16",
69
+ "circlex": "0 0 16 16",
70
+ "click-to-view": "0 0 12 16",
71
+ "clicks": "0 0 10 16",
72
+ "clipboard-outline": "0 0 12 16",
73
+ "clipboard": "0 0 12 16",
74
+ "clock": "0 0 16 16",
75
+ "closed-captioning": "0 0 16 16",
76
+ "cloud": "0 0 16 13",
77
+ "code": "0 0 18 16",
78
+ "columns": "0 0 16 16",
79
+ "comment-alt-outline": "0 0 16 15",
80
+ "comment-alt": "0 0 16 15",
81
+ "comment-lines-alt-outline": "0 0 16 16",
82
+ "comment": "0 0 16 13",
83
+ "compact-density": "0 0 16 16",
84
+ "compact-indicator": "0 0 16 16",
85
+ "comparison": "0 0 16 14",
86
+ "competitor": "0 0 14 16",
87
+ "compose": "0 0 16 16",
88
+ "content-suggestions": "0 0 16 16",
89
+ "credit-card": "0 0 16 14",
90
+ "crop": "0 0 16 16",
91
+ "crown": "0 0 16 16",
92
+ "dashboard": "0 0 16 14",
93
+ "deconstructed-negative-sentiment": "0 0 18 18",
94
+ "deconstructed-neutral-sentiment": "0 0 18 18",
95
+ "deconstructed-positive-sentiment": "0 0 18 18",
96
+ "discovery": "0 0 16 16",
97
+ "dislike-outline": "0 0 15 16",
98
+ "dislike": "0 0 16 16",
99
+ "dm-link-outline": "0 0 16 16",
100
+ "dm-link": "0 0 16 16",
101
+ "dotdotdot": "0 0 16 16",
102
+ "download": "0 0 16 16",
103
+ "drafts-outline": "0 0 12 16",
104
+ "drafts": "0 0 12 16",
105
+ "dropbox": "0 0 18 16",
106
+ "duplicate-outline": "0 0 14 16",
107
+ "duplicate": "0 0 14 16",
108
+ "emoji-outline": "0 0 16 16",
109
+ "emoji": "0 0 16 16",
110
+ "empty-image": "0 0 16 18",
111
+ "engagement-per-post": "0 0 16 16",
112
+ "engagements": "0 0 16 15",
113
+ "error": "0 0 16 16",
114
+ "exchange-alt": "0 0 16 16",
115
+ "expanded-indicator": "0 0 16 16",
116
+ "export": "0 0 14 17",
117
+ "extended-circles": "0 0 16 16",
118
+ "external-link-alt": "0 0 16 16",
119
+ "external-link": "0 0 16 16",
120
+ "extreme-negative-sentiment": "0 0 16 16",
121
+ "eye-outline": "0 0 18 16",
122
+ "eye-slash-outline": "0 0 20 16",
123
+ "eye-slash": "0 0 20 16",
124
+ "eye": "0 0 18 16",
125
+ "facebook-audience-network": "0 0 16 16",
126
+ "facebook-branded-content-outline": "0 0 18 15",
127
+ "facebook-branded-content": "0 0 18 15",
128
+ "facebook-groups": "0 0 16 16",
129
+ "facebook": "0 0 16 16",
130
+ "fb-reactions-angry": "0 0 16 16",
131
+ "fb-reactions-haha": "0 0 16 16",
132
+ "fb-reactions-like": "0 0 16 16",
133
+ "fb-reactions-love": "0 0 16 16",
134
+ "fb-reactions-sad": "0 0 16 16",
135
+ "fb-reactions-wow": "0 0 16 16",
136
+ "feedly": "0 0 16 15",
137
+ "feeds": "0 0 16 15",
138
+ "female": "0 0 11 18",
139
+ "file-chart-line": "0 0 12 16",
140
+ "file-edit": "0 0 12 16",
141
+ "file-times-solid": "0 0 12 16",
142
+ "filter": "0 0 16 16",
143
+ "flag-outline": "0 0 16 16",
144
+ "flag": "0 0 16 16",
145
+ "flat-negative-sentiment-outline": "0 0 18 18",
146
+ "flat-negative-sentiment": "0 0 18 18",
147
+ "flat-neutral-sentiment-outline": "0 0 18 18",
148
+ "flat-neutral-sentiment": "0 0 18 18",
149
+ "flat-positive-sentiment-outline": "0 0 18 18",
150
+ "flat-positive-sentiment": "0 0 18 18",
151
+ "folder-open": "0 0 16 15",
152
+ "folder": "0 0 16 16",
153
+ "follow-outline": "0 0 20 16",
154
+ "follow": "0 0 20 16",
155
+ "follower-increase": "0 0 19 16",
156
+ "following": "0 0 20 16",
157
+ "font": "0 0 18 16",
158
+ "full-access": "0 0 16 16",
159
+ "gear": "0 0 16 16",
160
+ "gears": "0 0 16 16",
161
+ "glassdoor": "0 0 16 16",
162
+ "glasses": "0 0 18 14",
163
+ "globe": "0 0 16 16",
164
+ "google-analytics-color": "0 0 14 18",
165
+ "google-business-messages": "0 0 16 16",
166
+ "google-drive": "0 0 16 14",
167
+ "google-my-business": "0 0 16 14",
168
+ "grip": "0 0 8 18",
169
+ "h1": "0 0 16 16",
170
+ "h2": "0 0 16 16",
171
+ "h3": "0 0 16 16",
172
+ "h4": "0 0 16 16",
173
+ "hamburger": "0 0 16 18",
174
+ "hashtag": "0 0 16 16",
175
+ "headset": "0 0 16 16",
176
+ "heart-outline": "0 0 16 16",
177
+ "heart": "0 0 16 16",
178
+ "heartbeat": "0 0 18 16",
179
+ "help-alt": "0 0 12 16",
180
+ "help": "0 0 16 16",
181
+ "hiking": "0 0 16 16",
182
+ "history": "0 0 16 16",
183
+ "home": "0 0 16 15",
184
+ "hourglass": "0 0 12 16",
185
+ "hubspot": "0 0 16 16",
186
+ "image-caption": "0 0 16 14",
187
+ "image": "0 0 16 16",
188
+ "images": "0 0 16 15",
189
+ "impressions-per-post": "0 0 16 16",
190
+ "impressions": "0 0 18 16",
191
+ "inactive-listener": "0 0 16 12",
192
+ "inbox-action": "0 0 16 16",
193
+ "inbox-views": "0 0 16 13",
194
+ "inbox": "0 0 16 14",
195
+ "indicator": "0 0 16 16",
196
+ "industry": "0 0 14 16",
197
+ "info": "0 0 16 16",
198
+ "instagram": "0 0 16 16",
199
+ "internal-activity-outline": "0 0 16 16",
200
+ "internal-activity": "0 0 16 16",
201
+ "italic": "0 0 16 16",
202
+ "key": "0 0 16 16",
203
+ "keyboard": "0 0 18 16",
204
+ "laptop-phone": "0 0 16 16",
205
+ "large-density": "0 0 16 16",
206
+ "lift": "0 0 23 16",
207
+ "like-outline": "0 0 15 16",
208
+ "like": "0 0 16 16",
209
+ "link": "0 0 16 16",
210
+ "linkedin-audience-network": "0 0 16 16",
211
+ "linkedin": "0 0 16 16",
212
+ "list-ol": "0 0 16 16",
213
+ "listening": "0 0 14 16",
214
+ "lists": "0 0 16 16",
215
+ "location-outline": "0 0 12 16",
216
+ "location": "0 0 12 16",
217
+ "lock": "0 0 14 16",
218
+ "magic-wand": "0 0 17 16",
219
+ "male": "0 0 16 20",
220
+ "marketo": "0 0 16 18",
221
+ "mention": "0 0 16 16",
222
+ "message-preview-outline": "0 0 18 16",
223
+ "message-preview": "0 0 18 16",
224
+ "message": "0 0 16 16",
225
+ "messages-outline": "0 0 16 16",
226
+ "messages": "0 0 16 16",
227
+ "messenger": "0 0 16 16",
228
+ "metric-table": "0 0 16 16",
229
+ "microsoft-dynamics": "0 0 16 16",
230
+ "minus": "0 0 16 16",
231
+ "mobile": "0 0 10 16",
232
+ "monitor": "0 0 12 16",
233
+ "moon": "0 0 15 16",
234
+ "negative-sentiment": "0 0 16 16",
235
+ "neutral-positive-sentiment": "0 0 16 16",
236
+ "neutral-sentiment": "0 0 16 16",
237
+ "new-trend": "0 0 12 16",
238
+ "newspaper": "0 0 16 16",
239
+ "no-access": "0 0 16 16",
240
+ "notepad": "0 0 12 16",
241
+ "notifications-publishing-outline": "0 0 16 16",
242
+ "notifications-publishing": "0 0 16 16",
243
+ "notifications": "0 0 14 16",
244
+ "offline": "0 0 18 15",
245
+ "online": "0 0 18 15",
246
+ "paid-promotion-outline": "0 0 16 16",
247
+ "paid-promotion": "0 0 16 16",
248
+ "paid": "0 0 14 16",
249
+ "paint": "0 0 18 16",
250
+ "palette": "0 0 16 16",
251
+ "paperclip": "0 0 14 16",
252
+ "pause": "0 0 16 18",
253
+ "pencil-outline": "0 0 16 16",
254
+ "pencil": "0 0 16 16",
255
+ "person": "0 0 14 16",
256
+ "phone": "0 0 16 16",
257
+ "pinterest-boards-outline": "0 0 14 16",
258
+ "pinterest-boards": "0 0 14 16",
259
+ "pinterest": "0 0 16 16",
260
+ "play-circle": "0 0 16 16",
261
+ "play": "0 0 14 16",
262
+ "plug": "0 0 12 16",
263
+ "plus": "0 0 16 18",
264
+ "positive-sentiment": "0 0 16 16",
265
+ "power-up-outline": "0 0 12 16",
266
+ "power-up": "0 0 10 16",
267
+ "profile-connect": "0 0 16 16",
268
+ "profile-disconnect": "0 0 16 16",
269
+ "publishing-outline": "0 0 16 16",
270
+ "publishing": "0 0 16 16",
271
+ "puzzle-piece": "0 0 18 16",
272
+ "qr-code": "0 0 16 16",
273
+ "queue": "0 0 16 16",
274
+ "recommendation": "0 0 16 16",
275
+ "reddit-alien": "0 0 16 16",
276
+ "reddit": "0 0 16 16",
277
+ "reels-outline": "0 0 16 16",
278
+ "reels": "0 0 16 16",
279
+ "referrals": "0 0 16 16",
280
+ "refresh": "0 0 16 16",
281
+ "rejected": "0 0 16 16",
282
+ "reply-outline": "0 0 16 16",
283
+ "reply": "0 0 16 16",
284
+ "reporting-period": "0 0 14 16",
285
+ "reporting": "0 0 16 16",
286
+ "reports-home": "0 0 16 16",
287
+ "reports": "0 0 16 15",
288
+ "retweet": "0 0 18 16",
289
+ "rss": "0 0 16 16",
290
+ "sales": "0 0 9 16",
291
+ "salesforce-cloud": "0 0 20 16",
292
+ "salesforce": "0 0 20 16",
293
+ "save-assets": "0 0 16 16",
294
+ "saved-messages": "0 0 16 16",
295
+ "saved-reply-outline": "0 0 16 12",
296
+ "saved-reply": "0 0 16 12",
297
+ "search": "0 0 16 16",
298
+ "sent-message-outline": "0 0 16 14",
299
+ "sent-message": "0 0 16 14",
300
+ "share": "0 0 16 14",
301
+ "shopify": "0 0 16 18",
302
+ "shopping-bag-outline": "0 0 14 16",
303
+ "shopping-bag": "0 0 14 16",
304
+ "show-navigation": "0 0 18 14",
305
+ "slack": "0 0 16 16",
306
+ "small-density": "0 0 16 16",
307
+ "smiley": "0 0 16 16",
308
+ "some-access": "0 0 16 16",
309
+ "sparkles": "0 0 16 16",
310
+ "spike-alert": "0 0 16 16",
311
+ "star-half-alt-solid": "0 0 18 16",
312
+ "star-of-life": "0 0 16 16",
313
+ "star-outline": "0 0 18 16",
314
+ "star": "0 0 18 16",
315
+ "sticky-note-outline": "0 0 16 16",
316
+ "sticky-note": "0 0 16 16",
317
+ "stories": "0 0 16 17",
318
+ "story": "0 0 16 16",
319
+ "suggestions": "0 0 11 16",
320
+ "sun": "0 0 16 16",
321
+ "tag-outline": "0 0 16 16",
322
+ "tag": "0 0 16 16",
323
+ "targeting-outline": "0 0 16 16",
324
+ "targeting": "0 0 16 16",
325
+ "tasks-outline": "0 0 12 16",
326
+ "tasks": "0 0 12 16",
327
+ "team-conversation-outline": "0 0 16 18",
328
+ "team-conversation": "0 0 16 18",
329
+ "team": "0 0 18 16",
330
+ "text-asset": "0 0 16 16",
331
+ "text": "0 0 8 16",
332
+ "tiktok": "0 0 16 18",
333
+ "times": "0 0 16 22",
334
+ "trash-can-outline": "0 0 14 16",
335
+ "trash-can": "0 0 14 16",
336
+ "trend-down": "0 0 18 18",
337
+ "trend-neutral": "0 0 20 18",
338
+ "trend-up": "0 0 18 18",
339
+ "trends": "0 0 16 17",
340
+ "triangle-black": "0 0 16 16",
341
+ "triangle": "0 0 16 16",
342
+ "tripadvisor-circle-outline": "0 0 16 16",
343
+ "tripadvisor-circle": "0 0 16 16",
344
+ "tripadvisor": "0 0 16 16",
345
+ "trophy-outline": "0 0 18 16",
346
+ "tumblr": "0 0 16 16",
347
+ "twitter-audience-network": "0 0 17 16",
348
+ "twitter": "0 0 17 16",
349
+ "underline": "0 0 14 16",
350
+ "unfollow-outline": "0 0 20 16",
351
+ "unfollow": "0 0 20 16",
352
+ "unlink": "0 0 16 16",
353
+ "unlock": "0 0 14 16",
354
+ "upload": "0 0 16 17",
355
+ "user-circle": "0 0 16 16",
356
+ "users": "0 0 18 16",
357
+ "verified": "0 0 16 16",
358
+ "video-camera-story": "0 0 18 15",
359
+ "video-camera": "0 0 18 16",
360
+ "vip": "0 0 16 16",
361
+ "weight": "0 0 16 16",
362
+ "whatsapp": "0 0 16 16",
363
+ "window-maximize": "0 0 16 16",
364
+ "window-minimize": "0 0 16 16",
365
+ "window-regular": "0 0 16 16",
366
+ "window-restore": "0 0 16 16",
367
+ "woocommerce": "0 0 18 16",
368
+ "x": "0 0 16 18",
369
+ "yelp-full-star": "0 0 16 16",
370
+ "yelp-half-star": "0 0 16 16",
371
+ "yelp": "0 0 14 16",
372
+ "youtube": "0 0 16 15",
373
+ "zendesk": "0 0 16 16"
374
+ };
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+
3
+ module.exports = {
4
+ "abacus": "0 0 249 157",
5
+ "analytics-offering": "0 0 220 231",
6
+ "astronaut": "0 0 277 298",
7
+ "brand-keyword": "0 0 240 230",
8
+ "business": "0 0 88 56",
9
+ "calendar-event": "0 0 110 42",
10
+ "calendar-reporting": "0 0 248 182",
11
+ "cat-error": "0 0 284 180",
12
+ "cat-no-access": "0 0 370 273",
13
+ "cat": "0 0 240 171",
14
+ "checkbox-alert": "0 0 193 169",
15
+ "coffee-cup": "0 0 196 234",
16
+ "compose-window": "0 0 372 188",
17
+ "compose": "0 0 62 45",
18
+ "computer-error": "0 0 237 259",
19
+ "connect": "0 0 242 162",
20
+ "contact": "0 0 305 145",
21
+ "conversation": "0 0 330 236",
22
+ "custom-branding": "0 0 168 164",
23
+ "customer-service": "0 0 302 155",
24
+ "dashboard": "0 0 337 195",
25
+ "exclamation-mark": "0 0 219 143",
26
+ "face-happy": "0 0 238 173",
27
+ "find-bookmark": "0 0 276 228",
28
+ "flask": "0 0 255 230",
29
+ "general-topic": "0 0 101 63",
30
+ "global-features": "0 0 239 226",
31
+ "global-trend": "0 0 56 42",
32
+ "hands-raised": "0 0 192 176",
33
+ "headset": "0 0 106 54",
34
+ "heartbeat-connection": "0 0 335 201",
35
+ "invoice": "0 0 171 178",
36
+ "jewel": "0 0 154 137",
37
+ "keyword-tracking": "0 0 400 232",
38
+ "lightbulb-alt": "0 0 89 54",
39
+ "lightbulb": "0 0 49 43",
40
+ "like-conversation": "0 0 293 258",
41
+ "link-broken": "0 0 340 236",
42
+ "link-messages": "0 0 233 250",
43
+ "link-sections": "0 0 270 273",
44
+ "link-upload": "0 0 180 140",
45
+ "listening-pendo": "0 0 544 109",
46
+ "listening-tour": "0 0 236 212",
47
+ "loading": "0 0 62 39",
48
+ "mailbox-empty": "0 0 309 240",
49
+ "mailbox-full": "0 0 352 252",
50
+ "network-data": "0 0 369 229",
51
+ "no-messages-found": "0 0 272 211",
52
+ "no-notifications": "0 0 281 134",
53
+ "notification": "0 0 252 194",
54
+ "notifications-onboarding": "0 0 352 163",
55
+ "organize-message": "0 0 276 220",
56
+ "outbox-queue": "0 0 246 176",
57
+ "outbox-reviews": "0 0 246 176",
58
+ "pdf": "0 0 36 35",
59
+ "podium": "0 0 106 46",
60
+ "pointer": "0 0 54 37",
61
+ "publish-assets": "0 0 336 263",
62
+ "publish-links": "0 0 266 252",
63
+ "puzzle-piece": "0 0 56 44",
64
+ "question-mark": "0 0 302 191",
65
+ "reporting-folder": "0 0 314 247",
66
+ "reporting": "0 0 331 226",
67
+ "review-location": "0 0 251 227",
68
+ "review": "0 0 251 143",
69
+ "robot-assembly": "0 0 375 253",
70
+ "robot-error": "0 0 281 286",
71
+ "robot-happy": "0 0 222 190",
72
+ "rocket": "0 0 101 56",
73
+ "schedule-date": "0 0 386 240",
74
+ "schedule-messages": "0 0 372 217",
75
+ "search-keywords": "0 0 237 243",
76
+ "search-success": "0 0 235 243",
77
+ "search-trends": "0 0 249 187",
78
+ "search": "0 0 337 196",
79
+ "security": "0 0 216 284",
80
+ "sentiment": "0 0 316 246",
81
+ "shopping-bag": "0 0 112 58",
82
+ "spark-line": "0 0 227 113",
83
+ "stamp": "0 0 291 253",
84
+ "storefront": "0 0 111 45",
85
+ "success": "0 0 200 200",
86
+ "tag-message": "0 0 346 226",
87
+ "tag": "0 0 62 42",
88
+ "team-roles": "0 0 358 298",
89
+ "team": "0 0 347 249",
90
+ "telescope": "0 0 272 255",
91
+ "tha-mel": "0 0 181 152",
92
+ "thumbs-up": "0 0 169 250",
93
+ "toggle-switch": "0 0 299 127",
94
+ "toolset-strength": "0 0 348 231",
95
+ "tracking-time": "0 0 360 195",
96
+ "twitter-messages": "0 0 220 228",
97
+ "twitter-profiles": "0 0 335 187",
98
+ "unsubscribe": "0 0 212 163",
99
+ "upward-trend": "0 0 65 49",
100
+ "user-task": "0 0 313 176",
101
+ "view-connections": "0 0 356 201",
102
+ "vip-list": "0 0 212 228",
103
+ "warning": "0 0 55 38",
104
+ "wifi": "0 0 55 43"
105
+ };
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+
3
+ module.exports = {
4
+ "bitly-dark": "0 0 140 64",
5
+ "bitly": "0 0 140 64",
6
+ "canva-dark": "0 0 140 140",
7
+ "canva": "0 0 140 140",
8
+ "dropbox-dark": "0 0 140 119",
9
+ "dropbox": "0 0 140 119",
10
+ "facebook-dark": "0 0 141 139",
11
+ "facebook-shops-dark": "0 0 141 155",
12
+ "facebook-shops": "0 0 141 155",
13
+ "facebook": "0 0 141 139",
14
+ "feedly-dark": "0 0 141 123",
15
+ "feedly": "0 0 141 123",
16
+ "glassdoor-dark": "0 0 140 196",
17
+ "glassdoor": "0 0 140 196",
18
+ "google-analytics-dark": "0 0 140 160",
19
+ "google-analytics": "0 0 140 160",
20
+ "google-business-messages-dark": "0 0 140 140",
21
+ "google-business-messages": "0 0 140 140",
22
+ "google-drive-dark": "0 0 140 126",
23
+ "google-drive": "0 0 140 126",
24
+ "google-my-business-dark": "0 0 140 123",
25
+ "google-my-business": "0 0 140 123",
26
+ "hubspot-dark": "0 0 140 156",
27
+ "hubspot": "0 0 140 156",
28
+ "instagram-dark": "0 0 140 140",
29
+ "instagram": "0 0 140 140",
30
+ "linkedin-dark": "0 0 140 140",
31
+ "linkedin": "0 0 140 140",
32
+ "marketo-dark": "0 0 140 164",
33
+ "marketo": "0 0 140 164",
34
+ "messenger-dark": "0 0 140 141",
35
+ "messenger": "0 0 140 140",
36
+ "microsoft-dynamics-dark": "0 0 140 227",
37
+ "microsoft-dynamics": "0 0 140 227",
38
+ "pinterest-dark": "0 0 140 141",
39
+ "pinterest": "0 0 140 141",
40
+ "reddit-dark": "0 0 140 140",
41
+ "reddit": "0 0 140 140",
42
+ "salesforce-dark": "0 0 140 99",
43
+ "salesforce": "0 0 140 99",
44
+ "shopify-dark": "0 0 140 159",
45
+ "shopify": "0 0 140 159",
46
+ "slack-dark": "0 0 140 140",
47
+ "slack": "0 0 140 140",
48
+ "tiktok-dark": "0 0 140 159",
49
+ "tiktok": "0 0 140 159",
50
+ "tripadvisor-dark": "0 0 140 140",
51
+ "tripadvisor": "0 0 140 140",
52
+ "tumblr-dark": "0 0 140 140",
53
+ "tumblr": "0 0 140 140",
54
+ "twitter-dark": "0 0 140 114",
55
+ "twitter": "0 0 140 114",
56
+ "whatsapp-dark": "0 0 140 140",
57
+ "whatsapp": "0 0 140 141",
58
+ "woocommerce-dark": "0 0 140 84",
59
+ "woocommerce": "0 0 140 84",
60
+ "yelp-dark": "0 0 140 159",
61
+ "yelp": "0 0 140 159",
62
+ "youtube-dark": "0 0 140 99",
63
+ "youtube": "0 0 140 99",
64
+ "zendesk-dark": "0 0 140 107",
65
+ "zendesk": "0 0 140 107"
66
+ };
@@ -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;