dromo-uploader-js 2.1.11 → 2.3.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.
@@ -401,6 +401,7 @@ export type IDeveloperStyleOverrides = {
401
401
  borderWidth?: string;
402
402
  borderColor?: string;
403
403
  borderStyle?: string;
404
+ backdropBlur?: boolean;
404
405
  };
405
406
  primaryButton?: {
406
407
  borderRadius?: string;
@@ -437,6 +438,9 @@ export type IDeveloperStyleOverrides = {
437
438
  backgroundColor?: string;
438
439
  color?: string;
439
440
  outline?: string;
441
+ activeBorderColor?: string;
442
+ acceptBorderColor?: string;
443
+ rejectBorderColor?: string;
440
444
  };
441
445
  helpText?: {
442
446
  textColor?: string;
@@ -455,6 +459,58 @@ export type IDeveloperStyleOverrides = {
455
459
  };
456
460
  dataTable?: {
457
461
  headerFontWeight?: string;
462
+ headerBackgroundColor?: string;
463
+ headerTextColor?: string;
464
+ rowHeaderBackgroundColor?: string;
465
+ rowHeaderTextColor?: string;
466
+ cornerHeaderBackgroundColor?: string;
467
+ cellSelectionBorderColor?: string;
468
+ cellSelectionBackgroundColor?: string;
469
+ accentColor?: string;
470
+ headerActiveBackgroundColor?: string;
471
+ headerActiveTextColor?: string;
472
+ headerHighlightedBackgroundColor?: string;
473
+ headerHighlightedTextColor?: string;
474
+ cellBackgroundColor?: string;
475
+ cellTextColor?: string;
476
+ cellHoverBackgroundColor?: string;
477
+ cellHoverTextColor?: string;
478
+ oddRowBackgroundColor?: string;
479
+ rowSelectedBackgroundColor?: string;
480
+ rowSelectedBorderColor?: string;
481
+ borderColor?: string;
482
+ dividerColor?: string;
483
+ errorCellBackgroundColor?: string;
484
+ errorCellHoverBackgroundColor?: string;
485
+ warningCellBackgroundColor?: string;
486
+ warningCellHoverBackgroundColor?: string;
487
+ infoCellBackgroundColor?: string;
488
+ infoCellHoverBackgroundColor?: string;
489
+ readOnlyCellBackgroundColor?: string;
490
+ readOnlyCellTextColor?: string;
491
+ };
492
+ modalOverlay?: {
493
+ backgroundColor?: string;
494
+ opacity?: string;
495
+ };
496
+ card?: {
497
+ backgroundColor?: string;
498
+ containerBackgroundColor?: string;
499
+ borderColor?: string;
500
+ borderWidth?: string;
501
+ borderRadius?: string;
502
+ textColor?: string;
503
+ expandedBackgroundColor?: string;
504
+ iconColor?: string;
505
+ };
506
+ dropdown?: {
507
+ backgroundColor?: string;
508
+ borderColor?: string;
509
+ textColor?: string;
510
+ errorBorderColor?: string;
511
+ menuBackgroundColor?: string;
512
+ optionHoverBackgroundColor?: string;
513
+ optionSelectedBackgroundColor?: string;
458
514
  };
459
515
  };
460
516
  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";
@@ -490,6 +546,7 @@ export type IDeveloperSettings = {
490
546
  helpText?: string | null;
491
547
  sheetOverride?: string | null;
492
548
  sheetSelectionHelpText?: string | null;
549
+ templateDownloadOverrideURL?: string | null;
493
550
  };
494
551
  matchingStep?: {
495
552
  helpText?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.1.11",
3
+ "version": "2.3.0",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",