@snmt-react-ui/user-select 1.1.1 → 2.1.0

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.
@@ -34,13 +34,15 @@ export type UserSelectProps = (Omit<SingleSelectProps, 'options'> | Omit<MultiSe
34
34
  }) => void;
35
35
  };
36
36
  /**
37
- * This is UserSelect. It is a customizable and asynchronous select component designed to fetch and display user data
38
- * from a backend API. The component supports both single and multiple selection modes, allowing users to search,
39
- * select, and manage user entries efficiently. It integrates with the People API to fetch user data based on
37
+ * This is UserSelect. It is a customizable and asynchronous select component designed
38
+ * to fetch and display user data from a backend API. The component supports both single
39
+ * and multiple selection modes, allowing users to search, select, and manage user entries
40
+ * efficiently. It integrates with the People API to fetch user data based on
40
41
  * customizable filters, sorting, and search parameters.
41
42
  *
42
- * A key feature of this component is that it fetches each selected option separately to ensure that selected items
43
- * are always displayed with the correct label, even if they are not present in the initially fetched options.
43
+ * A key feature of this component is that it fetches each selected option separately
44
+ * to ensure that selected items are always displayed with the correct label, even if
45
+ * they are not present in the initially fetched options.
44
46
  */
45
47
  declare const UserSelect: import('react').ForwardRefExoticComponent<UserSelectProps & import('react').RefAttributes<any>>;
46
48
  export { UserSelect };