Skip to content

Commit

Permalink
feat!: remove old InputGroupButtonDropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoebe Gao authored and phwebi committed Oct 27, 2021
1 parent 6c60226 commit 3df07f6
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 116 deletions.
34 changes: 0 additions & 34 deletions docs/lib/examples/InputGroupButtonDropdown.js

This file was deleted.

18 changes: 0 additions & 18 deletions src/InputGroupButtonDropdown.js

This file was deleted.

11 changes: 0 additions & 11 deletions src/__tests__/InputGroupButtonDropdown.spec.js

This file was deleted.

1 change: 0 additions & 1 deletion src/index.js
Expand Up @@ -63,7 +63,6 @@ export FormGroup from './FormGroup';
export FormText from './FormText';
export Input from './Input';
export InputGroup from './InputGroup';
export InputGroupButtonDropdown from './InputGroupButtonDropdown';
export InputGroupText from './InputGroupText';
export Label from './Label';
export Media from './Media';
Expand Down
2 changes: 0 additions & 2 deletions types/index.d.ts
Expand Up @@ -82,8 +82,6 @@ export { default as Input } from './lib/Input';
export { InputProps } from './lib/Input';
export { default as InputGroup } from './lib/InputGroup';
export { InputGroupProps } from './lib/InputGroup';
export { default as InputGroupButtonDropdown } from './lib/InputGroupButtonDropdown';
export { InputGroupButtonDropdownProps } from './lib/InputGroupButtonDropdown';
export { default as InputGroupText } from './lib/InputGroupText';
export { InputGroupTextProps } from './lib/InputGroupText';
export { default as Label } from './lib/Label';
Expand Down
11 changes: 0 additions & 11 deletions types/lib/InputGroupButtonDropdown.d.ts

This file was deleted.

2 changes: 0 additions & 2 deletions types/lib/index.d.ts
Expand Up @@ -86,8 +86,6 @@ export { default as Input } from './Input';
export { InputProps } from './Input';
export { default as InputGroup } from './InputGroup';
export { InputGroupProps } from './InputGroup';
export { default as InputGroupButtonDropdown } from './InputGroupButtonDropdown';
export { InputGroupButtonDropdownProps } from './InputGroupButtonDropdown';
export { default as InputGroupText } from './InputGroupText';
export { InputGroupTextProps } from './InputGroupText';
export { default as Label } from './Label';
Expand Down
37 changes: 0 additions & 37 deletions types/reactstrap-tests.tsx
Expand Up @@ -44,7 +44,6 @@ import {
FormText,
Input,
InputGroup,
InputGroupButtonDropdown,
InputGroupText,
Pagination,
Label,
Expand Down Expand Up @@ -4718,35 +4717,6 @@ const Example116 = (props: any) => {
<Input />
</InputGroup>
<br />
<InputGroup>
<Input />
<InputGroupButtonDropdown addonType="append" isOpen={false}>
<DropdownToggle caret>Button Dropdown</DropdownToggle>
<DropdownMenu>
<DropdownItem header>Header</DropdownItem>
<DropdownItem disabled>Action</DropdownItem>
<DropdownItem>Another Action</DropdownItem>
<DropdownItem divider />
<DropdownItem>Another Action</DropdownItem>
</DropdownMenu>
</InputGroupButtonDropdown>
</InputGroup>
<br />
<InputGroup>
<InputGroupButtonDropdown addonType="prepend" isOpen={true}>
<Button outline>Split Button</Button>
<DropdownToggle split outline />
<DropdownMenu>
<DropdownItem header>Header</DropdownItem>
<DropdownItem disabled>Action</DropdownItem>
<DropdownItem>Another Action</DropdownItem>
<DropdownItem divider />
<DropdownItem>Another Action</DropdownItem>
</DropdownMenu>
</InputGroupButtonDropdown>
<Input placeholder="and..." />
<Button color="secondary">I'm a button</Button>
</InputGroup>
</div>
);
};
Expand Down Expand Up @@ -4828,7 +4798,6 @@ import { default as FormGroup_ } from './lib/FormGroup'; /* tslint:disable-line:
import { default as FormText_ } from './lib/FormText'; /* tslint:disable-line: no-relative-import-in-test */
import { default as Input_ } from './lib/Input'; /* tslint:disable-line: no-relative-import-in-test */
import { default as InputGroup_ } from './lib/InputGroup'; /* tslint:disable-line: no-relative-import-in-test */
import { default as InputGroupButtonDropdown_ } from './lib/InputGroupButtonDropdown'; /* tslint:disable-line: no-relative-import-in-test */
import { default as InputGroupText_ } from './lib/InputGroupText'; /* tslint:disable-line: no-relative-import-in-test */
import { default as Label_ } from './lib/Label'; /* tslint:disable-line: no-relative-import-in-test */
import { default as ListGroup_ } from './lib/ListGroup'; /* tslint:disable-line: no-relative-import-in-test */
Expand Down Expand Up @@ -4929,12 +4898,6 @@ function AnyPropExample() {
<FormText_ foo={1} bar={false} foobar="example" />
<Input_ foo={1} bar={false} foobar="example" />
<InputGroup_ foo={1} bar={false} foobar="example" />
<InputGroupButtonDropdown_
foo={1}
bar={false}
foobar="example"
addonType="prepend"
/>
<InputGroupText_ foo={1} bar={false} foobar="example" />
<Label_ foo={1} bar={false} foobar="example" />
<ListGroup_ foo={1} bar={false} foobar="example" />
Expand Down

0 comments on commit 3df07f6

Please sign in to comment.