I'm building a <Select variant="typeaheadmulti"> and only 3 selections are shown as chips before the overflow controls appear. It would be great to be able to customize that by passing my own numChips prop to the <ChipGroup> rendered here: https://github.com/patternfly/patternfly-react/blob/master/packages/react-core/src/components/Select/Select.tsx#L527
Perhaps an optional prop for <Select> called chipGroupProps could be made available that is only used if variant === 'typeaheadmulti', and the chip group could be customized in other ways as well.
I'm building a
<Select variant="typeaheadmulti">and only 3 selections are shown as chips before the overflow controls appear. It would be great to be able to customize that by passing my ownnumChipsprop to the<ChipGroup>rendered here: https://github.com/patternfly/patternfly-react/blob/master/packages/react-core/src/components/Select/Select.tsx#L527Perhaps an optional prop for
<Select>calledchipGroupPropscould be made available that is only used ifvariant === 'typeaheadmulti', and the chip group could be customized in other ways as well.