neo.mjs 4.2.3 → 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.
@@ -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
|
" */",
|