@meduza/ui-kit-2 0.7.8 → 0.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.
@@ -903,7 +903,7 @@ const MaterialTitle = ({
903
903
  }, children);
904
904
  };
905
905
 
906
- var styles$u = {"root":"Dropdown-module_root__Wv7S-","active":"Dropdown-module_active__jEkE7","menu":"Dropdown-module_menu__11IQL","inactive":"Dropdown-module_inactive__E5CP6","isInAudioPanel":"Dropdown-module_isInAudioPanel__UniSV"};
906
+ var styles$u = {"root":"Dropdown-module_root__Wv7S-","menu":"Dropdown-module_menu__11IQL","inactive":"Dropdown-module_inactive__E5CP6","isInAudioPanel":"Dropdown-module_isInAudioPanel__UniSV"};
907
907
 
908
908
  const Menu = ({
909
909
  children
@@ -918,7 +918,9 @@ const Dropdown = ({
918
918
  active,
919
919
  styleContext
920
920
  }) => {
921
- let classNames = [[styles$u.root, true], [styles$u.active, !!active && !!styles$u.active], [styles$u.inactive, !active && !!styles$u.inactive]];
921
+ let classNames = [[styles$u.root, true],
922
+ // [styles.active, !!active && !!styles.active],
923
+ [styles$u.inactive, !active && styleContext === "isPodcastSeason" && !!styles$u.inactive]];
922
924
  if (styleContext) {
923
925
  classNames = makeStyleContext(classNames, styleContext, styles$u);
924
926
  }