@regulaforensics/idv-document 3.6.342-nightly → 3.6.344-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 +2 -2
- package/dist/main.iife.js +2 -2
- package/dist/main.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -138,8 +138,8 @@ declare type DocumentReaderProps = {
|
|
|
138
138
|
menuFromCameraButtonImage?: IdvAsset;
|
|
139
139
|
menuFromGalleryButtonImage?: IdvAsset;
|
|
140
140
|
menuFromMobileButtonImage?: IdvAsset;
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
closeButton?: IdvAsset;
|
|
142
|
+
switchButton?: IdvAsset;
|
|
143
143
|
infoTryAgainButtonImage?: IdvAsset;
|
|
144
144
|
};
|
|
145
145
|
copyright?: boolean;
|
package/dist/main.iife.js
CHANGED
|
@@ -123,11 +123,11 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
123
123
|
document-reader::part(menu-from-mobile-button)::before {
|
|
124
124
|
background-image: url(${pt(i)});
|
|
125
125
|
}
|
|
126
|
-
`)}if(e!=null&&e.
|
|
126
|
+
`)}if(e!=null&&e.closeButton){const i=oi(e.closeButton,t,r);i&&n.push(ot`
|
|
127
127
|
document-reader::part(controls-process-close-button)::before {
|
|
128
128
|
background-image: url(${pt(i)});
|
|
129
129
|
}
|
|
130
|
-
`)}if(e!=null&&e.
|
|
130
|
+
`)}if(e!=null&&e.switchButton){const i=oi(e.switchButton,t,r);i&&n.push(ot`
|
|
131
131
|
document-reader::part(controls-change-camera-button)::before {
|
|
132
132
|
background-image: url(${pt(i)});
|
|
133
133
|
}
|
package/dist/main.js
CHANGED
|
@@ -21377,9 +21377,9 @@ let h2 = class extends Dn {
|
|
|
21377
21377
|
}
|
|
21378
21378
|
`);
|
|
21379
21379
|
}
|
|
21380
|
-
if (e != null && e.
|
|
21380
|
+
if (e != null && e.closeButton) {
|
|
21381
21381
|
const i = Mn(
|
|
21382
|
-
e.
|
|
21382
|
+
e.closeButton,
|
|
21383
21383
|
t,
|
|
21384
21384
|
r
|
|
21385
21385
|
);
|
|
@@ -21389,9 +21389,9 @@ let h2 = class extends Dn {
|
|
|
21389
21389
|
}
|
|
21390
21390
|
`);
|
|
21391
21391
|
}
|
|
21392
|
-
if (e != null && e.
|
|
21392
|
+
if (e != null && e.switchButton) {
|
|
21393
21393
|
const i = Mn(
|
|
21394
|
-
e.
|
|
21394
|
+
e.switchButton,
|
|
21395
21395
|
t,
|
|
21396
21396
|
r
|
|
21397
21397
|
);
|
package/package.json
CHANGED