@reactorui/datagrid 1.0.16 → 1.0.17
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
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @reactorui/datagrid
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@reactorui/datagrid)
|
|
4
|
+
[](https://www.npmjs.com/package/@reactorui/datagrid)
|
|
5
|
+
[](https://github.com/your-org/datagrid/blob/main/LICENSE)
|
|
6
|
+
|
|
3
7
|
A high-performance, feature-rich React data grid component with TypeScript support, server-side integration, pagination and advanced filtering capabilities.
|
|
4
8
|
|
|
5
9
|
## 🖼️ Screenshots
|
|
@@ -771,3 +775,8 @@ Open a Pull Request
|
|
|
771
775
|
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
772
776
|
|
|
773
777
|
Made with ❤️ by ReactorUI
|
|
778
|
+
|
|
779
|
+
## Author
|
|
780
|
+
|
|
781
|
+
**Name:** Miracle
|
|
782
|
+
**GitHub:** [@code-Miracle49](https://github.com/code-Miracle49)
|
|
@@ -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
|
|
4
|
+
w-full px-3 py-2 pl-10 border border-gray-300 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.
|
|
3
|
+
"version": "1.0.17",
|
|
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",
|