@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snapdragonsnursery/react-components",
3
- "version": "1.17.4",
3
+ "version": "1.17.6",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -113,7 +113,6 @@ function AuthButtons({ theme, setTheme, authState, setAuthState }) {
113
113
  authState.isAuthenticated,
114
114
  authState.account,
115
115
  authState.instance,
116
- profilePicture,
117
116
  ]);
118
117
 
119
118
  // Debug logging - only log on state changes
@@ -47,7 +47,7 @@ const EmployeeSearchModal = ({
47
47
  onClose,
48
48
  onSelect,
49
49
  title = "Select Employee",
50
- searchPlaceholder = "Search by name, employee ID, or email...",
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
- : "Start typing to search for employees."}
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
- : "Start typing to search for employees."}
998
+ : "Type a name, ID, or email to find an employee"}
999
999
  </div>
1000
1000
  )}
1001
1001