@snapdragonsnursery/react-components 1.17.6 → 1.17.7

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.6",
3
+ "version": "1.17.7",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -240,7 +240,7 @@ export const EmployeeSelect = ({
240
240
  <Search className="absolute left-2 top-1/2 transform -translate-y-1/2 h-4 w-4 text-muted-foreground" />
241
241
  <input
242
242
  type="text"
243
- placeholder={enableServerSearch ? "Search employees (server-side)..." : "Search employees..."}
243
+ placeholder={enableServerSearch ? "Search employees..." : "Search employees..."}
244
244
  value={searchTerm}
245
245
  onChange={(e) => setSearchTerm(e.target.value)}
246
246
  className="w-full pl-8 pr-3 py-2 text-sm border rounded-md focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 bg-background"