[Bug] MultiSelectOptions cursorAt not working, Select Missing this
Author: Rar9Created May 10, 2024Updated Sep 10, 2026
Labelsenhancement
Why is cursorAt not working for MultiSelectOptions?
any Why is maxItems misisng
and the otherway for SelectOptions
interface MultiSelectOptions<Options extends Option<Value>[], Value> {
message: string;
options: Options;
initialValues?: Value[];
required?: boolean;
cursorAt?: Value;
}
interface SelectOptions<Options extends Option<Value>[], Value> {
message: string;
options: Options;
initialValue?: Value;
maxItems?: number;
}
Source: bombshell-dev/clack