@sproutsocial/racine 12.7.0 → 12.8.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 12.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 429a4b3: Add secondary navigation widget background color to navigation theme
8
+
3
9
  ## 12.7.0
4
10
 
5
11
  ### Minor Changes
@@ -182,90 +182,90 @@ const getIcon = (type, color) => {
182
182
 
183
183
  // eslint-disable-next-line prettier/prettier
184
184
  export const CheckboxContainer: StyledComponent<any, TypeTheme, *> = styled.span(
185
- (props) => css`
186
- display: inline-flex;
187
- align-items: center;
188
- box-sizing: border-box;
189
- position: relative;
190
- transition: all ${props.theme.duration.fast} ${props.theme.easing.ease_in};
191
-
192
- @supports (-webkit-appearance: none) {
193
- &:before {
194
- /* stylelint-disable */
195
- content: url("data:image/svg+xml;utf8,${getIcon(
196
- props.indeterminate ? "indeterminate" : "check",
197
-
198
- props.checked
199
- ? props.theme.colors.form.background.base
200
- : props.theme.colors.form.border.base
201
- )}");
202
- opacity: ${props.checked ? 1 : 0};
203
- position: absolute;
204
- width: ${props.theme.space[400]};
205
- height: ${props.theme.space[400]};
206
- text-align: center;
207
- transform: translateY(1px);
208
- line-height: 1;
209
- margin: auto;
210
- pointer-events: none;
211
- transition: ${props.theme.duration.fast}
212
- ${props.theme.easing.ease_inout};
213
- }
214
-
215
- &:hover:before {
216
- opacity: ${props.disabled && !props.checked ? 0 : 1};
217
- }
218
-
219
- ${props.disabled &&
220
- css`
221
- opacity: 0.4;
222
- `}
223
-
224
- input[type='checkbox'] {
225
- box-sizing: border-box;
226
- appearance: none;
227
- margin: 0;
228
- padding: 0;
229
- width: ${props.theme.space[400]};
230
- height: ${props.theme.space[400]};
231
- border: 1px solid ${props.theme.colors.form.border.base};
232
- border-radius: 4px;
233
- background-color: ${props.theme.colors.form.background.base};
234
- transition: all ${props.theme.duration.fast}
235
- ${props.theme.easing.ease_in};
236
- cursor: ${props.disabled ? "not-allowed" : "pointer"};
237
- flex-shrink: 0;
238
-
239
- &:not(:checked) {
240
- ${!props.indeterminate &&
241
- css`
242
- border-color: ${props.theme.colors
243
- .neutral[300]} !important; /* We don't want the focus ring to remove the border */
244
- background-color: ${props.theme.colors.form.background.base};
245
- `}
185
+ (props) => css`
186
+ display: inline-flex;
187
+ align-items: center;
188
+ box-sizing: border-box;
189
+ position: relative;
190
+ transition: all ${props.theme.duration.fast} ${props.theme.easing.ease_in};
191
+
192
+ @supports (-webkit-appearance: none) {
193
+ &:before {
194
+ /* stylelint-disable */
195
+ content: url("data:image/svg+xml;utf8,${getIcon(
196
+ props.indeterminate ? "indeterminate" : "check",
197
+
198
+ props.checked
199
+ ? props.theme.colors.form.background.base
200
+ : props.theme.colors.form.border.base
201
+ )}");
202
+ opacity: ${props.checked ? 1 : 0};
203
+ position: absolute;
204
+ width: ${props.theme.space[400]};
205
+ height: ${props.theme.space[400]};
206
+ text-align: center;
207
+ transform: translateY(1px);
208
+ line-height: 1;
209
+ margin: auto;
210
+ pointer-events: none;
211
+ transition: ${props.theme.duration.fast}
212
+ ${props.theme.easing.ease_inout};
246
213
  }
247
214
 
248
- &:checked {
249
- border-color: ${props.theme.colors.form.border.selected};
250
- background-color: ${props.theme.colors.form.background.selected};
215
+ &:hover:before {
216
+ opacity: ${props.disabled && !props.checked ? 0 : 1};
251
217
  }
252
218
 
253
- ${props.indeterminate &&
254
- props.checked &&
219
+ ${props.disabled &&
255
220
  css`
256
- border-color: ${props.theme.colors.form.border.selected} !important;
257
- background-color: ${props.theme.colors.form.background
258
- .selected} !important;
221
+ opacity: 0.4;
259
222
  `}
260
223
 
261
- &:focus {
262
- ${focusRing}
224
+ input[type='checkbox'] {
225
+ box-sizing: border-box;
226
+ appearance: none;
227
+ margin: 0;
228
+ padding: 0;
229
+ width: ${props.theme.space[400]};
230
+ height: ${props.theme.space[400]};
231
+ border: 1px solid ${props.theme.colors.form.border.base};
232
+ border-radius: 4px;
233
+ background-color: ${props.theme.colors.form.background.base};
234
+ transition: all ${props.theme.duration.fast}
235
+ ${props.theme.easing.ease_in};
236
+ cursor: ${props.disabled ? "not-allowed" : "pointer"};
237
+ flex-shrink: 0;
238
+
239
+ &:not(:checked) {
240
+ ${!props.indeterminate &&
241
+ css`
242
+ border-color: ${props.theme.colors
243
+ .neutral[300]} !important; /* We don't want the focus ring to remove the border */
244
+ background-color: ${props.theme.colors.form.background.base};
245
+ `}
246
+ }
247
+
248
+ &:checked {
249
+ border-color: ${props.theme.colors.form.border.selected};
250
+ background-color: ${props.theme.colors.form.background.selected};
251
+ }
252
+
253
+ ${props.indeterminate &&
254
+ props.checked &&
255
+ css`
256
+ border-color: ${props.theme.colors.form.border.selected} !important;
257
+ background-color: ${props.theme.colors.form.background
258
+ .selected} !important;
259
+ `}
260
+
261
+ &:focus {
262
+ ${focusRing}
263
+ }
263
264
  }
264
265
  }
265
- }
266
266
 
267
- ${COMMON}
268
- `
269
- );
267
+ ${COMMON}
268
+ `
269
+ );
270
270
 
271
271
  export default Container;
@@ -73,9 +73,8 @@ const Trigger = ({ children, ...rest }) => {
73
73
  };
74
74
 
75
75
  const Panel = ({ children, ...rest }) => {
76
- const { isOpen, id, offset, collapsedHeight, openHeight } = useContext(
77
- CollapsibleContext
78
- );
76
+ const { isOpen, id, offset, collapsedHeight, openHeight } =
77
+ useContext(CollapsibleContext);
79
78
  const ref = useRef();
80
79
  const measurement = useMeasure(ref);
81
80
  const [isHidden, setIsHidden] = useState(undefined);
@@ -80,16 +80,8 @@ export default class Image extends React.Component<TypeProps, TypeState> {
80
80
  };
81
81
 
82
82
  render() {
83
- const {
84
- alt,
85
- title,
86
- onClick,
87
- onError,
88
- onLoad,
89
- src,
90
- qa,
91
- ...rest
92
- } = this.props;
83
+ const { alt, title, onClick, onError, onLoad, src, qa, ...rest } =
84
+ this.props;
93
85
 
94
86
  return (
95
87
  <ImageContainer
@@ -17,9 +17,8 @@ type TypeSegmentedControlContext = {
17
17
  onChange: (e: SyntheticInputEvent<HTMLInputElement>) => void,
18
18
  };
19
19
 
20
- const SegmentedControlContext = React.createContext<?TypeSegmentedControlContext>(
21
- null
22
- );
20
+ const SegmentedControlContext =
21
+ React.createContext<?TypeSegmentedControlContext>(null);
23
22
 
24
23
  type TypeSegmentedControlItemProps = {
25
24
  /** The value of this item. Should be unique among sibling items. */
@@ -22,15 +22,8 @@ export type TypeTableCell = {
22
22
  */
23
23
  export default class TableCell extends React.Component<TypeTableCell> {
24
24
  render() {
25
- const {
26
- id,
27
- content,
28
- colSpan,
29
- width,
30
- align,
31
- children,
32
- ...rest
33
- } = this.props;
25
+ const { id, content, colSpan, width, align, children, ...rest } =
26
+ this.props;
34
27
 
35
28
  return (
36
29
  <Container
@@ -32,15 +32,8 @@ export default class ToggleHint extends React.Component<TypeProps> {
32
32
  };
33
33
 
34
34
  render() {
35
- const {
36
- icon,
37
- isOpen,
38
- openString,
39
- closeString,
40
- qa,
41
- className,
42
- ...rest
43
- } = this.props;
35
+ const { icon, isOpen, openString, closeString, qa, className, ...rest } =
36
+ this.props;
44
37
 
45
38
  return (
46
39
  <Container
@@ -14,7 +14,8 @@ import type {
14
14
 
15
15
  // https://styled-system.com/table#color
16
16
 
17
- type TypeBackgroundColorSystemProp = TypeResponsiveBaseSystemProp<BackgroundColorProperty>;
17
+ type TypeBackgroundColorSystemProp =
18
+ TypeResponsiveBaseSystemProp<BackgroundColorProperty>;
18
19
  export type TypeColorSystemProps = $ReadOnly<{|
19
20
  backgroundColor?: TypeBackgroundColorSystemProp,
20
21
  bg?: TypeBackgroundColorSystemProp,
@@ -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,365 @@
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
+ "bot": "0 0 16 16",
43
+ "browser": "0 0 16 16",
44
+ "business": "0 0 16 16",
45
+ "calendar-outline": "0 0 14 16",
46
+ "calendar": "0 0 14 16",
47
+ "camera-outline": "0 0 18 16",
48
+ "camera-story": "0 0 18 16",
49
+ "camera": "0 0 18 16",
50
+ "campaign": "0 0 16 14",
51
+ "canva": "0 0 16 18",
52
+ "carousel": "0 0 16 18",
53
+ "cart-plus-outline": "0 0 17 15",
54
+ "cart-plus": "0 0 17 15",
55
+ "check": "0 0 16 16",
56
+ "chevron-down-filled": "0 0 16 21",
57
+ "chevron-down": "0 0 16 18",
58
+ "chevron-left": "0 0 10 16",
59
+ "chevron-right": "0 0 10 17",
60
+ "chevron-up-down-filled": "0 0 12 20",
61
+ "chevron-up-filled": "0 0 16 21",
62
+ "chevron-up": "0 0 16 18",
63
+ "circle-check-outline": "0 0 16 16",
64
+ "circle-check": "0 0 16 16",
65
+ "circle": "0 0 16 16",
66
+ "circle+": "0 0 16 16",
67
+ "circles": "0 0 16 16",
68
+ "circlex": "0 0 16 16",
69
+ "click-to-view": "0 0 12 16",
70
+ "clicks": "0 0 10 16",
71
+ "clipboard-outline": "0 0 12 16",
72
+ "clipboard": "0 0 12 16",
73
+ "clock": "0 0 16 16",
74
+ "closed-captioning": "0 0 16 16",
75
+ "cloud": "0 0 16 13",
76
+ "code": "0 0 18 16",
77
+ "columns": "0 0 16 16",
78
+ "comment-alt-outline": "0 0 16 15",
79
+ "comment-alt": "0 0 16 15",
80
+ "comment-lines-alt-outline": "0 0 16 16",
81
+ "comment": "0 0 16 13",
82
+ "compact-density": "0 0 16 16",
83
+ "compact-indicator": "0 0 16 16",
84
+ "comparison": "0 0 16 14",
85
+ "competitor": "0 0 14 16",
86
+ "compose": "0 0 16 16",
87
+ "content-suggestions": "0 0 16 16",
88
+ "credit-card": "0 0 16 14",
89
+ "crop": "0 0 16 16",
90
+ "crown": "0 0 16 16",
91
+ "dashboard": "0 0 16 14",
92
+ "deconstructed-negative-sentiment": "0 0 18 18",
93
+ "deconstructed-neutral-sentiment": "0 0 18 18",
94
+ "deconstructed-positive-sentiment": "0 0 18 18",
95
+ "discovery": "0 0 16 16",
96
+ "dislike-outline": "0 0 15 16",
97
+ "dislike": "0 0 16 16",
98
+ "dm-link-outline": "0 0 16 16",
99
+ "dm-link": "0 0 16 16",
100
+ "dotdotdot": "0 0 16 16",
101
+ "download": "0 0 16 16",
102
+ "drafts-outline": "0 0 12 16",
103
+ "drafts": "0 0 12 16",
104
+ "dropbox": "0 0 18 16",
105
+ "duplicate-outline": "0 0 14 16",
106
+ "duplicate": "0 0 14 16",
107
+ "emoji-outline": "0 0 16 16",
108
+ "emoji": "0 0 16 16",
109
+ "empty-image": "0 0 16 18",
110
+ "engagement-per-post": "0 0 16 16",
111
+ "engagements": "0 0 16 15",
112
+ "error": "0 0 16 16",
113
+ "exchange-alt": "0 0 16 16",
114
+ "expanded-indicator": "0 0 16 16",
115
+ "export": "0 0 14 17",
116
+ "extended-circles": "0 0 16 16",
117
+ "external-link-alt": "0 0 16 16",
118
+ "external-link": "0 0 16 16",
119
+ "extreme-negative-sentiment": "0 0 16 16",
120
+ "eye-outline": "0 0 18 16",
121
+ "eye-slash-outline": "0 0 20 16",
122
+ "eye-slash": "0 0 20 16",
123
+ "eye": "0 0 18 16",
124
+ "facebook-audience-network": "0 0 16 16",
125
+ "facebook-branded-content-outline": "0 0 18 15",
126
+ "facebook-branded-content": "0 0 18 15",
127
+ "facebook-groups": "0 0 16 16",
128
+ "facebook": "0 0 16 16",
129
+ "fb-reactions-angry": "0 0 16 16",
130
+ "fb-reactions-haha": "0 0 16 16",
131
+ "fb-reactions-like": "0 0 16 16",
132
+ "fb-reactions-love": "0 0 16 16",
133
+ "fb-reactions-sad": "0 0 16 16",
134
+ "fb-reactions-wow": "0 0 16 16",
135
+ "feedly": "0 0 16 15",
136
+ "feeds": "0 0 16 15",
137
+ "female": "0 0 11 18",
138
+ "file-chart-line": "0 0 12 16",
139
+ "file-edit": "0 0 12 16",
140
+ "file-times-solid": "0 0 12 16",
141
+ "filter": "0 0 16 16",
142
+ "flag-outline": "0 0 16 16",
143
+ "flag": "0 0 16 16",
144
+ "flat-negative-sentiment-outline": "0 0 18 18",
145
+ "flat-negative-sentiment": "0 0 18 18",
146
+ "flat-neutral-sentiment-outline": "0 0 18 18",
147
+ "flat-neutral-sentiment": "0 0 18 18",
148
+ "flat-positive-sentiment-outline": "0 0 18 18",
149
+ "flat-positive-sentiment": "0 0 18 18",
150
+ "folder-open": "0 0 16 15",
151
+ "folder": "0 0 16 16",
152
+ "follow-outline": "0 0 20 16",
153
+ "follow": "0 0 20 16",
154
+ "follower-increase": "0 0 19 16",
155
+ "following": "0 0 20 16",
156
+ "font": "0 0 18 16",
157
+ "full-access": "0 0 16 16",
158
+ "gear": "0 0 16 16",
159
+ "gears": "0 0 16 16",
160
+ "glassdoor": "0 0 16 16",
161
+ "glasses": "0 0 18 14",
162
+ "globe": "0 0 16 16",
163
+ "google-analytics-color": "0 0 14 18",
164
+ "google-business-messages": "0 0 16 16",
165
+ "google-drive": "0 0 16 14",
166
+ "google-my-business": "0 0 16 14",
167
+ "grip": "0 0 8 18",
168
+ "h1": "0 0 16 16",
169
+ "h2": "0 0 16 16",
170
+ "hamburger": "0 0 16 18",
171
+ "hashtag": "0 0 16 16",
172
+ "headset": "0 0 16 16",
173
+ "heart-outline": "0 0 16 16",
174
+ "heart": "0 0 16 16",
175
+ "heartbeat": "0 0 18 16",
176
+ "help-alt": "0 0 12 16",
177
+ "help": "0 0 16 16",
178
+ "hiking": "0 0 16 16",
179
+ "history": "0 0 16 16",
180
+ "home": "0 0 16 15",
181
+ "hourglass": "0 0 12 16",
182
+ "hubspot": "0 0 16 16",
183
+ "image-caption": "0 0 16 14",
184
+ "image": "0 0 16 16",
185
+ "images": "0 0 16 15",
186
+ "impressions-per-post": "0 0 16 16",
187
+ "impressions": "0 0 18 16",
188
+ "inactive-listener": "0 0 16 12",
189
+ "inbox-action": "0 0 16 16",
190
+ "inbox-views": "0 0 16 13",
191
+ "inbox": "0 0 16 14",
192
+ "indicator": "0 0 16 16",
193
+ "industry": "0 0 14 16",
194
+ "info": "0 0 16 16",
195
+ "instagram": "0 0 16 16",
196
+ "internal-activity-outline": "0 0 16 16",
197
+ "internal-activity": "0 0 16 16",
198
+ "italic": "0 0 16 16",
199
+ "key": "0 0 16 16",
200
+ "keyboard": "0 0 18 16",
201
+ "laptop-phone": "0 0 16 16",
202
+ "large-density": "0 0 16 16",
203
+ "lift": "0 0 23 16",
204
+ "like-outline": "0 0 15 16",
205
+ "like": "0 0 16 16",
206
+ "link": "0 0 16 16",
207
+ "linkedin-audience-network": "0 0 16 16",
208
+ "linkedin": "0 0 16 16",
209
+ "list-ol": "0 0 16 16",
210
+ "listening": "0 0 14 16",
211
+ "lists": "0 0 16 16",
212
+ "location-outline": "0 0 12 16",
213
+ "location": "0 0 12 16",
214
+ "lock": "0 0 14 16",
215
+ "magic-wand": "0 0 17 16",
216
+ "male": "0 0 16 20",
217
+ "marketo": "0 0 16 18",
218
+ "mention": "0 0 16 16",
219
+ "message-preview-outline": "0 0 18 16",
220
+ "message-preview": "0 0 18 16",
221
+ "message": "0 0 16 16",
222
+ "messages-outline": "0 0 16 16",
223
+ "messages": "0 0 16 16",
224
+ "messenger": "0 0 16 16",
225
+ "metric-table": "0 0 16 16",
226
+ "microsoft-dynamics": "0 0 16 16",
227
+ "minus": "0 0 16 16",
228
+ "mobile": "0 0 10 16",
229
+ "monitor": "0 0 12 16",
230
+ "moon": "0 0 15 16",
231
+ "negative-sentiment": "0 0 16 16",
232
+ "neutral-positive-sentiment": "0 0 16 16",
233
+ "neutral-sentiment": "0 0 16 16",
234
+ "new-trend": "0 0 12 16",
235
+ "newspaper": "0 0 16 16",
236
+ "no-access": "0 0 16 16",
237
+ "notepad": "0 0 12 16",
238
+ "notifications-publishing-outline": "0 0 16 16",
239
+ "notifications-publishing": "0 0 16 16",
240
+ "notifications": "0 0 14 16",
241
+ "offline": "0 0 18 15",
242
+ "online": "0 0 18 15",
243
+ "paid-promotion-outline": "0 0 16 16",
244
+ "paid-promotion": "0 0 16 16",
245
+ "paid": "0 0 14 16",
246
+ "paint": "0 0 18 16",
247
+ "palette": "0 0 16 16",
248
+ "paperclip": "0 0 14 16",
249
+ "pause": "0 0 16 18",
250
+ "pencil-outline": "0 0 16 16",
251
+ "pencil": "0 0 16 16",
252
+ "person": "0 0 14 16",
253
+ "phone": "0 0 16 16",
254
+ "pinterest-boards-outline": "0 0 14 16",
255
+ "pinterest-boards": "0 0 14 16",
256
+ "pinterest": "0 0 16 16",
257
+ "play-circle": "0 0 16 16",
258
+ "play": "0 0 14 16",
259
+ "plug": "0 0 12 16",
260
+ "plus": "0 0 16 18",
261
+ "positive-sentiment": "0 0 16 16",
262
+ "power-up-outline": "0 0 12 16",
263
+ "power-up": "0 0 10 16",
264
+ "profile-connect": "0 0 16 16",
265
+ "profile-disconnect": "0 0 16 16",
266
+ "publishing-outline": "0 0 16 16",
267
+ "publishing": "0 0 16 16",
268
+ "puzzle-piece": "0 0 18 16",
269
+ "qr-code": "0 0 16 16",
270
+ "queue": "0 0 16 16",
271
+ "recommendation": "0 0 16 16",
272
+ "reddit-alien": "0 0 16 16",
273
+ "reddit": "0 0 16 16",
274
+ "referrals": "0 0 16 16",
275
+ "refresh": "0 0 16 16",
276
+ "rejected": "0 0 16 16",
277
+ "reply-outline": "0 0 16 16",
278
+ "reply": "0 0 16 16",
279
+ "reporting-period": "0 0 14 16",
280
+ "reporting": "0 0 16 16",
281
+ "reports-home": "0 0 16 16",
282
+ "reports": "0 0 16 15",
283
+ "retweet": "0 0 18 16",
284
+ "rss": "0 0 16 16",
285
+ "sales": "0 0 9 16",
286
+ "salesforce": "0 0 20 16",
287
+ "save-assets": "0 0 16 16",
288
+ "saved-messages": "0 0 16 16",
289
+ "saved-reply-outline": "0 0 16 12",
290
+ "saved-reply": "0 0 16 12",
291
+ "search": "0 0 16 16",
292
+ "sent-message-outline": "0 0 16 14",
293
+ "sent-message": "0 0 16 14",
294
+ "share": "0 0 16 14",
295
+ "shopify": "0 0 16 18",
296
+ "show-navigation": "0 0 18 14",
297
+ "slack": "0 0 16 16",
298
+ "small-density": "0 0 16 16",
299
+ "smiley": "0 0 16 16",
300
+ "some-access": "0 0 16 16",
301
+ "sparkles": "0 0 16 16",
302
+ "spike-alert": "0 0 16 16",
303
+ "star-half-alt-solid": "0 0 18 16",
304
+ "star-of-life": "0 0 16 16",
305
+ "star-outline": "0 0 18 16",
306
+ "star": "0 0 18 16",
307
+ "sticky-note-outline": "0 0 16 16",
308
+ "sticky-note": "0 0 16 16",
309
+ "stories": "0 0 16 17",
310
+ "story": "0 0 16 16",
311
+ "suggestions": "0 0 11 16",
312
+ "sun": "0 0 16 16",
313
+ "tag-outline": "0 0 16 16",
314
+ "tag": "0 0 16 16",
315
+ "targeting-outline": "0 0 16 16",
316
+ "targeting": "0 0 16 16",
317
+ "tasks-outline": "0 0 12 16",
318
+ "tasks": "0 0 12 16",
319
+ "team-conversation-outline": "0 0 16 18",
320
+ "team-conversation": "0 0 16 18",
321
+ "team": "0 0 18 16",
322
+ "text-asset": "0 0 16 16",
323
+ "text": "0 0 8 16",
324
+ "tiktok": "0 0 16 18",
325
+ "times": "0 0 16 22",
326
+ "trash-can-outline": "0 0 14 16",
327
+ "trash-can": "0 0 14 16",
328
+ "trend-down": "0 0 18 18",
329
+ "trend-neutral": "0 0 20 18",
330
+ "trend-up": "0 0 18 18",
331
+ "trends": "0 0 16 17",
332
+ "triangle-black": "0 0 16 16",
333
+ "triangle": "0 0 16 16",
334
+ "tripadvisor-circle-outline": "0 0 16 16",
335
+ "tripadvisor-circle": "0 0 16 16",
336
+ "tripadvisor": "0 0 16 16",
337
+ "trophy-outline": "0 0 18 16",
338
+ "tumblr": "0 0 16 16",
339
+ "twitter-audience-network": "0 0 17 16",
340
+ "twitter": "0 0 17 16",
341
+ "unfollow-outline": "0 0 20 16",
342
+ "unfollow": "0 0 20 16",
343
+ "unlink": "0 0 16 16",
344
+ "unlock": "0 0 14 16",
345
+ "upload": "0 0 16 17",
346
+ "user-circle": "0 0 16 16",
347
+ "users": "0 0 18 16",
348
+ "verified": "0 0 16 16",
349
+ "video-camera-story": "0 0 18 15",
350
+ "video-camera": "0 0 18 16",
351
+ "vip": "0 0 16 16",
352
+ "weight": "0 0 16 16",
353
+ "whatsapp": "0 0 16 16",
354
+ "window-maximize": "0 0 16 16",
355
+ "window-minimize": "0 0 16 16",
356
+ "window-regular": "0 0 16 16",
357
+ "window-restore": "0 0 16 16",
358
+ "woocommerce": "0 0 18 16",
359
+ "x": "0 0 16 18",
360
+ "yelp-full-star": "0 0 16 16",
361
+ "yelp-half-star": "0 0 16 16",
362
+ "yelp": "0 0 14 16",
363
+ "youtube": "0 0 16 15",
364
+ "zendesk": "0 0 16 16"
365
+ };
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sproutsocial/racine",
3
- "version": "12.7.0",
3
+ "version": "12.8.0",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "__flow__",