@unissey-web/web-components 3.8.3-rc.2 → 3.8.3-rc.4
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/full-capture.js +1 -1
- package/dist/index.js +2 -2
- package/dist/picture-recorder.js +1 -1
- package/dist/reference-capture.js +1 -1
- package/dist/selfie-capture.js +1 -1
- package/dist/{video-recorder-80590598.js → video-recorder-b705e365.js} +11 -4
- package/dist/video-recorder.js +1 -1
- package/package.json +1 -1
package/dist/full-capture.js
CHANGED
|
@@ -3,7 +3,7 @@ import { selfieCaptureStrings } from './selfie-capture.js';
|
|
|
3
3
|
import { referenceCaptureStrings } from './reference-capture.js';
|
|
4
4
|
import './button.js';
|
|
5
5
|
import './en-e76ed5a0.js';
|
|
6
|
-
import './video-recorder-
|
|
6
|
+
import './video-recorder-b705e365.js';
|
|
7
7
|
import './variables-09a3e162.js';
|
|
8
8
|
import './video-record-directions.js';
|
|
9
9
|
import './direction-card-f55e1936.js';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { Button } from './button.js';
|
|
2
|
-
import { R as Recorder } from './video-recorder-
|
|
3
|
-
export { C as CameraVideoOutlinedIcon, O as OverlayHints } from './video-recorder-
|
|
2
|
+
import { R as Recorder } from './video-recorder-b705e365.js';
|
|
3
|
+
export { C as CameraVideoOutlinedIcon, O as OverlayHints } from './video-recorder-b705e365.js';
|
|
4
4
|
export { VideoRecordDirections } from './video-record-directions.js';
|
|
5
5
|
export { PictureRecorder } from './picture-recorder.js';
|
|
6
6
|
export { PictureEditor } from './picture-editor.js';
|
package/dist/picture-recorder.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { _ as _inherits, a as _createClass, x, d as _taggedTemplateLiteral, s, b as _classCallCheck, c as _callSuper, e as _objectSpread2 } from './lit-element-ac3d3a27.js';
|
|
2
2
|
import { E as EN } from './en-e76ed5a0.js';
|
|
3
|
-
import { R as Recorder, b as buildPacked } from './video-recorder-
|
|
3
|
+
import { R as Recorder, b as buildPacked } from './video-recorder-b705e365.js';
|
|
4
4
|
import './variables-09a3e162.js';
|
|
5
5
|
import './button.js';
|
|
6
6
|
|
|
@@ -3,7 +3,7 @@ import './button.js';
|
|
|
3
3
|
import './image-capture-directions.js';
|
|
4
4
|
import './file-upload.js';
|
|
5
5
|
import './picture-recorder.js';
|
|
6
|
-
import { b as buildPacked } from './video-recorder-
|
|
6
|
+
import { b as buildPacked } from './video-recorder-b705e365.js';
|
|
7
7
|
import { E as EN } from './en-e76ed5a0.js';
|
|
8
8
|
import { c as referenceCaptureVars } from './variables-09a3e162.js';
|
|
9
9
|
import './direction-card-f55e1936.js';
|
package/dist/selfie-capture.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { _ as _inherits, a as _createClass, x, d as _taggedTemplateLiteral, s, b as _classCallCheck, c as _callSuper, i } from './lit-element-ac3d3a27.js';
|
|
2
2
|
import { E as EN } from './en-e76ed5a0.js';
|
|
3
|
-
import { b as buildPacked } from './video-recorder-
|
|
3
|
+
import { b as buildPacked } from './video-recorder-b705e365.js';
|
|
4
4
|
import './video-record-directions.js';
|
|
5
5
|
import './button.js';
|
|
6
6
|
import { s as selfieCaptureVars } from './variables-09a3e162.js';
|
|
@@ -4,7 +4,7 @@ import { E as EN } from './en-e76ed5a0.js';
|
|
|
4
4
|
import './button.js';
|
|
5
5
|
|
|
6
6
|
var name = "@unissey-web/web-components";
|
|
7
|
-
var version = "3.8.3-rc.
|
|
7
|
+
var version = "3.8.3-rc.4";
|
|
8
8
|
var description = "";
|
|
9
9
|
var module = "./dist/index.js";
|
|
10
10
|
var typings = "./dist/index.d.ts";
|
|
@@ -649,6 +649,8 @@ var Recorder = /*#__PURE__*/function (_LitElement) {
|
|
|
649
649
|
var _this$shadowRoot4;
|
|
650
650
|
var video = (_this$shadowRoot4 = this.shadowRoot) === null || _this$shadowRoot4 === void 0 ? void 0 : _this$shadowRoot4.getElementById("vid");
|
|
651
651
|
video.addEventListener("resize", this.adjustContainerSize.bind(this));
|
|
652
|
+
console.log("First Updated:", this.disableDebugMode);
|
|
653
|
+
buildPacked.exports.UnisseySdk.hkdb = !this.disableDebugMode;
|
|
652
654
|
}
|
|
653
655
|
}, {
|
|
654
656
|
key: "updated",
|
|
@@ -657,8 +659,13 @@ var Recorder = /*#__PURE__*/function (_LitElement) {
|
|
|
657
659
|
var configChanged = _changedProperties.has("config");
|
|
658
660
|
var faceCheckerChanged = _changedProperties.has("faceChecker");
|
|
659
661
|
var instructionsChanged = _changedProperties.has("instructionMessages");
|
|
660
|
-
var debuggerChanged = _changedProperties.has("
|
|
661
|
-
if (debuggerChanged)
|
|
662
|
+
var debuggerChanged = _changedProperties.has("disableDebugMode");
|
|
663
|
+
if (debuggerChanged) {
|
|
664
|
+
buildPacked.exports.UnisseySdk.hkdb = !this.disableDebugMode;
|
|
665
|
+
console.log("Updated:", this.disableDebugMode);
|
|
666
|
+
this.releaseSdkJs();
|
|
667
|
+
this.initSdkJs();
|
|
668
|
+
}
|
|
662
669
|
|
|
663
670
|
// The sdk is initialized only if it is the first rendering or if one of the following attributes changes: preset or config
|
|
664
671
|
var shouldInitSdk = presetChanged || configChanged || instructionsChanged || faceCheckerChanged;
|
|
@@ -703,7 +710,7 @@ var Recorder = /*#__PURE__*/function (_LitElement) {
|
|
|
703
710
|
value: function initSdkJs() {
|
|
704
711
|
buildPacked.exports.UnisseySdk.setLogLevel(this.logLevel);
|
|
705
712
|
// This property is used to disable the debugger
|
|
706
|
-
console.log(this.disableDebugMode);
|
|
713
|
+
console.log("Init SDKJS:", this.disableDebugMode);
|
|
707
714
|
buildPacked.exports.UnisseySdk.hkdb = !this.disableDebugMode;
|
|
708
715
|
var sdkEmitter = buildPacked.exports.UnisseySdk.getReferenceToEventEmitter();
|
|
709
716
|
sdkEmitter.on(buildPacked.exports.AcquisitionEvent.ISSUE, this.sdkJsListener_issue);
|
package/dist/video-recorder.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import './lit-element-ac3d3a27.js';
|
|
2
|
-
export { R as Recorder, V as VideoRecorder } from './video-recorder-
|
|
2
|
+
export { R as Recorder, V as VideoRecorder } from './video-recorder-b705e365.js';
|
|
3
3
|
import './button.js';
|
|
4
4
|
import './en-e76ed5a0.js';
|
|
5
5
|
import './variables-09a3e162.js';
|