easyproctor-hml 0.0.21 → 0.0.22
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/esm/index.js +13 -3
- package/index.js +13 -3
- package/package.json +1 -1
- package/unpkg/easyproctor.min.js +30 -20
package/esm/index.js
CHANGED
|
@@ -24666,13 +24666,13 @@ var CapturePhoto = class {
|
|
|
24666
24666
|
const styles = `
|
|
24667
24667
|
.facial-biometry__mask {
|
|
24668
24668
|
mask-image: url('https://iarisprod.blob.core.windows.net/imagens/square.svg'), url('https://iarisprod.blob.core.windows.net/imagens/face-mask.svg');
|
|
24669
|
-
mask-size: cover, auto
|
|
24669
|
+
mask-size: cover, auto 100%;
|
|
24670
24670
|
mask-repeat: no-repeat;
|
|
24671
24671
|
mask-position: center, center;
|
|
24672
24672
|
mask-composite: subtract;
|
|
24673
24673
|
|
|
24674
24674
|
-webkit-mask-image: url('https://iarisprod.blob.core.windows.net/imagens/square.svg'), url('https://iarisprod.blob.core.windows.net/imagens/face-mask.svg');
|
|
24675
|
-
-webkit-mask-size: cover, auto
|
|
24675
|
+
-webkit-mask-size: cover, auto 100%;
|
|
24676
24676
|
-webkit-mask-repeat: no-repeat;
|
|
24677
24677
|
-webkit-mask-position: center, center;
|
|
24678
24678
|
-webkit-mask-composite: source-out;
|
|
@@ -24680,7 +24680,17 @@ var CapturePhoto = class {
|
|
|
24680
24680
|
|
|
24681
24681
|
.biometry__frame {
|
|
24682
24682
|
background: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg") no-repeat center;
|
|
24683
|
-
background-size:
|
|
24683
|
+
background-size: auto 100%;
|
|
24684
|
+
|
|
24685
|
+
// mask-image: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg");
|
|
24686
|
+
// mask-size: auto 100%;
|
|
24687
|
+
// mask-position: center;
|
|
24688
|
+
// mask-repeat: no-repeat;
|
|
24689
|
+
|
|
24690
|
+
// -webkit-mask-image: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg");
|
|
24691
|
+
// -webkit-mask-size: auto 100%;
|
|
24692
|
+
// -webkit-mask-position: center;
|
|
24693
|
+
// -webkit-mask-repeat: no-repeat;
|
|
24684
24694
|
}
|
|
24685
24695
|
`;
|
|
24686
24696
|
const styleSheet = document.createElement("style");
|
package/index.js
CHANGED
|
@@ -36200,13 +36200,13 @@ var CapturePhoto = class {
|
|
|
36200
36200
|
const styles = `
|
|
36201
36201
|
.facial-biometry__mask {
|
|
36202
36202
|
mask-image: url('https://iarisprod.blob.core.windows.net/imagens/square.svg'), url('https://iarisprod.blob.core.windows.net/imagens/face-mask.svg');
|
|
36203
|
-
mask-size: cover, auto
|
|
36203
|
+
mask-size: cover, auto 100%;
|
|
36204
36204
|
mask-repeat: no-repeat;
|
|
36205
36205
|
mask-position: center, center;
|
|
36206
36206
|
mask-composite: subtract;
|
|
36207
36207
|
|
|
36208
36208
|
-webkit-mask-image: url('https://iarisprod.blob.core.windows.net/imagens/square.svg'), url('https://iarisprod.blob.core.windows.net/imagens/face-mask.svg');
|
|
36209
|
-
-webkit-mask-size: cover, auto
|
|
36209
|
+
-webkit-mask-size: cover, auto 100%;
|
|
36210
36210
|
-webkit-mask-repeat: no-repeat;
|
|
36211
36211
|
-webkit-mask-position: center, center;
|
|
36212
36212
|
-webkit-mask-composite: source-out;
|
|
@@ -36214,7 +36214,17 @@ var CapturePhoto = class {
|
|
|
36214
36214
|
|
|
36215
36215
|
.biometry__frame {
|
|
36216
36216
|
background: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg") no-repeat center;
|
|
36217
|
-
background-size:
|
|
36217
|
+
background-size: auto 100%;
|
|
36218
|
+
|
|
36219
|
+
// mask-image: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg");
|
|
36220
|
+
// mask-size: auto 100%;
|
|
36221
|
+
// mask-position: center;
|
|
36222
|
+
// mask-repeat: no-repeat;
|
|
36223
|
+
|
|
36224
|
+
// -webkit-mask-image: url("https://iarisprod.blob.core.windows.net/imagens/face-frame.svg");
|
|
36225
|
+
// -webkit-mask-size: auto 100%;
|
|
36226
|
+
// -webkit-mask-position: center;
|
|
36227
|
+
// -webkit-mask-repeat: no-repeat;
|
|
36218
36228
|
}
|
|
36219
36229
|
`;
|
|
36220
36230
|
const styleSheet = document.createElement("style");
|