@mindexec/cli 0.2.216 → 0.2.217
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/package.json +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-core.js +84 -29
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-css3d-manager.js +5 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-interactions.js +2 -0
- package/wwwroot/service-worker-assets.js +4 -4
- package/wwwroot/service-worker.js +1 -1
package/package.json
CHANGED
|
@@ -94,6 +94,7 @@ const MINDMAP_CORE_BUILD_ID = '20260617-flow-run-hitfix-v586';
|
|
|
94
94
|
const VISIBILITY_CULLING_ZOOM_HEAVY_FRAME_INTERVAL = 10;
|
|
95
95
|
const FULL_RES_VISIBILITY_CULLING_PAN_FRAME_INTERVAL = 10;
|
|
96
96
|
const FULL_RES_VISIBILITY_EXIT_MARGIN_SCALE = 1.8;
|
|
97
|
+
const CAMERA_MOTION_WEBGL_FRAME_INTERVAL = 4;
|
|
97
98
|
const PIPELINE_PROFILE_SECTION_KEYS = Object.freeze([
|
|
98
99
|
'pipelineViewport',
|
|
99
100
|
'pipelineScheduling',
|
|
@@ -117,7 +118,7 @@ const MINDMAP_CORE_BUILD_ID = '20260617-flow-run-hitfix-v586';
|
|
|
117
118
|
const NODE_MEASURE_BATCH_SIZE = 16;
|
|
118
119
|
const NODE_MEASURE_LOADING_BATCH_SIZE = 20;
|
|
119
120
|
const DENSE_VISIBLE_NODE_THRESHOLD = 120;
|
|
120
|
-
const DENSE_TOTAL_NODE_THRESHOLD =
|
|
121
|
+
const DENSE_TOTAL_NODE_THRESHOLD = 360;
|
|
121
122
|
const POST_LOAD_DEFERRED_SYNC_NODE_THRESHOLD = 280;
|
|
122
123
|
const AUTO_FREEZE_VISIBLE_NODE_THRESHOLD = 500;
|
|
123
124
|
const AUTO_FREEZE_FRAME_MS = 10;
|
|
@@ -4589,6 +4590,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4589
4590
|
const isBoardLoading = this.isLoading === true;
|
|
4590
4591
|
const forceUpdateFrames = Math.max(0, Number(this._forceUpdateFrames || 0));
|
|
4591
4592
|
const panLiveRefreshForceFrames = Math.max(0, Number(this._panLiveRefreshForceFrames || 0));
|
|
4593
|
+
const cameraNavigationForceFrames = Math.max(0, Number(this._cameraNavigationForceFrames || 0));
|
|
4592
4594
|
const hasForcedUpdate = forceUpdateFrames > 0;
|
|
4593
4595
|
// Mouse-pan live refresh keeps the render loop awake; it should not disable motion throttles.
|
|
4594
4596
|
const hasOnlyPanLiveRefreshForcedUpdate =
|
|
@@ -4596,9 +4598,19 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4596
4598
|
this.isPanning === true &&
|
|
4597
4599
|
this.isZooming !== true &&
|
|
4598
4600
|
panLiveRefreshForceFrames >= forceUpdateFrames;
|
|
4601
|
+
const hasOnlyCameraNavigationForcedUpdate =
|
|
4602
|
+
hasForcedUpdate &&
|
|
4603
|
+
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
4604
|
+
!isNodeInteracting &&
|
|
4605
|
+
!this.isWindowResizing &&
|
|
4606
|
+
cameraNavigationForceFrames >= forceUpdateFrames;
|
|
4599
4607
|
const hasNonPanForcedUpdate =
|
|
4600
4608
|
hasForcedUpdate &&
|
|
4601
|
-
hasOnlyPanLiveRefreshForcedUpdate !== true
|
|
4609
|
+
hasOnlyPanLiveRefreshForcedUpdate !== true &&
|
|
4610
|
+
hasOnlyCameraNavigationForcedUpdate !== true;
|
|
4611
|
+
const hasNonCameraNavigationForcedUpdate =
|
|
4612
|
+
hasForcedUpdate &&
|
|
4613
|
+
hasOnlyCameraNavigationForcedUpdate !== true;
|
|
4602
4614
|
const isLodModeActive = this.lodRenderer?.isInLODMode === true;
|
|
4603
4615
|
const residentDirty = isResidentMidFarLodFrame &&
|
|
4604
4616
|
this.lodRenderer?.hasResidentDirtyWork?.(this.camera, this) === true;
|
|
@@ -4647,7 +4659,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4647
4659
|
shouldUseAnimation60Fps !== true &&
|
|
4648
4660
|
isIdleCadenceFrame === true &&
|
|
4649
4661
|
!isBoardLoading;
|
|
4650
|
-
const
|
|
4662
|
+
const hasPipelineForcedUpdate = hasNonCameraNavigationForcedUpdate;
|
|
4663
|
+
const shouldUpdate = !isBoardLoading && (hasPipelineForcedUpdate || movingUpdateDue || isNodeInteracting ||
|
|
4651
4664
|
residentDirtyRequiresUpdate ||
|
|
4652
4665
|
residentBandChanging ||
|
|
4653
4666
|
hasPendingNearCssWarmup ||
|
|
@@ -4655,6 +4668,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4655
4668
|
idleUpdateDue);
|
|
4656
4669
|
if (hasForcedUpdate) {
|
|
4657
4670
|
this._forceUpdateFrames = Math.max(0, forceUpdateFrames - 1);
|
|
4671
|
+
if (cameraNavigationForceFrames > 0) {
|
|
4672
|
+
this._cameraNavigationForceFrames = Math.max(0, cameraNavigationForceFrames - 1);
|
|
4673
|
+
}
|
|
4658
4674
|
if (panLiveRefreshForceFrames > 0) {
|
|
4659
4675
|
this._panLiveRefreshForceFrames = Math.max(0, panLiveRefreshForceFrames - 1);
|
|
4660
4676
|
}
|
|
@@ -4675,11 +4691,16 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4675
4691
|
window.MindMapThemes?.getAnimationMode?.(this.currentThemeName, this.currentThemeObject) ||
|
|
4676
4692
|
'none';
|
|
4677
4693
|
const isContinuousTheme = themeAnimationMode === 'continuous';
|
|
4694
|
+
const isCameraNavigationOnlyInteractiveFrame =
|
|
4695
|
+
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
4696
|
+
!isNodeInteracting &&
|
|
4697
|
+
!this.isWindowResizing &&
|
|
4698
|
+
!hasNonCameraNavigationForcedUpdate;
|
|
4678
4699
|
const allowContinuousThemeAnimationThisFrame =
|
|
4679
4700
|
isContinuousTheme !== true ||
|
|
4680
|
-
isInteractiveFrame === true ||
|
|
4681
|
-
shouldUpdate === true ||
|
|
4682
|
-
|
|
4701
|
+
(isInteractiveFrame === true && !isCameraNavigationOnlyInteractiveFrame) ||
|
|
4702
|
+
(shouldUpdate === true && !isCameraNavigationOnlyInteractiveFrame) ||
|
|
4703
|
+
hasNonCameraNavigationForcedUpdate === true ||
|
|
4683
4704
|
isBoardLoading === true ||
|
|
4684
4705
|
shouldUseAnimation60Fps === true ||
|
|
4685
4706
|
shouldUseAnimationLowFpsFrame === true ||
|
|
@@ -4699,7 +4720,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4699
4720
|
this._lastOverlaySelectionKey = overlaySelectionKey;
|
|
4700
4721
|
this._overlayDirty = true;
|
|
4701
4722
|
}
|
|
4702
|
-
if (useTextOverlayV2 && (isNodeInteracting ||
|
|
4723
|
+
if (useTextOverlayV2 && (isNodeInteracting || hasNonCameraNavigationForcedUpdate || !!this.isWindowResizing)) {
|
|
4703
4724
|
// V2 placements depend on live host rects, so drag/resize frames
|
|
4704
4725
|
// must invalidate overlay layout even when the camera is stationary.
|
|
4705
4726
|
this._overlayDirty = true;
|
|
@@ -4710,7 +4731,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4710
4731
|
const isMotionFreezeEligible =
|
|
4711
4732
|
(this.isZooming === true || this.isPanning === true || isCameraMoving === true) &&
|
|
4712
4733
|
!isNodeInteracting &&
|
|
4713
|
-
!
|
|
4734
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
4714
4735
|
!hasPendingNearCssWarmup &&
|
|
4715
4736
|
!this.isWindowResizing;
|
|
4716
4737
|
const approxVisibleNodeCount = Number(this._visibleIds?.size || this._prevVisibleIds?.size || 0);
|
|
@@ -4775,7 +4796,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4775
4796
|
this.isZooming === true &&
|
|
4776
4797
|
!shouldFreezeVisibilityDuringMotion &&
|
|
4777
4798
|
!isNodeInteracting &&
|
|
4778
|
-
!
|
|
4799
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
4779
4800
|
!hasPendingNearCssWarmup &&
|
|
4780
4801
|
!isLodPanVisibilityRefreshDue &&
|
|
4781
4802
|
!this.isWindowResizing;
|
|
@@ -4800,7 +4821,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
4800
4821
|
!shouldFreezeVisibilityDuringMotion &&
|
|
4801
4822
|
!shouldFreezeFullResDuringMotion &&
|
|
4802
4823
|
!isNodeInteracting &&
|
|
4803
|
-
!
|
|
4824
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
4804
4825
|
!hasPendingNearCssWarmup &&
|
|
4805
4826
|
!this.isWindowResizing;
|
|
4806
4827
|
const shouldSkipFullResVisibilityCullingForMotionFreeze =
|
|
@@ -5026,7 +5047,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5026
5047
|
shouldSyncCss3dTransforms =
|
|
5027
5048
|
shouldUpdateCss3d && (
|
|
5028
5049
|
isNodeInteracting ||
|
|
5029
|
-
|
|
5050
|
+
hasNonCameraNavigationForcedUpdate ||
|
|
5030
5051
|
hasPendingNearCssWarmup ||
|
|
5031
5052
|
shouldSyncCss3dForVisibilityChange ||
|
|
5032
5053
|
lodVisualEpochChangedThisFrame
|
|
@@ -5065,7 +5086,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5065
5086
|
!isCameraNavigationOverlayPriority &&
|
|
5066
5087
|
!hasOverlayFocus &&
|
|
5067
5088
|
!isNodeInteracting &&
|
|
5068
|
-
!
|
|
5089
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
5069
5090
|
!hasPendingNearCssWarmup &&
|
|
5070
5091
|
!hasOverlayV2DirtyState &&
|
|
5071
5092
|
(this.isZooming === true || (!this.isPanning && isCameraMoving)) &&
|
|
@@ -5122,13 +5143,13 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5122
5143
|
!isInLodMode &&
|
|
5123
5144
|
!hasOverlayFocus &&
|
|
5124
5145
|
!isNodeInteracting &&
|
|
5125
|
-
!
|
|
5146
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
5126
5147
|
!this.isWindowResizing;
|
|
5127
5148
|
const isCameraOnlyOverlayFrame =
|
|
5128
5149
|
shouldUpdateCss3d &&
|
|
5129
5150
|
(this.isZooming || this.isPanning || isCameraMoving) &&
|
|
5130
5151
|
!isNodeInteracting &&
|
|
5131
|
-
!
|
|
5152
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
5132
5153
|
!hasPendingNearCssWarmup &&
|
|
5133
5154
|
(!shouldSyncCss3dForVisibilityChange || shouldFreezePassiveOverlayDuringZoom) &&
|
|
5134
5155
|
!lodVisualEpochChangedThisFrame &&
|
|
@@ -5167,6 +5188,22 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5167
5188
|
!this.isWindowResizing &&
|
|
5168
5189
|
(this.isZooming === true || this.isPanning === true || isCameraMoving);
|
|
5169
5190
|
window.MindMapTextOverlayV2?.setMotionHint?.(this, shouldUsePassiveOverlayMotionHint);
|
|
5191
|
+
const isPureCss3dCameraMotionFrame = !!(
|
|
5192
|
+
this.cssRenderer &&
|
|
5193
|
+
isCss3dEnabled &&
|
|
5194
|
+
!isInLodMode &&
|
|
5195
|
+
shouldUpdateCss3d &&
|
|
5196
|
+
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
5197
|
+
isCameraMoving === true &&
|
|
5198
|
+
!isNodeInteracting &&
|
|
5199
|
+
!hasNonCameraNavigationForcedUpdate &&
|
|
5200
|
+
!hasPendingNearCssWarmup &&
|
|
5201
|
+
!hasOverlayFocus &&
|
|
5202
|
+
this._css3dVisualChangedThisFrame !== true &&
|
|
5203
|
+
this._css3dVisualChangedSinceLastRender !== true &&
|
|
5204
|
+
!lodVisualEpochChangedThisFrame &&
|
|
5205
|
+
this.isWindowResizing !== true
|
|
5206
|
+
);
|
|
5170
5207
|
|
|
5171
5208
|
// 4. CSS3D Position Sync
|
|
5172
5209
|
// ----------------------------------------------------------------
|
|
@@ -5194,7 +5231,9 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5194
5231
|
|
|
5195
5232
|
// 5. Cursor DOM position
|
|
5196
5233
|
// ----------------------------------------------------------------
|
|
5197
|
-
|
|
5234
|
+
if (!isPureCss3dCameraMotionFrame || (this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0) {
|
|
5235
|
+
updateCursorDomElement(this);
|
|
5236
|
+
}
|
|
5198
5237
|
|
|
5199
5238
|
// 6. Theme Animation
|
|
5200
5239
|
// ----------------------------------------------------------------
|
|
@@ -5210,7 +5249,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5210
5249
|
typeof this.currentThemeObject.animate === 'function') {
|
|
5211
5250
|
const themeAnimationInterval = this._getThemeAnimationInterval(isInteractiveFrame, themeAnimationMode);
|
|
5212
5251
|
const forceThemeCameraUpdate =
|
|
5213
|
-
|
|
5252
|
+
hasNonCameraNavigationForcedUpdate === true ||
|
|
5214
5253
|
zoomEndedThisFrame === true ||
|
|
5215
5254
|
panEndedThisFrame === true ||
|
|
5216
5255
|
cameraEndedThisFrame === true ||
|
|
@@ -5225,7 +5264,7 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5225
5264
|
const themeRunner = window.MindMapThemes?.runAnimationIfNeeded;
|
|
5226
5265
|
if (typeof themeRunner === 'function') {
|
|
5227
5266
|
themeAnimatedThisFrame = themeRunner(this.currentThemeName, this.currentThemeObject, this.camera, {
|
|
5228
|
-
|
|
5267
|
+
force: forceThemeCameraUpdate,
|
|
5229
5268
|
isCameraMoving: isCameraMoving === true,
|
|
5230
5269
|
isPanning: this.isPanning === true,
|
|
5231
5270
|
isZooming: this.isZooming === true,
|
|
@@ -5252,6 +5291,11 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5252
5291
|
shouldUseAnimation60Fps === true ||
|
|
5253
5292
|
shouldUseAnimationLowFpsFrame === true ||
|
|
5254
5293
|
themeAnimatedThisFrame === true
|
|
5294
|
+
) &&
|
|
5295
|
+
(
|
|
5296
|
+
isPureCss3dCameraMotionFrame !== true ||
|
|
5297
|
+
themeAnimatedThisFrame === true ||
|
|
5298
|
+
(this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) === 0
|
|
5255
5299
|
);
|
|
5256
5300
|
if (shouldRenderWebglFrame) {
|
|
5257
5301
|
this.renderer.render(this.scene, this.camera);
|
|
@@ -5275,18 +5319,8 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5275
5319
|
this.cssRenderer &&
|
|
5276
5320
|
typeof this.cssRenderer.renderCamera === 'function' &&
|
|
5277
5321
|
isCss3dEnabled &&
|
|
5278
|
-
|
|
5279
|
-
shouldUpdateCss3d &&
|
|
5280
|
-
(this.isPanning === true || this.isZooming === true || isCameraMoving === true) &&
|
|
5281
|
-
isCameraMoving === true &&
|
|
5282
|
-
!isNodeInteracting &&
|
|
5283
|
-
!hasNonPanForcedUpdate &&
|
|
5284
|
-
!hasPendingNearCssWarmup &&
|
|
5285
|
-
!hasOverlayFocus &&
|
|
5286
|
-
this._css3dVisualChangedThisFrame !== true &&
|
|
5287
|
-
this._css3dVisualChangedSinceLastRender !== true &&
|
|
5322
|
+
isPureCss3dCameraMotionFrame === true &&
|
|
5288
5323
|
shouldSyncCss3dTransforms !== true &&
|
|
5289
|
-
lodVisualEpochChangedThisFrame !== true &&
|
|
5290
5324
|
this.isWindowResizing !== true
|
|
5291
5325
|
);
|
|
5292
5326
|
const shouldRenderCss3dFrame = this.cssRenderer &&
|
|
@@ -5318,21 +5352,42 @@ ${summaryLines.map(line => `<div>${escapeNodeFrameDebugHtml(line)}</div>`).join(
|
|
|
5318
5352
|
this._businessAutomationEdgeVisualLayer?.isConnected ||
|
|
5319
5353
|
this._businessAutomationEdgeLayer?.isConnected
|
|
5320
5354
|
);
|
|
5355
|
+
const hasBusinessAutomationConnectionDraft =
|
|
5356
|
+
window.MindMapCss3DManager?.hasBusinessAutomationConnectionDraft?.() === true;
|
|
5357
|
+
const shouldThrottleBusinessAutomationEdgesForCameraMotion =
|
|
5358
|
+
isPureCss3dCameraMotionFrame === true &&
|
|
5359
|
+
hasBusinessAutomationConnectionDraft !== true &&
|
|
5360
|
+
!isNodeInteracting &&
|
|
5361
|
+
hasNonCameraNavigationForcedUpdate !== true &&
|
|
5362
|
+
visibilityChangedThisFrame !== true &&
|
|
5363
|
+
lodVisualEpochChangedThisFrame !== true &&
|
|
5364
|
+
(this.frameCount % CAMERA_MOTION_WEBGL_FRAME_INTERVAL) !== 0;
|
|
5321
5365
|
const shouldSyncBusinessAutomationEdges =
|
|
5322
5366
|
hasBusinessAutomationEdgeLayer &&
|
|
5323
5367
|
window.MindMapCss3DManager?.renderBusinessAutomationEdges &&
|
|
5368
|
+
shouldThrottleBusinessAutomationEdgesForCameraMotion !== true &&
|
|
5324
5369
|
(
|
|
5325
5370
|
this._businessAutomationEdgeRenderActive === true ||
|
|
5326
5371
|
this.isPanning === true ||
|
|
5327
5372
|
this.isZooming === true ||
|
|
5328
5373
|
isCameraMoving === true ||
|
|
5329
5374
|
isNodeInteracting === true ||
|
|
5330
|
-
|
|
5375
|
+
hasNonCameraNavigationForcedUpdate === true ||
|
|
5331
5376
|
visibilityChangedThisFrame === true ||
|
|
5332
5377
|
lodVisualEpochChangedThisFrame === true
|
|
5333
5378
|
);
|
|
5379
|
+
if (shouldThrottleBusinessAutomationEdgesForCameraMotion === true) {
|
|
5380
|
+
this._businessAutomationEdgesDeferredForMotion = true;
|
|
5381
|
+
}
|
|
5334
5382
|
if (shouldSyncBusinessAutomationEdges) {
|
|
5335
5383
|
window.MindMapCss3DManager.renderBusinessAutomationEdges(this);
|
|
5384
|
+
this._businessAutomationEdgesDeferredForMotion = false;
|
|
5385
|
+
} else if (this._businessAutomationEdgesDeferredForMotion === true &&
|
|
5386
|
+
hasBusinessAutomationEdgeLayer &&
|
|
5387
|
+
window.MindMapCss3DManager?.renderBusinessAutomationEdges &&
|
|
5388
|
+
(panEndedThisFrame === true || zoomEndedThisFrame === true || cameraEndedThisFrame === true)) {
|
|
5389
|
+
window.MindMapCss3DManager.renderBusinessAutomationEdges(this);
|
|
5390
|
+
this._businessAutomationEdgesDeferredForMotion = false;
|
|
5336
5391
|
}
|
|
5337
5392
|
_profileSection('automationEdges');
|
|
5338
5393
|
|
|
@@ -10522,6 +10522,10 @@
|
|
|
10522
10522
|
hitLayer.appendChild(hitGroup);
|
|
10523
10523
|
}
|
|
10524
10524
|
|
|
10525
|
+
function hasBusinessAutomationConnectionDraft() {
|
|
10526
|
+
return !!_businessAutomationConnectionDraft;
|
|
10527
|
+
}
|
|
10528
|
+
|
|
10525
10529
|
function scheduleBusinessAutomationEdgeRender(module = _module) {
|
|
10526
10530
|
if (!module?.container) {
|
|
10527
10531
|
return;
|
|
@@ -23571,6 +23575,7 @@
|
|
|
23571
23575
|
applyRemoteFleetFramePatchesForTest: applyRemoteFleetFramePatches,
|
|
23572
23576
|
openRemoteFleetControlPopupForTest: openRemoteFleetControlPopup,
|
|
23573
23577
|
closeRemoteFleetControlPopupForTest: closeRemoteFleetControlPopup,
|
|
23578
|
+
hasBusinessAutomationConnectionDraft: hasBusinessAutomationConnectionDraft,
|
|
23574
23579
|
renderBusinessAutomationEdges: renderBusinessAutomationEdges,
|
|
23575
23580
|
scheduleBusinessAutomationEdgeRender: scheduleBusinessAutomationEdgeRender,
|
|
23576
23581
|
syncBusinessAutomationSelectionContext: syncBusinessAutomationSelectionContext,
|
|
@@ -6175,6 +6175,7 @@ window.MindMapInteractions = (function () {
|
|
|
6175
6175
|
module.targetY -= normalizedDeltaY * panFactor;
|
|
6176
6176
|
module._lastPanInputAt = performance.now();
|
|
6177
6177
|
module._forceUpdateFrames = Math.max(module._forceUpdateFrames || 0, 2);
|
|
6178
|
+
module._cameraNavigationForceFrames = Math.max(module._cameraNavigationForceFrames || 0, 2);
|
|
6178
6179
|
module._deferPassiveOverlayRefresh = false;
|
|
6179
6180
|
module._overlayDirty = true;
|
|
6180
6181
|
window.MindMapTextOverlayV2?.invalidateView?.(module);
|
|
@@ -6330,6 +6331,7 @@ window.MindMapInteractions = (function () {
|
|
|
6330
6331
|
module.targetX = newX;
|
|
6331
6332
|
module.targetY = newY;
|
|
6332
6333
|
module._forceUpdateFrames = Math.max(Number(module._forceUpdateFrames || 0), 2);
|
|
6334
|
+
module._cameraNavigationForceFrames = Math.max(Number(module._cameraNavigationForceFrames || 0), 2);
|
|
6333
6335
|
// ▲▲▲ [Changed] ▲▲▲
|
|
6334
6336
|
|
|
6335
6337
|
// ▼▼▼ [Perf] 줌 종료 감지 및 CSS3D 업데이트 타이머 ▼▼▼
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "/
|
|
2
|
+
"version": "K/taiqDv",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"url": "_content/MindExecution.Shared/js/marked.min.js"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
"hash": "sha256-
|
|
81
|
+
"hash": "sha256-L5F/PiBcKx1Eln1SKxogQkd98lX1qWvOo7qM9ESkZXM=",
|
|
82
82
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"url": "_content/MindExecution.Shared/js/mind-map-core.js.backup"
|
|
87
87
|
},
|
|
88
88
|
{
|
|
89
|
-
"hash": "sha256-
|
|
89
|
+
"hash": "sha256-kkLRfKhP8lwimU4UAPpT3pQQo1IjFpRqqVK03ebH1js=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"url": "_content/MindExecution.Shared/js/mind-map-glow-shader.js"
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
|
-
"hash": "sha256-
|
|
109
|
+
"hash": "sha256-hhn4w/HZp82ZX3rluvDHeHQ9MRVL5ppDwgmAk4TeAlY=",
|
|
110
110
|
"url": "_content/MindExecution.Shared/js/mind-map-interactions.js"
|
|
111
111
|
},
|
|
112
112
|
{
|