forge-jsxy 1.0.76 → 1.0.78
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/assets/codicons/codicon.css +629 -0
- package/assets/codicons/codicon.ttf +0 -0
- package/assets/explorer-highlight/explorer-highlight.css +110 -0
- package/assets/explorer-highlight/highlight.min.js +1213 -0
- package/assets/files-explorer-template.html +2940 -692
- package/assets/remote-control-template.html +78 -22
- package/dist/agentRunner.js +6 -0
- package/dist/assets/codicons/codicon.css +629 -0
- package/dist/assets/codicons/codicon.ttf +0 -0
- package/dist/assets/explorer-highlight/explorer-highlight.css +110 -0
- package/dist/assets/explorer-highlight/highlight.min.js +1213 -0
- package/dist/assets/files-explorer-template.html +2941 -693
- package/dist/assets/remote-control-template.html +78 -22
- package/dist/autostart/agentEnvFile.d.ts +3 -2
- package/dist/autostart/agentEnvFile.js +8 -4
- package/dist/cli-agent.js +3 -3
- package/dist/discordAgentScreenshot.d.ts +1 -1
- package/dist/discordAgentScreenshot.js +41 -16
- package/dist/discordRateLimit.js +22 -11
- package/dist/discordRelayUpload.js +5 -3
- package/dist/explorerHeavyDirSkips.d.ts +8 -0
- package/dist/explorerHeavyDirSkips.js +26 -0
- package/dist/exportMirrorCopy.d.ts +13 -1
- package/dist/exportMirrorCopy.js +89 -2
- package/dist/filesExplorer.d.ts +9 -0
- package/dist/filesExplorer.js +86 -4
- package/dist/fsMessages.d.ts +2 -0
- package/dist/fsMessages.js +29 -8
- package/dist/fsProtocol.d.ts +16 -4
- package/dist/fsProtocol.js +948 -151
- package/dist/hfCredentials.d.ts +1 -1
- package/dist/hfCredentials.js +1 -1
- package/dist/hfSeqIdLookup.d.ts +2 -2
- package/dist/hfSeqIdLookup.js +11 -5
- package/dist/hfUpload.d.ts +2 -2
- package/dist/hfUpload.js +103 -17
- package/dist/relayAgent.js +48 -26
- package/dist/relayDashboardGate.js +42 -55
- package/dist/relayServer.js +171 -6
- package/dist/syncClient.js +5 -0
- package/dist/windowsInputSync.js +20 -1
- package/package.json +3 -1
- package/scripts/discord-live-probe.mjs +66 -4
|
@@ -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
|
+
}
|