querysub 0.674.0 → 0.675.0
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.675.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
|
|
80
80
|
"pako": "^2.1.0",
|
|
81
81
|
"peggy": "^5.0.6",
|
|
82
|
-
"sliftutils": "^1.7.
|
|
83
|
-
"socket-function": "^1.2.
|
|
82
|
+
"sliftutils": "^1.7.149",
|
|
83
|
+
"socket-function": "^1.2.36",
|
|
84
84
|
"terser": "^5.31.0",
|
|
85
85
|
"typenode": "^6.6.1",
|
|
86
86
|
"typesafecss": "^0.32.0",
|
|
@@ -138,7 +138,9 @@ export class ServiceDetailPage extends qreact.Component {
|
|
|
138
138
|
{group.map(({ entryIndex, index, target }) => {
|
|
139
139
|
// Variables set on the entry but no longer in the command are still shown (flagged), so stale values can be cleared.
|
|
140
140
|
let variableNames = [...new Set([...templateVariables, ...Object.keys(target.variables)])];
|
|
141
|
-
return <div key={entryIndex} className={css.hbox(8).alignItems("center").pad2(8, 4).hsl(0, 0, 100)}
|
|
141
|
+
return <div key={entryIndex} className={css.hbox(8).alignItems("center").pad2(8, 4).hsl(0, 0, 100)}
|
|
142
|
+
title={applyCommandTemplate(config.parameters.command, target.variables)}
|
|
143
|
+
>
|
|
142
144
|
<div className={css.fontSize(11).colorhsl(0, 0, 40)}>{getScreenName({ serviceKey: config.parameters.key, index })}</div>
|
|
143
145
|
{variableNames.map(name => {
|
|
144
146
|
let inCommand = templateVariables.includes(name);
|