@nebularstreams/libmui 2.5.96 → 2.5.98

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.96",
4
+ "version": "2.5.98",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -217,8 +217,8 @@ function tokenizeUrl(tokenizedUrl, parameters, options) {
217
217
  }
218
218
 
219
219
  const
220
- REGEX_DOTS = /[^0-9A-Z.-]+/gi,
221
- REGEX_NODOTS = /[^0-9A-Z-]+/gi;
220
+ REGEX_DOTS = /[^0-9A-Z.-_]+/gi,
221
+ REGEX_NODOTS = /[^0-9A-Z-_]+/gi;
222
222
 
223
223
  function sanitizeFilename(filename, withDots = true) {
224
224
  // EDGE CASE -> NO DOT AT THE END
@@ -429,8 +429,17 @@ const
429
429
  ],
430
430
  titleExpended: metaDef.titleExpanded || metaDef.hint,
431
431
  titleCollapsed: metaDef.titleCollapsed || metaDef.hint,
432
- }))
432
+ })).concat(metaDef.addAction ? [
433
+ m(ButtonNew, {
434
+ ...metaDef.addAction,
435
+ onClick: (e) => {
436
+ metaDef.addAction.onClick(e, parameters, auxParameters);
437
+ m.redraw();
438
+ }
439
+ })
440
+ ] : [])
433
441
  : []
442
+
434
443
  : isCardie
435
444
  ? [
436
445
  m(CardieWidget, {