@sproutsocial/racine 12.9.0 → 12.12.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.
- package/CHANGELOG.md +37 -0
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/EnumIllustrationNames.js +1 -1
- package/__flow__/EnumLogoNames.js +1 -1
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/IllustrationViewBoxes.js +1 -1
- package/__flow__/LogoViewBoxes.js +1 -1
- package/__flow__/PartnerLogo/TypePartnerNames.js +2 -0
- package/__flow__/PartnerLogo/index.stories.js +2 -0
- package/__flow__/PartnerLogo/partnerLogos/facebook-groups-dark.svg +3 -0
- package/__flow__/PartnerLogo/partnerLogos/facebook-groups.svg +3 -0
- package/__flow__/PartnerLogo/partnerLogos/twitter-audience-network-dark.svg +3 -0
- package/__flow__/PartnerLogo/partnerLogos/twitter-audience-network.svg +3 -0
- package/__flow__/SpotIllustration/illustrationNames.js +1 -0
- package/__flow__/SpotIllustration/spotIllustrations/under-construction.svg +12 -0
- package/__flow__/Stack/TypeSpaceLiterals.js +13 -0
- package/__flow__/Stack/index.js +1 -1
- package/__flow__/Toast/styles.js +5 -0
- package/__flow__/index.js +1 -0
- package/__flow__/themes/dark/decorative-palettes.js +24 -0
- package/__flow__/themes/dark/theme.js +12 -0
- package/__flow__/themes/extendedThemes/sproutTheme/dark/theme.js +33 -0
- package/__flow__/themes/extendedThemes/sproutTheme/light/theme.js +33 -0
- package/__flow__/themes/light/decorative-palettes.js +24 -0
- package/__flow__/themes/light/theme.js +18 -11
- package/__flow__/types/theme.colors.flow.js +8 -0
- package/__flow__/types/theme.flow.js +2 -0
- package/commonjs/IconViewBoxes.js +1 -0
- package/commonjs/IllustrationViewBoxes.js +1 -0
- package/commonjs/LogoViewBoxes.js +4 -0
- package/commonjs/SpotIllustration/illustrationNames.js +1 -1
- package/commonjs/Stack/TypeSpaceLiterals.js +1 -0
- package/commonjs/Toast/styles.js +3 -1
- package/commonjs/themes/dark/decorative-palettes.js +26 -2
- package/commonjs/themes/dark/theme.js +10 -2
- package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +34 -1
- package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +34 -1
- package/commonjs/themes/light/decorative-palettes.js +26 -2
- package/commonjs/themes/light/theme.js +15 -2
- package/dist/icon.svg +1 -1
- package/dist/iconList.js +1 -1
- package/dist/illustration.svg +1 -1
- package/dist/illustrationList.js +1 -1
- package/dist/logo.svg +1 -1
- package/dist/logoList.js +1 -1
- package/dist/themes/dark/theme.scss +10 -2
- package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +72 -2
- package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +72 -2
- package/dist/themes/light/theme.scss +10 -2
- package/lib/IconViewBoxes.js +1 -0
- package/lib/IllustrationViewBoxes.js +1 -0
- package/lib/LogoViewBoxes.js +4 -0
- package/lib/SpotIllustration/illustrationNames.js +1 -1
- package/lib/Stack/TypeSpaceLiterals.js +0 -0
- package/lib/Toast/styles.js +3 -1
- package/lib/themes/dark/decorative-palettes.js +20 -0
- package/lib/themes/dark/theme.js +11 -3
- package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +32 -0
- package/lib/themes/extendedThemes/sproutTheme/light/theme.js +32 -0
- package/lib/themes/light/decorative-palettes.js +20 -0
- package/lib/themes/light/theme.js +16 -3
- package/lib/types/theme.flow.js +1 -1
- 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";
|
|
@@ -19,6 +23,7 @@ import DEPTH from "@sproutsocial/seeds-depth";
|
|
|
19
23
|
import MOTION from "@sproutsocial/seeds-motion";
|
|
20
24
|
import BORDER from "@sproutsocial/seeds-border";
|
|
21
25
|
import { transparentize } from "polished";
|
|
26
|
+
import type { TypeSpaceLiterals as StackTypeSpaceLiterals } from "../../Stack/TypeSpaceLiterals";
|
|
22
27
|
|
|
23
28
|
export const breakpoints = ["900px", "1200px", "1500px", "1800px"];
|
|
24
29
|
|
|
@@ -49,6 +54,10 @@ const colors = {
|
|
|
49
54
|
orange: orange.background,
|
|
50
55
|
red: red.background,
|
|
51
56
|
neutral: neutral.background,
|
|
57
|
+
magenta: magenta.background,
|
|
58
|
+
pink: pink.background,
|
|
59
|
+
aqua: aqua.background,
|
|
60
|
+
teal: teal.background,
|
|
52
61
|
},
|
|
53
62
|
selected: COLORS.COLOR_NEUTRAL_800,
|
|
54
63
|
positive_sentiment: COLORS.COLOR_BLUE_500,
|
|
@@ -71,6 +80,10 @@ const colors = {
|
|
|
71
80
|
orange: orange.highlight,
|
|
72
81
|
red: red.highlight,
|
|
73
82
|
neutral: neutral.highlight,
|
|
83
|
+
magenta: magenta.highlight,
|
|
84
|
+
pink: pink.highlight,
|
|
85
|
+
aqua: aqua.highlight,
|
|
86
|
+
teal: teal.highlight,
|
|
74
87
|
},
|
|
75
88
|
selected: COLORS.COLOR_NEUTRAL_800,
|
|
76
89
|
},
|
|
@@ -291,17 +304,11 @@ export const fontWeights = {
|
|
|
291
304
|
extrabold: TYPOGRAPHY.TYPOGRAPHY_WEIGHT_EXTRA_BOLD,
|
|
292
305
|
};
|
|
293
306
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
| 350
|
|
300
|
-
| 400
|
|
301
|
-
| 450
|
|
302
|
-
| 500
|
|
303
|
-
| 600
|
|
304
|
-
| string;
|
|
307
|
+
/**
|
|
308
|
+
* @deprecated
|
|
309
|
+
* Import from `Stack/TypeSpaceLiterals` instead.
|
|
310
|
+
*/
|
|
311
|
+
export type TypeSpaceLiterals = StackTypeSpaceLiterals;
|
|
305
312
|
|
|
306
313
|
export const space = {
|
|
307
314
|
"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
|
},
|
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
datePicker,
|
|
18
18
|
navigation,
|
|
19
19
|
analytics,
|
|
20
|
+
listening,
|
|
20
21
|
growth,
|
|
21
22
|
cardControl,
|
|
22
23
|
} from "../themes/extendedThemes/sproutTheme/light/theme";
|
|
@@ -59,6 +60,7 @@ export type TypeSproutTheme = {
|
|
|
59
60
|
navigation: typeof navigation,
|
|
60
61
|
datePicker: typeof datePicker,
|
|
61
62
|
analytics: typeof analytics,
|
|
63
|
+
listening: typeof listening,
|
|
62
64
|
growth: typeof growth,
|
|
63
65
|
cardControl: typeof cardControl,
|
|
64
66
|
|},
|
|
@@ -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";
|
package/commonjs/Toast/styles.js
CHANGED
|
@@ -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.cardControl = exports.analytics = void 0;
|
|
4
|
+
exports.navigation = exports.listening = 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: {
|
|
@@ -78,6 +81,29 @@ var analytics = {
|
|
|
78
81
|
}
|
|
79
82
|
};
|
|
80
83
|
exports.analytics = analytics;
|
|
84
|
+
var listening = {
|
|
85
|
+
topicTypes: {
|
|
86
|
+
customTopic: _theme.default.colors.teal[400],
|
|
87
|
+
brandHealth: _theme.default.colors.red[400],
|
|
88
|
+
industryInsights: _theme.default.colors.green[400],
|
|
89
|
+
competitiveAnalysis: _theme.default.colors.yellow[400],
|
|
90
|
+
campaignAnalysis: _theme.default.colors.magenta[400],
|
|
91
|
+
eventMonitoring: _theme.default.colors.aqua[400],
|
|
92
|
+
featuredTopic: _theme.default.colors.green[400]
|
|
93
|
+
},
|
|
94
|
+
worldMap: {
|
|
95
|
+
empty: _theme.default.colors.neutral[200],
|
|
96
|
+
q0: _theme.default.colors.purple[200],
|
|
97
|
+
q1: _theme.default.colors.purple[300],
|
|
98
|
+
q2: _theme.default.colors.purple[400],
|
|
99
|
+
q3: _theme.default.colors.purple[500],
|
|
100
|
+
q4: _theme.default.colors.purple[600],
|
|
101
|
+
q5: _theme.default.colors.purple[700],
|
|
102
|
+
q6: _theme.default.colors.purple[800],
|
|
103
|
+
q7: _theme.default.colors.purple[900]
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
exports.listening = listening;
|
|
81
107
|
var growth = {
|
|
82
108
|
education: {
|
|
83
109
|
decorative: {
|
|
@@ -88,6 +114,7 @@ var growth = {
|
|
|
88
114
|
opportunity: {
|
|
89
115
|
background: {
|
|
90
116
|
base: _theme.default.colors.purple[700],
|
|
117
|
+
secondary: _theme.default.colors.neutral[700],
|
|
91
118
|
hover: _theme.default.colors.purple[500]
|
|
92
119
|
},
|
|
93
120
|
button: {
|
|
@@ -138,6 +165,11 @@ var growth = {
|
|
|
138
165
|
hover: _theme.default.colors.purple[700]
|
|
139
166
|
}
|
|
140
167
|
}
|
|
168
|
+
},
|
|
169
|
+
user: {
|
|
170
|
+
status: {
|
|
171
|
+
online: _theme.default.colors.green[700]
|
|
172
|
+
}
|
|
141
173
|
}
|
|
142
174
|
};
|
|
143
175
|
exports.growth = growth;
|
|
@@ -158,6 +190,7 @@ var darkTheme = _extends({}, _theme.default, {
|
|
|
158
190
|
navigation: navigation,
|
|
159
191
|
datePicker: datePicker,
|
|
160
192
|
analytics: analytics,
|
|
193
|
+
listening: listening,
|
|
161
194
|
growth: growth,
|
|
162
195
|
cardControl: cardControl
|
|
163
196
|
})
|
|
@@ -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.cardControl = exports.analytics = void 0;
|
|
4
|
+
exports.navigation = exports.listening = 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: {
|
|
@@ -78,6 +81,29 @@ var analytics = {
|
|
|
78
81
|
}
|
|
79
82
|
};
|
|
80
83
|
exports.analytics = analytics;
|
|
84
|
+
var listening = {
|
|
85
|
+
topicTypes: {
|
|
86
|
+
customTopic: _theme.default.colors.blue[400],
|
|
87
|
+
brandHealth: _theme.default.colors.red[400],
|
|
88
|
+
industryInsights: _theme.default.colors.green[400],
|
|
89
|
+
competitiveAnalysis: _theme.default.colors.yellow[400],
|
|
90
|
+
campaignAnalysis: _theme.default.colors.magenta[400],
|
|
91
|
+
eventMonitoring: _theme.default.colors.aqua[400],
|
|
92
|
+
featuredTopic: _theme.default.colors.green[400]
|
|
93
|
+
},
|
|
94
|
+
worldMap: {
|
|
95
|
+
empty: _theme.default.colors.neutral[200],
|
|
96
|
+
q0: _theme.default.colors.purple[200],
|
|
97
|
+
q1: _theme.default.colors.purple[300],
|
|
98
|
+
q2: _theme.default.colors.purple[400],
|
|
99
|
+
q3: _theme.default.colors.purple[500],
|
|
100
|
+
q4: _theme.default.colors.purple[600],
|
|
101
|
+
q5: _theme.default.colors.purple[700],
|
|
102
|
+
q6: _theme.default.colors.purple[800],
|
|
103
|
+
q7: _theme.default.colors.purple[900]
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
exports.listening = listening;
|
|
81
107
|
var growth = {
|
|
82
108
|
education: {
|
|
83
109
|
decorative: {
|
|
@@ -88,6 +114,7 @@ var growth = {
|
|
|
88
114
|
opportunity: {
|
|
89
115
|
background: {
|
|
90
116
|
base: _theme.default.colors.purple[700],
|
|
117
|
+
secondary: _theme.default.colors.neutral[900],
|
|
91
118
|
hover: _theme.default.colors.purple[300]
|
|
92
119
|
},
|
|
93
120
|
button: {
|
|
@@ -138,6 +165,11 @@ var growth = {
|
|
|
138
165
|
hover: _theme.default.colors.purple[700]
|
|
139
166
|
}
|
|
140
167
|
}
|
|
168
|
+
},
|
|
169
|
+
user: {
|
|
170
|
+
status: {
|
|
171
|
+
online: _theme.default.colors.green[700]
|
|
172
|
+
}
|
|
141
173
|
}
|
|
142
174
|
};
|
|
143
175
|
exports.growth = growth;
|
|
@@ -158,6 +190,7 @@ var lightTheme = _extends({}, _theme.default, {
|
|
|
158
190
|
navigation: navigation,
|
|
159
191
|
datePicker: datePicker,
|
|
160
192
|
analytics: analytics,
|
|
193
|
+
listening: listening,
|
|
161
194
|
growth: growth,
|
|
162
195
|
cardControl: cardControl
|
|
163
196
|
})
|
|
@@ -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,
|