@reactorui/datagrid 1.0.17 → 1.0.19

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/README.md CHANGED
@@ -772,11 +772,15 @@ Open a Pull Request
772
772
 
773
773
  ## 📄 License
774
774
 
775
- This project is licensed under the MIT License - see the LICENSE file for details.
775
+ MIT License - see [LICENSE](LICENSE) file for details.
776
776
 
777
- Made with ❤️ by ReactorUI
777
+ ## Related Projects
778
778
 
779
- ## Author
779
+ Part of the ReactorUI ecosystem:
780
780
 
781
- **Name:** Miracle
782
- **GitHub:** [@code-Miracle49](https://github.com/code-Miracle49)
781
+ - 📊 [@reactorui/recurrence](https://www.npmjs.com/package/@reactorui/recurrence) - A powerful, flexible recurrence rule builder for React applications
782
+ - 🔜 More components coming soon!
783
+
784
+ ---
785
+
786
+ **Made with ❤️ by ReactorUI**
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  export const SearchInput = ({ value, onChange, placeholder = 'Search...', disabled = false, className = '', }) => {
3
3
  return (_jsxs("div", { className: "relative", children: [_jsx("input", { type: "text", value: value, onChange: (e) => onChange(e.target.value), placeholder: placeholder, disabled: disabled, className: `
4
- w-full px-3 py-2 pl-10 border border-gray-300 text-sm
4
+ w-full px-3 py-2 pl-10 border border-gray-300 rounded text-sm
5
5
  focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent
6
6
  disabled:bg-gray-50 disabled:text-gray-500
7
7
  ${className}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reactorui/datagrid",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "High-performance React data grid with TypeScript support, server-side integration, and continuation token pagination",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",