@regulaforensics/idv-gui 3.6.427-nightly → 3.6.430-nightly
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/index.d.ts +6 -1
- package/dist/main.iife.js +3 -3
- package/dist/main.js +1968 -1938
- package/dist/main.umd.cjs +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -249,6 +249,7 @@ export declare const PopupReason: {
|
|
|
249
249
|
readonly APP_DENIED: "app_denied";
|
|
250
250
|
readonly SYSTEM_RESTRICTED: "system_restricted";
|
|
251
251
|
readonly FILES_NOT_SELECTED: "files_not_selected";
|
|
252
|
+
readonly FILES_LIMIT_EXCEEDED: "files_limit_exceeded";
|
|
252
253
|
};
|
|
253
254
|
|
|
254
255
|
export declare type PopupReason = (typeof PopupReason)[keyof typeof PopupReason];
|
|
@@ -459,6 +460,10 @@ declare const UIElementTypes: {
|
|
|
459
460
|
readonly SPACER: "spacer";
|
|
460
461
|
};
|
|
461
462
|
|
|
463
|
+
declare type UIFileUploadPopupFilesLimitExceededOnly = UIPopup & {
|
|
464
|
+
reason: typeof PopupReason.FILES_LIMIT_EXCEEDED;
|
|
465
|
+
};
|
|
466
|
+
|
|
462
467
|
declare type UIFileUploadPopupNoFilesOnly = UIPopup & {
|
|
463
468
|
reason: typeof PopupReason.FILES_NOT_SELECTED;
|
|
464
469
|
};
|
|
@@ -706,7 +711,7 @@ declare type UIUploadFilesScreenClientConfig = {
|
|
|
706
711
|
buttons?: UIButton[];
|
|
707
712
|
footer?: UIInfoFooterView;
|
|
708
713
|
backgroundColor?: string;
|
|
709
|
-
popups?: [UIFileUploadPopupNoFilesOnly];
|
|
714
|
+
popups?: [UIFileUploadPopupNoFilesOnly, UIFileUploadPopupFilesLimitExceededOnly];
|
|
710
715
|
settings: {
|
|
711
716
|
supportedFileFormats: string[];
|
|
712
717
|
fileMaxSize: number;
|