react-open-source-grid 1.6.0 → 1.6.1

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.
Files changed (2) hide show
  1. package/dist/index.html +43 -3
  2. package/package.json +1 -1
package/dist/index.html CHANGED
@@ -12,7 +12,13 @@
12
12
  </script>
13
13
 
14
14
  <meta charset="UTF-8" />
15
- <link rel="icon" type="image/png" href="/logo.png" />
15
+
16
+ <!-- Favicons -->
17
+ <link rel="icon" type="image/png" sizes="32x32" href="/logo.png" />
18
+ <link rel="icon" type="image/png" sizes="16x16" href="/logo.png" />
19
+ <link rel="apple-touch-icon" sizes="180x180" href="/logo.png" />
20
+ <link rel="shortcut icon" href="/logo.png" />
21
+
16
22
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
17
23
 
18
24
  <!-- Primary Meta Tags -->
@@ -30,14 +36,22 @@
30
36
  <meta property="og:url" content="https://bhushanpoojary.github.io/react-open-source-datagrid/" />
31
37
  <meta property="og:title" content="React DataGrid - Enterprise-Grade Open Source Data Grid Component" />
32
38
  <meta property="og:description" content="High-performance React DataGrid with 100+ features: virtual scrolling, infinite scroll, tree data, market data streaming, cell renderers, column filters, and more." />
33
- <meta property="og:image" content="/react-open-source-datagrid/logo.png" />
39
+ <meta property="og:image" content="https://bhushanpoojary.github.io/react-open-source-datagrid/logo.png" />
40
+ <meta property="og:image:alt" content="React DataGrid Logo - Open Source Data Grid Component" />
41
+ <meta property="og:image:width" content="1200" />
42
+ <meta property="og:image:height" content="630" />
43
+ <meta property="og:site_name" content="React DataGrid" />
44
+ <meta property="og:locale" content="en_US" />
34
45
 
35
46
  <!-- Twitter -->
36
47
  <meta property="twitter:card" content="summary_large_image" />
37
48
  <meta property="twitter:url" content="https://bhushanpoojary.github.io/react-open-source-datagrid/" />
38
49
  <meta property="twitter:title" content="React DataGrid - Enterprise-Grade Open Source Data Grid Component" />
39
50
  <meta property="twitter:description" content="High-performance React DataGrid with 100+ features: virtual scrolling, infinite scroll, tree data, market data streaming, cell renderers, column filters, and more." />
40
- <meta property="twitter:image" content="/react-open-source-datagrid/logo.png" />
51
+ <meta property="twitter:image" content="https://bhushanpoojary.github.io/react-open-source-datagrid/logo.png" />
52
+ <meta property="twitter:image:alt" content="React DataGrid Logo - Open Source Data Grid Component" />
53
+ <meta property="twitter:creator" content="@bhushanpoojary" />
54
+ <meta property="twitter:site" content="@bhushanpoojary" />
41
55
 
42
56
  <!-- Canonical URL -->
43
57
  <link rel="canonical" href="https://bhushanpoojary.github.io/react-open-source-datagrid/" />
@@ -60,6 +74,32 @@
60
74
  <link rel="stylesheet" crossorigin href="/assets/index-DqLWhpvP.css">
61
75
  </head>
62
76
  <body>
77
+ <!-- SEO Content Section -->
78
+ <div style="position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;">
79
+ <h1>React DataGrid - High-Performance Open Source Data Grid Component</h1>
80
+ <p>
81
+ This react data grid is a high-performance open source grid component built specifically for React applications.
82
+ Designed to handle large datasets with ease, this enterprise-grade data grid delivers exceptional performance
83
+ through advanced virtualized row rendering, ensuring smooth scrolling and interaction even with millions of records.
84
+ </p>
85
+ <p>
86
+ Our react grid component provides comprehensive support for advanced filtering capabilities, allowing users to
87
+ quickly search, filter, and find the exact data they need. With powerful column pinning functionality, you can
88
+ freeze important columns in place while scrolling through wide datasets. The grid supports sophisticated grouping
89
+ and aggregation features, making it perfect for business intelligence dashboards, financial applications, and
90
+ data analytics platforms.
91
+ </p>
92
+ <p>
93
+ Built with flexibility in mind, this open source React DataGrid includes fully customizable cell renderers that let you display
94
+ data exactly how you want - from simple text to complex interactive components, charts, sparklines, and custom
95
+ visualizations. Features include column resizing, sorting, inline editing, row selection, infinite scrolling,
96
+ tree data structures, context menus, Excel export, keyboard navigation, and full accessibility support with
97
+ ARIA attributes. Whether you're building a financial trading platform, CRM system, inventory management tool,
98
+ or any data-intensive application, this react grid provides the performance, features, and flexibility you need
99
+ while remaining completely free and open source.
100
+ </p>
101
+ </div>
102
+
63
103
  <div id="root"></div>
64
104
  </body>
65
105
  </html>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-open-source-grid",
3
3
  "private": false,
4
- "version": "1.6.0",
4
+ "version": "1.6.1",
5
5
  "type": "module",
6
6
  "description": "A high-performance React DataGrid component with advanced features like virtual scrolling, infinite scrolling, tree data, market data mode, and more",
7
7
  "main": "./dist/lib/index.cjs",