neo.mjs 4.2.2 → 4.2.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.2.2",
3
+ "version": "4.2.3",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -55,10 +55,10 @@
55
55
  "neo-jsdoc": "^1.0.1",
56
56
  "neo-jsdoc-x": "^1.0.4",
57
57
  "postcss": "^8.4.16",
58
- "sass": "^1.54.8",
58
+ "sass": "^1.54.9",
59
59
  "webpack": "^5.74.0",
60
60
  "webpack-cli": "^4.10.0",
61
- "webpack-dev-server": "4.10.1",
61
+ "webpack-dev-server": "4.11.0",
62
62
  "webpack-hook-plugin": "^1.0.7",
63
63
  "webpack-node-externals": "^3.0.0"
64
64
  },
@@ -24,6 +24,7 @@
24
24
  }
25
25
 
26
26
  .neo-list {
27
+ overflow-y: auto;
27
28
  text-align: left;
28
29
 
29
30
  .neo-highlight-search {
@@ -43,4 +44,4 @@
43
44
  border-radius: v(selectfield-picker-container-border-radius);
44
45
  font-weight : 400;
45
46
  }
46
- }
47
+ }
@@ -5,7 +5,7 @@ import Store from '../../data/Store.mjs';
5
5
  import VDomUtil from '../../util/VDom.mjs';
6
6
 
7
7
  /**
8
- * Provides a drop down list to select one or multiple items
8
+ * Provides a dropdown list to select one or multiple items
9
9
  * @class Neo.form.field.Select
10
10
  * @extends Neo.form.field.Picker
11
11
  */