@mindexec/cli 0.2.207 → 0.2.208
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
CHANGED
|
@@ -17928,6 +17928,10 @@
|
|
|
17928
17928
|
if (controlTarget) {
|
|
17929
17929
|
return;
|
|
17930
17930
|
}
|
|
17931
|
+
const monitorTileTarget = event.target?.closest?.('[data-remote-fleet-action="select-device"], [data-remote-fleet-device-preview]');
|
|
17932
|
+
if (monitorTileTarget) {
|
|
17933
|
+
return;
|
|
17934
|
+
}
|
|
17931
17935
|
|
|
17932
17936
|
selectRemoteFleetMonitorNodeFromPointer(bodyView.dataset.remoteFleetMonitorNodeId, event);
|
|
17933
17937
|
}, true);
|
|
@@ -18965,15 +18969,17 @@
|
|
|
18965
18969
|
});
|
|
18966
18970
|
const applySelectedDeviceVisualState = selectedDeviceId => {
|
|
18967
18971
|
const normalizedSelectedId = String(selectedDeviceId || '').trim();
|
|
18972
|
+
const previousSelectedId = String(bodyView.dataset.remoteFleetSelectedDeviceId || '').trim();
|
|
18968
18973
|
if (normalizedSelectedId) {
|
|
18969
18974
|
bodyView.dataset.remoteFleetSelectedDeviceId = normalizedSelectedId;
|
|
18970
18975
|
} else {
|
|
18971
18976
|
delete bodyView.dataset.remoteFleetSelectedDeviceId;
|
|
18972
18977
|
}
|
|
18973
18978
|
|
|
18974
|
-
|
|
18979
|
+
const updateCard = (card, isSelected) => {
|
|
18980
|
+
if (!card) return;
|
|
18975
18981
|
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
18976
|
-
|
|
18982
|
+
if (!deviceId) return;
|
|
18977
18983
|
card.dataset.remoteFleetSelected = isSelected ? 'true' : 'false';
|
|
18978
18984
|
card.setAttribute('aria-pressed', isSelected ? 'true' : 'false');
|
|
18979
18985
|
|
|
@@ -18986,7 +18992,15 @@
|
|
|
18986
18992
|
preview.style.outlineOffset = isSelected ? '-2px' : '0';
|
|
18987
18993
|
preview.style.boxShadow = 'none';
|
|
18988
18994
|
}
|
|
18989
|
-
}
|
|
18995
|
+
};
|
|
18996
|
+
|
|
18997
|
+
if (previousSelectedId && previousSelectedId !== normalizedSelectedId) {
|
|
18998
|
+
updateCard(grid.querySelector(`article[data-device-id="${cssEscapeValue(previousSelectedId)}"]`), false);
|
|
18999
|
+
}
|
|
19000
|
+
|
|
19001
|
+
if (normalizedSelectedId) {
|
|
19002
|
+
updateCard(grid.querySelector(`article[data-device-id="${cssEscapeValue(normalizedSelectedId)}"]`), true);
|
|
19003
|
+
}
|
|
18990
19004
|
|
|
18991
19005
|
window.RuntimeTrace?.emit?.('remote.monitor.deviceSelected', {
|
|
18992
19006
|
nodeId,
|
|
@@ -18995,7 +19009,7 @@
|
|
|
18995
19009
|
});
|
|
18996
19010
|
};
|
|
18997
19011
|
getDeviceCards().forEach(card => {
|
|
18998
|
-
['mousedown', 'mouseup', 'dblclick'].forEach(eventName => {
|
|
19012
|
+
['pointerdown', 'mousedown', 'mouseup', 'dblclick'].forEach(eventName => {
|
|
18999
19013
|
card.addEventListener(eventName, event => {
|
|
19000
19014
|
if (event.button === 1 || event.button === 2) {
|
|
19001
19015
|
if (eventName === 'mousedown') {
|
|
@@ -19005,11 +19019,13 @@
|
|
|
19005
19019
|
}
|
|
19006
19020
|
|
|
19007
19021
|
event.stopPropagation();
|
|
19022
|
+
event.stopImmediatePropagation?.();
|
|
19008
19023
|
});
|
|
19009
19024
|
});
|
|
19010
19025
|
card.addEventListener('dblclick', event => {
|
|
19011
19026
|
event.preventDefault();
|
|
19012
19027
|
event.stopPropagation();
|
|
19028
|
+
event.stopImmediatePropagation?.();
|
|
19013
19029
|
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
19014
19030
|
if (!deviceId) return;
|
|
19015
19031
|
applySelectedDeviceVisualState(deviceId);
|
|
@@ -19043,6 +19059,7 @@
|
|
|
19043
19059
|
const selectCard = event => {
|
|
19044
19060
|
event.preventDefault();
|
|
19045
19061
|
event.stopPropagation();
|
|
19062
|
+
event.stopImmediatePropagation?.();
|
|
19046
19063
|
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
19047
19064
|
if (!deviceId) return;
|
|
19048
19065
|
applySelectedDeviceVisualState(deviceId);
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<title>MindExec | Business Execution OS for solo builders</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-mdm-select-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-mdm-select-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-mdm-select-isolated-v624-x1" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-mdm-select-isolated-v624-x1" />
|
|
12
12
|
<!-- ?占썩뼹??Font Awesome (local) ?占썩뼹??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?占썩뼯??-->
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260618-mdm-select-
|
|
582
|
+
const scriptVersion = '20260618-mdm-select-isolated-v624-x1';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "3ooTJksk",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -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-gj/1Ji+BbpWEEXxsJO/G06JwsucL7DPWqcPqRHEXAMg=",
|
|
90
90
|
"url": "_content/MindExecution.Shared/js/mind-map-css3d-manager.js"
|
|
91
91
|
},
|
|
92
92
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-G9VeNBViV+SdcI+K0CTSCBUeAPdnMjIquPkPHx3PKTE=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|