gantri-components 3.0.0-beta.25 → 3.0.0-beta.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,11 @@ export interface SearchFieldProps<T = Record<string, unknown>> extends Omit<Drop
18
18
  labelPosition?: 'top' | 'left';
19
19
  labelText?: string;
20
20
  labelTx?: string;
21
+ /**
22
+ * System will start searching after user has input n digits
23
+ * There will be no dropdown shown initially, until user enters the n digits and systems begins search.
24
+ * */
25
+ minSearchLength?: number;
21
26
  name?: string;
22
27
  onBlur?: (event: BlurChangeEvent) => void;
23
28
  onChange?: (event: DropdownChangeEvent<T>) => void;