@regulaforensics/idv-document 3.6.345-nightly → 3.6.347-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 CHANGED
@@ -134,13 +134,6 @@ declare type DocumentReaderProps = {
134
134
  resultStatusTextFontName?: string;
135
135
  activityIndicatorSize?: number;
136
136
  cameraPreviewBackgroundColor?: string;
137
- containerCloseButtonImage?: IdvAsset;
138
- menuFromCameraButtonImage?: IdvAsset;
139
- menuFromGalleryButtonImage?: IdvAsset;
140
- menuFromMobileButtonImage?: IdvAsset;
141
- closeButton?: IdvAsset;
142
- switchButton?: IdvAsset;
143
- infoTryAgainButtonImage?: IdvAsset;
144
137
  };
145
138
  copyright?: boolean;
146
139
  tag?: string;
@@ -150,7 +143,6 @@ declare type DocumentReaderProps = {
150
143
  locale?: string;
151
144
  backgroundColor?: string;
152
145
  stepType?: string;
153
- preloadAssetsRequired?: boolean;
154
146
  failedAssets?: FailedAssets;
155
147
  };
156
148
 
@@ -160,10 +152,6 @@ declare type FailedAssets = {
160
152
  blockingAssets: Set<string>;
161
153
  };
162
154
 
163
- declare type IdvAsset = {
164
- idvAsset: ImageLike;
165
- };
166
-
167
155
  declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
168
156
  isProcessing?: (isProcessing: boolean) => void;
169
157
  moduleProps: TModuleProps;
@@ -173,21 +161,6 @@ declare type IdvModuleProps<TModuleProps, TModulesConfig> = {
173
161
  nonce?: string;
174
162
  };
175
163
 
176
- declare type ImageBase = {
177
- imageURL?: string;
178
- imageId?: string;
179
- base64?: string;
180
- prepareRequired?: boolean;
181
- failurePolicy?: ImageFailurePolicy;
182
- timeout?: number;
183
- };
184
-
185
- declare type ImageFailurePolicy = 'ignore' | 'placeholderImage' | 'error';
186
-
187
- declare type ImageLike = ImageBase & {
188
- placeholderImage?: ImageLike;
189
- };
190
-
191
164
  export declare enum ModuleType {
192
165
  BarcodeMRZ = "BarcodeMRZ",
193
166
  BoundsLite = "BoundsLite"