dromo-uploader-js 2.10.4 → 2.12.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.
@@ -540,6 +540,13 @@ export type IDeveloperStyleOverrides = {
540
540
  optionHoverBackgroundColor?: string;
541
541
  optionSelectedBackgroundColor?: string;
542
542
  };
543
+ errorNavigator?: {
544
+ errorColor?: string;
545
+ warningColor?: string;
546
+ accentColor?: string;
547
+ errorIconUrl?: string | null;
548
+ warningIconUrl?: string | null;
549
+ };
543
550
  };
544
551
  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";
545
552
  export type IDeveloperSettings = {
@@ -598,6 +605,8 @@ export type IDeveloperSettings = {
598
605
  allowRemovingRows?: boolean;
599
606
  highlightAutoFixes?: boolean;
600
607
  autoCreateUnmappedColumns?: boolean;
608
+ enableNavigatingErrors?: boolean;
609
+ transformDataPrompts?: string[] | null;
601
610
  };
602
611
  autoMapHeaders?: boolean;
603
612
  delimiter?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.10.4",
3
+ "version": "2.12.0",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",
@@ -16,6 +16,7 @@
16
16
  "penpal": "^5.3.0"
17
17
  },
18
18
  "overrides": {
19
+ "fast-uri": "^3.1.2",
19
20
  "@babel/traverse": "^7.23.2",
20
21
  "loader-utils": "^1.4.2",
21
22
  "is-svg": "^4.3.2",
@@ -36,14 +37,25 @@
36
37
  "rollup": "^2.79.2",
37
38
  "cross-spawn": "^7.0.5",
38
39
  "lodash": "^4.17.24",
39
- "postcss": "^8.4.31",
40
- "webpack-dev-server": "^5.2.1",
41
- "qs": "^6.14.1",
40
+ "follow-redirects": "^1.15.12",
41
+ "postcss": "^8.5.10",
42
+ "qs": "6.15.2",
43
+ "tmp": "^0.2.7",
44
+ "uuid": ">=11.1.1",
45
+ "webpack-dev-server": "^5.2.4",
46
+ "http-proxy-middleware": "^3.0.7",
47
+ "ws": "^8.20.1",
42
48
  "@eslint/eslintrc": {
43
49
  "ajv": "^6.14.0"
44
50
  },
45
51
  "yaml": "^1.10.3",
46
- "brace-expansion": "^1.1.13"
52
+ "brace-expansion": "^1.1.13",
53
+ "js-yaml": "^4.2.0",
54
+ "launch-editor": "^2.14.1",
55
+ "@babel/core": "^7.29.7",
56
+ "@tootallnate/once": ">=2.0.1",
57
+ "form-data": "^4.0.6",
58
+ "shell-quote": "^1.8.4"
47
59
  },
48
60
  "devDependencies": {
49
61
  "@rollup/plugin-babel": "^5.2.1",