@1771technologies/lytenyte-pro 2.0.0 → 2.0.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.
- package/README.md +51 -30
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,32 +1,29 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<br><br>
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images
|
|
5
|
-
<source media="(prefers-color-scheme: light)" srcset="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images
|
|
6
|
-
<img width="360" alt="Logo of LyteNyte Grid" src="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images/github-lytenyte-dark.svg"/>
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images/github-lytenyte-light.svg"/>
|
|
6
|
+
<img width="360" alt="Logo of LyteNyte Grid" src="https://xwhoymbxqtnizjadugph.supabase.co/storage/v1/object/public/images/github-lytenyte-light.svg"/>
|
|
7
7
|
</picture>
|
|
8
8
|
<br><br>
|
|
9
9
|
|
|
10
10
|
<h3>
|
|
11
|
-
|
|
11
|
+
The Fastest React Data Grid On The Modern Web
|
|
12
12
|
</h3>
|
|
13
13
|
|
|
14
14
|
</div>
|
|
15
15
|
<div align="center">
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
and complex datasets without compromising speed or usability.
|
|
17
|
+
LyteNyte Grid is a **~40 KB, zero-dependency React data grid** engineered for
|
|
18
|
+
high performance and enterprise-scale datasets. It can handle **10,000 updates/sec**
|
|
19
|
+
and render **millions of rows**. No wrappers. No heavy abstractions.
|
|
21
20
|
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
Choose between **headless** components or a **pre-styled** grid out of
|
|
22
|
+
the box, and ship faster with a **declarative API** that
|
|
23
|
+
is purpose-built for React.
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
Build custom menus, popover dialogs, and dynamic workflows with ease.
|
|
28
|
-
|
|
29
|
-
Meticulously engineered to redefine what your enterprise expects from a React data grid.
|
|
25
|
+
Start with **LyteNyte Grid Core** (free and open source). Upgrade
|
|
26
|
+
to **LyteNyte Grid PRO** for advanced enterprise features and support.
|
|
30
27
|
|
|
31
28
|
[Compare Features](https://1771technologies.com/pricing)
|
|
32
29
|
|
|
@@ -60,12 +57,14 @@ Meticulously engineered to redefine what your enterprise expects from a React da
|
|
|
60
57
|
|
|
61
58
|
LyteNyte Grid is available in two editions:
|
|
62
59
|
|
|
63
|
-
1. **LyteNyte Grid Core
|
|
64
|
-
|
|
60
|
+
1. **LyteNyte Grid Core: Free, open-source edition** for building high-performance data tables.
|
|
61
|
+
Includes sorting, filtering, editing, row selection, detail views, and more. Also includes advanced
|
|
62
|
+
features such as aggregation, row grouping, and data export, often locked behind paywalls in other grids.
|
|
65
63
|
|
|
66
|
-
2. **LyteNyte Grid PRO
|
|
67
|
-
features such as
|
|
68
|
-
|
|
64
|
+
2. **LyteNyte Grid PRO: Commercial edition** that extends Core with powerful enterprise
|
|
65
|
+
features such as server-side data loading, pivoting, tree data, component managers,
|
|
66
|
+
and advanced filtering. Build custom menus, popovers and dialogs,
|
|
67
|
+
and workflow-driven UIs with ease.
|
|
69
68
|
|
|
70
69
|
## Key Design Principles
|
|
71
70
|
|
|
@@ -80,6 +79,26 @@ LyteNyte Grid is available in two editions:
|
|
|
80
79
|
implements one-way data binding and declarative rendering to
|
|
81
80
|
maintain predictable state management.
|
|
82
81
|
|
|
82
|
+
## Installation
|
|
83
|
+
|
|
84
|
+
LyteNyte Grid can be installed via NPM:
|
|
85
|
+
|
|
86
|
+
**PRO:**
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
npm install --save @1771technologies/lytenyte-pro
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
> [!NOTE]
|
|
93
|
+
> You can install and use LyteNyte Grid PRO
|
|
94
|
+
> without license but a watermark will be displayed.
|
|
95
|
+
|
|
96
|
+
**Core:**
|
|
97
|
+
|
|
98
|
+
```sh
|
|
99
|
+
npm install --save @1771technologies/lytenyte-core
|
|
100
|
+
```
|
|
101
|
+
|
|
83
102
|
## Quick Start
|
|
84
103
|
|
|
85
104
|
- Begin with our comprehensive [getting started guide](https://www.1771technologies.com/docs/intro-getting-started).
|
|
@@ -88,19 +107,21 @@ LyteNyte Grid is available in two editions:
|
|
|
88
107
|
|
|
89
108
|
## Licensing
|
|
90
109
|
|
|
91
|
-
LyteNyte Grid is available in two editions, Core and PRO, and offered under the following three license plans:
|
|
110
|
+
LyteNyte Grid is available in two editions, Core and PRO, and is offered under the following three license plans:
|
|
111
|
+
|
|
112
|
+
1. **Core License Plan:** An [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
|
113
|
+
license for the Core edition, which is free and open-source. Ideal for individual developers and community use.
|
|
92
114
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
115
|
+
2. **Developer PRO License Plan:** A [commercial license](https://www.1771technologies.com/eula) for the PRO edition, designed for
|
|
116
|
+
individuals and teams with up to 50 developers. Unlocks the full potential of LyteNyte
|
|
117
|
+
Grid with advanced features unavailable in the Core edition.
|
|
96
118
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
with
|
|
100
|
-
3. **Organization PRO License Plan:** A [commercial license](https://www.1771technologies.com/eula) for the PRO edition, tailored for teams
|
|
101
|
-
with 50+ developers. Includes all PRO features along with an enhanced support agreement and negotiated pricing terms.
|
|
119
|
+
3. **Organization PRO License Plan:** A [commercial license](https://www.1771technologies.com/eula) for the PRO edition,
|
|
120
|
+
tailored for teams with 50+ developers. Includes all PRO features along
|
|
121
|
+
with an enhanced support agreement and negotiated pricing terms.
|
|
102
122
|
|
|
103
|
-
All **PRO licenses** are **perpetual** and include **12 months** of software updates,
|
|
123
|
+
All **PRO licenses** are **perpetual** and include **12 months** of software updates,
|
|
124
|
+
feature upgrades, and dedicated technical support during your active license term.
|
|
104
125
|
|
|
105
126
|
## Support
|
|
106
127
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1771technologies/lytenyte-pro",
|
|
3
3
|
"description": "Blazingly fast headless React data grid with 100s of features.",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "COMMERCIAL",
|
|
7
7
|
"files": [
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@1771technologies/lytenyte-
|
|
61
|
-
"@1771technologies/lytenyte-
|
|
62
|
-
"@1771technologies/lytenyte-design": "2.0.
|
|
60
|
+
"@1771technologies/lytenyte-shared": "2.0.1",
|
|
61
|
+
"@1771technologies/lytenyte-core": "2.0.1",
|
|
62
|
+
"@1771technologies/lytenyte-design": "2.0.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@1771technologies/grid-sample-data": "2.0.
|
|
65
|
+
"@1771technologies/grid-sample-data": "2.0.1"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"react": "18.0.0 || ^19.0.0",
|