chore(multi-select): keep checkboxes rendered in DOM

Display ListBox via CSS
This commit is contained in:
Enrico Sacchetti 2023-10-26 16:53:21 -04:00
commit 43ac7a811f
5 changed files with 44 additions and 133 deletions

View file

@ -37,20 +37,6 @@ export interface MultiSelectProps extends RestProps {
value?: string;
};
/**
* Set to `true` to only render selected options as hidden inputs for form submission.
* @default false
*/
selectedOnly?: boolean;
/**
* Combine selected items as comma-separated values when submitted in a form.
* If set to `true`, the default separator is a comma `,`.
* Pass in a string to override the separator.
* @default false
*/
combineValues?: false | true | string;
/**
* Set the selected ids
* @default []