@kitware/vtk.js 24.8.0 → 24.11.0
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/Common/Core/LookupTable.d.ts +6 -6
- package/Common/Core/Math/index.js +1 -1
- package/Common/Core/Math.js +1 -1
- package/Common/Core/ScalarsToColors/Constants.d.ts +18 -0
- package/Common/Core/ScalarsToColors.d.ts +6 -16
- package/Common/DataModel/Box.d.ts +4 -4
- package/Common/DataModel/CardinalSpline1D.d.ts +8 -4
- package/Common/DataModel/CardinalSpline1D.js +133 -4
- package/Common/DataModel/Cell.js +3 -1
- package/Common/DataModel/CellTypes.js +6 -1
- package/Common/DataModel/ITKHelper.d.ts +54 -0
- package/Common/DataModel/KochanekSpline1D.d.ts +8 -4
- package/Common/DataModel/KochanekSpline1D.js +103 -2
- package/Common/DataModel/Line.d.ts +8 -3
- package/Common/DataModel/Line.js +16 -11
- package/Common/DataModel/PiecewiseFunction.js +8 -8
- package/Common/DataModel/Plane.js +1 -1
- package/Common/DataModel/PolyData/Constants.d.ts +6 -0
- package/Common/DataModel/PolyLine.d.ts +63 -0
- package/Common/DataModel/PolyLine.js +77 -0
- package/Common/DataModel/Polygon.js +1 -1
- package/Common/DataModel/Spline1D/Constants.js +17 -0
- package/Common/DataModel/Spline1D.d.ts +20 -2
- package/Common/DataModel/Spline3D/Constants.d.ts +9 -0
- package/Common/DataModel/Spline3D.d.ts +4 -9
- package/Common/DataModel/Spline3D.js +20 -15
- package/Filters/General/ImageCropFilter.d.ts +9 -6
- package/Filters/Sources/LineSource.js +1 -1
- package/Filters/Sources/PlaneSource.js +1 -1
- package/Interaction/Manipulators/MouseCameraUnicamManipulator.js +1 -1
- package/Interaction/Manipulators/MouseCameraUnicamRotateManipulator.js +1 -1
- package/Interaction/Manipulators/MouseRangeManipulator.js +23 -6
- package/Interaction/Widgets/OrientationMarkerWidget/Constants.d.ts +11 -0
- package/Interaction/Widgets/OrientationMarkerWidget.d.ts +2 -6
- package/Rendering/Core/CellPicker.js +53 -32
- package/Rendering/Core/Mapper/Constants.d.ts +26 -0
- package/Rendering/Core/Mapper.d.ts +5 -21
- package/Rendering/Core/Property/Constants.d.ts +24 -0
- package/Rendering/Core/Property.d.ts +6 -20
- package/Rendering/Core/RenderWindowInteractor/Constants.d.ts +31 -0
- package/Rendering/Core/RenderWindowInteractor.d.ts +223 -121
- package/Rendering/Core/ScalarBarActor.d.ts +37 -15
- package/Rendering/Core/ScalarBarActor.js +39 -14
- package/Rendering/Core/Viewport.d.ts +2 -4
- package/Rendering/Core/VolumeMapper/Constants.d.ts +19 -0
- package/Rendering/Core/VolumeMapper.d.ts +5 -9
- package/Rendering/Core/VolumeProperty.d.ts +5 -13
- package/Rendering/Misc/FullScreenRenderWindow.d.ts +3 -2
- package/Rendering/OpenGL/RenderWindow.d.ts +28 -10
- package/Widgets/Manipulators/LineManipulator.js +1 -1
- package/Widgets/Representations/ResliceCursorContextRepresentation.js +1 -1
- package/Widgets/Representations/SplineContextRepresentation.js +27 -9
- package/Widgets/Representations/WidgetRepresentation.js +1 -1
- package/Widgets/Widgets3D/AngleWidget/behavior.js +10 -5
- package/Widgets/Widgets3D/AngleWidget.js +1 -1
- package/Widgets/Widgets3D/DistanceWidget/behavior.js +11 -5
- package/Widgets/Widgets3D/LabelWidget/behavior.js +10 -4
- package/Widgets/Widgets3D/LineWidget/behavior.js +1 -1
- package/Widgets/Widgets3D/LineWidget/helpers.js +1 -1
- package/Widgets/Widgets3D/PolyLineWidget/behavior.js +7 -5
- package/Widgets/Widgets3D/ResliceCursorWidget/behavior.js +1 -1
- package/Widgets/Widgets3D/ResliceCursorWidget/helpers.js +1 -1
- package/Widgets/Widgets3D/ResliceCursorWidget.js +1 -1
- package/Widgets/Widgets3D/ShapeWidget/behavior.js +9 -1
- package/Widgets/Widgets3D/SplineWidget/state.js +10 -0
- package/Widgets/Widgets3D/SplineWidget.js +1 -1
- package/index.d.ts +16 -6
- package/package.json +43 -43
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
|
|
2
1
|
import macro from '../../../macros.js';
|
|
3
2
|
|
|
4
3
|
function widgetBehavior(publicAPI, model) {
|
|
@@ -66,19 +65,22 @@ function widgetBehavior(publicAPI, model) {
|
|
|
66
65
|
|
|
67
66
|
|
|
68
67
|
publicAPI.handleLeftButtonPress = function (e) {
|
|
68
|
+
var _model$activeState$ge3, _model$activeState2, _model$activeState2$g;
|
|
69
|
+
|
|
69
70
|
if (!model.activeState || !model.activeState.getActive() || !model.pickable || ignoreKey(e)) {
|
|
70
71
|
return macro.VOID;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
|
-
|
|
74
|
-
updateMoveHandle(e); // Commit handle to location
|
|
74
|
+
var manipulator = (_model$activeState$ge3 = (_model$activeState2 = model.activeState) === null || _model$activeState2 === void 0 ? void 0 : (_model$activeState2$g = _model$activeState2.getManipulator) === null || _model$activeState2$g === void 0 ? void 0 : _model$activeState2$g.call(_model$activeState2)) !== null && _model$activeState$ge3 !== void 0 ? _model$activeState$ge3 : model.manipulator;
|
|
75
75
|
|
|
76
|
+
if (model.activeState === model.widgetState.getMoveHandle() && manipulator) {
|
|
77
|
+
updateMoveHandle(e);
|
|
76
78
|
var moveHandle = model.widgetState.getMoveHandle();
|
|
77
79
|
var newHandle = model.widgetState.addHandle();
|
|
78
|
-
newHandle.setOrigin
|
|
80
|
+
newHandle.setOrigin(moveHandle.getOrigin());
|
|
79
81
|
newHandle.setColor(moveHandle.getColor());
|
|
80
82
|
newHandle.setScale1(moveHandle.getScale1());
|
|
81
|
-
newHandle.setManipulator(
|
|
83
|
+
newHandle.setManipulator(manipulator);
|
|
82
84
|
} else {
|
|
83
85
|
isDragging = true;
|
|
84
86
|
|
|
@@ -3,7 +3,7 @@ import macro from '../../../macros.js';
|
|
|
3
3
|
import vtkBoundingBox from '../../../Common/DataModel/BoundingBox.js';
|
|
4
4
|
import vtkLine from '../../../Common/DataModel/Line.js';
|
|
5
5
|
import vtkPlanePointManipulator from '../../Manipulators/PlaneManipulator.js';
|
|
6
|
-
import { x as multiplyScalar,
|
|
6
|
+
import { x as multiplyScalar, s as subtract, l as normalize, d as dot, j as cross, m as multiplyAccumulate, S as signedAngleBetweenVectors } from '../../../Common/Core/Math/index.js';
|
|
7
7
|
import { updateState, getAssociatedLinesName, boundPointOnPlane, rotateVector } from './helpers.js';
|
|
8
8
|
import { InteractionMethodsName, ScrollingMethods } from './Constants.js';
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ import vtkBoundingBox, { STATIC } from '../../../Common/DataModel/BoundingBox.js
|
|
|
3
3
|
import vtkCubeSource from '../../../Filters/Sources/CubeSource.js';
|
|
4
4
|
import vtkCutter from '../../../Filters/Core/Cutter.js';
|
|
5
5
|
import vtkPlane from '../../../Common/DataModel/Plane.js';
|
|
6
|
-
import {
|
|
6
|
+
import { s as subtract, l as normalize, j as cross, x as multiplyScalar, m as multiplyAccumulate, S as signedAngleBetweenVectors } from '../../../Common/Core/Math/index.js';
|
|
7
7
|
import vtkMatrixBuilder from '../../../Common/Core/MatrixBuilder.js';
|
|
8
8
|
import { ViewTypes } from '../../Core/WidgetManager/Constants.js';
|
|
9
9
|
|
|
@@ -4,7 +4,7 @@ import vtkAbstractWidgetFactory from '../Core/AbstractWidgetFactory.js';
|
|
|
4
4
|
import vtkPlane from '../../Common/DataModel/Plane.js';
|
|
5
5
|
import vtkPlaneSource from '../../Filters/Sources/PlaneSource.js';
|
|
6
6
|
import vtkResliceCursorContextRepresentation from '../Representations/ResliceCursorContextRepresentation.js';
|
|
7
|
-
import { f as distance2BetweenPoints, m as multiplyAccumulate,
|
|
7
|
+
import { f as distance2BetweenPoints, m as multiplyAccumulate, s as subtract, l as normalize, x as multiplyScalar, k as add } from '../../Common/Core/Math/index.js';
|
|
8
8
|
import widgetBehavior from './ResliceCursorWidget/behavior.js';
|
|
9
9
|
import generateState from './ResliceCursorWidget/state.js';
|
|
10
10
|
import { updateState, transformPlane, boundPlane } from './ResliceCursorWidget/helpers.js';
|
|
@@ -403,15 +403,23 @@ function widgetBehavior(publicAPI, model) {
|
|
|
403
403
|
|
|
404
404
|
|
|
405
405
|
publicAPI.handleLeftButtonPress = function (e) {
|
|
406
|
-
|
|
406
|
+
var _model$activeState$ge3, _model$activeState2, _model$activeState2$g;
|
|
407
|
+
|
|
408
|
+
var manipulator = (_model$activeState$ge3 = (_model$activeState2 = model.activeState) === null || _model$activeState2 === void 0 ? void 0 : (_model$activeState2$g = _model$activeState2.getManipulator) === null || _model$activeState2$g === void 0 ? void 0 : _model$activeState2$g.call(_model$activeState2)) !== null && _model$activeState$ge3 !== void 0 ? _model$activeState$ge3 : model.manipulator;
|
|
409
|
+
|
|
410
|
+
if (!model.activeState || !model.activeState.getActive() || !model.pickable || !manipulator) {
|
|
407
411
|
return macro.VOID;
|
|
408
412
|
}
|
|
409
413
|
|
|
410
414
|
if (model.hasFocus) {
|
|
415
|
+
var worldCoords = manipulator.handleEvent(e, model._apiSpecificRenderWindow);
|
|
416
|
+
|
|
411
417
|
if (!model.point1) {
|
|
418
|
+
model.point1Handle.setOrigin(worldCoords);
|
|
412
419
|
publicAPI.placePoint1(model.point1Handle.getOrigin());
|
|
413
420
|
publicAPI.invokeStartInteractionEvent();
|
|
414
421
|
} else {
|
|
422
|
+
model.point2Handle.setOrigin(worldCoords);
|
|
415
423
|
publicAPI.placePoint2(model.point2Handle.getOrigin());
|
|
416
424
|
publicAPI.invokeInteractionEvent();
|
|
417
425
|
publicAPI.invokeEndInteractionEvent();
|
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import vtkStateBuilder from '../../Core/StateBuilder.js';
|
|
2
2
|
import { splineKind } from '../../../Common/DataModel/Spline3D/Constants.js';
|
|
3
|
+
import { BoundaryCondition } from '../../../Common/DataModel/Spline1D/Constants.js';
|
|
3
4
|
|
|
4
5
|
function generateState() {
|
|
5
6
|
return vtkStateBuilder.createBuilder().addField({
|
|
6
7
|
name: 'splineKind',
|
|
7
8
|
initialValue: splineKind.KOCHANEK_SPLINE
|
|
9
|
+
}).addField({
|
|
10
|
+
name: 'splineClosed',
|
|
11
|
+
initialValue: true
|
|
12
|
+
}).addField({
|
|
13
|
+
name: 'splineBoundaryCondition',
|
|
14
|
+
initialValue: BoundaryCondition.DEFAULT
|
|
15
|
+
}).addField({
|
|
16
|
+
name: 'splineBoundaryConditionValues',
|
|
17
|
+
initialValue: [0, 0, 0]
|
|
8
18
|
}).addField({
|
|
9
19
|
name: 'splineTension',
|
|
10
20
|
initialValue: 0
|
|
@@ -20,7 +20,7 @@ function vtkSplineWidget(publicAPI, model) {
|
|
|
20
20
|
var superClass = _objectSpread({}, publicAPI); // --- Widget Requirement ---------------------------------------------------
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
model.methodsToLink = ['outputBorder', 'fill', 'borderColor', 'errorBorderColor'];
|
|
23
|
+
model.methodsToLink = ['boundaryCondition', 'close', 'outputBorder', 'fill', 'borderColor', 'errorBorderColor'];
|
|
24
24
|
model.behavior = widgetBehavior;
|
|
25
25
|
model.widgetState = generateState();
|
|
26
26
|
|
package/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/// <reference path="./types.d.ts" />
|
|
2
2
|
/// <reference path="./interfaces.d.ts" />
|
|
3
|
-
/// <reference path="./macros.d.ts" />
|
|
4
|
-
/// <reference path="./vtk.d.ts" />
|
|
5
3
|
/// <reference path="./Common/Core/Base64.d.ts" />
|
|
6
4
|
/// <reference path="./Common/Core/CellArray.d.ts" />
|
|
7
5
|
/// <reference path="./Common/Core/DataArray.d.ts" />
|
|
@@ -13,6 +11,7 @@
|
|
|
13
11
|
/// <reference path="./Common/Core/Points.d.ts" />
|
|
14
12
|
/// <reference path="./Common/Core/PriorityQueue.d.ts" />
|
|
15
13
|
/// <reference path="./Common/Core/ProgressHandler.d.ts" />
|
|
14
|
+
/// <reference path="./Common/Core/ScalarsToColors/Constants.d.ts" />
|
|
16
15
|
/// <reference path="./Common/Core/ScalarsToColors.d.ts" />
|
|
17
16
|
/// <reference path="./Common/Core/StringArray.d.ts" />
|
|
18
17
|
/// <reference path="./Common/Core/URLExtract.d.ts" />
|
|
@@ -25,17 +24,21 @@
|
|
|
25
24
|
/// <reference path="./Common/DataModel/DataSet.d.ts" />
|
|
26
25
|
/// <reference path="./Common/DataModel/DataSetAttributes/FieldData.d.ts" />
|
|
27
26
|
/// <reference path="./Common/DataModel/DataSetAttributes.d.ts" />
|
|
27
|
+
/// <reference path="./Common/DataModel/ITKHelper.d.ts" />
|
|
28
28
|
/// <reference path="./Common/DataModel/ImageData.d.ts" />
|
|
29
29
|
/// <reference path="./Common/DataModel/KochanekSpline1D.d.ts" />
|
|
30
30
|
/// <reference path="./Common/DataModel/Line.d.ts" />
|
|
31
31
|
/// <reference path="./Common/DataModel/PiecewiseFunction.d.ts" />
|
|
32
32
|
/// <reference path="./Common/DataModel/Plane.d.ts" />
|
|
33
33
|
/// <reference path="./Common/DataModel/PointSet.d.ts" />
|
|
34
|
+
/// <reference path="./Common/DataModel/PolyData/Constants.d.ts" />
|
|
34
35
|
/// <reference path="./Common/DataModel/PolyData.d.ts" />
|
|
36
|
+
/// <reference path="./Common/DataModel/PolyLine.d.ts" />
|
|
35
37
|
/// <reference path="./Common/DataModel/Polygon.d.ts" />
|
|
36
38
|
/// <reference path="./Common/DataModel/SelectionNode.d.ts" />
|
|
37
39
|
/// <reference path="./Common/DataModel/Sphere.d.ts" />
|
|
38
40
|
/// <reference path="./Common/DataModel/Spline1D.d.ts" />
|
|
41
|
+
/// <reference path="./Common/DataModel/Spline3D/Constants.d.ts" />
|
|
39
42
|
/// <reference path="./Common/DataModel/Spline3D.d.ts" />
|
|
40
43
|
/// <reference path="./Common/DataModel/Triangle.d.ts" />
|
|
41
44
|
/// <reference path="./Common/Transform/LandmarkTransform.d.ts" />
|
|
@@ -61,17 +64,16 @@
|
|
|
61
64
|
/// <reference path="./Filters/Sources/SphereSource.d.ts" />
|
|
62
65
|
/// <reference path="./Filters/Texture/TextureMapToPlane.d.ts" />
|
|
63
66
|
/// <reference path="./Filters/Texture/TextureMapToSphere.d.ts" />
|
|
64
|
-
/// <reference path="./Interaction/Widgets/OrientationMarkerWidget.d.ts" />
|
|
65
67
|
/// <reference path="./IO/Core/DataAccessHelper/HtmlDataAccessHelper.d.ts" />
|
|
66
68
|
/// <reference path="./IO/Core/DataAccessHelper/HttpDataAccessHelper.d.ts" />
|
|
67
|
-
/// <reference path="./IO/Core/DataAccessHelper.d.ts" />
|
|
68
69
|
/// <reference path="./IO/Core/DataAccessHelper/JSZipDataAccessHelper.d.ts" />
|
|
69
70
|
/// <reference path="./IO/Core/DataAccessHelper/LiteHttpDataAccessHelper.d.ts" />
|
|
71
|
+
/// <reference path="./IO/Core/DataAccessHelper.d.ts" />
|
|
70
72
|
/// <reference path="./IO/Core/HttpDataSetReader.d.ts" />
|
|
71
73
|
/// <reference path="./IO/Core/HttpSceneLoader.d.ts" />
|
|
72
74
|
/// <reference path="./IO/Core/ImageStream/DefaultProtocol.d.ts" />
|
|
73
|
-
/// <reference path="./IO/Core/ImageStream.d.ts" />
|
|
74
75
|
/// <reference path="./IO/Core/ImageStream/ViewStream.d.ts" />
|
|
76
|
+
/// <reference path="./IO/Core/ImageStream.d.ts" />
|
|
75
77
|
/// <reference path="./IO/Core/WSLinkClient.d.ts" />
|
|
76
78
|
/// <reference path="./IO/Geometry/DracoReader.d.ts" />
|
|
77
79
|
/// <reference path="./IO/Geometry/PLYReader.d.ts" />
|
|
@@ -89,6 +91,8 @@
|
|
|
89
91
|
/// <reference path="./IO/XML/XMLImageDataReader.d.ts" />
|
|
90
92
|
/// <reference path="./IO/XML/XMLPolyDataReader.d.ts" />
|
|
91
93
|
/// <reference path="./IO/XML/XMLReader.d.ts" />
|
|
94
|
+
/// <reference path="./Interaction/Widgets/OrientationMarkerWidget/Constants.d.ts" />
|
|
95
|
+
/// <reference path="./Interaction/Widgets/OrientationMarkerWidget.d.ts" />
|
|
92
96
|
/// <reference path="./Rendering/Core/AbstractMapper.d.ts" />
|
|
93
97
|
/// <reference path="./Rendering/Core/AbstractMapper3D.d.ts" />
|
|
94
98
|
/// <reference path="./Rendering/Core/AbstractPicker.d.ts" />
|
|
@@ -106,6 +110,7 @@
|
|
|
106
110
|
/// <reference path="./Rendering/Core/ImageProperty.d.ts" />
|
|
107
111
|
/// <reference path="./Rendering/Core/ImageSlice.d.ts" />
|
|
108
112
|
/// <reference path="./Rendering/Core/Light.d.ts" />
|
|
113
|
+
/// <reference path="./Rendering/Core/Mapper/Constants.d.ts" />
|
|
109
114
|
/// <reference path="./Rendering/Core/Mapper.d.ts" />
|
|
110
115
|
/// <reference path="./Rendering/Core/Mapper2D.d.ts" />
|
|
111
116
|
/// <reference path="./Rendering/Core/Picker.d.ts" />
|
|
@@ -113,11 +118,13 @@
|
|
|
113
118
|
/// <reference path="./Rendering/Core/PointPicker.d.ts" />
|
|
114
119
|
/// <reference path="./Rendering/Core/Prop.d.ts" />
|
|
115
120
|
/// <reference path="./Rendering/Core/Prop3D.d.ts" />
|
|
121
|
+
/// <reference path="./Rendering/Core/Property/Constants.d.ts" />
|
|
116
122
|
/// <reference path="./Rendering/Core/Property.d.ts" />
|
|
117
123
|
/// <reference path="./Rendering/Core/Property2D.d.ts" />
|
|
118
|
-
/// <reference path="./Rendering/Core/Renderer.d.ts" />
|
|
119
124
|
/// <reference path="./Rendering/Core/RenderWindow.d.ts" />
|
|
125
|
+
/// <reference path="./Rendering/Core/RenderWindowInteractor/Constants.d.ts" />
|
|
120
126
|
/// <reference path="./Rendering/Core/RenderWindowInteractor.d.ts" />
|
|
127
|
+
/// <reference path="./Rendering/Core/Renderer.d.ts" />
|
|
121
128
|
/// <reference path="./Rendering/Core/ScalarBarActor.d.ts" />
|
|
122
129
|
/// <reference path="./Rendering/Core/Skybox.d.ts" />
|
|
123
130
|
/// <reference path="./Rendering/Core/SphereMapper.d.ts" />
|
|
@@ -125,6 +132,7 @@
|
|
|
125
132
|
/// <reference path="./Rendering/Core/Texture.d.ts" />
|
|
126
133
|
/// <reference path="./Rendering/Core/Viewport.d.ts" />
|
|
127
134
|
/// <reference path="./Rendering/Core/Volume.d.ts" />
|
|
135
|
+
/// <reference path="./Rendering/Core/VolumeMapper/Constants.d.ts" />
|
|
128
136
|
/// <reference path="./Rendering/Core/VolumeMapper.d.ts" />
|
|
129
137
|
/// <reference path="./Rendering/Core/VolumeProperty.d.ts" />
|
|
130
138
|
/// <reference path="./Rendering/Misc/CanvasView.d.ts" />
|
|
@@ -145,4 +153,6 @@
|
|
|
145
153
|
/// <reference path="./Widgets/Representations/ResliceCursorContextRepresentation.d.ts" />
|
|
146
154
|
/// <reference path="./Widgets/Representations/WidgetRepresentation.d.ts" />
|
|
147
155
|
/// <reference path="./Widgets/Widgets3D/SphereWidget.d.ts" />
|
|
156
|
+
/// <reference path="./macros.d.ts" />
|
|
157
|
+
/// <reference path="./vtk.d.ts" />
|
|
148
158
|
/// <reference path="./Common/Core/Math.d.ts" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitware/vtk.js",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.11.0",
|
|
4
4
|
"description": "Visualization Toolkit for the Web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"3d",
|
|
@@ -30,84 +30,84 @@
|
|
|
30
30
|
"main": "./index.js",
|
|
31
31
|
"module": "./index.js",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@babel/runtime": "7.
|
|
34
|
-
"commander": "
|
|
33
|
+
"@babel/runtime": "7.17.9",
|
|
34
|
+
"commander": "9.2.0",
|
|
35
35
|
"d3-scale": "4.0.2",
|
|
36
36
|
"gl-matrix": "3.4.3",
|
|
37
|
-
"globalthis": "1.0.
|
|
38
|
-
"jszip": "3.
|
|
37
|
+
"globalthis": "1.0.3",
|
|
38
|
+
"jszip": "3.9.1",
|
|
39
39
|
"pako": "2.0.4",
|
|
40
40
|
"seedrandom": "3.0.5",
|
|
41
41
|
"shader-loader": "1.3.1",
|
|
42
42
|
"shelljs": "0.8.5",
|
|
43
43
|
"spark-md5": "^3.0.2",
|
|
44
44
|
"stream-browserify": "3.0.0",
|
|
45
|
-
"webworker-promise": "0.
|
|
45
|
+
"webworker-promise": "0.5.0",
|
|
46
46
|
"worker-loader": "3.0.8",
|
|
47
47
|
"xmlbuilder2": "3.0.2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@babel/core": "7.
|
|
51
|
-
"@babel/eslint-parser": "7.
|
|
52
|
-
"@babel/plugin-transform-runtime": "7.
|
|
53
|
-
"@babel/preset-env": "7.
|
|
54
|
-
"@commitlint/cli": "16.
|
|
55
|
-
"@commitlint/config-conventional": "16.
|
|
56
|
-
"@mapbox/node-pre-gyp": "1.0.
|
|
50
|
+
"@babel/core": "7.17.10",
|
|
51
|
+
"@babel/eslint-parser": "7.17.0",
|
|
52
|
+
"@babel/plugin-transform-runtime": "7.17.10",
|
|
53
|
+
"@babel/preset-env": "7.17.10",
|
|
54
|
+
"@commitlint/cli": "16.2.4",
|
|
55
|
+
"@commitlint/config-conventional": "16.2.4",
|
|
56
|
+
"@mapbox/node-pre-gyp": "1.0.9",
|
|
57
57
|
"@rollup/plugin-alias": "3.1.9",
|
|
58
|
-
"@rollup/plugin-babel": "5.3.
|
|
59
|
-
"@rollup/plugin-commonjs": "21.0
|
|
60
|
-
"@rollup/plugin-eslint": "8.0.
|
|
58
|
+
"@rollup/plugin-babel": "5.3.1",
|
|
59
|
+
"@rollup/plugin-commonjs": "21.1.0",
|
|
60
|
+
"@rollup/plugin-eslint": "8.0.2",
|
|
61
61
|
"@rollup/plugin-json": "4.1.0",
|
|
62
62
|
"@rollup/plugin-node-resolve": "13.1.3",
|
|
63
|
-
"autoprefixer": "10.4.
|
|
64
|
-
"babel-loader": "8.2.
|
|
63
|
+
"autoprefixer": "10.4.7",
|
|
64
|
+
"babel-loader": "8.2.5",
|
|
65
65
|
"babel-plugin-istanbul": "6.1.1",
|
|
66
66
|
"buffer": "6.0.3",
|
|
67
67
|
"commitizen": "4.2.4",
|
|
68
|
-
"concurrently": "7.
|
|
69
|
-
"copy-webpack-plugin": "10.2.
|
|
68
|
+
"concurrently": "7.1.0",
|
|
69
|
+
"copy-webpack-plugin": "10.2.4",
|
|
70
70
|
"cross-env": "7.0.3",
|
|
71
|
-
"css-loader": "6.
|
|
72
|
-
"dotenv": "
|
|
73
|
-
"dox": "0.9.
|
|
74
|
-
"eslint": "8.
|
|
71
|
+
"css-loader": "6.7.1",
|
|
72
|
+
"dotenv": "16.0.1",
|
|
73
|
+
"dox": "0.9.1",
|
|
74
|
+
"eslint": "8.15.0",
|
|
75
75
|
"eslint-config-airbnb": "19.0.4",
|
|
76
|
-
"eslint-config-prettier": "8.
|
|
76
|
+
"eslint-config-prettier": "8.5.0",
|
|
77
77
|
"eslint-import-resolver-webpack": "0.13.2",
|
|
78
|
-
"eslint-plugin-import": "2.
|
|
78
|
+
"eslint-plugin-import": "2.26.0",
|
|
79
79
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
80
80
|
"eslint-plugin-prettier": "4.0.0",
|
|
81
81
|
"eslint-webpack-plugin": "3.1.1",
|
|
82
82
|
"expose-loader": "3.1.0",
|
|
83
|
-
"glob": "
|
|
83
|
+
"glob": "8.0.3",
|
|
84
84
|
"handlebars": "4.7.7",
|
|
85
85
|
"hson-loader": "2.0.0",
|
|
86
86
|
"html-loader": "3.1.0",
|
|
87
87
|
"html-webpack-plugin": "5.5.0",
|
|
88
|
-
"husky": "
|
|
88
|
+
"husky": "8.0.1",
|
|
89
89
|
"ignore-loader": "0.1.2",
|
|
90
|
-
"karma": "6.3.
|
|
91
|
-
"karma-chrome-launcher": "3.1.
|
|
92
|
-
"karma-coverage": "2.
|
|
90
|
+
"karma": "6.3.20",
|
|
91
|
+
"karma-chrome-launcher": "3.1.1",
|
|
92
|
+
"karma-coverage": "2.2.0",
|
|
93
93
|
"karma-firefox-launcher": "2.1.2",
|
|
94
94
|
"karma-junit-reporter": "2.0.1",
|
|
95
95
|
"karma-webpack": "5.0.0",
|
|
96
96
|
"kw-doc": "3.1.2",
|
|
97
97
|
"lodash": "4.17.21",
|
|
98
|
-
"magic-string": "0.
|
|
99
|
-
"moment": "2.29.
|
|
98
|
+
"magic-string": "0.26.2",
|
|
99
|
+
"moment": "2.29.3",
|
|
100
100
|
"patch-package": "6.4.7",
|
|
101
|
-
"pixelmatch": "5.
|
|
101
|
+
"pixelmatch": "5.3.0",
|
|
102
102
|
"postcss-loader": "6.2.1",
|
|
103
|
-
"prettier": "2.
|
|
103
|
+
"prettier": "2.6.2",
|
|
104
104
|
"process": "0.11.10",
|
|
105
105
|
"regenerator-runtime": "0.13.9",
|
|
106
|
-
"rollup": "2.
|
|
106
|
+
"rollup": "2.73.0",
|
|
107
107
|
"rollup-plugin-auto-external": "2.0.0",
|
|
108
108
|
"rollup-plugin-copy": "3.4.0",
|
|
109
109
|
"rollup-plugin-ignore": "1.0.10",
|
|
110
|
-
"rollup-plugin-polyfill-node": "0.
|
|
110
|
+
"rollup-plugin-polyfill-node": "0.9.0",
|
|
111
111
|
"rollup-plugin-postcss": "4.0.2",
|
|
112
112
|
"rollup-plugin-string": "3.0.0",
|
|
113
113
|
"rollup-plugin-svgo": "1.1.0",
|
|
@@ -115,16 +115,16 @@
|
|
|
115
115
|
"semantic-release": "19.0.2",
|
|
116
116
|
"string-replace-loader": "3.1.0",
|
|
117
117
|
"style-loader": "3.3.1",
|
|
118
|
-
"tape": "5.
|
|
118
|
+
"tape": "5.5.3",
|
|
119
119
|
"tape-catch": "1.0.6",
|
|
120
|
-
"webpack": "5.
|
|
120
|
+
"webpack": "5.72.1",
|
|
121
121
|
"webpack-bundle-analyzer": "4.5.0",
|
|
122
|
-
"webpack-cli": "4.9.
|
|
123
|
-
"webpack-dashboard": "3.3.
|
|
124
|
-
"webpack-dev-server": "4.
|
|
122
|
+
"webpack-cli": "4.9.2",
|
|
123
|
+
"webpack-dashboard": "3.3.7",
|
|
124
|
+
"webpack-dev-server": "4.9.0",
|
|
125
125
|
"webpack-merge": "5.8.0",
|
|
126
126
|
"webpack-notifier": "1.15.0",
|
|
127
|
-
"wslink": "1.
|
|
127
|
+
"wslink": "1.6.4",
|
|
128
128
|
"xml2js": "0.4.23"
|
|
129
129
|
},
|
|
130
130
|
"peerDependencies": {
|