@nebularstreams/libmui 2.5.118 → 2.5.119

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.118",
4
+ "version": "2.5.119",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -100,12 +100,12 @@ const
100
100
  ];
101
101
 
102
102
  return m(
103
- ".textfield.flexrow.relative",
103
+ ".textfield.flexcol.relative",
104
104
  {
105
105
  class: (attrs.label ? "witharia" : "") + (attrs.containerClass ? " " + attrs.containerClass : ""),
106
106
  ...attrs.label && {"aria-label": attrs.label}
107
107
  },
108
- [
108
+ m(".textfieldinner.flexrow", [
109
109
  (attrs.staticField && (attrs.readonly || !state.showInput))
110
110
  ? m(StaticFieldWidget, {
111
111
  readonly: attrs.readonly,
@@ -241,7 +241,7 @@ const
241
241
  }),
242
242
 
243
243
  ...inputActions.length ? [m(".span.actions", inputActions)] : [],
244
- ]);
244
+ ]));
245
245
  },
246
246
  oninit: ({attrs, state}) => {
247
247
  if (attrs.staticField && attrs.draginc) {