neo.mjs 4.2.2 → 4.2.5

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.
@@ -7,10 +7,10 @@
7
7
  "image" : "the-secret-of-successfully-using-multi-window-webgl-canvas.png",
8
8
  "name" : "The secret of successfully using multi window WebGL Canvas",
9
9
  "provider" : "Medium",
10
- "publisher" : "",
10
+ "publisher" : "ITNEXT",
11
11
  "selectedInto": [],
12
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"
13
+ "url" : "https://itnext.io/the-secret-of-successfully-using-multi-window-webgl-canvas-5a2d05555ad1?source=friends_link&sk=d24ec0ec25aa6678d5fd1f59aaf09007"
14
14
  },
15
15
  {
16
16
  "author" : "Tobias Uhlig",
@@ -397,4 +397,6 @@ if (programOpts.info) {
397
397
  }
398
398
 
399
399
  fs.writeFileSync(classPath, contentArray.join(os.EOL));
400
+
401
+ process.exit();
400
402
  }
@@ -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
  " */",
@@ -650,6 +657,13 @@ if (programOpts.info) {
650
657
  " singleton: true"
651
658
  );
652
659
 
660
+ baseClass === 'model.Component' && addComma(classContent).push(
661
+ " /**",
662
+ " * @member {Object} stores",
663
+ " */",
664
+ " stores: {}",
665
+ );
666
+
653
667
  baseClass === 'component.Base' && addComma(classContent).push(
654
668
  " /**",
655
669
  " * @member {Object} _vdom",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.2.2",
3
+ "version": "4.2.5",
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
  */