dromo-uploader-js 2.0.19 → 2.0.21

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.
@@ -464,9 +464,10 @@ export type IDeveloperSettings = {
464
464
  invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS") | undefined;
465
465
  backendSync?: boolean | undefined;
466
466
  backendSyncMode?: ("DISABLED" | "FULL_DATA" | "MAPPINGS_ONLY") | undefined;
467
- manualInputDisabled?: boolean;
467
+ manualInputDisabled?: boolean | undefined;
468
468
  manualInputOnly?: boolean;
469
469
  allowCustomFields?: boolean;
470
+ passThroughUnmappedColumns?: boolean;
470
471
  maxRecords?: number | null;
471
472
  developmentMode?: boolean | undefined;
472
473
  displayEncoding?: boolean;
@@ -485,16 +486,18 @@ export type IDeveloperSettings = {
485
486
  helpText?: string | null;
486
487
  headerRowOverride?: number | null;
487
488
  fuzzyMatchHeaders?: boolean;
488
- alwaysMatchSelectFields?: boolean;
489
489
  matchToSchema?: boolean;
490
490
  };
491
491
  matchValuesStep?: {
492
492
  helpText?: string | null;
493
+ maxMappableSelectValues?: number;
493
494
  };
494
495
  reviewStep?: {
495
496
  helpText?: string | null;
496
497
  processingText?: string | null;
497
498
  enableUserTransformations?: boolean;
499
+ allowAddingRows?: boolean;
500
+ allowRemovingRows?: boolean;
498
501
  };
499
502
  autoMapHeaders?: boolean;
500
503
  delimiter?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.0.19",
3
+ "version": "2.0.21",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",