@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
14 lines (13 loc) • 610 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import { SelectOptionProps } from "./select.types.js";
import "../index.js";
//#region src/select/selectOption.d.ts
/**
* Displays a select option as a list item. By default, closes popover when option is selected.
* In multi-select mode, displays a checkbox and doesn't close popover.
* 'onChange' is triggered with a modified click event, which adds 'value' and 'name' properties.
*/
declare const SelectOption: VuiComponent<"li", SelectOptionProps>;
//#endregion
export { SelectOption, SelectOption as default };
//# sourceMappingURL=selectOption.d.ts.map