@wistia/ui 0.21.4-beta.b00a8dea.d1976a6 → 0.21.4-beta.b7b094f7.c5f0b41

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/index.d.ts CHANGED
@@ -1726,11 +1726,6 @@ declare const calculateContrast: ({ backgroundColor, foregroundColor, background
1726
1726
  backgroundOpacity?: number;
1727
1727
  }) => number;
1728
1728
 
1729
- type ComboboxOptionProps = {
1730
- value: string;
1731
- children: ReactNode;
1732
- };
1733
- declare const ComboboxOption: ({ value, children }: ComboboxOptionProps) => react_jsx_runtime.JSX.Element;
1734
1729
  type ComboboxProps = {
1735
1730
  /**
1736
1731
  * If true, the popover will flip to stay within the viewport
@@ -1771,6 +1766,12 @@ type ComboboxProps = {
1771
1766
  };
1772
1767
  declare const Combobox: ({ placeholder, value, onChange, searchValue, onSearchValueChange, displayValues, children, flipPopover, fullWidth, }: ComboboxProps) => react_jsx_runtime.JSX.Element;
1773
1768
 
1769
+ type ComboboxOptionProps = {
1770
+ value: string;
1771
+ children: ReactNode;
1772
+ };
1773
+ declare const ComboboxOption: ({ value, children }: ComboboxOptionProps) => react_jsx_runtime.JSX.Element;
1774
+
1774
1775
  type ContextMenuProps = {
1775
1776
  children: ReactNode;
1776
1777
  onRequestClose?: () => void;
@@ -2960,7 +2961,6 @@ declare const ListItem: {
2960
2961
  type MarkProps = ComponentPropsWithoutRef<'div'> & {
2961
2962
  /** The content of the Mark component. */
2962
2963
  children: ReactNode;
2963
- /** Sets the [color scheme](/docs/color-schemes) */
2964
2964
  colorScheme?: ColorSchemeTypes;
2965
2965
  };
2966
2966
  /**