SearchWithin

SearchWithin components combine a SearchField and a Select into a single group.

Installyarn add @diallink-corp/convergo-react-searchwithin
Version4.1.2
Usageimport {SearchWithin} from '@diallink-corp/convergo-react-searchwithin'

Example

<SearchWithin label="Search">
  <SearchField />
  <Select defaultSelectedKey="all">
    <Item key="all">All</Item>
    <Item key="companies">Companies</Item>
    <Item key="contacts">Contacts</Item>
    <Item key="deals">Deals</Item>
  </Select>
</SearchWithin>
<SearchWithin label="Search">
  <SearchField />
  <Select defaultSelectedKey="all">
    <Item key="all">All</Item>
    <Item key="companies">Companies</Item>
    <Item key="contacts">Contacts</Item>
    <Item key="deals">Deals</Item>
  </Select>
</SearchWithin>
<SearchWithin label="Search">
  <SearchField />
  <Select defaultSelectedKey="all">
    <Item key="all">
      All
    </Item>
    <Item key="companies">
      Companies
    </Item>
    <Item key="contacts">
      Contacts
    </Item>
    <Item key="deals">
      Deals
    </Item>
  </Select>
</SearchWithin>

API