@snapdragonsnursery/react-components 1.17.4 → 1.17.6
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/package.json
CHANGED
package/src/AuthButtons.jsx
CHANGED
|
@@ -47,7 +47,7 @@ const EmployeeSearchModal = ({
|
|
|
47
47
|
onClose,
|
|
48
48
|
onSelect,
|
|
49
49
|
title = "Select Employee",
|
|
50
|
-
searchPlaceholder = "Search by name,
|
|
50
|
+
searchPlaceholder = "Search by name, ID, or email address...",
|
|
51
51
|
siteId = null,
|
|
52
52
|
siteIds = null,
|
|
53
53
|
sites = null,
|
|
@@ -984,7 +984,7 @@ const EmployeeSearchModal = ({
|
|
|
984
984
|
>
|
|
985
985
|
{debouncedSearchTerm
|
|
986
986
|
? "No employees found matching your search."
|
|
987
|
-
: "
|
|
987
|
+
: "Type a name, ID, or email to find an employee"}
|
|
988
988
|
</TableCell>
|
|
989
989
|
</TableRow>
|
|
990
990
|
)}
|
|
@@ -995,7 +995,7 @@ const EmployeeSearchModal = ({
|
|
|
995
995
|
<div className="p-6 text-center text-gray-500 dark:text-gray-400">
|
|
996
996
|
{debouncedSearchTerm
|
|
997
997
|
? "No employees found matching your search."
|
|
998
|
-
: "
|
|
998
|
+
: "Type a name, ID, or email to find an employee"}
|
|
999
999
|
</div>
|
|
1000
1000
|
)}
|
|
1001
1001
|
|