neo.mjs 6.4.0 → 6.4.2
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/apps/ServiceWorker.mjs
CHANGED
package/package.json
CHANGED
@@ -6,16 +6,20 @@
|
|
6
6
|
input::-webkit-inner-spin-button,
|
7
7
|
input::-webkit-calendar-picker-indicator,
|
8
8
|
input::-webkit-outer-spin-button {
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
appearance: none;
|
10
|
+
display : none;
|
11
|
+
margin : 0;
|
12
12
|
}
|
13
13
|
|
14
|
-
// Firefox => no luck => https://gitlab.com/tobiu/neoteric/issues/198
|
15
|
-
::-moz-datetime-reset-button {
|
16
|
-
display: none;
|
17
|
-
}
|
18
14
|
.datetime-reset-button {
|
19
15
|
display: none;
|
20
16
|
}
|
21
|
-
}
|
17
|
+
}
|
18
|
+
|
19
|
+
@-moz-document url-prefix() {
|
20
|
+
.neo-datefield {
|
21
|
+
.neo-textfield-input {
|
22
|
+
clip-path: inset(0 2em 0 0);
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
package/src/DefaultConfig.mjs
CHANGED
@@ -236,12 +236,12 @@ const DefaultConfig = {
|
|
236
236
|
useVdomWorker: true,
|
237
237
|
/**
|
238
238
|
* buildScripts/injectPackageVersion.mjs will update this value
|
239
|
-
* @default '6.4.
|
239
|
+
* @default '6.4.2'
|
240
240
|
* @memberOf! module:Neo
|
241
241
|
* @name config.version
|
242
242
|
* @type String
|
243
243
|
*/
|
244
|
-
version: '6.4.
|
244
|
+
version: '6.4.2'
|
245
245
|
};
|
246
246
|
|
247
247
|
Object.assign(DefaultConfig, {
|
package/src/menu/List.mjs
CHANGED
@@ -291,6 +291,16 @@ class List extends BaseList {
|
|
291
291
|
}
|
292
292
|
}
|
293
293
|
|
294
|
+
/**
|
295
|
+
* @param {Object} node
|
296
|
+
* @param {Object} data
|
297
|
+
*/
|
298
|
+
onItemClick(node, data) {
|
299
|
+
super.onItemClick(node, data);
|
300
|
+
|
301
|
+
this.onKeyDownEnter(node.id)
|
302
|
+
}
|
303
|
+
|
294
304
|
/**
|
295
305
|
* @param {String} nodeId
|
296
306
|
*/
|
@@ -374,8 +384,10 @@ class List extends BaseList {
|
|
374
384
|
zIndex : me.zIndex + 1
|
375
385
|
}));
|
376
386
|
|
377
|
-
me.activeSubMenu
|
378
|
-
|
387
|
+
if (me.activeSubMenu !== subMenu) {
|
388
|
+
me.activeSubMenu = subMenu;
|
389
|
+
subMenu.render(true)
|
390
|
+
}
|
379
391
|
}
|
380
392
|
|
381
393
|
/**
|