@progress/kendo-react-dropdowns 7.1.0-develop.6 → 7.1.0-develop.8

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/common/utils.d.ts CHANGED
@@ -32,9 +32,13 @@ declare const itemIndexStartsWith: (items: any[], text?: string, field?: string)
32
32
  */
33
33
  declare const getItemIndexByText: (data: Array<any>, text: string, textField?: string, matchCase?: boolean) => number;
34
34
  /**
35
- * @hidden
35
+ * Get the value of the item by its field.
36
36
  */
37
37
  declare const getItemValue: (item: any, field?: string) => any;
38
+ /**
39
+ * Find item in the data by field and value.
40
+ */
41
+ export declare const findByFieldValue: (data: any[], field: string, value: string | number | null) => any;
38
42
  /**
39
43
  * @hidden
40
44
  */