SearchWithin
SearchWithin components combine a SearchField and a Select into a single group.
| Install | yarn add @diallink-corp/convergo-react-searchwithin |
|---|---|
| Version | 4.1.2 |
| Usage | import {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>