@updog/data-editor-wc 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.
Files changed (5) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +25 -3
  3. package/index.d.ts +251 -652
  4. package/index.js +5309 -5082
  5. package/package.json +11 -3
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2026 Mikhail Kutateladze. All rights reserved.
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" Mikhail Kutateladze, the copyright holder of the Software.
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,10 +1,18 @@
1
1
  # @updog/data-editor-wc
2
2
 
3
- Client-side data importer and spreadsheet editor SDK, shipped as a Web Component. Your users import files, match columns to your schema, fix errors, and submit clean data. Edits happen inline, in the browser, at 1M+ rows.
3
+ Client-side CSV importer and spreadsheet editor SDK, shipped as a Web Component for Vue, Angular, Svelte, and vanilla JS. 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
- Framework-agnostic works with vanilla JS, Angular, Vue, Svelte, or any framework that renders HTML.
5
+ ## What is @updog/data-editor-wc
6
6
 
7
- > **Using React?** Use the first-class React SDK instead [`@updog/data-editor`](https://www.npmjs.com/package/@updog/data-editor) for typed props, hooks-friendly integration, and a smaller bundle (shares your app's React).
7
+ @updog/data-editor-wc is a commercial Web Component that embeds a complete data import wizard and spreadsheet editor into any frontend stack. Same engine as the React SDK; framework-agnostic packaging.
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
+ > **Using React?** The same SDK ships as a first-class React component — [`@updog/data-editor`](https://www.npmjs.com/package/@updog/data-editor) — with typed props, hooks-friendly integration, and a smaller bundle (shares your app's React).
8
16
 
9
17
  ## Requirements
10
18
 
@@ -467,6 +475,20 @@ npm install @updog/data-editor
467
475
 
468
476
  See [@updog/data-editor](https://www.npmjs.com/package/@updog/data-editor).
469
477
 
478
+ ## FAQ
479
+
480
+ **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.
481
+
482
+ **Which frameworks does the Web Component support?** Vue, Angular, Svelte, vanilla JS, and any other framework that renders HTML. For React, install `@updog/data-editor` instead.
483
+
484
+ **Is there a row limit?** No hard cap. The grid is engineered for 1M+ rows using canvas rendering and virtual scrolling.
485
+
486
+ **Are there per-import or per-row fees?** No. Pricing is flat per production domain. See [updog.tech/#pricing](https://updog.tech/#pricing).
487
+
488
+ **Can I white-label?** Yes, on every plan including the free tier. Strip all Updog branding via CSS theming.
489
+
490
+ **Which file formats are supported?** CSV, Excel (XLSX), TSV, JSON, and XML on both import and export.
491
+
470
492
  ## License
471
493
 
472
494
  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 bundled with this package are listed in `THIRD_PARTY_NOTICES.txt`.