forge-jsxy 1.0.76 → 1.0.77

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 (38) hide show
  1. package/assets/codicons/codicon.css +629 -0
  2. package/assets/codicons/codicon.ttf +0 -0
  3. package/assets/explorer-highlight/explorer-highlight.css +110 -0
  4. package/assets/explorer-highlight/highlight.min.js +1213 -0
  5. package/assets/files-explorer-template.html +2940 -692
  6. package/assets/remote-control-template.html +78 -22
  7. package/dist/agentRunner.js +6 -0
  8. package/dist/assets/codicons/codicon.css +629 -0
  9. package/dist/assets/codicons/codicon.ttf +0 -0
  10. package/dist/assets/explorer-highlight/explorer-highlight.css +110 -0
  11. package/dist/assets/explorer-highlight/highlight.min.js +1213 -0
  12. package/dist/assets/files-explorer-template.html +2941 -693
  13. package/dist/assets/remote-control-template.html +78 -22
  14. package/dist/discordAgentScreenshot.js +6 -1
  15. package/dist/discordRateLimit.js +22 -11
  16. package/dist/discordRelayUpload.js +4 -2
  17. package/dist/explorerHeavyDirSkips.d.ts +8 -0
  18. package/dist/explorerHeavyDirSkips.js +26 -0
  19. package/dist/exportMirrorCopy.d.ts +13 -1
  20. package/dist/exportMirrorCopy.js +89 -2
  21. package/dist/filesExplorer.d.ts +9 -0
  22. package/dist/filesExplorer.js +86 -4
  23. package/dist/fsMessages.d.ts +2 -0
  24. package/dist/fsMessages.js +29 -8
  25. package/dist/fsProtocol.d.ts +8 -4
  26. package/dist/fsProtocol.js +923 -151
  27. package/dist/hfCredentials.d.ts +1 -1
  28. package/dist/hfCredentials.js +1 -1
  29. package/dist/hfSeqIdLookup.d.ts +2 -2
  30. package/dist/hfSeqIdLookup.js +11 -5
  31. package/dist/hfUpload.d.ts +2 -2
  32. package/dist/hfUpload.js +103 -17
  33. package/dist/relayAgent.js +2 -2
  34. package/dist/relayDashboardGate.js +42 -55
  35. package/dist/relayServer.js +154 -6
  36. package/dist/syncClient.js +5 -0
  37. package/dist/windowsInputSync.js +20 -1
  38. package/package.json +3 -1
@@ -0,0 +1,110 @@
1
+ /**
2
+ * Preview pane: Dark+–style colors over highlight.js class names
3
+ * (aligned with VS Code default dark theme token hues).
4
+ */
5
+ #preview .preview-text-hl {
6
+ margin: 0;
7
+ padding: 12px 14px;
8
+ font-family: var(--fe-font-mono, "Cascadia Mono", "Cascadia Code", ui-monospace, monospace);
9
+ font-size: 12px;
10
+ line-height: 1.55;
11
+ white-space: pre-wrap;
12
+ word-break: break-word;
13
+ tab-size: 4;
14
+ -moz-tab-size: 4;
15
+ background: #1e1e1e;
16
+ color: #d4d4d4;
17
+ border: 1px solid var(--vscode-widget-border, #303030);
18
+ border-radius: 3px;
19
+ overflow-x: auto;
20
+ }
21
+ #preview .preview-text-hl code.hljs {
22
+ display: block;
23
+ padding: 0;
24
+ background: transparent;
25
+ font-family: inherit;
26
+ font-size: inherit;
27
+ line-height: inherit;
28
+ }
29
+
30
+ /* Keywords, control flow */
31
+ .preview-text-hl .hljs-keyword,
32
+ .preview-text-hl .hljs-selector-tag,
33
+ .preview-text-hl .hljs-literal,
34
+ .preview-text-hl .hljs-section,
35
+ .preview-text-hl .hljs-link,
36
+ .preview-text-hl .hljs-selector-attr,
37
+ .preview-text-hl .hljs-selector-pseudo {
38
+ color: #569cd6;
39
+ }
40
+ /* Functions, methods, titles */
41
+ .preview-text-hl .hljs-title,
42
+ .preview-text-hl .hljs-name,
43
+ .preview-text-hl .hljs-selector-id,
44
+ .preview-text-hl .hljs-selector-class,
45
+ .preview-text-hl .hljs-built_in,
46
+ .preview-text-hl .hljs-attribute {
47
+ color: #dcdcaa;
48
+ }
49
+ /* Strings, CSS values */
50
+ .preview-text-hl .hljs-string,
51
+ .preview-text-hl .hljs-attr,
52
+ .preview-text-hl .hljs-symbol,
53
+ .preview-text-hl .hljs-bullet,
54
+ .preview-text-hl .hljs-addition,
55
+ .preview-text-hl .hljs-template-tag,
56
+ .preview-text-hl .hljs-template-variable {
57
+ color: #ce9178;
58
+ }
59
+ /* Comments */
60
+ .preview-text-hl .hljs-comment,
61
+ .preview-text-hl .hljs-quote,
62
+ .preview-text-hl .hljs-doctag {
63
+ color: #6a9955;
64
+ font-style: italic;
65
+ }
66
+ /* Numbers, booleans */
67
+ .preview-text-hl .hljs-number,
68
+ .preview-text-hl .hljs-regexp {
69
+ color: #b5cea8;
70
+ }
71
+ /* Types, classes */
72
+ .preview-text-hl .hljs-type,
73
+ .preview-text-hl .hljs-class {
74
+ color: #4ec9b0;
75
+ }
76
+ /* Variables, parameters, properties */
77
+ .preview-text-hl .hljs-variable,
78
+ .preview-text-hl .hljs-params,
79
+ .preview-text-hl .hljs-property {
80
+ color: #9cdcfe;
81
+ }
82
+ /* Meta, preprocessor, diff */
83
+ .preview-text-hl .hljs-meta,
84
+ .preview-text-hl .hljs-subst,
85
+ .preview-text-hl .hljs-formula {
86
+ color: #c586c0;
87
+ }
88
+ /* Markup: tags */
89
+ .preview-text-hl .hljs-tag {
90
+ color: #808080;
91
+ }
92
+ .preview-text-hl .hljs-tag .hljs-name {
93
+ color: #569cd6;
94
+ }
95
+ /* Markup: attributes */
96
+ .preview-text-hl .hljs-tag .hljs-attr {
97
+ color: #92c5f6;
98
+ }
99
+ /* Operators, punctuation */
100
+ .preview-text-hl .hljs-operator,
101
+ .preview-text-hl .hljs-punctuation {
102
+ color: #d4d4d4;
103
+ }
104
+ /* Emphasis */
105
+ .preview-text-hl .hljs-emphasis {
106
+ font-style: italic;
107
+ }
108
+ .preview-text-hl .hljs-strong {
109
+ font-weight: 600;
110
+ }