@sproutsocial/racine 8.3.0 → 8.5.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.
@@ -86,6 +86,8 @@ module.exports = {
86
86
  "crop": "0 0 16 16",
87
87
  "crown": "0 0 16 16",
88
88
  "dashboard": "0 0 16 14",
89
+ "deconstructed-negative-sentiment": "0 0 18 18",
90
+ "deconstructed-neutral-sentiment": "0 0 18 18",
89
91
  "discovery": "0 0 16 16",
90
92
  "dislike-outline": "0 0 15 16",
91
93
  "dislike": "0 0 16 16",
@@ -135,6 +137,10 @@ module.exports = {
135
137
  "filter": "0 0 16 16",
136
138
  "flag-outline": "0 0 16 16",
137
139
  "flag": "0 0 16 16",
140
+ "flat-negative-sentiment-outline": "0 0 18 18",
141
+ "flat-negative-sentiment": "0 0 18 18",
142
+ "flat-neutral-sentiment-outline": "0 0 18 18",
143
+ "flat-neutral-sentiment": "0 0 18 18",
138
144
  "folder-open": "0 0 16 15",
139
145
  "folder": "0 0 16 16",
140
146
  "follow-outline": "0 0 20 16",
@@ -305,6 +311,7 @@ module.exports = {
305
311
  "team": "0 0 18 16",
306
312
  "text-asset": "0 0 16 16",
307
313
  "text": "0 0 8 16",
314
+ "tiktok": "0 0 16 18",
308
315
  "times": "0 0 16 22",
309
316
  "trash-can-outline": "0 0 14 16",
310
317
  "trash-can": "0 0 14 16",
@@ -338,7 +345,7 @@ module.exports = {
338
345
  "window-minimize": "0 0 16 16",
339
346
  "window-regular": "0 0 16 16",
340
347
  "window-restore": "0 0 16 16",
341
- "woocommerce": "0 0 16 16",
348
+ "woocommerce": "0 0 18 16",
342
349
  "x": "0 0 16 18",
343
350
  "yelp-full-star": "0 0 16 16",
344
351
  "yelp-half-star": "0 0 16 16",
package/lib/Menu/index.js CHANGED
@@ -370,7 +370,9 @@ export var MenuButton = function MenuButton(_ref5) {
370
370
  closeOnItemClick = _ref5$closeOnItemClic === void 0 ? true : _ref5$closeOnItemClic,
371
371
  _ref5$id = _ref5.id,
372
372
  id = _ref5$id === void 0 ? uniqueId("MenuButton-") : _ref5$id,
373
- props = _objectWithoutPropertiesLoose(_ref5, ["content", "popoutProps", "children", "onClick", "closeOnItemClick", "id"]);
373
+ _ref5$placement = _ref5.placement,
374
+ placement = _ref5$placement === void 0 ? "bottom" : _ref5$placement,
375
+ props = _objectWithoutPropertiesLoose(_ref5, ["content", "popoutProps", "children", "onClick", "closeOnItemClick", "id", "placement"]);
374
376
 
375
377
  var _useState2 = useState(false),
376
378
  isOpen = _useState2[0],
@@ -390,7 +392,7 @@ export var MenuButton = function MenuButton(_ref5) {
390
392
  isOpen: isOpen,
391
393
  setIsOpen: setIsOpen,
392
394
  content: /*#__PURE__*/React.createElement(CustomPopoutContent, null, content),
393
- placement: "bottom"
395
+ placement: placement
394
396
  }, popoutProps, {
395
397
  // $FlowIssue
396
398
  width: props.width