geomui 0.5.34 → 0.5.35
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/dist/InputParams.svelte +6 -4
- package/package.json +1 -1
package/dist/InputParams.svelte
CHANGED
|
@@ -182,10 +182,13 @@ function paramPict(keyName) {
|
|
|
182
182
|
paramSvg = `${base}/pgdsvg/${pDef.paramSvg[keyName]}`;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
+
let prePartName = "";
|
|
185
186
|
function paramPict2(idx, pDef_page) {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
if (prePartName !== pDef.partName) {
|
|
188
|
+
const paramNb = Object.keys($storePV[pDef_page]).length;
|
|
189
|
+
if (idx < paramNb) {
|
|
190
|
+
paramPict(Object.keys($storePV[pDef_page])[idx]);
|
|
191
|
+
}
|
|
189
192
|
}
|
|
190
193
|
}
|
|
191
194
|
$:
|
|
@@ -231,7 +234,6 @@ function makeHTableVis(iHTable) {
|
|
|
231
234
|
}
|
|
232
235
|
let htable;
|
|
233
236
|
let htableVis;
|
|
234
|
-
let prePartName = "";
|
|
235
237
|
$: {
|
|
236
238
|
htable = makeHTable(pDef.params);
|
|
237
239
|
if (prePartName !== pDef.partName) {
|