@nebularstreams/libmui 2.5.106 → 2.5.107

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.106",
4
+ "version": "2.5.107",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -398,8 +398,8 @@ const
398
398
  isCardieArray
399
399
  ? Array.isArray(rawValue)
400
400
  ? rawValue.map((item, index) => m(CardieWidget, {
401
- class: "relative grows " + (metaDef.class || "emby w-max") + (metaDef.dynClass ? " " + metaDef.dynClass(parameters, auxParameters) : ""),
402
- title: metaDef.dynTitle ? metaDef.dynTitle(parameters, auxParameters) : metaDef.title + " " + (index + 1),
401
+ class: "relative grows " + (metaDef.class || "pad-h emby w-max") + (metaDef.dynClass ? " " + metaDef.dynClass(parameters, auxParameters, index) : ""),
402
+ title: metaDef.dynTitle ? metaDef.dynTitle(parameters, auxParameters, index) : metaDef.title + " " + (index + 1),
403
403
  cardid: metaDef.cardid + "-" + index,
404
404
  nofold: false,
405
405
  size: metaDef.margin || 0,