@nebularstreams/libmui 2.5.75 → 2.5.77

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.75",
4
+ "version": "2.5.77",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -20,6 +20,6 @@
20
20
  margin-bottom: 0.5rem;
21
21
  }
22
22
 
23
- .addbut.none {
23
+ .addbut.empty {
24
24
  width: 100%;
25
25
  }
package/src/index.js CHANGED
@@ -23,10 +23,11 @@ import {OverflowMenu} from "./util/widgets.core";
23
23
  import {confirm, confirmPromise} from "./util/fuckingconfirm"
24
24
  import clone from "./util/util.clone"
25
25
  import Tokenizer from "./util/util.tokenizer"
26
- import {CoolContentTicker, CoolGenericTicker, GenericButtonTicker, optionsPrompt} from "./widgets/CoolContentTicker";
26
+ import {CoolContentTicker, CoolGenericTicker, GenericButtonTicker, ThematicWrapper, optionsPrompt} from "./widgets/CoolContentTicker";
27
27
  import EmptyButton from "./widgets/EmptyButton";
28
28
  import CoolerEmpty from "./widgets/CoolerEmpty";
29
29
  import tainter from "./util/tainter"
30
+ import {ConfirmPromise} from "./util/widgets.core.js"
30
31
 
31
32
  import MainState, {implement as MainStateImplement} from "./app/MainState";
32
33
 
@@ -72,6 +73,7 @@ export {
72
73
  SwitchWidget,
73
74
  Separator,
74
75
  TitleBarWidget,
76
+ ThematicWrapper,
75
77
 
76
78
  // SelectFileMinibutton
77
79
  FileSelectButton,
@@ -98,6 +100,7 @@ export {
98
100
  clone,
99
101
  confirm,
100
102
  confirmPromise,
103
+ ConfirmPromise,
101
104
  defineWidget,
102
105
  processImage,
103
106
  popupMessage,
@@ -234,4 +234,4 @@ const
234
234
  }
235
235
  );
236
236
 
237
- export {CoolContentTicker, CoolGenericTicker, GenericButtonTicker, optionsPrompt};
237
+ export {CoolContentTicker, CoolGenericTicker, GenericButtonTicker, ThematicWrapper, optionsPrompt};