Skip to content

Commit

Permalink
Merge pull request #2226 from habx/feature/add-expansion-panel-props
Browse files Browse the repository at this point in the history
APP-27844: Add expansion panel props in ArrayInputProps
  • Loading branch information
habxtech authored Feb 24, 2022
2 parents 9bb2ef7 + 64623f4 commit debae6f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ArrayInput/ArrayInput.interface.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as React from 'react'

import { ThemeOverridesProps } from '../_internal/types'
import { ExpansionPanelProps } from '../ExpansionPanel'
import { WithLabel } from '../withLabel'

import { ArrayInputItemComponentProps } from './Item/Item.interface'
Expand All @@ -11,7 +12,7 @@ export interface ArrayInputAddButtonComponentProps {
}

export interface ArrayInputInnerProps
extends React.HTMLAttributes<HTMLDivElement>,
extends ExpansionPanelProps,
ThemeOverridesProps {
items?: any[]
addButtonLabel?: string
Expand Down

0 comments on commit debae6f

Please sign in to comment.