ExpandableText
The ExpandableText component provides expand and collapse functionality for
inline text.
ExpandableTextProps
Signature:
export declare type ExpandableTextProps = & ( | );ExpandableTextBaseProps
extends
, , , | Name | Type | Default | Description |
|---|---|---|---|
expandLabel? | 'Show more' | Text shown for expanding the content. | |
collapseLabel? | 'Show less' | Text shown for collapsing the content. |
ExpandableTextControlledProps
| Name | Type | Default | Description |
|---|---|---|---|
expanded | | Determines whether or not the content is expanded in a controlled scenario. | |
onExpandChange | (expanded: ) => | | Callback fired when the expanded attribute changes in a controlled scenario. |
ExpandableTextUncontrolledProps
| Name | Type | Default | Description |
|---|---|---|---|
defaultExpanded? | false | Determines whether or not the content is initially expanded in an uncontrolled scenario. |