@mindexec/cli 0.2.498 → 0.2.500

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.
Files changed (20) hide show
  1. package/package.json +1 -1
  2. package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
  3. package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
  4. package/remote-fast/win-x64/mindexec-remote-fast.dll +0 -0
  5. package/wwwroot/_content/MindExecution.Shared/css/native-hybrid.css +91 -0
  6. package/wwwroot/_content/MindExecution.Shared/js/mind-map-native-render-webview2.js +1243 -0
  7. package/wwwroot/_framework/{MindExecution.Core.s6sxjy1v7h.dll → MindExecution.Core.tzma6emhy9.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Kernel.yta9wud6wh.dll → MindExecution.Kernel.8uq80sy1fj.dll} +0 -0
  9. package/wwwroot/_framework/{MindExecution.Plugins.Admin.7aytj09ejo.dll → MindExecution.Plugins.Admin.9wa3rcqkgd.dll} +0 -0
  10. package/wwwroot/_framework/{MindExecution.Plugins.Business.wzj1pi81by.dll → MindExecution.Plugins.Business.9dppflwwaw.dll} +0 -0
  11. package/wwwroot/_framework/{MindExecution.Plugins.Concept.o6eyyttldg.dll → MindExecution.Plugins.Concept.vzlljp6zpk.dll} +0 -0
  12. package/wwwroot/_framework/{MindExecution.Plugins.Directory.rkqhevehjj.dll → MindExecution.Plugins.Directory.vygyxe6pw5.dll} +0 -0
  13. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.qfmuwz1kj6.dll → MindExecution.Plugins.PlanMaster.i8uxoahd9m.dll} +0 -0
  14. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.p6hp1w5nfq.dll → MindExecution.Plugins.YouTube.z0ibm6ffx5.dll} +0 -0
  15. package/wwwroot/_framework/{MindExecution.Shared.b4arhy9bqr.dll → MindExecution.Shared.cdr8vpcn5m.dll} +0 -0
  16. package/wwwroot/_framework/{MindExecution.Web.hlrui65yuu.dll → MindExecution.Web.8l14n1gl76.dll} +0 -0
  17. package/wwwroot/_framework/blazor.boot.json +21 -21
  18. package/wwwroot/index.html +3 -1
  19. package/wwwroot/service-worker-assets.js +31 -23
  20. package/wwwroot/service-worker.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.498",
3
+ "version": "0.2.500",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -0,0 +1,91 @@
1
+ /*
2
+ * MindExec native hybrid comparison surface.
3
+ *
4
+ * The selectors stay dormant unless the trusted WebView2 bridge marks the
5
+ * document as hybrid-compare. The web layer remains the default/fallback;
6
+ * native or overlay pixels are exposed only after the current owner snapshot
7
+ * has been acknowledged by the C++ host.
8
+ */
9
+
10
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] {
11
+ --mindexec-native-web-geometry-opacity: 1;
12
+ --mindexec-native-web-node-opacity: 1;
13
+ }
14
+
15
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="web"] {
16
+ --mindexec-native-web-geometry-opacity: 1;
17
+ --mindexec-native-web-node-opacity: 1;
18
+ }
19
+
20
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"] {
21
+ --mindexec-native-web-geometry-opacity: 0.34;
22
+ --mindexec-native-web-node-opacity: 0.78;
23
+ }
24
+
25
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"] {
26
+ --mindexec-native-web-geometry-opacity: 0;
27
+ --mindexec-native-web-node-opacity: 1;
28
+ }
29
+
30
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"],
31
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"],
32
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"] body,
33
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"] body,
34
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"] #app-container,
35
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"] #app-container,
36
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"] #app,
37
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"] #app {
38
+ background: transparent !important;
39
+ background-color: transparent !important;
40
+ }
41
+
42
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"] #mind-map-viewport,
43
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"] #mind-map-viewport {
44
+ background: transparent !important;
45
+ background-color: transparent !important;
46
+ background-image: none !important;
47
+ }
48
+
49
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport > canvas,
50
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport > svg,
51
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport .mind-map-business-automation-edge-layer {
52
+ opacity: var(--mindexec-native-web-geometry-opacity) !important;
53
+ }
54
+
55
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="overlay"]
56
+ #css3d-dom-wrapper .map-node {
57
+ opacity: var(--mindexec-native-web-node-opacity) !important;
58
+ }
59
+
60
+ /*
61
+ * Native mode transfers only node shells and edges. Text, editing, IME,
62
+ * images, video, embeds, controls and selection stay in WebView2. Remove the
63
+ * outer shell paint without hiding any descendants that carry that content.
64
+ */
65
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"]
66
+ #css3d-dom-wrapper .map-node {
67
+ background: transparent !important;
68
+ background-color: transparent !important;
69
+ border-color: transparent !important;
70
+ box-shadow: none !important;
71
+ }
72
+
73
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"]
74
+ #css3d-dom-wrapper .map-node-memo__shell,
75
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"]
76
+ #css3d-dom-wrapper .map-node-memo__header,
77
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"]
78
+ #css3d-dom-wrapper .map-node-memo__body,
79
+ html[data-mindexec-native-desktop-stage="hybrid-compare"][data-mindexec-native-compare-layer="native"]
80
+ #css3d-dom-wrapper .map-node-memo__body-view {
81
+ background-color: transparent !important;
82
+ }
83
+
84
+ @media (prefers-reduced-motion: no-preference) {
85
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport > canvas,
86
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport > svg,
87
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #mind-map-viewport .mind-map-business-automation-edge-layer,
88
+ html[data-mindexec-native-desktop-stage="hybrid-compare"] #css3d-dom-wrapper .map-node {
89
+ transition: opacity 120ms linear;
90
+ }
91
+ }