Skip to content

API Reference / @gtkx/components / index / ListRowProps

Type Alias: ListRowProps

ListRowProps = object

Defined in: types.d.ts:47

Properties applied to the row that carries one item's cells. A Gtk.ColumnViewRow is not a widget, so these are the only handles it offers; anything omitted falls back to the row's own default, which leaves the accessibility strings unset rather than setting them to an empty string.

Properties

accessibleDescription?

optional accessibleDescription?: string

Defined in: types.d.ts:51

Longer description a screen reader announces for the row, through accessible-description.


accessibleLabel?

optional accessibleLabel?: string

Defined in: types.d.ts:49

Name a screen reader announces for the row, through accessible-label.


isActivatable?

optional isActivatable?: boolean

Defined in: types.d.ts:53

Whether activating the row emits the view's activate signal; rows are activatable by default.


isFocusable?

optional isFocusable?: boolean

Defined in: types.d.ts:55

Whether the row takes keyboard focus; rows are focusable by default.


isSelectable?

optional isSelectable?: boolean

Defined in: types.d.ts:57

Whether clicking or keying the row tries to select it; rows are selectable by default.

Released under the MPL-2.0 License.