@updog/data-editor-wc 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.
Files changed (3) hide show
  1. package/index.d.ts +7 -0
  2. package/index.js +5116 -5064
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -522,6 +522,8 @@ declare var export_default = {
522
522
  showSampleValues: "Show example values from {{column}}",
523
523
  unmatchedWarning:
524
524
  "Unmatched columns won't be imported. Match this column to keep the data. You can transform columns after importing.",
525
+ unmatchedWarningWithRowHook:
526
+ "The import can read this column without a match. If you match it, the import may still change the values.",
525
527
  },
526
528
  sheetPreview: {
527
529
  cancel: "Cancel processing",
@@ -859,6 +861,11 @@ type DataEditorColumn = {
859
861
  editor?: CellEditor;
860
862
  /** Adds a filter control for this column in the sidebar Filters panel. */
861
863
  filter?: ColumnFilter;
864
+ /**
865
+ * Whether this column is offered as a target on the column-matching step.
866
+ * Set false for fields your `onRowImport` callback fills. @default true
867
+ */
868
+ mappable?: boolean;
862
869
  /**
863
870
  * Whether this column can be pinned to the left (right in RTL) via the
864
871
  * header context menu. @default true