@nebularstreams/libmui 2.5.93 → 2.5.94

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.93",
4
+ "version": "2.5.94",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -9,7 +9,7 @@ const
9
9
  ".buttonchoice.withicon.flexrow.scaff.scaff-b1.fadein.ohidden.fa-" + (attrs.icon || "gear"),
10
10
  {class: (attrs.containerClass || "col-11 grows marg-1"), title: attrs.title},
11
11
  m(
12
- ".flexrow.wrap.grows.col-11.ohidden.scaff-left.bg-inputs",
12
+ (attrs.themeClass ? attrs.themeClass:".flexrow.wrap") + ".grows.col-11.ohidden.scaff-left.bg-inputs",
13
13
  {class: attrs.class},
14
14
  children
15
15
  )
@@ -123,6 +123,7 @@ const
123
123
  m(ThematicWrapper, {
124
124
  title: themeTitle,
125
125
  containerClass: attrs.containerClass,
126
+ class: attrs.themeClass,
126
127
  icon: themeIcon
127
128
  }, allItems),
128
129
  ...attrs.currentWidget && current >= 0 && items[current] ? attrs.currentWidget(items[current], current) || [] : []