@sproutsocial/racine 20.6.0 → 20.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,22 @@
1
1
  # Change Log
2
2
 
3
+ ## 20.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ba43d9369: Updates the seeds-color dependency which includes the new blue
8
+ - d77544cb6: Update sproutsocial PartnerLogo to latest look
9
+
10
+ ## 20.7.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 0c09b39cc: Adding Threads logo in light and dark versions
15
+
16
+ ### Patch Changes
17
+
18
+ - 7989c088f: Fix `Menu` keyboard functionality to not select disabled menu item
19
+
3
20
  ## 20.6.0
4
21
 
5
22
  ### Minor Changes
@@ -1,2 +1,2 @@
1
1
  // @flow
2
- export type EnumLogoNames = "adobe-experience-manager" | "android" | "apple-app-store" | "apple" | "bigcommerce" | "bitly" | "bynder" | "canva" | "dropbox" | "facebook-audience-network" | "facebook" | "facebook-groups" | "facebook-shops" | "feedly" | "github" | "glassdoor" | "google-analytics" | "google-business-messages" | "google-drive" | "google-my-business" | "google-play-store" | "hubspot" | "instagram" | "linkedin-audience-network" | "linkedin" | "marketo" | "messenger" | "microsoft-dynamics" | "pinterest" | "reddit" | "salesforce-cloud" | "salesforce" | "shopify" | "slack" | "sproutsocial" | "tableau" | "tiktok" | "tripadvisor" | "tumblr" | "twitter-audience-network" | "twitter" | "whatsapp" | "woocommerce" | "x-twitter" | "yelp" | "youtube" | "zendesk";
2
+ export type EnumLogoNames = "adobe-experience-manager" | "android" | "apple-app-store" | "apple" | "bigcommerce" | "bitly" | "bynder" | "canva" | "dropbox" | "facebook-audience-network" | "facebook" | "facebook-groups" | "facebook-shops" | "feedly" | "github" | "glassdoor" | "google-analytics" | "google-business-messages" | "google-drive" | "google-my-business" | "google-play-store" | "hubspot" | "instagram" | "linkedin-audience-network" | "linkedin" | "marketo" | "messenger" | "microsoft-dynamics" | "pinterest" | "reddit" | "salesforce-cloud" | "salesforce" | "shopify" | "slack" | "sproutsocial" | "tableau" | "threads" | "tiktok" | "tripadvisor" | "tumblr" | "twitter-audience-network" | "twitter" | "whatsapp" | "woocommerce" | "x-twitter" | "yelp" | "youtube" | "zendesk";
@@ -73,16 +73,18 @@ module.exports = {
73
73
  "shopify": "0 0 140 159",
74
74
  "slack-dark": "0 0 140 140",
75
75
  "slack": "0 0 140 140",
76
- "sproutsocial-dark": "0 0 140 174",
77
- "sproutsocial-lockup-dark": "0 0 291 58",
78
- "sproutsocial-lockup": "0 0 291 58",
76
+ "sproutsocial-dark": "0 0 16 18",
77
+ "sproutsocial-lockup-dark": "0 0 291 59",
78
+ "sproutsocial-lockup": "0 0 291 59",
79
79
  "sproutsocial-wordmark-dark": "0 0 320 52",
80
80
  "sproutsocial-wordmark": "0 0 320 52",
81
- "sproutsocial": "0 0 140 174",
81
+ "sproutsocial": "0 0 16 18",
82
82
  "tableau-dark": "0 0 18 18",
83
83
  "tableau-lockup-dark": "0 0 291 56",
84
84
  "tableau-lockup": "0 0 291 56",
85
85
  "tableau": "0 0 18 18",
86
+ "threads-dark": "0 0 24 24",
87
+ "threads": "0 0 24 24",
86
88
  "tiktok-dark": "0 0 140 159",
87
89
  "tiktok": "0 0 140 159",
88
90
  "tripadvisor-dark": "0 0 140 140",
@@ -75,16 +75,18 @@ module.exports = {
75
75
  "shopify": "0 0 140 159",
76
76
  "slack-dark": "0 0 140 140",
77
77
  "slack": "0 0 140 140",
78
- "sproutsocial-dark": "0 0 140 174",
79
- "sproutsocial-lockup-dark": "0 0 291 58",
80
- "sproutsocial-lockup": "0 0 291 58",
78
+ "sproutsocial-dark": "0 0 16 18",
79
+ "sproutsocial-lockup-dark": "0 0 291 59",
80
+ "sproutsocial-lockup": "0 0 291 59",
81
81
  "sproutsocial-wordmark-dark": "0 0 320 52",
82
82
  "sproutsocial-wordmark": "0 0 320 52",
83
- "sproutsocial": "0 0 140 174",
83
+ "sproutsocial": "0 0 16 18",
84
84
  "tableau-dark": "0 0 18 18",
85
85
  "tableau-lockup-dark": "0 0 291 56",
86
86
  "tableau-lockup": "0 0 291 56",
87
87
  "tableau": "0 0 18 18",
88
+ "threads-dark": "0 0 24 24",
89
+ "threads": "0 0 24 24",
88
90
  "tiktok-dark": "0 0 140 159",
89
91
  "tiktok": "0 0 140 159",
90
92
  "tripadvisor-dark": "0 0 140 140",
@@ -142,7 +142,7 @@ function useMenuKeyDown() {
142
142
  // eslint-disable-next-line no-fallthrough
143
143
  case 'Enter':
144
144
  var selected = items[selectionIndex];
145
- if (selected) {
145
+ if (selected && !selected.disabled) {
146
146
  event.preventDefault();
147
147
  var func = selectCallbacks.current[selected.index];
148
148
  (func === null || func === void 0 ? void 0 : func.call) && func();
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
- var _default = ["adobe-experience-manager", "android", "apple-app-store", "apple", "bigcommerce", "bitly", "bynder", "canva", "dropbox", "facebook-audience-network", "facebook", "facebook-groups", "facebook-shops", "feedly", "github", "glassdoor", "google-analytics", "google-business-messages", "google-drive", "google-my-business", "google-play-store", "hubspot", "instagram", "linkedin-audience-network", "linkedin", "marketo", "messenger", "microsoft-dynamics", "pinterest", "reddit", "salesforce-cloud", "salesforce", "shopify", "slack", "sproutsocial", "tableau", "tiktok", "tripadvisor", "tumblr", "twitter-audience-network", "twitter", "whatsapp", "woocommerce", "x-twitter", "yelp", "youtube", "zendesk"];
7
+ var _default = ["adobe-experience-manager", "android", "apple-app-store", "apple", "bigcommerce", "bitly", "bynder", "canva", "dropbox", "facebook-audience-network", "facebook", "facebook-groups", "facebook-shops", "feedly", "github", "glassdoor", "google-analytics", "google-business-messages", "google-drive", "google-my-business", "google-play-store", "hubspot", "instagram", "linkedin-audience-network", "linkedin", "marketo", "messenger", "microsoft-dynamics", "pinterest", "reddit", "salesforce-cloud", "salesforce", "shopify", "slack", "sproutsocial", "tableau", "threads", "tiktok", "tripadvisor", "tumblr", "twitter-audience-network", "twitter", "whatsapp", "woocommerce", "x-twitter", "yelp", "youtube", "zendesk"];
8
8
  exports.default = _default;