@simple-table/react 3.6.5 → 3.6.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/README.md
CHANGED
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
|
|
16
16
|
Simple Table is available for the most popular frameworks:
|
|
17
17
|
|
|
18
|
-
| Framework
|
|
19
|
-
|
|
20
|
-
| **Vanilla JS** | [`simple-table-core`](https://www.npmjs.com/package/simple-table-core)
|
|
21
|
-
| **React**
|
|
22
|
-
| **Vue 3**
|
|
23
|
-
| **Svelte**
|
|
24
|
-
| **Solid**
|
|
25
|
-
| **Angular**
|
|
18
|
+
| Framework | Package | Version |
|
|
19
|
+
| -------------- | ------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------- |
|
|
20
|
+
| **Vanilla JS** | [`simple-table-core`](https://www.npmjs.com/package/simple-table-core) | [](https://www.npmjs.com/package/simple-table-core) |
|
|
21
|
+
| **React** | [`@simple-table/react`](https://www.npmjs.com/package/@simple-table/react) | [](https://www.npmjs.com/package/@simple-table/react) |
|
|
22
|
+
| **Vue 3** | [`@simple-table/vue`](https://www.npmjs.com/package/@simple-table/vue) | [](https://www.npmjs.com/package/@simple-table/vue) |
|
|
23
|
+
| **Svelte** | [`@simple-table/svelte`](https://www.npmjs.com/package/@simple-table/svelte) | [](https://www.npmjs.com/package/@simple-table/svelte) |
|
|
24
|
+
| **Solid** | [`@simple-table/solid`](https://www.npmjs.com/package/@simple-table/solid) | [](https://www.npmjs.com/package/@simple-table/solid) |
|
|
25
|
+
| **Angular** | [`@simple-table/angular`](https://www.npmjs.com/package/@simple-table/angular) | [](https://www.npmjs.com/package/@simple-table/angular) |
|
|
26
26
|
|
|
27
27
|
## Quick Start
|
|
28
28
|
|
|
@@ -133,13 +133,13 @@ For side projects and pre-revenue teams. Unlimited users per product license wit
|
|
|
133
133
|
|
|
134
134
|
### PRO - For Growing Businesses
|
|
135
135
|
|
|
136
|
-
**$85/month** or **$850/year**
|
|
136
|
+
**$85/month** or **$850/year**
|
|
137
137
|
|
|
138
138
|
For revenue-generating companies: priority email and Discord support, bug support for production issues, and the commercial EULA. Unlimited users per product license.
|
|
139
139
|
|
|
140
140
|
### ENTERPRISE - For teams that need hands-on support
|
|
141
141
|
|
|
142
|
-
**$350/month** or **$3,500/year**
|
|
142
|
+
**$350/month** or **$3,500/year**
|
|
143
143
|
|
|
144
144
|
Premium support with faster response times, direct access to core developers, feature request prioritization, and the commercial EULA. Unlimited users per product license.
|
|
145
145
|
|
|
@@ -4,6 +4,7 @@ import { AbsoluteBodyCell, CellRenderContext } from "./types";
|
|
|
4
4
|
export interface CellLiveRef {
|
|
5
5
|
row: Row;
|
|
6
6
|
tableRow: TableRow;
|
|
7
|
+
context: CellRenderContext;
|
|
7
8
|
}
|
|
8
9
|
export declare const cellLiveRefMap: WeakMap<HTMLElement, CellLiveRef>;
|
|
9
10
|
export declare const untrackCellByRow: (rowId: string, cellElement: HTMLElement) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simple-table/react",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.7",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/types/react/src/index.d.ts",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react-dom": ">=18.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"simple-table-core": "3.6.
|
|
32
|
+
"simple-table-core": "3.6.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@rollup/plugin-alias": "^4.0.4",
|