@sproutsocial/seeds-react-menu 1.11.5 → 1.11.7

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/dist/v3/index.js CHANGED
@@ -652,7 +652,7 @@ var ComboboxInput = (0, import_styled_components6.default)(import_combobox.Combo
652
652
  flex: 1;
653
653
  min-width: 30px;
654
654
  padding: ${({ theme }) => theme.space[300]};
655
- border: none;
655
+ border: none !important;
656
656
  background: transparent;
657
657
  font-size: ${({ theme }) => theme.typography[200].fontSize};
658
658
  line-height: ${({ theme }) => theme.typography[200].lineHeight};
@@ -672,7 +672,7 @@ var ComboboxTokenInput = (0, import_styled_components6.default)(import_combobox.
672
672
  min-width: 60px;
673
673
  padding: ${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[300]}
674
674
  ${({ theme }) => theme.space[200]} ${({ theme }) => theme.space[350]};
675
- border: none;
675
+ border: none !important;
676
676
  background: transparent;
677
677
  font-size: ${({ theme }) => theme.typography[200].fontSize};
678
678
  line-height: ${({ theme }) => theme.typography[200].lineHeight};
@@ -1198,7 +1198,7 @@ function VirtualizedComboboxList({
1198
1198
  const handleScrollRef = React7.useCallback(
1199
1199
  (el) => {
1200
1200
  scrollElementRef.current = el;
1201
- if (el) virtualizer.measure();
1201
+ if (el) requestAnimationFrame(() => virtualizer.measure());
1202
1202
  },
1203
1203
  [virtualizer]
1204
1204
  );