@ahmadmubarak98/namozaj 1.16.4 → 1.16.5
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.
- package/dist/main.d.ts +2 -0
- package/dist/namozaj.js +5069 -5057
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ export declare type MultiSelectFieldConfig = BaseFieldConfig & {
|
|
|
357
357
|
fn: (value: string) => void;
|
|
358
358
|
delay?: number;
|
|
359
359
|
};
|
|
360
|
+
onSearchOptions?: (searchValue: string) => Promise<FieldOption[]>;
|
|
360
361
|
};
|
|
361
362
|
};
|
|
362
363
|
|
|
@@ -607,6 +608,7 @@ export declare type SelectFieldConfig = BaseFieldConfig & {
|
|
|
607
608
|
fn: (value: string) => void;
|
|
608
609
|
delay?: number;
|
|
609
610
|
};
|
|
611
|
+
onSearchOptions?: (searchValue: string) => Promise<FieldOption[]>;
|
|
610
612
|
};
|
|
611
613
|
};
|
|
612
614
|
|