ChipListProps
Represents the properties of ChipList component.
ariaDescribedBy?
string
Identifies the element(s) which will describe the component, similar to HTML aria-describedby attribute. For example these elements could contain error or hint message.
ariaLabelledBy?
string
Identifies the element(s) which will label the component.
chip?
React.ComponentType<ChipProps>
Represents Chip component.
className?
string
Sets additional classes to the ChipList.
data?
any
Represents the data about the child Chips.
defaultData?
any[]
Represents the default data about the child Chips.
defaultValue?
any | any[]
Represents the default value of the selection state of Chip component.
dir?
string
The ChipList direction 'ltr' as default or 'rtl'.
disabled?
boolean
Determines of ChipList is disabled.
id?
string
Sets the id
property of the top div element of the ChipList.
name?
string
Specifies the name
property of the input
DOM element.
This property is part of the FormComponentProps interface.
onChange?
(event: ChipListChangeEvent) => void
Triggered after value change.
onDataChange?
(event: ChipListDataChangeEvent) => void
Triggered after Chip data change.
required?
boolean
Specifies if null
is a valid value for the component.
This property is part of the FormComponentProps interface.
selection?
string
Represents the selection state of Chip component.
style?
CSSProperties
Sets additional CSS styles to the ChipList.
tabIndex?
number
Sets the tabIndex
attribute.
textField?
string
Represents the text
field of Chip, used for the label
.
valid?
boolean
Overrides the validity state of the component.
If valid
is set, the required
property will be ignored.
This property is part of the FormComponentProps interface.
validationMessage?
string
Controls the form error message of the component. If set to an empty string, no error will be thrown.
This property is part of the FormComponentProps interface.
validityStyles?
boolean
If set to false
, no visual representation of the invalid state of the component will be applied.
This property is part of the FormComponentProps interface.
value?
any | any[]
Represents the selection state of Chip component.
valueField?
string
Represents the value
field of Chip, used for setting the Chip id
.