dromo-uploader-js 2.1.10 → 2.2.0

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.
@@ -235,6 +235,7 @@ export type IDateTimeField = {
235
235
  outputFormat?: string | undefined;
236
236
  locale?: string | undefined;
237
237
  withSeconds?: boolean | undefined;
238
+ autofix?: boolean | undefined;
238
239
  }
239
240
  ];
240
241
  };
@@ -400,6 +401,7 @@ export type IDeveloperStyleOverrides = {
400
401
  borderWidth?: string;
401
402
  borderColor?: string;
402
403
  borderStyle?: string;
404
+ backdropBlur?: boolean;
403
405
  };
404
406
  primaryButton?: {
405
407
  borderRadius?: string;
@@ -454,6 +456,22 @@ export type IDeveloperStyleOverrides = {
454
456
  };
455
457
  dataTable?: {
456
458
  headerFontWeight?: string;
459
+ headerBackgroundColor?: string;
460
+ headerTextColor?: string;
461
+ rowHeaderBackgroundColor?: string;
462
+ rowHeaderTextColor?: string;
463
+ cornerHeaderBackgroundColor?: string;
464
+ cellSelectionBorderColor?: string;
465
+ cellSelectionBackgroundColor?: string;
466
+ accentColor?: string;
467
+ headerActiveBackgroundColor?: string;
468
+ headerActiveTextColor?: string;
469
+ headerHighlightedBackgroundColor?: string;
470
+ headerHighlightedTextColor?: string;
471
+ };
472
+ modalOverlay?: {
473
+ backgroundColor?: string;
474
+ opacity?: string;
457
475
  };
458
476
  };
459
477
  export type TLocaleShorthand = "bn" | "en" | "hr" | "ja" | "nl" | "ru" | "uk" | "cs" | "es" | "hu" | "ko" | "no" | "sv" | "vi" | "da" | "fi" | "id" | "lt" | "pl" | "sw" | "zh_CN" | "de" | "fr" | "is" | "lv" | "pt" | "th" | "zh_TW" | "el" | "hi" | "it" | "ms" | "ro" | "tr";
@@ -489,6 +507,7 @@ export type IDeveloperSettings = {
489
507
  helpText?: string | null;
490
508
  sheetOverride?: string | null;
491
509
  sheetSelectionHelpText?: string | null;
510
+ templateDownloadOverrideURL?: string | null;
492
511
  };
493
512
  matchingStep?: {
494
513
  helpText?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.1.10",
3
+ "version": "2.2.0",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",