@mindexec/cli 0.2.206 → 0.2.207
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
|
@@ -18963,6 +18963,37 @@
|
|
|
18963
18963
|
control.addEventListener(eventName, event => event.stopPropagation());
|
|
18964
18964
|
});
|
|
18965
18965
|
});
|
|
18966
|
+
const applySelectedDeviceVisualState = selectedDeviceId => {
|
|
18967
|
+
const normalizedSelectedId = String(selectedDeviceId || '').trim();
|
|
18968
|
+
if (normalizedSelectedId) {
|
|
18969
|
+
bodyView.dataset.remoteFleetSelectedDeviceId = normalizedSelectedId;
|
|
18970
|
+
} else {
|
|
18971
|
+
delete bodyView.dataset.remoteFleetSelectedDeviceId;
|
|
18972
|
+
}
|
|
18973
|
+
|
|
18974
|
+
getDeviceCards().forEach(card => {
|
|
18975
|
+
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
18976
|
+
const isSelected = !!normalizedSelectedId && deviceId === normalizedSelectedId;
|
|
18977
|
+
card.dataset.remoteFleetSelected = isSelected ? 'true' : 'false';
|
|
18978
|
+
card.setAttribute('aria-pressed', isSelected ? 'true' : 'false');
|
|
18979
|
+
|
|
18980
|
+
const preview = card.querySelector?.('[data-remote-fleet-device-preview]') || card.firstElementChild;
|
|
18981
|
+
if (preview?.style) {
|
|
18982
|
+
preview.style.borderColor = isSelected
|
|
18983
|
+
? 'rgba(37, 99, 235, 0.86)'
|
|
18984
|
+
: 'rgba(148, 163, 184, 0.24)';
|
|
18985
|
+
preview.style.outline = isSelected ? '2px solid rgba(37, 99, 235, 0.18)' : '0';
|
|
18986
|
+
preview.style.outlineOffset = isSelected ? '-2px' : '0';
|
|
18987
|
+
preview.style.boxShadow = 'none';
|
|
18988
|
+
}
|
|
18989
|
+
});
|
|
18990
|
+
|
|
18991
|
+
window.RuntimeTrace?.emit?.('remote.monitor.deviceSelected', {
|
|
18992
|
+
nodeId,
|
|
18993
|
+
deviceId: normalizedSelectedId,
|
|
18994
|
+
mode: 'dom-patch'
|
|
18995
|
+
});
|
|
18996
|
+
};
|
|
18966
18997
|
getDeviceCards().forEach(card => {
|
|
18967
18998
|
['mousedown', 'mouseup', 'dblclick'].forEach(eventName => {
|
|
18968
18999
|
card.addEventListener(eventName, event => {
|
|
@@ -18981,7 +19012,7 @@
|
|
|
18981
19012
|
event.stopPropagation();
|
|
18982
19013
|
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
18983
19014
|
if (!deviceId) return;
|
|
18984
|
-
|
|
19015
|
+
applySelectedDeviceVisualState(deviceId);
|
|
18985
19016
|
if (card.dataset.remoteFleetOpeningControlNode === 'true') {
|
|
18986
19017
|
return;
|
|
18987
19018
|
}
|
|
@@ -19014,7 +19045,7 @@
|
|
|
19014
19045
|
event.stopPropagation();
|
|
19015
19046
|
const deviceId = String(card.dataset.deviceId || '').trim();
|
|
19016
19047
|
if (!deviceId) return;
|
|
19017
|
-
|
|
19048
|
+
applySelectedDeviceVisualState(deviceId);
|
|
19018
19049
|
};
|
|
19019
19050
|
card.addEventListener('click', selectCard);
|
|
19020
19051
|
card.addEventListener('keydown', event => {
|
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-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-mdm-select-fast-v623-x1" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-mdm-select-fast-v623-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-
|
|
582
|
+
const scriptVersion = '20260618-mdm-select-fast-v623-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": "BR/oJzvr",
|
|
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-SBzGzTPXsG6Y/wv5Gje22Ljhops+w3oQOecMgDEF1Xg=",
|
|
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-0JDdU0UMUh/6DXGHArgXB+qlJm2ozE+7SjrrKnKdipk=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|