@updog/data-editor 0.1.90 → 0.1.92
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/index.d.ts +7 -0
- package/index.js +2828 -2776
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -524,6 +524,8 @@ declare var export_default = {
|
|
|
524
524
|
showSampleValues: "Show example values from {{column}}",
|
|
525
525
|
unmatchedWarning:
|
|
526
526
|
"Unmatched columns won't be imported. Match this column to keep the data. You can transform columns after importing.",
|
|
527
|
+
unmatchedWarningWithRowHook:
|
|
528
|
+
"The import can read this column without a match. If you match it, the import may still change the values.",
|
|
527
529
|
},
|
|
528
530
|
sheetPreview: {
|
|
529
531
|
cancel: "Cancel processing",
|
|
@@ -953,6 +955,11 @@ type DataEditorColumn = {
|
|
|
953
955
|
editor?: CellEditor;
|
|
954
956
|
/** Adds a filter control for this column in the sidebar Filters panel. */
|
|
955
957
|
filter?: ColumnFilter;
|
|
958
|
+
/**
|
|
959
|
+
* Whether this column is offered as a target on the column-matching step.
|
|
960
|
+
* Set false for fields your `onRowImport` callback fills. @default true
|
|
961
|
+
*/
|
|
962
|
+
mappable?: boolean;
|
|
956
963
|
/**
|
|
957
964
|
* Whether this column can be pinned to the left (right in RTL) via the
|
|
958
965
|
* header context menu. @default true
|