@updog/data-editor 0.1.10 → 0.1.12
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 +2 -2
- package/README.md +24 -2
- package/index.d.ts +1792 -1787
- package/index.js +2678 -2450
- package/package.json +10 -3
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c) 2026
|
|
1
|
+
Copyright (c) 2026 Updog Software Solutions FZCO. All rights reserved.
|
|
2
2
|
|
|
3
3
|
================================================================================
|
|
4
4
|
UPDOG SDK — COMMERCIAL LICENSE
|
|
@@ -9,7 +9,7 @@ Copyright (c) 2026 Mikhail Kutateladze. All rights reserved.
|
|
|
9
9
|
1. DEFINITIONS
|
|
10
10
|
--------------------------------------------------------------------------------
|
|
11
11
|
|
|
12
|
-
"Licensor"
|
|
12
|
+
"Licensor" Updog Software Solutions FZCO, the copyright holder of the Software.
|
|
13
13
|
|
|
14
14
|
"Software" The Updog SDK, including all source code, compiled artifacts,
|
|
15
15
|
documentation, and associated files distributed as an npm
|
package/README.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# @updog/data-editor
|
|
2
2
|
|
|
3
|
-
Client-side
|
|
3
|
+
Client-side CSV importer and spreadsheet editor SDK for React. Your users import files, match columns to your schema, fix errors, and submit clean data. Edits happen inline, in the browser, at 1M+ rows.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## What is @updog/data-editor
|
|
6
|
+
|
|
7
|
+
@updog/data-editor is a commercial React SDK that embeds a complete data import wizard and spreadsheet editor into your application.
|
|
8
|
+
|
|
9
|
+
- **Import** CSV, Excel (XLSX), TSV, JSON, and XML — column auto-matching, value mapping, multi-source merging, validation
|
|
10
|
+
- **Edit** 1M+ rows with undo/redo, find & replace, copy/paste, fill handle, sorting, filtering, and bulk transforms
|
|
11
|
+
- **Submit** clean data through a single onComplete callback, classified into insert / update / delete
|
|
12
|
+
|
|
13
|
+
Everything runs client-side. Files are parsed, validated, and edited in the user's browser — no upload server, no data residency, no DPA required.
|
|
14
|
+
|
|
15
|
+
> **Not on React?** The same SDK ships as a framework-agnostic Web Component — [`@updog/data-editor-wc`](https://www.npmjs.com/package/@updog/data-editor-wc) — for Vue, Angular, Svelte, or vanilla JS.
|
|
6
16
|
|
|
7
17
|
## Requirements
|
|
8
18
|
|
|
@@ -388,6 +398,18 @@ npm install @updog/data-editor-wc
|
|
|
388
398
|
|
|
389
399
|
See [@updog/data-editor-wc](https://www.npmjs.com/package/@updog/data-editor-wc).
|
|
390
400
|
|
|
401
|
+
## FAQ
|
|
402
|
+
|
|
403
|
+
**Does my user's data leave the browser?** No. Parsing, validation, mapping, and editing all run client-side. Your code controls when (and whether) data is submitted to your own backend.
|
|
404
|
+
|
|
405
|
+
**Is there a row limit?** No hard cap. The grid is engineered for 1M+ rows using canvas rendering and virtual scrolling.
|
|
406
|
+
|
|
407
|
+
**Are there per-import or per-row fees?** No. Pricing is flat per production domain. See [updog.tech/#pricing](https://updog.tech/#pricing).
|
|
408
|
+
|
|
409
|
+
**Can I white-label?** Yes, on every plan including the free tier. Strip all Updog branding via CSS theming.
|
|
410
|
+
|
|
411
|
+
**Which file formats are supported?** CSV, Excel (XLSX), TSV, JSON, and XML on both import and export.
|
|
412
|
+
|
|
391
413
|
## License
|
|
392
414
|
|
|
393
415
|
Commercial — see [LICENSE](./LICENSE) for the full terms of the Updog SDK Commercial License v1.0. Contact `admin@updog.tech` for enterprise licensing. Third-party dependencies are listed in `THIRD_PARTY_NOTICES.txt`.
|