geomui 0.5.33 → 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.
@@ -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
- const paramNb = Object.keys($storePV[pDef_page]).length;
187
- if (idx < paramNb) {
188
- paramPict(Object.keys($storePV[pDef_page])[idx]);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geomui",
3
- "version": "0.5.33",
3
+ "version": "0.5.35",
4
4
  "description": "The svelte-library of the webapp-UI of Parametrix",
5
5
  "type": "module",
6
6
  "private": false,