@monkvision/inspection-capture-web 5.3.4 → 5.3.6
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/lib/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUDSightTutorial/PhotoCaptureHUDSightTutorial.js +4 -4
- package/lib/VideoCapture/VideoCaptureHUD/VideoCaptureHUD.js +1 -1
- package/lib/VideoCapture/VideoCaptureHUD/VideoCaptureRecording/VideoCaptureRecording.d.ts +1 -1
- package/lib/VideoCapture/VideoCaptureHUD/VideoCaptureRecording/VideoCaptureRecording.js +2 -2
- package/lib/VideoCapture/VideoCaptureHUD/VideoCaptureRecording/VideoCaptureRecording.types.d.ts +4 -0
- package/lib/VideoCapture/VideoCapturePageLayout/VideoCapturePageLayout.types.d.ts +0 -1
- package/lib/hooks/useCaptureDuration.js +12 -22
- package/package.json +15 -15
|
@@ -13,9 +13,9 @@ var PhotoCaptureHUDSightTutorial_styles_1 = require("./PhotoCaptureHUDSightTutor
|
|
|
13
13
|
* This component displays the sight tutorial for a specific sight.
|
|
14
14
|
*/
|
|
15
15
|
function PhotoCaptureHUDSightTutorial(_a) {
|
|
16
|
-
var _b, _c, _d, _e;
|
|
17
|
-
var selectedSight = _a.selectedSight, sightTutorial = _a.sightTutorial,
|
|
18
|
-
var
|
|
16
|
+
var _b, _c, _d, _e, _f;
|
|
17
|
+
var selectedSight = _a.selectedSight, sightTutorial = _a.sightTutorial, _g = _a.onClose, onClose = _g === void 0 ? function () { } : _g, show = _a.show, enableSightTutorial = _a.enableSightTutorial;
|
|
18
|
+
var _h = (0, react_1.useState)(null), tutorialImage = _h[0], setTutorialImage = _h[1];
|
|
19
19
|
var i18n = (0, react_i18next_1.useTranslation)().i18n;
|
|
20
20
|
var t = (0, react_i18next_1.useTranslation)().t;
|
|
21
21
|
var style = (0, PhotoCaptureHUDSightTutorial_styles_1.usePhotoCaptureHUDSightTutorialStyles)(show, !!tutorialImage);
|
|
@@ -49,7 +49,7 @@ function PhotoCaptureHUDSightTutorial(_a) {
|
|
|
49
49
|
if (enableSightTutorial === types_1.PhotoCaptureSightTutorialOption.DISABLED) {
|
|
50
50
|
return null;
|
|
51
51
|
}
|
|
52
|
-
return ((0, jsx_runtime_1.jsxs)("div", { style: style.container, children: [(0, jsx_runtime_1.jsxs)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['iconsContainer'], children: [(0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['icon'], children: (0, jsx_runtime_1.jsx)(common_ui_web_1.
|
|
52
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: style.container, children: [(0, jsx_runtime_1.jsxs)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['iconsContainer'], children: [(0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['icon'], children: (0, jsx_runtime_1.jsx)(common_ui_web_1.VehicleWalkaroundIndicator, { size: 80, orientationAngle: (_b = selectedSight.positioning) === null || _b === void 0 ? void 0 : _b.orientation, alpha: (_d = (_c = selectedSight.positioning) === null || _c === void 0 ? void 0 : _c.position) !== null && _d !== void 0 ? _d : 0, distance: (_e = selectedSight.positioning) === null || _e === void 0 ? void 0 : _e.distance, showProgressBar: false }) }), (0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['icon'], children: (0, jsx_runtime_1.jsx)(common_ui_web_1.IconVerticalPosition, { size: 67, position: (_f = selectedSight.positioning) === null || _f === void 0 ? void 0 : _f.height, variant: IconVerticalPosition_types_1.IconVerticalPositionVariant.SECONDARY }) }), (0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['icon'], children: (0, jsx_runtime_1.jsx)(common_ui_web_1.SightOverlay, { style: PhotoCaptureHUDSightTutorial_styles_1.styles['sightIcon'], sight: selectedSight, getAttributes: style.sightIcon.getAttributes }) })] }), enableSightTutorial === types_1.PhotoCaptureSightTutorialOption.CLASSIC && ((0, jsx_runtime_1.jsxs)("div", { style: style.classicTutorialContainer, children: [(0, jsx_runtime_1.jsxs)("div", { style: style.classicTitleContainer, children: [(0, jsx_runtime_1.jsx)(common_ui_web_1.Button, { style: PhotoCaptureHUDSightTutorial_styles_1.styles['closeButtonFiller'], icon: 'close', variant: 'text' }), (0, jsx_runtime_1.jsx)("span", { style: PhotoCaptureHUDSightTutorial_styles_1.styles['classicTitle'], children: t('photo.hud.sightTutorial.tip').toUpperCase() }), (0, jsx_runtime_1.jsx)(common_ui_web_1.Button, { style: style.closeButton, primaryColor: 'text-black', icon: 'close', variant: 'text', onClick: onClose })] }), (0, jsx_runtime_1.jsx)("div", { style: style.classicGuidelineContainer, children: (0, jsx_runtime_1.jsx)("span", { style: style.classicGuideline, children: (tutorialGuideline === null || tutorialGuideline === void 0 ? void 0 : tutorialGuideline.length)
|
|
53
53
|
? tutorialGuideline
|
|
54
54
|
: t(tutorialImage
|
|
55
55
|
? 'photo.hud.sightTutorial.defaultTutorialWithImage'
|
|
@@ -140,5 +140,5 @@ function VideoCaptureHUD(_a) {
|
|
|
140
140
|
resumeRecording();
|
|
141
141
|
}
|
|
142
142
|
}, [fastMovementsWarning, pauseRecording, resumeRecording]);
|
|
143
|
-
return ((0, jsx_runtime_1.jsxs)("div", { style: VideoCaptureHUD_styles_1.styles['container'], children: [cameraPreview, (0, jsx_runtime_1.jsxs)("div", { style: VideoCaptureHUD_styles_1.styles['hudContainer'], children: [screen === VideoCaptureHUDScreen.RECORDING && ((0, jsx_runtime_1.jsx)(VideoCaptureRecording_1.VideoCaptureRecording, { walkaroundPosition: isRecording || isRecordingPaused ? walkaroundPosition : 0, isRecording: isRecording, isRecordingPaused: isRecordingPaused, recordingDurationMs: recordingDurationMs, onClickRecordVideo: onClickRecordVideo, onClickTakePicture: handleTakePictureClick, tooltip: tooltip ? t(getTooltipLabel(tooltip)) : undefined })), screen === VideoCaptureHUDScreen.PROCESSING && ((0, jsx_runtime_1.jsx)(VideoCaptureProcessing_1.VideoCaptureProcessing, { inspectionId: inspectionId, processedFrames: processedFrames, totalProcessingFrames: totalProcessingFrames, uploadedFrames: uploadedFrames, totalUploadingFrames: totalUploadingFrames, loading: startTasksLoading, onComplete: onComplete }))] }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: isDiscardDialogDisplayed, message: t('video.recording.discardDialog.message'), confirmLabel: t('video.recording.discardDialog.keepRecording'), cancelLabel: t('video.recording.discardDialog.discardVideo'), onConfirm: onDiscardDialogKeepRecording, onCancel: onDiscardDialogDiscardVideo }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: fastMovementsWarning !== null, message: t(getFastMovementsWarningMessage(fastMovementsWarning)), confirmLabel: t('video.recording.fastMovementsDialog.confirm'), onConfirm: onWarningDismiss, showCancelButton: false, dialogIcon: 'warning-outline', dialogIconPrimaryColor: 'caution' }), (0, jsx_runtime_1.jsx)(components_1.OrientationEnforcer, { orientation: enforceOrientation })] }));
|
|
143
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: VideoCaptureHUD_styles_1.styles['container'], children: [cameraPreview, (0, jsx_runtime_1.jsxs)("div", { style: VideoCaptureHUD_styles_1.styles['hudContainer'], children: [screen === VideoCaptureHUDScreen.RECORDING && ((0, jsx_runtime_1.jsx)(VideoCaptureRecording_1.VideoCaptureRecording, { walkaroundPosition: isRecording || isRecordingPaused ? walkaroundPosition : 0, isRecording: isRecording, isRecordingPaused: isRecordingPaused, recordingDurationMs: recordingDurationMs, onClickRecordVideo: onClickRecordVideo, onClickTakePicture: handleTakePictureClick, tooltip: tooltip ? t(getTooltipLabel(tooltip)) : undefined, recordVideoDisabled: handle.isLoading })), screen === VideoCaptureHUDScreen.PROCESSING && ((0, jsx_runtime_1.jsx)(VideoCaptureProcessing_1.VideoCaptureProcessing, { inspectionId: inspectionId, processedFrames: processedFrames, totalProcessingFrames: totalProcessingFrames, uploadedFrames: uploadedFrames, totalUploadingFrames: totalUploadingFrames, loading: startTasksLoading, onComplete: onComplete }))] }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: isDiscardDialogDisplayed, message: t('video.recording.discardDialog.message'), confirmLabel: t('video.recording.discardDialog.keepRecording'), cancelLabel: t('video.recording.discardDialog.discardVideo'), onConfirm: onDiscardDialogKeepRecording, onCancel: onDiscardDialogDiscardVideo }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: fastMovementsWarning !== null, message: t(getFastMovementsWarningMessage(fastMovementsWarning)), confirmLabel: t('video.recording.fastMovementsDialog.confirm'), onConfirm: onWarningDismiss, showCancelButton: false, dialogIcon: 'warning-outline', dialogIconPrimaryColor: 'caution' }), (0, jsx_runtime_1.jsx)(components_1.OrientationEnforcer, { orientation: enforceOrientation })] }));
|
|
144
144
|
}
|
|
@@ -2,4 +2,4 @@ import { VideoCaptureRecordingProps } from './VideoCaptureRecording.types';
|
|
|
2
2
|
/**
|
|
3
3
|
* HUD used in recording mode displayed on top of the camera in the VideoCaputre process.
|
|
4
4
|
*/
|
|
5
|
-
export declare function VideoCaptureRecording({ walkaroundPosition, isRecording, isRecordingPaused, recordingDurationMs, onClickRecordVideo, onClickTakePicture, tooltip, }: VideoCaptureRecordingProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare function VideoCaptureRecording({ walkaroundPosition, isRecording, isRecordingPaused, recordingDurationMs, onClickRecordVideo, onClickTakePicture, tooltip, recordVideoDisabled, }: VideoCaptureRecordingProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,11 +16,11 @@ function formatRecordingDuration(durationMs) {
|
|
|
16
16
|
* HUD used in recording mode displayed on top of the camera in the VideoCaputre process.
|
|
17
17
|
*/
|
|
18
18
|
function VideoCaptureRecording(_a) {
|
|
19
|
-
var walkaroundPosition = _a.walkaroundPosition, isRecording = _a.isRecording, isRecordingPaused = _a.isRecordingPaused, recordingDurationMs = _a.recordingDurationMs, onClickRecordVideo = _a.onClickRecordVideo, onClickTakePicture = _a.onClickTakePicture, tooltip = _a.tooltip;
|
|
19
|
+
var walkaroundPosition = _a.walkaroundPosition, isRecording = _a.isRecording, isRecordingPaused = _a.isRecordingPaused, recordingDurationMs = _a.recordingDurationMs, onClickRecordVideo = _a.onClickRecordVideo, onClickTakePicture = _a.onClickTakePicture, tooltip = _a.tooltip, recordVideoDisabled = _a.recordVideoDisabled;
|
|
20
20
|
var _b = (0, VideoCaptureRecordingStyles_1.useVideoCaptureRecordingStyles)({ isRecording: isRecording }), container = _b.container, indicators = _b.indicators, recordingDuration = _b.recordingDuration, controls = _b.controls, takePictureFlash = _b.takePictureFlash, walkaroundIndicator = _b.walkaroundIndicator, showTakePictureFlash = _b.showTakePictureFlash, tooltipPosition = _b.tooltipPosition;
|
|
21
21
|
var handleTakePictureClick = function () {
|
|
22
22
|
showTakePictureFlash();
|
|
23
23
|
onClickTakePicture === null || onClickTakePicture === void 0 ? void 0 : onClickTakePicture();
|
|
24
24
|
};
|
|
25
|
-
return ((0, jsx_runtime_1.jsxs)("div", { style: container, children: [(0, jsx_runtime_1.jsx)("div", { style: indicators, children: (isRecording || isRecordingPaused) && ((0, jsx_runtime_1.jsx)("div", { style: recordingDuration, children: formatRecordingDuration(recordingDurationMs) })) }), (0, jsx_runtime_1.jsxs)("div", { style: controls, children: [(0, jsx_runtime_1.jsx)("div", { style: walkaroundIndicator, "data-testid": 'walkaround-indicator-container', children: (0, jsx_runtime_1.jsx)(common_ui_web_1.VehicleWalkaroundIndicator, { alpha: walkaroundPosition }) }), (0, jsx_runtime_1.jsx)(common_ui_web_1.RecordVideoButton, { isRecording: isRecording, onClick: onClickRecordVideo, tooltip: tooltip, tooltipPosition: tooltipPosition }), (0, jsx_runtime_1.jsx)(common_ui_web_1.TakePictureButton, { onClick: handleTakePictureClick, disabled: !isRecording })] }), (0, jsx_runtime_1.jsx)("div", { style: takePictureFlash })] }));
|
|
25
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: container, children: [(0, jsx_runtime_1.jsx)("div", { style: indicators, children: (isRecording || isRecordingPaused) && ((0, jsx_runtime_1.jsx)("div", { style: recordingDuration, children: formatRecordingDuration(recordingDurationMs) })) }), (0, jsx_runtime_1.jsxs)("div", { style: controls, children: [(0, jsx_runtime_1.jsx)("div", { style: walkaroundIndicator, "data-testid": 'walkaround-indicator-container', children: (0, jsx_runtime_1.jsx)(common_ui_web_1.VehicleWalkaroundIndicator, { alpha: walkaroundPosition }) }), (0, jsx_runtime_1.jsx)(common_ui_web_1.RecordVideoButton, { isRecording: isRecording, onClick: onClickRecordVideo, tooltip: tooltip, tooltipPosition: tooltipPosition, disabled: recordVideoDisabled }), (0, jsx_runtime_1.jsx)(common_ui_web_1.TakePictureButton, { onClick: handleTakePictureClick, disabled: !isRecording })] }), (0, jsx_runtime_1.jsx)("div", { style: takePictureFlash })] }));
|
|
26
26
|
}
|
package/lib/VideoCapture/VideoCaptureHUD/VideoCaptureRecording/VideoCaptureRecording.types.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export interface VideoCaptureRecordingProps {
|
|
|
18
18
|
* The total duration (in milliseconds) of the current video recording.
|
|
19
19
|
*/
|
|
20
20
|
recordingDurationMs: number;
|
|
21
|
+
/**
|
|
22
|
+
* Boolean indicating if the record video button should be disabled or not.
|
|
23
|
+
*/
|
|
24
|
+
recordVideoDisabled: boolean;
|
|
21
25
|
/**
|
|
22
26
|
* Callback called when the user clicks on the record video button.
|
|
23
27
|
*/
|
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
2
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
3
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
4
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -67,17 +56,20 @@ var CAPTURE_DURATION = 'capture_duration';
|
|
|
67
56
|
*/
|
|
68
57
|
function useCaptureDuration(_a) {
|
|
69
58
|
var _this = this;
|
|
70
|
-
var
|
|
59
|
+
var _b, _c;
|
|
60
|
+
var apiConfig = _a.apiConfig, inspectionId = _a.inspectionId, isInspectionCompleted = _a.isInspectionCompleted, _d = _a.heartbeatInterval, heartbeatInterval = _d === void 0 ? 30000 : _d, _e = _a.idleTimeout, idleTimeout = _e === void 0 ? 10000 : _e;
|
|
71
61
|
var startTimeRef = (0, react_1.useRef)(Date.now());
|
|
72
62
|
var totalActiveTimeRef = (0, react_1.useRef)(0);
|
|
73
63
|
var heartbeatTimerRef = (0, react_1.useRef)(null);
|
|
74
64
|
var idleTimerRef = (0, react_1.useRef)(null);
|
|
75
65
|
var pendingUpdateRef = (0, react_1.useRef)(false);
|
|
76
|
-
var captureDurationRef = (0, react_1.useRef)(0);
|
|
77
66
|
var isActive = (0, react_1.useRef)(true);
|
|
78
67
|
var cycleCountRef = (0, react_1.useRef)(0);
|
|
79
68
|
var updateAdditionalData = (0, network_1.useMonkApi)(apiConfig).updateAdditionalData;
|
|
80
69
|
var handleError = (0, monitoring_1.useMonitoring)().handleError;
|
|
70
|
+
var state = (0, common_1.useMonkState)().state;
|
|
71
|
+
var initialDuration = (_c = (_b = state.inspections.find(function (insp) { return insp.id === inspectionId; })) === null || _b === void 0 ? void 0 : _b.additionalData) === null || _c === void 0 ? void 0 : _c[CAPTURE_DURATION];
|
|
72
|
+
var captureDurationRef = (0, react_1.useRef)(typeof initialDuration === 'number' ? initialDuration : 0);
|
|
81
73
|
var pauseTracking = (0, react_1.useCallback)(function () {
|
|
82
74
|
if (isActive.current) {
|
|
83
75
|
isActive.current = false;
|
|
@@ -96,7 +88,7 @@ function useCaptureDuration(_a) {
|
|
|
96
88
|
args_1[_i] = arguments[_i];
|
|
97
89
|
}
|
|
98
90
|
return __awaiter(_this, __spreadArray([], args_1, true), void 0, function (forceUpdate) {
|
|
99
|
-
var
|
|
91
|
+
var err_1;
|
|
100
92
|
if (forceUpdate === void 0) { forceUpdate = false; }
|
|
101
93
|
return __generator(this, function (_a) {
|
|
102
94
|
switch (_a.label) {
|
|
@@ -111,19 +103,17 @@ function useCaptureDuration(_a) {
|
|
|
111
103
|
case 1:
|
|
112
104
|
_a.trys.push([1, 3, 4, 5]);
|
|
113
105
|
pendingUpdateRef.current = true;
|
|
114
|
-
existingDuration_1 = 0;
|
|
115
106
|
return [4 /*yield*/, updateAdditionalData({
|
|
116
107
|
id: inspectionId,
|
|
117
|
-
callback: function (
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
:
|
|
121
|
-
|
|
108
|
+
callback: function () {
|
|
109
|
+
captureDurationRef.current += totalActiveTimeRef.current;
|
|
110
|
+
return {
|
|
111
|
+
capture_duration: captureDurationRef.current,
|
|
112
|
+
};
|
|
122
113
|
},
|
|
123
114
|
})];
|
|
124
115
|
case 2:
|
|
125
116
|
_a.sent();
|
|
126
|
-
captureDurationRef.current = existingDuration_1 + totalActiveTimeRef.current;
|
|
127
117
|
startTimeRef.current = Date.now();
|
|
128
118
|
totalActiveTimeRef.current = 0;
|
|
129
119
|
return [2 /*return*/, captureDurationRef.current];
|
|
@@ -177,8 +167,8 @@ function useCaptureDuration(_a) {
|
|
|
177
167
|
};
|
|
178
168
|
var handleVisibilityChange = function () {
|
|
179
169
|
if (document.hidden) {
|
|
180
|
-
updateDuration();
|
|
181
170
|
pauseTracking();
|
|
171
|
+
updateDuration(true);
|
|
182
172
|
}
|
|
183
173
|
else {
|
|
184
174
|
resumeTracking();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monkvision/inspection-capture-web",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.6",
|
|
4
4
|
"license": "BSD-3-Clause-Clear",
|
|
5
5
|
"packageManager": "yarn@3.2.4",
|
|
6
6
|
"description": "MonkJs inspection capture package for React (web) used to implement the Monk inspection capture workflow",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"lint:fix": "yarn run prettier:fix && yarn run eslint:fix"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@monkvision/analytics": "5.3.
|
|
32
|
-
"@monkvision/camera-web": "5.3.
|
|
33
|
-
"@monkvision/common": "5.3.
|
|
34
|
-
"@monkvision/common-ui-web": "5.3.
|
|
35
|
-
"@monkvision/network": "5.3.
|
|
36
|
-
"@monkvision/sights": "5.3.
|
|
31
|
+
"@monkvision/analytics": "5.3.6",
|
|
32
|
+
"@monkvision/camera-web": "5.3.6",
|
|
33
|
+
"@monkvision/common": "5.3.6",
|
|
34
|
+
"@monkvision/common-ui-web": "5.3.6",
|
|
35
|
+
"@monkvision/network": "5.3.6",
|
|
36
|
+
"@monkvision/sights": "5.3.6",
|
|
37
37
|
"i18next": "^23.4.5",
|
|
38
38
|
"react-i18next": "^13.2.0"
|
|
39
39
|
},
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"react-router-dom": "^6.22.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@monkvision/eslint-config-base": "5.3.
|
|
48
|
-
"@monkvision/eslint-config-typescript": "5.3.
|
|
49
|
-
"@monkvision/eslint-config-typescript-react": "5.3.
|
|
50
|
-
"@monkvision/jest-config": "5.3.
|
|
51
|
-
"@monkvision/prettier-config": "5.3.
|
|
52
|
-
"@monkvision/test-utils": "5.3.
|
|
53
|
-
"@monkvision/typescript-config": "5.3.
|
|
47
|
+
"@monkvision/eslint-config-base": "5.3.6",
|
|
48
|
+
"@monkvision/eslint-config-typescript": "5.3.6",
|
|
49
|
+
"@monkvision/eslint-config-typescript-react": "5.3.6",
|
|
50
|
+
"@monkvision/jest-config": "5.3.6",
|
|
51
|
+
"@monkvision/prettier-config": "5.3.6",
|
|
52
|
+
"@monkvision/test-utils": "5.3.6",
|
|
53
|
+
"@monkvision/typescript-config": "5.3.6",
|
|
54
54
|
"@testing-library/react": "^16.3.0",
|
|
55
55
|
"@types/copyfiles": "^2",
|
|
56
56
|
"@types/fscreen": "^1.0.1",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"url": "https://github.com/monkvision/monkjs/issues"
|
|
93
93
|
},
|
|
94
94
|
"homepage": "https://github.com/monkvision/monkjs",
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "c325284471cdae050f187893ceb06a3a1fbfb011"
|
|
96
96
|
}
|