dromo-uploader-js 2.0.21 → 2.0.23
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.
- package/dist/interfaces.d.ts +2 -0
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -462,6 +462,7 @@ export type IDeveloperSettings = {
|
|
|
462
462
|
title?: string | undefined;
|
|
463
463
|
allowInvalidSubmit?: boolean | undefined;
|
|
464
464
|
invalidDataBehavior?: ("BLOCK_SUBMIT" | "INCLUDE_INVALID_ROWS" | "REMOVE_INVALID_ROWS") | undefined;
|
|
465
|
+
allowEmptySubmit?: boolean;
|
|
465
466
|
backendSync?: boolean | undefined;
|
|
466
467
|
backendSyncMode?: ("DISABLED" | "FULL_DATA" | "MAPPINGS_ONLY") | undefined;
|
|
467
468
|
manualInputDisabled?: boolean | undefined;
|
|
@@ -478,6 +479,7 @@ export type IDeveloperSettings = {
|
|
|
478
479
|
initialData?: ({
|
|
479
480
|
[x: string]: any;
|
|
480
481
|
}[] | any[][]) | null;
|
|
482
|
+
initialFile?: any | null;
|
|
481
483
|
uploadStep?: {
|
|
482
484
|
helpText?: string | null;
|
|
483
485
|
sheetOverride?: string | null;
|