import { ZInput_Props } from './_Input.props'; export type ZSelectInput_Option = { /** ... */ value: T; /** ... */ text?: string; /** ... */ disabled?: boolean; }; export type ZSearchSelectInput_Option = ZSelectInput_Option & { /** ... */ hide?: boolean; /** ... */ meta?: string[]; }; export type ZSelectInput_Props = ZInput_Props & Partial<{ /** ... */ readonly options: readonly ZSearchSelectInput_Option[]; /** ... */ readonly 'search-in-options-text': string; /** ... */ readonly 'options-not-found-text': string; /*** */ readonly 'with-search': boolean; /** ... */ readonly 'search-autofocus': boolean; }>;