operational-ui
operational-ui copied to clipboard
Form/Inputs update
Summary
The idea is to have a nice set of components to provide the following kind of UI
Actual implementation
https://gist.github.com/fabien0102/c2c98145e28536e271908b3b774b9123
API Proposal
<Form inColumn>
<Input type="text" label="Search" value={search} icon="Search" />
<Input type="multiselect" label="Department" collapsable options={[{text: "Finance", value: "finance" }]} values={department} />
<Input type="text" label="Country" value={country} />
</Form>
The inColumn
provide the borderBottom
and the layout (I'm not a huge fan of the naming, but it's for the idea)
The onChange
can be deal on the Input
level or the Form
level
We have the Form
component now that kind of helps with this. Is this issue still relevant?