dromo-uploader-js 2.11.0 → 2.13.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 = {
@@ -599,6 +606,7 @@ export type IDeveloperSettings = {
599
606
  highlightAutoFixes?: boolean;
600
607
  autoCreateUnmappedColumns?: boolean;
601
608
  enableNavigatingErrors?: boolean;
609
+ transformDataPrompts?: string[] | null;
602
610
  };
603
611
  autoMapHeaders?: boolean;
604
612
  delimiter?: string | undefined;
@@ -621,6 +629,7 @@ export type IDeveloperSettings = {
621
629
  } | undefined;
622
630
  savePartialSession?: boolean;
623
631
  sessionId?: string | null;
632
+ hydrationId?: string | null;
624
633
  };
625
634
  export type IUser = {
626
635
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dromo-uploader-js",
3
- "version": "2.11.0",
3
+ "version": "2.13.0",
4
4
  "description": "Easy to use data (CSV, TSV, Excel) importer",
5
5
  "author": "ankitgoyal100",
6
6
  "license": "MIT",
@@ -37,14 +37,25 @@
37
37
  "rollup": "^2.79.2",
38
38
  "cross-spawn": "^7.0.5",
39
39
  "lodash": "^4.17.24",
40
- "postcss": "^8.4.31",
41
- "webpack-dev-server": "^5.2.1",
42
- "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",
43
48
  "@eslint/eslintrc": {
44
49
  "ajv": "^6.14.0"
45
50
  },
46
51
  "yaml": "^1.10.3",
47
- "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"
48
59
  },
49
60
  "devDependencies": {
50
61
  "@rollup/plugin-babel": "^5.2.1",