neo.mjs 4.2.1 → 4.2.4
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.
@@ -1,4 +1,17 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"author" : "Tobias Uhlig",
|
4
|
+
"authorImage" : "author_TobiasUhlig.jpeg",
|
5
|
+
"date" : "Sep 07, 2022",
|
6
|
+
"id" : 53,
|
7
|
+
"image" : "the-secret-of-successfully-using-multi-window-webgl-canvas.png",
|
8
|
+
"name" : "The secret of successfully using multi window WebGL Canvas",
|
9
|
+
"provider" : "Medium",
|
10
|
+
"publisher" : "",
|
11
|
+
"selectedInto": [],
|
12
|
+
"type" : "Blog Post",
|
13
|
+
"url" : "https://tobiasuhlig.medium.com/the-secret-of-successfully-using-multi-window-webgl-canvas-5a2d05555ad1?source=friends_link&sk=d24ec0ec25aa6678d5fd1f59aaf09007"
|
14
|
+
},
|
2
15
|
{
|
3
16
|
"author" : "Tobias Uhlig",
|
4
17
|
"authorImage" : "author_TobiasUhlig.jpeg",
|
@@ -604,6 +604,13 @@ if (programOpts.info) {
|
|
604
604
|
" }]"
|
605
605
|
);
|
606
606
|
|
607
|
+
baseClass === 'model.Component' && addComma(classContent).push(
|
608
|
+
" /**",
|
609
|
+
" * @member {Object} data",
|
610
|
+
" */",
|
611
|
+
" data: {}"
|
612
|
+
);
|
613
|
+
|
607
614
|
baseClass === 'data.Model' && addComma(classContent).push(
|
608
615
|
" /**",
|
609
616
|
" * @member {Object[]} fields",
|
@@ -614,7 +621,7 @@ if (programOpts.info) {
|
|
614
621
|
" }]"
|
615
622
|
);
|
616
623
|
|
617
|
-
baseClass === 'container.Base' && addComma(classContent).push(
|
624
|
+
(baseClass === 'container.Base' || baseClass === 'container.Viewport') && addComma(classContent).push(
|
618
625
|
" /**",
|
619
626
|
" * @member {Object[]} items",
|
620
627
|
" */",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "neo.mjs",
|
3
|
-
"version": "4.2.
|
3
|
+
"version": "4.2.4",
|
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.
|
58
|
+
"sass": "^1.54.9",
|
59
59
|
"webpack": "^5.74.0",
|
60
60
|
"webpack-cli": "^4.10.0",
|
61
|
-
"webpack-dev-server": "4.
|
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
|
},
|
@@ -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
|
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
|
*/
|