@nebularstreams/libmui 2.5.87 → 2.5.89

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@nebularstreams/libmui",
3
3
  "description": "Micro UI based on Mithril",
4
- "version": "2.5.87",
4
+ "version": "2.5.89",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -248,7 +248,7 @@ const
248
248
  ...(!attrs.toggle || !state.bodyHidden)
249
249
  ? [
250
250
  /** body */
251
- m(".grows.flexcol.ohidden", {class: attrs.bodyClass, role: "presentation"}, [
251
+ m(".grows.flexcol.ohidden.selectorbody", {class: attrs.bodyClass, role: "presentation"}, [
252
252
  m(
253
253
  current.widget,
254
254
  getAttrs(current.attrs, attrs, state.currentParams),
@@ -289,7 +289,7 @@ const
289
289
  : targetSource;
290
290
 
291
291
  // targetSource estaba antes, targetParameters incluye TARGET !!!!
292
- if ((whenner && !checkWhen(whenner, parameters, auxParameters, targetParameters))) {
292
+ if ( !parameters || (whenner && !checkWhen(whenner, parameters, auxParameters, targetParameters))) {
293
293
  return [];
294
294
  }
295
295