ink-responsive-select
v1.3.5
Published
Responsive select component for Ink
Downloads
72
Maintainers
Readme
ink-responsive-select
Checkbox component for Ink.
Install
$ npm install ink-responsive-select --save
Demo
Props
Attributes
label
Type: string
Value to display in a text input.
focused
Type: string
Checks if the cursor is above the checkbox. Highlights the highlighted checkbox using Ink's focus management.
index
Type: number
Default: undefined
Checkbox identifier. If you are rendering more than one checkbox, it can be used instead of label to identify.
checked
Type: boolean
Default: false
Controls whether the checkbox is checked.
wrapperStyles
Type: Object
Default: {}
Override props of wrapper Ink's Box component.
styles
Type: Object
Default: {}
Override default styles.
Event Handlers
onChanged
Type: Function
Function to call for value updates. So it triggers when Space
, y
and n
keys.
onSubmitted
Type: Function
Function to call for value submits. So it triggers when Enter
keys.