@simple-table/react 3.7.1 → 3.7.3

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/LICENSE ADDED
@@ -0,0 +1,82 @@
1
+ Simple Table Community License
2
+
3
+ Copyright (c) 2025 Simple Table Software
4
+
5
+ This is a source-available license. It is NOT an Open Source Initiative
6
+ (OSI) approved license and it is NOT the MIT License. Please read the grant
7
+ and limitations below carefully before using the Software.
8
+
9
+ 1. Definitions
10
+
11
+ "Software" means the Simple Table source code, object code, and associated
12
+ documentation files distributed under this license, including all official
13
+ framework adapter packages (for React, Vue, Angular, Svelte, Solid, and
14
+ vanilla TypeScript).
15
+
16
+ "Licensor" means Simple Table Software.
17
+
18
+ "You" (or "Your") means the individual or legal entity exercising rights
19
+ under this license, together with all entities that control, are
20
+ controlled by, or are under common control with that entity.
21
+
22
+ "Revenue" means gross income of any kind realized by You or Your products,
23
+ services, or organization, from any source, including but not limited to
24
+ sales, subscriptions, licensing, advertising, donations tied to a product,
25
+ grants, or investment proceeds applied to commercial operations.
26
+
27
+ "Product" means a single software application, website, or service
28
+ developed by You that incorporates the Software.
29
+
30
+ 2. Grant of License (Community)
31
+
32
+ Subject to Your full and ongoing compliance with this license, Licensor
33
+ grants You a worldwide, royalty-free, non-exclusive, non-transferable,
34
+ revocable license to use, copy, modify, merge, publish, and distribute the
35
+ Software, and to incorporate the Software into Your Product, for as long as
36
+ You and Your Product generate ZERO Revenue (pre-revenue use).
37
+
38
+ This Community grant permits an unlimited number of Users per Product.
39
+
40
+ 3. Revenue Limitation (the condition that makes this not MIT)
41
+
42
+ The Community grant in Section 2 is available ONLY while You and Your
43
+ Product have zero Revenue. If You or Your Product generate ANY Revenue
44
+ whatsoever, the Community grant immediately terminates, and continued use
45
+ of the Software requires a paid Pro or Enterprise license under the
46
+ End-User License Agreement (EULA) distributed with the Software (EULA.txt)
47
+ and described at https://www.simple-table.com/pricing.
48
+
49
+ For the avoidance of doubt: the broad permissions in Section 2 do not
50
+ authorize any use by a revenue-generating person, product, or
51
+ organization. Such use is governed exclusively by the EULA.
52
+
53
+ 4. Conditions
54
+
55
+ The above copyright notice, this permission notice, and the Revenue
56
+ Limitation in Section 3 shall be included in all copies or substantial
57
+ portions of the Software. You may not remove or alter any proprietary
58
+ notices contained in the Software.
59
+
60
+ 5. Commercial Use
61
+
62
+ Commercial use by any revenue-generating person, product, or organization
63
+ requires a Pro or Enterprise license. See EULA.txt and
64
+ https://www.simple-table.com/pricing for complete terms and pricing.
65
+
66
+ 6. Termination
67
+
68
+ Any use outside the scope of the Community grant, including use after You
69
+ or Your Product begin generating Revenue without obtaining a Pro or
70
+ Enterprise license, automatically terminates the rights granted under this
71
+ license. Upon termination of the Community grant You must either obtain a
72
+ paid license or cease all use of the Software and destroy all copies.
73
+
74
+ 7. Disclaimer of Warranty and Limitation of Liability
75
+
76
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
77
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
78
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
79
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
80
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
81
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
82
+ DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -129,7 +129,7 @@ Simple, transparent pricing that never changes based on your revenue or team siz
129
129
 
130
130
  **$0/forever**
131
131
 
132
- For side projects and pre-revenue teams. Unlimited users per product license with full access to all core features, built-in themes, TypeScript support, and the MIT License for **zero-revenue** companies only. If your company generates revenue, use Pro or Enterprise.
132
+ For side projects and pre-revenue teams. Unlimited users per product license with full access to all core features, built-in themes, TypeScript support, and the Simple Table Community License for **zero-revenue** companies only. If your company generates revenue, use Pro or Enterprise.
133
133
 
134
134
  ### PRO - For Growing Businesses
135
135
 
@@ -156,7 +156,7 @@ Join our growing community to ask questions or share feedback:
156
156
 
157
157
  **Dual Licensed:**
158
158
 
159
- - **Free Tier**: MIT License for zero-revenue individuals, startups, and organizations — see [LICENSE](LICENSE)
159
+ - **Free Tier**: Simple Table Community License (source-available) for zero-revenue individuals, startups, and organizations — see [LICENSE](LICENSE)
160
160
  - **Pro and Enterprise**: Commercial EULA for revenue-generating companies — see [EULA.txt](../core/EULA.txt)
161
161
 
162
162
  By using Simple Table, you agree to the terms in [EULA.txt](../core/EULA.txt) where applicable.
@@ -3,12 +3,6 @@ export type SectionPaneRole = "sticky" | "scrollbar" | "header" | "body";
3
3
  export interface SectionScrollControllerConfig {
4
4
  /** Heavy body virtualization. Throttled to every {@link VIRTUALIZATION_THRESHOLD_PX}px. */
5
5
  onMainSectionScrollLeft?: (scrollLeft: number) => void;
6
- /**
7
- * Lightweight header re-render, run on every main-section scroll frame (not throttled) so the
8
- * header tracks the body fluidly during momentum. Re-rendering only the (few) header cells each
9
- * frame avoids the stepwise "stagger" that throttled header virtualization produces.
10
- */
11
- onMainSectionHeaderFrame?: (scrollLeft: number) => void;
12
6
  }
13
7
  /**
14
8
  * Single controller for horizontal scroll sync across all four panes per section:
@@ -20,6 +14,8 @@ export declare class SectionScrollController {
20
14
  private scrollLeftBySection;
21
15
  private panesBySection;
22
16
  private scrollHandlers;
17
+ /** Non-passive touchmove handlers on header panes that cancel iOS touch scrolling. */
18
+ private headerTouchMoveHandlers;
23
19
  private config;
24
20
  /** Guard to avoid re-entrancy when we programmatically set scrollLeft on other panes */
25
21
  private isSyncing;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-table/react",
3
- "version": "3.7.1",
3
+ "version": "3.7.3",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "dist/types/react/src/index.d.ts",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "./styles.css": "./dist/styles.css"
18
18
  },
19
- "license": "MIT",
19
+ "license": "SEE LICENSE IN LICENSE",
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
@@ -29,7 +29,7 @@
29
29
  "react-dom": ">=18.0.0"
30
30
  },
31
31
  "dependencies": {
32
- "simple-table-core": "3.7.1"
32
+ "simple-table-core": "3.7.3"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@rollup/plugin-alias": "^4.0.4",
@@ -89,7 +89,6 @@
89
89
  "kendo react grid alternative",
90
90
  "react-data-grid alternative",
91
91
  "free react data grid",
92
- "mit react data grid",
93
92
  "typescript data grid"
94
93
  ],
95
94
  "scripts": {