neo.mjs 4.8.10 → 5.0.0

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.
Files changed (564) hide show
  1. package/apps/ServiceWorker.mjs +4 -4
  2. package/apps/covid/Util.mjs +17 -19
  3. package/apps/covid/model/Country.mjs +2 -2
  4. package/apps/covid/model/HistoricalData.mjs +2 -2
  5. package/apps/covid/store/Countries.mjs +2 -2
  6. package/apps/covid/store/HistoricalData.mjs +2 -2
  7. package/apps/covid/view/AttributionComponent.mjs +2 -2
  8. package/apps/covid/view/FooterContainer.mjs +2 -2
  9. package/apps/covid/view/GalleryContainer.mjs +2 -2
  10. package/apps/covid/view/GalleryContainerController.mjs +2 -2
  11. package/apps/covid/view/HeaderContainer.mjs +2 -2
  12. package/apps/covid/view/HelixContainer.mjs +2 -2
  13. package/apps/covid/view/HelixContainerController.mjs +2 -2
  14. package/apps/covid/view/MainContainer.mjs +2 -2
  15. package/apps/covid/view/MainContainerController.mjs +2 -2
  16. package/apps/covid/view/MainContainerModel.mjs +2 -2
  17. package/apps/covid/view/TableContainer.mjs +2 -2
  18. package/apps/covid/view/TableContainerController.mjs +2 -2
  19. package/apps/covid/view/WorldMapComponent.mjs +2 -2
  20. package/apps/covid/view/WorldMapContainer.mjs +2 -2
  21. package/apps/covid/view/WorldMapContainerController.mjs +2 -2
  22. package/apps/covid/view/country/Gallery.mjs +2 -2
  23. package/apps/covid/view/country/Helix.mjs +2 -2
  24. package/apps/covid/view/country/HistoricalDataTable.mjs +2 -2
  25. package/apps/covid/view/country/LineChartComponent.mjs +2 -2
  26. package/apps/covid/view/country/Table.mjs +2 -2
  27. package/apps/covid/view/mapboxGl/Component.mjs +2 -2
  28. package/apps/covid/view/mapboxGl/Container.mjs +2 -2
  29. package/apps/covid/view/mapboxGl/ContainerController.mjs +2 -2
  30. package/apps/krausest/TableCollection.mjs +2 -2
  31. package/apps/krausest/view/MainComponent.mjs +2 -2
  32. package/apps/krausest/view/MainComponentController.mjs +2 -2
  33. package/apps/krausest/view/TableComponent.mjs +2 -2
  34. package/apps/realworld/api/Article.mjs +2 -2
  35. package/apps/realworld/api/Base.mjs +14 -16
  36. package/apps/realworld/api/Favorite.mjs +2 -2
  37. package/apps/realworld/api/Profile.mjs +2 -2
  38. package/apps/realworld/api/Tag.mjs +3 -3
  39. package/apps/realworld/api/User.mjs +3 -3
  40. package/apps/realworld/view/FooterComponent.mjs +2 -2
  41. package/apps/realworld/view/HeaderComponent.mjs +2 -2
  42. package/apps/realworld/view/HomeComponent.mjs +2 -2
  43. package/apps/realworld/view/MainContainer.mjs +2 -2
  44. package/apps/realworld/view/MainContainerController.mjs +2 -2
  45. package/apps/realworld/view/article/CommentComponent.mjs +2 -2
  46. package/apps/realworld/view/article/Component.mjs +2 -2
  47. package/apps/realworld/view/article/CreateCommentComponent.mjs +2 -2
  48. package/apps/realworld/view/article/CreateComponent.mjs +2 -2
  49. package/apps/realworld/view/article/PreviewComponent.mjs +2 -2
  50. package/apps/realworld/view/article/TagListComponent.mjs +8 -10
  51. package/apps/realworld/view/user/ProfileComponent.mjs +2 -2
  52. package/apps/realworld/view/user/SettingsComponent.mjs +2 -2
  53. package/apps/realworld/view/user/SignUpComponent.mjs +2 -2
  54. package/apps/realworld2/api/Article.mjs +2 -2
  55. package/apps/realworld2/api/Base.mjs +8 -10
  56. package/apps/realworld2/api/Favorite.mjs +2 -2
  57. package/apps/realworld2/api/Profile.mjs +2 -2
  58. package/apps/realworld2/api/Tag.mjs +3 -3
  59. package/apps/realworld2/api/User.mjs +3 -3
  60. package/apps/realworld2/model/ArticlePreview.mjs +2 -2
  61. package/apps/realworld2/store/ArticlePreviews.mjs +2 -2
  62. package/apps/realworld2/view/FooterComponent.mjs +2 -2
  63. package/apps/realworld2/view/HeaderToolbar.mjs +2 -2
  64. package/apps/realworld2/view/HeaderToolbarController.mjs +2 -2
  65. package/apps/realworld2/view/HomeContainer.mjs +2 -2
  66. package/apps/realworld2/view/MainContainer.mjs +2 -2
  67. package/apps/realworld2/view/MainContainerController.mjs +2 -2
  68. package/apps/realworld2/view/article/DetailsContainer.mjs +2 -2
  69. package/apps/realworld2/view/article/FormContainer.mjs +2 -2
  70. package/apps/realworld2/view/article/Gallery.mjs +2 -2
  71. package/apps/realworld2/view/article/GalleryContainer.mjs +2 -2
  72. package/apps/realworld2/view/article/Helix.mjs +2 -2
  73. package/apps/realworld2/view/article/HelixContainer.mjs +2 -2
  74. package/apps/realworld2/view/article/PreviewComponent.mjs +2 -2
  75. package/apps/realworld2/view/article/PreviewList.mjs +2 -2
  76. package/apps/realworld2/view/article/TagListComponent.mjs +8 -10
  77. package/apps/realworld2/view/user/LoginFormContainer.mjs +2 -2
  78. package/apps/realworld2/view/user/ProfileContainer.mjs +2 -2
  79. package/apps/realworld2/view/user/SettingsFormContainer.mjs +2 -2
  80. package/apps/sharedcovid/Util.mjs +17 -19
  81. package/apps/sharedcovid/model/Country.mjs +2 -2
  82. package/apps/sharedcovid/model/HistoricalData.mjs +2 -2
  83. package/apps/sharedcovid/store/Countries.mjs +2 -2
  84. package/apps/sharedcovid/store/HistoricalData.mjs +2 -2
  85. package/apps/sharedcovid/view/AttributionComponent.mjs +2 -2
  86. package/apps/sharedcovid/view/FooterContainer.mjs +2 -2
  87. package/apps/sharedcovid/view/GalleryContainer.mjs +2 -2
  88. package/apps/sharedcovid/view/GalleryContainerController.mjs +2 -2
  89. package/apps/sharedcovid/view/HeaderContainer.mjs +2 -2
  90. package/apps/sharedcovid/view/HelixContainer.mjs +2 -2
  91. package/apps/sharedcovid/view/HelixContainerController.mjs +2 -2
  92. package/apps/sharedcovid/view/MainContainer.mjs +2 -2
  93. package/apps/sharedcovid/view/MainContainerController.mjs +2 -2
  94. package/apps/sharedcovid/view/MainContainerModel.mjs +2 -2
  95. package/apps/sharedcovid/view/TableContainer.mjs +2 -2
  96. package/apps/sharedcovid/view/TableContainerController.mjs +2 -2
  97. package/apps/sharedcovid/view/WorldMapComponent.mjs +2 -2
  98. package/apps/sharedcovid/view/WorldMapContainer.mjs +2 -2
  99. package/apps/sharedcovid/view/WorldMapContainerController.mjs +2 -2
  100. package/apps/sharedcovid/view/country/Gallery.mjs +2 -2
  101. package/apps/sharedcovid/view/country/Helix.mjs +2 -2
  102. package/apps/sharedcovid/view/country/HistoricalDataTable.mjs +2 -2
  103. package/apps/sharedcovid/view/country/LineChartComponent.mjs +2 -2
  104. package/apps/sharedcovid/view/country/Table.mjs +2 -2
  105. package/apps/sharedcovid/view/mapboxGl/Component.mjs +2 -2
  106. package/apps/sharedcovid/view/mapboxGl/Container.mjs +2 -2
  107. package/apps/sharedcovid/view/mapboxGl/ContainerController.mjs +2 -2
  108. package/apps/sharedcovidchart/MainContainer.mjs +2 -2
  109. package/apps/sharedcovidgallery/MainContainer.mjs +2 -2
  110. package/apps/sharedcovidhelix/MainContainer.mjs +2 -2
  111. package/apps/sharedcovidmap/MainContainer.mjs +2 -2
  112. package/apps/shareddialog/view/DemoDialog.mjs +2 -2
  113. package/apps/shareddialog/view/MainContainer.mjs +2 -2
  114. package/apps/shareddialog/view/MainContainerController.mjs +2 -2
  115. package/apps/shareddialog2/view/MainContainer.mjs +2 -2
  116. package/apps/shareddialog2/view/MainContainerController.mjs +2 -2
  117. package/apps/website/model/BlogPost.mjs +2 -2
  118. package/apps/website/model/Example.mjs +2 -2
  119. package/apps/website/store/BlogPosts.mjs +2 -2
  120. package/apps/website/store/Examples.mjs +2 -2
  121. package/apps/website/view/HeaderContainer.mjs +2 -2
  122. package/apps/website/view/MainContainer.mjs +2 -2
  123. package/apps/website/view/MainContainerController.mjs +2 -2
  124. package/apps/website/view/blog/Container.mjs +2 -2
  125. package/apps/website/view/blog/List.mjs +9 -11
  126. package/apps/website/view/examples/List.mjs +9 -11
  127. package/apps/website/view/examples/TabContainer.mjs +2 -2
  128. package/apps/website/view/home/DeveloperIntroComponent.mjs +2 -2
  129. package/apps/website/view/home/ExecutiveIntroComponent.mjs +2 -2
  130. package/apps/website/view/home/TabContainer.mjs +2 -2
  131. package/buildScripts/addConfig.mjs +2 -2
  132. package/buildScripts/createApp.mjs +2 -2
  133. package/buildScripts/createClass.mjs +4 -4
  134. package/docs/app/model/Api.mjs +2 -2
  135. package/docs/app/model/Example.mjs +2 -2
  136. package/docs/app/model/Tutorial.mjs +2 -2
  137. package/docs/app/store/Api.mjs +2 -2
  138. package/docs/app/store/Examples.mjs +2 -2
  139. package/docs/app/store/Tutorials.mjs +2 -2
  140. package/docs/app/view/ApiTreeList.mjs +2 -2
  141. package/docs/app/view/ContentTabContainer.mjs +2 -2
  142. package/docs/app/view/ExamplesTreeList.mjs +2 -2
  143. package/docs/app/view/HeaderContainer.mjs +2 -2
  144. package/docs/app/view/MainContainer.mjs +2 -2
  145. package/docs/app/view/MainContainerController.mjs +2 -2
  146. package/docs/app/view/TutorialsTreeList.mjs +2 -2
  147. package/docs/app/view/classdetails/HeaderComponent.mjs +2 -2
  148. package/docs/app/view/classdetails/HierarchyTreeList.mjs +2 -2
  149. package/docs/app/view/classdetails/MainContainer.mjs +2 -2
  150. package/docs/app/view/classdetails/MainContainerController.mjs +2 -2
  151. package/docs/app/view/classdetails/MembersList.mjs +2 -2
  152. package/docs/app/view/classdetails/SourceViewComponent.mjs +2 -2
  153. package/docs/app/view/classdetails/TutorialComponent.mjs +2 -2
  154. package/examples/ConfigurationViewport.mjs +2 -2
  155. package/examples/ServiceWorker.mjs +4 -4
  156. package/examples/button/base/MainContainer.mjs +2 -2
  157. package/examples/button/split/MainContainer.mjs +2 -2
  158. package/examples/calendar/basic/MainContainer.mjs +2 -2
  159. package/examples/calendar/basic/MainContainerController.mjs +2 -2
  160. package/examples/calendar/weekview/MainContainer.mjs +2 -2
  161. package/examples/charts/MainContainer.mjs +2 -2
  162. package/examples/component/canvas/MainContainer.mjs +2 -2
  163. package/examples/component/carousel/MainContainer.mjs +2 -2
  164. package/examples/component/chip/MainContainer.mjs +2 -2
  165. package/examples/component/circle/MainContainer.mjs +2 -2
  166. package/examples/component/clock/MainContainer.mjs +2 -2
  167. package/examples/component/coronaGallery/CountryGallery.mjs +9 -11
  168. package/examples/component/coronaGallery/CountryModel.mjs +2 -2
  169. package/examples/component/coronaGallery/CountryStore.mjs +2 -2
  170. package/examples/component/coronaGallery/MainContainer.mjs +2 -2
  171. package/examples/component/coronaHelix/CountryHelix.mjs +9 -11
  172. package/examples/component/coronaHelix/CountryModel.mjs +2 -2
  173. package/examples/component/coronaHelix/CountryStore.mjs +2 -2
  174. package/examples/component/coronaHelix/MainContainer.mjs +2 -2
  175. package/examples/component/dateSelector/MainContainer.mjs +2 -2
  176. package/examples/component/gallery/ImageModel.mjs +2 -2
  177. package/examples/component/gallery/ImageStore.mjs +2 -2
  178. package/examples/component/gallery/MainContainer.mjs +2 -2
  179. package/examples/component/helix/ImageModel.mjs +2 -2
  180. package/examples/component/helix/ImageStore.mjs +2 -2
  181. package/examples/component/helix/MainContainer.mjs +2 -2
  182. package/examples/component/mwc/button/MainContainer.mjs +2 -2
  183. package/examples/component/mwc/buttons/MainContainer.mjs +2 -2
  184. package/examples/component/mwc/textField/MainContainer.mjs +2 -2
  185. package/examples/component/mwc/textFields/MainContainer.mjs +2 -2
  186. package/examples/component/splitter/MainContainer.mjs +2 -2
  187. package/examples/component/toast/MainContainer.mjs +2 -2
  188. package/examples/component/toast/MainContainerController.mjs +2 -2
  189. package/examples/component/wrapper/cesiumJS/MainContainer.mjs +2 -2
  190. package/examples/component/wrapper/cesiumJS/MainContainerController.mjs +2 -2
  191. package/examples/component/wrapper/googleMaps/MainContainer.mjs +2 -2
  192. package/examples/component/wrapper/googleMaps/MainContainerController.mjs +2 -2
  193. package/examples/component/wrapper/googleMaps/MapComponent.mjs +2 -2
  194. package/examples/component/wrapper/googleMaps/MarkerDialog.mjs +2 -2
  195. package/examples/container/MainContainer.mjs +2 -2
  196. package/examples/core/config/MainContainer.mjs +2 -2
  197. package/examples/dashboard/MainContainer.mjs +2 -2
  198. package/examples/dialog/DemoDialog.mjs +2 -2
  199. package/examples/dialog/MainContainer.mjs +2 -2
  200. package/examples/fields/MainContainer.mjs +2 -2
  201. package/examples/form/field/checkbox/MainContainer.mjs +2 -2
  202. package/examples/form/field/chip/MainContainer.mjs +2 -2
  203. package/examples/form/field/chip/MainModel.mjs +2 -2
  204. package/examples/form/field/chip/MainStore.mjs +2 -2
  205. package/examples/form/field/color/MainContainer.mjs +2 -2
  206. package/examples/form/field/color/MainModel.mjs +2 -2
  207. package/examples/form/field/color/MainStore.mjs +2 -2
  208. package/examples/form/field/date/MainContainer.mjs +2 -2
  209. package/examples/form/field/email/MainContainer.mjs +2 -2
  210. package/examples/form/field/number/MainContainer.mjs +2 -2
  211. package/examples/form/field/picker/MainContainer.mjs +2 -2
  212. package/examples/form/field/radio/MainContainer.mjs +2 -2
  213. package/examples/form/field/select/MainContainer.mjs +2 -2
  214. package/examples/form/field/select/MainModel.mjs +2 -2
  215. package/examples/form/field/select/MainStore.mjs +2 -2
  216. package/examples/form/field/text/MainContainer.mjs +2 -2
  217. package/examples/form/field/textarea/MainContainer.mjs +2 -2
  218. package/examples/form/field/time/MainContainer.mjs +2 -2
  219. package/examples/form/field/trigger/copyToClipboard/MainContainer.mjs +2 -2
  220. package/examples/form/field/url/MainContainer.mjs +2 -2
  221. package/examples/form/fieldset/MainContainer.mjs +2 -2
  222. package/examples/grid/container/MainContainer.mjs +2 -2
  223. package/examples/grid/container/MainModel.mjs +2 -2
  224. package/examples/grid/container/MainStore.mjs +2 -2
  225. package/examples/grid/covid/GridContainer.mjs +2 -2
  226. package/examples/grid/covid/GridContainerController.mjs +2 -2
  227. package/examples/grid/covid/MainContainer.mjs +2 -2
  228. package/examples/grid/covid/Model.mjs +2 -2
  229. package/examples/grid/covid/Store.mjs +2 -2
  230. package/examples/grid/covid/Util.mjs +17 -19
  231. package/examples/list/animate/List.mjs +2 -2
  232. package/examples/list/animate/MainContainer.mjs +2 -2
  233. package/examples/list/animate/MainContainerController.mjs +2 -2
  234. package/examples/list/animate/MainModel.mjs +2 -2
  235. package/examples/list/animate/MainStore.mjs +2 -2
  236. package/examples/list/base/MainContainer.mjs +2 -2
  237. package/examples/list/base/MainModel.mjs +2 -2
  238. package/examples/list/base/MainStore.mjs +2 -2
  239. package/examples/list/chip/MainContainer.mjs +2 -2
  240. package/examples/list/chip/MainModel.mjs +2 -2
  241. package/examples/list/chip/MainStore.mjs +2 -2
  242. package/examples/list/circle/MainContainer.mjs +2 -2
  243. package/examples/list/circle/MainModel.mjs +2 -2
  244. package/examples/list/circle/MainStore.mjs +2 -2
  245. package/examples/list/color/MainContainer.mjs +2 -2
  246. package/examples/list/color/MainModel.mjs +2 -2
  247. package/examples/list/color/MainStore.mjs +2 -2
  248. package/examples/menu/list/MainContainer.mjs +2 -2
  249. package/examples/menu/list/MainStore.mjs +2 -2
  250. package/examples/menu/panel/MainContainer.mjs +2 -2
  251. package/examples/model/advanced/MainContainer.mjs +2 -2
  252. package/examples/model/advanced/MainContainerController.mjs +2 -2
  253. package/examples/model/dialog/EditUserDialog.mjs +2 -2
  254. package/examples/model/dialog/EditUserDialogController.mjs +2 -2
  255. package/examples/model/dialog/MainContainer.mjs +2 -2
  256. package/examples/model/dialog/MainContainerController.mjs +2 -2
  257. package/examples/model/extendedClass/MainContainer.mjs +2 -2
  258. package/examples/model/extendedClass/MainContainerController.mjs +2 -2
  259. package/examples/model/extendedClass/MainContainerModel.mjs +2 -2
  260. package/examples/model/inline/MainContainer.mjs +2 -2
  261. package/examples/model/inline/MainContainerController.mjs +2 -2
  262. package/examples/model/inlineNoModel/MainContainer.mjs +2 -2
  263. package/examples/model/inlineNoModel/MainContainerController.mjs +2 -2
  264. package/examples/model/multiWindow/EditUserDialog.mjs +2 -2
  265. package/examples/model/multiWindow/EditUserDialogController.mjs +2 -2
  266. package/examples/model/multiWindow/MainContainer.mjs +2 -2
  267. package/examples/model/multiWindow/MainContainerController.mjs +2 -2
  268. package/examples/model/multiWindow/Viewport.mjs +2 -2
  269. package/examples/model/multiWindow/ViewportController.mjs +2 -2
  270. package/examples/model/multiWindow2/Viewport.mjs +2 -2
  271. package/examples/model/nestedData/MainContainer.mjs +2 -2
  272. package/examples/model/nestedData/MainContainerController.mjs +2 -2
  273. package/examples/model/table/MainContainer.mjs +2 -2
  274. package/examples/model/table/MainContainerModel.mjs +2 -2
  275. package/examples/model/table/MainModel.mjs +2 -2
  276. package/examples/model/table/MainStore.mjs +2 -2
  277. package/examples/panel/MainContainer.mjs +2 -2
  278. package/examples/panel/MainContainerController.mjs +2 -2
  279. package/examples/preloadingAssets/view/MainContainer.mjs +2 -2
  280. package/examples/preloadingAssets/view/MainContainerController.mjs +2 -2
  281. package/examples/remotesApi/basic/MainContainer.mjs +2 -2
  282. package/examples/remotesApi/basic/MainContainerController.mjs +2 -2
  283. package/examples/sitemap/MainContainer.mjs +2 -2
  284. package/examples/tab/container/MainContainer.mjs +2 -2
  285. package/examples/table/container/MainContainer.mjs +2 -2
  286. package/examples/table/container/MainModel.mjs +2 -2
  287. package/examples/table/container/MainStore.mjs +2 -2
  288. package/examples/table/covid/MainContainer.mjs +2 -2
  289. package/examples/table/covid/Model.mjs +2 -2
  290. package/examples/table/covid/Store.mjs +2 -2
  291. package/examples/table/covid/TableContainer.mjs +2 -2
  292. package/examples/table/covid/TableContainerController.mjs +2 -2
  293. package/examples/table/covid/Util.mjs +17 -19
  294. package/examples/tableFiltering/MainContainer.mjs +2 -2
  295. package/examples/tableFiltering/MainModel.mjs +2 -2
  296. package/examples/tableFiltering/MainStore.mjs +2 -2
  297. package/examples/tablePerformance/MainContainer.mjs +2 -2
  298. package/examples/tablePerformance/MainContainer2.mjs +2 -2
  299. package/examples/tablePerformance/MainContainer3.mjs +2 -2
  300. package/examples/tablePerformance/Viewport.mjs +2 -2
  301. package/examples/tableStore/MainContainer.mjs +2 -2
  302. package/examples/tableStore/MainModel.mjs +2 -2
  303. package/examples/tableStore/MainStore.mjs +2 -2
  304. package/examples/tabs/MainContainer.mjs +2 -2
  305. package/examples/tabs/MainContainer2.mjs +2 -2
  306. package/examples/todoList/version1/MainComponent.mjs +2 -2
  307. package/examples/todoList/version2/MainContainer.mjs +2 -2
  308. package/examples/todoList/version2/TodoList.mjs +2 -2
  309. package/examples/todoList/version2/TodoListModel.mjs +2 -2
  310. package/examples/todoList/version2/TodoListStore.mjs +2 -2
  311. package/examples/toolbar/breadcrumb/view/MainContainer.mjs +2 -2
  312. package/examples/toolbar/paging/model/User.mjs +2 -2
  313. package/examples/toolbar/paging/store/Users.mjs +2 -2
  314. package/examples/toolbar/paging/view/AddUserDialog.mjs +2 -2
  315. package/examples/toolbar/paging/view/MainContainer.mjs +2 -2
  316. package/examples/toolbar/paging/view/MainContainerController.mjs +2 -2
  317. package/examples/toolbar/paging/view/MainContainerModel.mjs +2 -2
  318. package/examples/toolbar/paging/view/UserTableContainer.mjs +2 -2
  319. package/examples/tree/MainContainer.mjs +2 -2
  320. package/examples/viewport/MainContainer.mjs +2 -2
  321. package/package.json +1 -1
  322. package/src/DefaultConfig.mjs +2 -2
  323. package/src/Fetch.mjs +2 -2
  324. package/src/Main.mjs +8 -10
  325. package/src/Neo.mjs +13 -21
  326. package/src/Xhr.mjs +2 -2
  327. package/src/button/Base.mjs +16 -18
  328. package/src/button/Menu.mjs +2 -2
  329. package/src/button/Split.mjs +2 -2
  330. package/src/calendar/model/Calendar.mjs +2 -2
  331. package/src/calendar/model/Color.mjs +2 -2
  332. package/src/calendar/model/Event.mjs +2 -2
  333. package/src/calendar/store/Calendars.mjs +2 -2
  334. package/src/calendar/store/Colors.mjs +2 -2
  335. package/src/calendar/store/Events.mjs +2 -2
  336. package/src/calendar/view/DayComponent.mjs +2 -2
  337. package/src/calendar/view/EditEventContainer.mjs +2 -2
  338. package/src/calendar/view/MainContainer.mjs +8 -10
  339. package/src/calendar/view/MainContainerModel.mjs +2 -2
  340. package/src/calendar/view/SettingsContainer.mjs +2 -2
  341. package/src/calendar/view/YearComponent.mjs +2 -2
  342. package/src/calendar/view/calendars/ColorsList.mjs +2 -2
  343. package/src/calendar/view/calendars/Container.mjs +2 -2
  344. package/src/calendar/view/calendars/EditContainer.mjs +2 -2
  345. package/src/calendar/view/calendars/List.mjs +2 -2
  346. package/src/calendar/view/month/Component.mjs +2 -2
  347. package/src/calendar/view/settings/GeneralContainer.mjs +2 -2
  348. package/src/calendar/view/settings/MonthContainer.mjs +2 -2
  349. package/src/calendar/view/settings/WeekContainer.mjs +2 -2
  350. package/src/calendar/view/settings/YearContainer.mjs +2 -2
  351. package/src/calendar/view/week/Component.mjs +9 -11
  352. package/src/calendar/view/week/EventDragZone.mjs +2 -2
  353. package/src/calendar/view/week/TimeAxisComponent.mjs +9 -11
  354. package/src/calendar/view/week/plugin/DragDrop.mjs +2 -2
  355. package/src/calendar/view/week/plugin/EventResizable.mjs +2 -2
  356. package/src/collection/Base.mjs +8 -10
  357. package/src/collection/Filter.mjs +16 -18
  358. package/src/collection/Sorter.mjs +8 -10
  359. package/src/component/Base.mjs +15 -17
  360. package/src/component/BoxLabel.mjs +2 -2
  361. package/src/component/Canvas.mjs +2 -2
  362. package/src/component/Carousel.mjs +2 -2
  363. package/src/component/Chip.mjs +2 -2
  364. package/src/component/Circle.mjs +2 -2
  365. package/src/component/Clock.mjs +2 -2
  366. package/src/component/DateSelector.mjs +2 -2
  367. package/src/component/Gallery.mjs +2 -2
  368. package/src/component/Helix.mjs +2 -2
  369. package/src/component/Iframe.mjs +2 -2
  370. package/src/component/Label.mjs +2 -2
  371. package/src/component/Legend.mjs +2 -2
  372. package/src/component/Splitter.mjs +16 -18
  373. package/src/component/Toast.mjs +15 -17
  374. package/src/component/mwc/Button.mjs +2 -2
  375. package/src/component/mwc/TextField.mjs +2 -2
  376. package/src/component/wrapper/AmChart.mjs +2 -2
  377. package/src/component/wrapper/CesiumJS.mjs +2 -2
  378. package/src/component/wrapper/GoogleMaps.mjs +2 -2
  379. package/src/component/wrapper/MapboxGL.mjs +2 -2
  380. package/src/container/Base.mjs +2 -2
  381. package/src/container/Panel.mjs +2 -2
  382. package/src/container/Viewport.mjs +2 -2
  383. package/src/controller/Application.mjs +8 -9
  384. package/src/controller/Base.mjs +2 -2
  385. package/src/controller/Component.mjs +2 -2
  386. package/src/core/Base.mjs +17 -20
  387. package/src/core/Compare.mjs +2 -2
  388. package/src/core/IdGenerator.mjs +10 -12
  389. package/src/core/Observable.mjs +5 -3
  390. package/src/core/Util.mjs +10 -12
  391. package/src/dashboard/Container.mjs +2 -2
  392. package/src/data/Model.mjs +2 -2
  393. package/src/data/RecordFactory.mjs +2 -2
  394. package/src/data/Store.mjs +8 -10
  395. package/src/data/connection/Fetch.mjs +2 -2
  396. package/src/data/connection/WebSocket.mjs +8 -11
  397. package/src/data/connection/Xhr.mjs +3 -3
  398. package/src/data/field/Field.mjs +2 -2
  399. package/src/data/field/Float.mjs +2 -2
  400. package/src/data/field/Integer.mjs +2 -2
  401. package/src/data/field/String.mjs +2 -2
  402. package/src/dialog/Base.mjs +9 -11
  403. package/src/dialog/header/Toolbar.mjs +2 -2
  404. package/src/draggable/DragProxyComponent.mjs +2 -2
  405. package/src/draggable/DragZone.mjs +8 -10
  406. package/src/draggable/DropZone.mjs +2 -2
  407. package/src/draggable/list/DragZone.mjs +2 -2
  408. package/src/draggable/list/SortZone.mjs +2 -2
  409. package/src/draggable/tab/header/toolbar/SortZone.mjs +2 -2
  410. package/src/draggable/toolbar/DragZone.mjs +2 -2
  411. package/src/draggable/toolbar/SortZone.mjs +2 -2
  412. package/src/draggable/tree/DragZone.mjs +2 -2
  413. package/src/draggable/tree/SortZone.mjs +2 -2
  414. package/src/filter/BooleanContainer.mjs +2 -2
  415. package/src/filter/DateContainer.mjs +2 -2
  416. package/src/filter/NumberContainer.mjs +2 -2
  417. package/src/filter/ToggleOperatorsButton.mjs +2 -2
  418. package/src/form/Container.mjs +2 -2
  419. package/src/form/Fieldset.mjs +2 -2
  420. package/src/form/field/Base.mjs +2 -2
  421. package/src/form/field/CheckBox.mjs +9 -11
  422. package/src/form/field/Chip.mjs +2 -2
  423. package/src/form/field/Color.mjs +2 -2
  424. package/src/form/field/Date.mjs +2 -2
  425. package/src/form/field/Display.mjs +2 -2
  426. package/src/form/field/Email.mjs +2 -2
  427. package/src/form/field/Number.mjs +9 -11
  428. package/src/form/field/Password.mjs +2 -2
  429. package/src/form/field/Picker.mjs +2 -2
  430. package/src/form/field/Radio.mjs +2 -2
  431. package/src/form/field/Range.mjs +2 -2
  432. package/src/form/field/Search.mjs +2 -2
  433. package/src/form/field/Select.mjs +9 -11
  434. package/src/form/field/Text.mjs +16 -18
  435. package/src/form/field/TextArea.mjs +9 -11
  436. package/src/form/field/Time.mjs +2 -2
  437. package/src/form/field/Url.mjs +2 -2
  438. package/src/form/field/trigger/Base.mjs +9 -11
  439. package/src/form/field/trigger/Clear.mjs +2 -2
  440. package/src/form/field/trigger/CopyToClipboard.mjs +2 -2
  441. package/src/form/field/trigger/Date.mjs +2 -2
  442. package/src/form/field/trigger/Picker.mjs +2 -2
  443. package/src/form/field/trigger/SpinDown.mjs +2 -2
  444. package/src/form/field/trigger/SpinUp.mjs +2 -2
  445. package/src/form/field/trigger/SpinUpDown.mjs +2 -2
  446. package/src/form/field/trigger/Time.mjs +2 -2
  447. package/src/grid/Container.mjs +2 -2
  448. package/src/grid/View.mjs +2 -2
  449. package/src/grid/header/Button.mjs +9 -11
  450. package/src/grid/header/Toolbar.mjs +2 -2
  451. package/src/layout/Base.mjs +2 -2
  452. package/src/layout/Card.mjs +22 -24
  453. package/src/layout/Fit.mjs +2 -2
  454. package/src/layout/Flexbox.mjs +30 -32
  455. package/src/layout/Grid.mjs +2 -2
  456. package/src/layout/HBox.mjs +2 -2
  457. package/src/layout/VBox.mjs +2 -2
  458. package/src/list/Base.mjs +2 -2
  459. package/src/list/Chip.mjs +2 -2
  460. package/src/list/Circle.mjs +2 -2
  461. package/src/list/Color.mjs +2 -2
  462. package/src/list/Component.mjs +2 -2
  463. package/src/list/plugin/Animate.mjs +9 -11
  464. package/src/main/DomAccess.mjs +2 -2
  465. package/src/main/DomEvents.mjs +8 -10
  466. package/src/main/addon/AmCharts.mjs +2 -2
  467. package/src/main/addon/AnalyticsByGoogle.mjs +2 -2
  468. package/src/main/addon/CesiumJS.mjs +2 -2
  469. package/src/main/addon/CloneNode.mjs +2 -2
  470. package/src/main/addon/Cookie.mjs +2 -2
  471. package/src/main/addon/DragDrop.mjs +2 -2
  472. package/src/main/addon/GoogleMaps.mjs +2 -2
  473. package/src/main/addon/HighlightJS.mjs +2 -2
  474. package/src/main/addon/LocalStorage.mjs +2 -2
  475. package/src/main/addon/MapboxGL.mjs +2 -2
  476. package/src/main/addon/Markdown.mjs +2 -2
  477. package/src/main/addon/Mwc.mjs +2 -2
  478. package/src/main/addon/ServiceWorker.mjs +2 -2
  479. package/src/main/addon/Siesta.mjs +2 -2
  480. package/src/main/addon/Stylesheet.mjs +2 -2
  481. package/src/main/addon/WebComponent.mjs +2 -2
  482. package/src/main/addon/WindowPosition.mjs +2 -2
  483. package/src/main/draggable/sensor/Base.mjs +2 -2
  484. package/src/main/draggable/sensor/Mouse.mjs +2 -2
  485. package/src/main/draggable/sensor/Touch.mjs +2 -2
  486. package/src/main/mixin/DeltaUpdates.mjs +2 -2
  487. package/src/main/mixin/TouchDomEvents.mjs +2 -2
  488. package/src/manager/Base.mjs +2 -2
  489. package/src/manager/Component.mjs +2 -2
  490. package/src/manager/DomEvent.mjs +2 -2
  491. package/src/manager/Focus.mjs +2 -2
  492. package/src/manager/Instance.mjs +2 -2
  493. package/src/manager/Store.mjs +2 -2
  494. package/src/manager/Task.mjs +2 -2
  495. package/src/manager/Toast.mjs +2 -2
  496. package/src/manager/rpc/Api.mjs +2 -2
  497. package/src/manager/rpc/Message.mjs +2 -2
  498. package/src/menu/List.mjs +2 -2
  499. package/src/menu/Model.mjs +2 -2
  500. package/src/menu/Panel.mjs +2 -2
  501. package/src/menu/Store.mjs +2 -2
  502. package/src/model/Component.mjs +8 -10
  503. package/src/plugin/Base.mjs +2 -2
  504. package/src/plugin/Resizable.mjs +29 -31
  505. package/src/remotes/Api.mjs +2 -2
  506. package/src/selection/CircleModel.mjs +2 -2
  507. package/src/selection/DateSelectorModel.mjs +2 -2
  508. package/src/selection/GalleryModel.mjs +2 -2
  509. package/src/selection/HelixModel.mjs +2 -2
  510. package/src/selection/ListModel.mjs +2 -2
  511. package/src/selection/Model.mjs +13 -17
  512. package/src/selection/grid/CellColumnModel.mjs +2 -2
  513. package/src/selection/grid/CellColumnRowModel.mjs +2 -2
  514. package/src/selection/grid/CellModel.mjs +2 -2
  515. package/src/selection/grid/CellRowModel.mjs +2 -2
  516. package/src/selection/grid/ColumnModel.mjs +2 -2
  517. package/src/selection/grid/RowModel.mjs +2 -2
  518. package/src/selection/menu/ListModel.mjs +2 -2
  519. package/src/selection/table/CellColumnModel.mjs +2 -2
  520. package/src/selection/table/CellColumnRowModel.mjs +2 -2
  521. package/src/selection/table/CellModel.mjs +2 -2
  522. package/src/selection/table/CellRowModel.mjs +2 -2
  523. package/src/selection/table/ColumnModel.mjs +2 -2
  524. package/src/selection/table/RowModel.mjs +2 -2
  525. package/src/sitemap/Component.mjs +9 -11
  526. package/src/sitemap/Model.mjs +2 -2
  527. package/src/sitemap/Store.mjs +2 -2
  528. package/src/tab/Container.mjs +9 -11
  529. package/src/tab/Strip.mjs +2 -2
  530. package/src/tab/header/Button.mjs +2 -2
  531. package/src/tab/header/Toolbar.mjs +2 -2
  532. package/src/table/Container.mjs +2 -2
  533. package/src/table/View.mjs +2 -2
  534. package/src/table/header/Button.mjs +9 -11
  535. package/src/table/header/Toolbar.mjs +2 -2
  536. package/src/toolbar/Base.mjs +8 -10
  537. package/src/toolbar/Breadcrumb.mjs +2 -2
  538. package/src/toolbar/Paging.mjs +2 -2
  539. package/src/tooltip/Base.mjs +2 -2
  540. package/src/tree/List.mjs +2 -2
  541. package/src/util/Array.mjs +2 -2
  542. package/src/util/ClassSystem.mjs +2 -2
  543. package/src/util/Css.mjs +2 -2
  544. package/src/util/Date.mjs +2 -2
  545. package/src/util/Function.mjs +2 -2
  546. package/src/util/HashHistory.mjs +8 -10
  547. package/src/util/KeyNavigation.mjs +2 -2
  548. package/src/util/Logger.mjs +2 -2
  549. package/src/util/Matrix.mjs +2 -2
  550. package/src/util/Rectangle.mjs +2 -2
  551. package/src/util/Style.mjs +2 -2
  552. package/src/util/VDom.mjs +2 -2
  553. package/src/util/VNode.mjs +2 -2
  554. package/src/vdom/Helper.mjs +2 -2
  555. package/src/worker/App.mjs +2 -2
  556. package/src/worker/Base.mjs +2 -2
  557. package/src/worker/Canvas.mjs +2 -2
  558. package/src/worker/Data.mjs +2 -2
  559. package/src/worker/Manager.mjs +2 -2
  560. package/src/worker/ServiceBase.mjs +2 -2
  561. package/src/worker/VDom.mjs +2 -2
  562. package/src/worker/mixin/RemoteMethodAccess.mjs +2 -2
  563. package/test/siesta/tests/ClassConfigsAndFields.mjs +4 -4
  564. package/test/siesta/tests/ClassSystem.mjs +2 -2
@@ -5,7 +5,7 @@ import ComponentController from '../../../src/controller/Component.mjs';
5
5
  * @extends Neo.controller.Component
6
6
  */
7
7
  class WorldMapContainerController extends ComponentController {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovid.view.WorldMapContainerController'
11
11
  * @protected
@@ -19,7 +19,7 @@ class WorldMapContainerController extends ComponentController {
19
19
  * @member {String|null} heatRuleChangeTimeout=null
20
20
  */
21
21
  heatRuleChangeTimeout: null
22
- }}
22
+ }
23
23
 
24
24
  changeHeatRule(value) {
25
25
  const chartId = this.getReference('worldmap').id;
@@ -7,7 +7,7 @@ import Util from '../../Util.mjs';
7
7
  * @extends Neo.component.Gallery
8
8
  */
9
9
  class CountryGallery extends Gallery {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='SharedCovid.view.country.Gallery'
13
13
  * @protected
@@ -108,7 +108,7 @@ class CountryGallery extends Gallery {
108
108
  * @member {Neo.data.Store} store=CountryStore
109
109
  */
110
110
  store: CountryStore
111
- }}
111
+ }
112
112
 
113
113
  /**
114
114
  * Triggered after the country config got changed
@@ -7,7 +7,7 @@ import Util from '../../Util.mjs';
7
7
  * @extends Neo.component.Helix
8
8
  */
9
9
  class CountryHelix extends Helix {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='SharedCovid.view.country.Helix'
13
13
  * @protected
@@ -103,7 +103,7 @@ class CountryHelix extends Helix {
103
103
  * @member {Number} translateZ_=-2300
104
104
  */
105
105
  translateZ: -2300
106
- }}
106
+ }
107
107
 
108
108
  /**
109
109
  * Triggered after the country config got changed
@@ -7,7 +7,7 @@ import Util from '../../Util.mjs';
7
7
  * @extends Neo.table.Container
8
8
  */
9
9
  class HistoricalDataTable extends Container {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='SharedCovid.view.country.HistoricalDataTable'
13
13
  * @protected
@@ -82,7 +82,7 @@ class HistoricalDataTable extends Container {
82
82
  * @member {Neo.data.Store} store=HistoricalData
83
83
  */
84
84
  store: HistoricalData
85
- }}
85
+ }
86
86
  }
87
87
 
88
88
  Neo.applyClassConfig(HistoricalDataTable);
@@ -5,7 +5,7 @@ import AmChartComponent from '../../../../src/component/wrapper/AmChart.mjs';
5
5
  * @extends Neo.component.wrapper.AmChart
6
6
  */
7
7
  class LineChartComponent extends AmChartComponent {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovid.view.country.LineChartComponent'
11
11
  * @protected
@@ -130,7 +130,7 @@ class LineChartComponent extends AmChartComponent {
130
130
  * @member {Boolean} fitParentHeight=true
131
131
  */
132
132
  fitParentHeight: true
133
- }}
133
+ }
134
134
  }
135
135
 
136
136
  Neo.applyClassConfig(LineChartComponent);
@@ -7,7 +7,7 @@ import Util from '../../Util.mjs';
7
7
  * @extends Neo.table.Container
8
8
  */
9
9
  class Table extends Container {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='SharedCovid.view.country.Table'
13
13
  * @protected
@@ -109,7 +109,7 @@ class Table extends Container {
109
109
  * @member {Neo.data.Store} store=CountryStore
110
110
  */
111
111
  store: CountryStore
112
- }}
112
+ }
113
113
 
114
114
  /**
115
115
  * Triggered after the country config got changed
@@ -5,7 +5,7 @@ import BaseComponent from '../../../../src/component/wrapper/MapboxGL.mjs';
5
5
  * @extends Neo.component.wrapper.MapboxGL
6
6
  */
7
7
  class Component extends BaseComponent {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovid.view.mapboxGl.Component'
11
11
  * @protected
@@ -110,7 +110,7 @@ class Component extends BaseComponent {
110
110
  type: 'raster-dem',
111
111
  url : 'mapbox://mapbox.terrain-rgb'
112
112
  }]
113
- }}
113
+ }
114
114
  }
115
115
 
116
116
  Neo.applyClassConfig(Component);
@@ -9,7 +9,7 @@ import Panel from '../../../../src/container/Panel.mjs';
9
9
  * @extends Neo.container.Base
10
10
  */
11
11
  class Container extends BaseContainer {
12
- static getConfig() {return {
12
+ static config = {
13
13
  /**
14
14
  * @member {String} className='SharedCovid.view.mapboxGl.Container'
15
15
  * @protected
@@ -101,7 +101,7 @@ class Container extends BaseContainer {
101
101
  }]
102
102
  }]
103
103
  }
104
- }}
104
+ }
105
105
 
106
106
  /**
107
107
  * @param {Object} config
@@ -5,7 +5,7 @@ import ComponentController from '../../../../src/controller/Component.mjs';
5
5
  * @extends Neo.controller.Component
6
6
  */
7
7
  class ContainerController extends ComponentController {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovid.view.mapboxGl.ContainerController'
11
11
  * @protected
@@ -16,7 +16,7 @@ class ContainerController extends ComponentController {
16
16
  * @protected
17
17
  */
18
18
  ntype: 'mapboxgl-container-controller'
19
- }}
19
+ }
20
20
 
21
21
  /**
22
22
  * @param {String} layerId
@@ -5,7 +5,7 @@ import Viewport from '../../src/container/Viewport.mjs';
5
5
  * @extends Neo.container.Viewport
6
6
  */
7
7
  class MainContainer extends Viewport {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovidChart.MainContainer'
11
11
  * @protected
@@ -15,7 +15,7 @@ class MainContainer extends Viewport {
15
15
  * @member {Object} layout={ntype:'fit'}
16
16
  */
17
17
  layout: {ntype: 'fit'}
18
- }}
18
+ }
19
19
  }
20
20
 
21
21
  Neo.applyClassConfig(MainContainer);
@@ -5,7 +5,7 @@ import Viewport from '../../src/container/Viewport.mjs';
5
5
  * @extends Neo.container.Viewport
6
6
  */
7
7
  class MainContainer extends Viewport {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovidGallery.MainContainer'
11
11
  * @protected
@@ -15,7 +15,7 @@ class MainContainer extends Viewport {
15
15
  * @member {Object} layout={ntype:'fit'}
16
16
  */
17
17
  layout: {ntype: 'fit'}
18
- }}
18
+ }
19
19
  }
20
20
 
21
21
  Neo.applyClassConfig(MainContainer);
@@ -5,7 +5,7 @@ import Viewport from '../../src/container/Viewport.mjs';
5
5
  * @extends Neo.container.Viewport
6
6
  */
7
7
  class MainContainer extends Viewport {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedCovidHelix.MainContainer'
11
11
  * @protected
@@ -15,7 +15,7 @@ class MainContainer extends Viewport {
15
15
  * @member {Object} layout={ntype:'fit'}
16
16
  */
17
17
  layout: {ntype: 'fit'}
18
- }}
18
+ }
19
19
  }
20
20
 
21
21
  Neo.applyClassConfig(MainContainer);
@@ -5,7 +5,7 @@ import Viewport from '../../src/container/Viewport.mjs';
5
5
  * @extends Neo.container.Viewport
6
6
  */
7
7
  class MainContainer extends Viewport {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='CovidMap.MainContainer'
11
11
  * @protected
@@ -15,7 +15,7 @@ class MainContainer extends Viewport {
15
15
  * @member {Object} layout={ntype:'fit'}
16
16
  */
17
17
  layout: {ntype: 'fit'}
18
- }}
18
+ }
19
19
  }
20
20
 
21
21
  Neo.applyClassConfig(MainContainer);
@@ -6,7 +6,7 @@ import TextField from '../../../src/form/field/Text.mjs';
6
6
  * @extends Neo.dialog.Base
7
7
  */
8
8
  class DemoDialog extends Dialog {
9
- static getConfig() {return {
9
+ static config = {
10
10
  /**
11
11
  * @member {String} className='SharedDialog.view.DemoDialog'
12
12
  * @protected
@@ -49,7 +49,7 @@ class DemoDialog extends Dialog {
49
49
  height: '40%',
50
50
  width : '40%'
51
51
  }
52
- }}
52
+ }
53
53
  }
54
54
 
55
55
  Neo.applyClassConfig(DemoDialog);
@@ -9,7 +9,7 @@ import Viewport from '../../../src/container/Viewport.mjs';
9
9
  * @extends Neo.container.Viewport
10
10
  */
11
11
  class MainContainer extends Viewport {
12
- static getConfig() {return {
12
+ static config = {
13
13
  /**
14
14
  * @member {String} className='SharedDialog.view.MainContainer'
15
15
  * @protected
@@ -112,7 +112,7 @@ class MainContainer extends Viewport {
112
112
  * @member {Object} style={padding:'20px'}
113
113
  */
114
114
  style: {padding: '20px'}
115
- }}
115
+ }
116
116
  }
117
117
 
118
118
  Neo.applyClassConfig(MainContainer);
@@ -10,7 +10,7 @@ import Rectangle from '../../../src/util/Rectangle.mjs';
10
10
  * @extends Neo.controller.Component
11
11
  */
12
12
  class MainContainerController extends ComponentController {
13
- static getConfig() {return {
13
+ static config = {
14
14
  /**
15
15
  * @member {String} className='SharedDialog.view.MainContainerController'
16
16
  * @protected
@@ -53,7 +53,7 @@ class MainContainerController extends ComponentController {
53
53
  * @member {Number|null} targetWindowSize=0
54
54
  */
55
55
  targetWindowSize: 0
56
- }}
56
+ }
57
57
 
58
58
  /**
59
59
  * The App worker will receive connect & disconnect events inside the SharedWorkers context
@@ -8,7 +8,7 @@ import Viewport from '../../../src/container/Viewport.mjs';
8
8
  * @extends Neo.container.Viewport
9
9
  */
10
10
  class MainContainer extends Viewport {
11
- static getConfig() {return {
11
+ static config = {
12
12
  /**
13
13
  * @member {String} className='SharedDialog2.view.MainContainer'
14
14
  * @protected
@@ -54,7 +54,7 @@ class MainContainer extends Viewport {
54
54
  * @member {Object} style={padding:'20px'}
55
55
  */
56
56
  style: {padding: '20px'}
57
- }}
57
+ }
58
58
  }
59
59
 
60
60
  Neo.applyClassConfig(MainContainer);
@@ -5,13 +5,13 @@ import ComponentController from '../../../src/controller/Component.mjs';
5
5
  * @extends Neo.controller.Component
6
6
  */
7
7
  class MainContainerController extends ComponentController {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='SharedDialog2.view.MainContainerController'
11
11
  * @protected
12
12
  */
13
13
  className: 'SharedDialog2.view.MainContainerController'
14
- }}
14
+ }
15
15
 
16
16
  /**
17
17
  * @param {Object} data
@@ -5,7 +5,7 @@ import Model from '../../../src/data/Model.mjs';
5
5
  * @extends Neo.data.Model
6
6
  */
7
7
  class BlogPost extends Model {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='Website.model.BlogPost'
11
11
  * @protected
@@ -52,7 +52,7 @@ class BlogPost extends Model {
52
52
  name: 'url',
53
53
  type: 'String'
54
54
  }]
55
- }}
55
+ }
56
56
  }
57
57
 
58
58
  Neo.applyClassConfig(BlogPost);
@@ -5,7 +5,7 @@ import Model from '../../../src/data/Model.mjs';
5
5
  * @extends Neo.data.Model
6
6
  */
7
7
  class Example extends Model {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='Website.model.Example'
11
11
  * @protected
@@ -40,7 +40,7 @@ class Example extends Model {
40
40
  name: 'url',
41
41
  type: 'String'
42
42
  }]
43
- }}
43
+ }
44
44
  }
45
45
 
46
46
  Neo.applyClassConfig(Example);
@@ -6,7 +6,7 @@ import Store from '../../../src/data/Store.mjs';
6
6
  * @extends Neo.data.Store
7
7
  */
8
8
  class BlogPosts extends Store {
9
- static getConfig() {return {
9
+ static config = {
10
10
  /**
11
11
  * @member {String} className='Website.store.BlogPosts'
12
12
  * @protected
@@ -31,7 +31,7 @@ class BlogPosts extends Store {
31
31
  * @member {String} url='../../apps/website/data/blog.json'
32
32
  */
33
33
  url: '../../apps/website/data/blog.json'
34
- }}
34
+ }
35
35
  }
36
36
 
37
37
  Neo.applyClassConfig(BlogPosts);
@@ -6,7 +6,7 @@ import Store from '../../../src/data/Store.mjs';
6
6
  * @extends Neo.data.Store
7
7
  */
8
8
  class Examples extends Store {
9
- static getConfig() {return {
9
+ static config = {
10
10
  /**
11
11
  * @member {String} className='Website.store.Examples'
12
12
  * @protected
@@ -27,7 +27,7 @@ class Examples extends Store {
27
27
  property : 'id',
28
28
  direction: 'DESC'
29
29
  }]
30
- }}
30
+ }
31
31
  }
32
32
 
33
33
  Neo.applyClassConfig(Examples);
@@ -5,7 +5,7 @@ import Container from '../../../src/container/Base.mjs';
5
5
  * @extends Neo.container.Base
6
6
  */
7
7
  class HeaderContainer extends Container {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='Website.view.HeaderContainer'
11
11
  * @protected
@@ -64,7 +64,7 @@ class HeaderContainer extends Container {
64
64
  url : 'https://twitter.com/UhligTobias'
65
65
  }]
66
66
  }]
67
- }}
67
+ }
68
68
  }
69
69
 
70
70
  Neo.applyClassConfig(HeaderContainer);
@@ -9,7 +9,7 @@ import Viewport from '../../../src/container/Viewport.mjs';
9
9
  * @extends Neo.container.Viewport
10
10
  */
11
11
  class MainContainer extends Viewport {
12
- static getConfig() {return {
12
+ static config = {
13
13
  /**
14
14
  * @member {String} className='Website.view.MainContainer'
15
15
  * @protected
@@ -87,7 +87,7 @@ class MainContainer extends Viewport {
87
87
  }]
88
88
  }]
89
89
  }]
90
- }}
90
+ }
91
91
  }
92
92
 
93
93
  Neo.applyClassConfig(MainContainer);
@@ -6,7 +6,7 @@ import NeoArray from '../../../src/util/Array.mjs';
6
6
  * @extends Neo.controller.Component
7
7
  */
8
8
  class MainContainerController extends ComponentController {
9
- static getConfig() {return {
9
+ static config = {
10
10
  /**
11
11
  * @member {String} className='Website.view.MainContainerController'
12
12
  * @protected
@@ -32,7 +32,7 @@ class MainContainerController extends ComponentController {
32
32
  * @protected
33
33
  */
34
34
  mainTabsListeners: []
35
- }}
35
+ }
36
36
 
37
37
  /**
38
38
  * @param {Number} tabIndex
@@ -7,7 +7,7 @@ import SearchField from '../../../../src/form/field/Search.mjs';
7
7
  * @extends Neo.container.Base
8
8
  */
9
9
  class Container extends BaseContainer {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='Website.view.blog.Container'
13
13
  * @protected
@@ -42,7 +42,7 @@ class Container extends BaseContainer {
42
42
  * @member {Object} layout={ntype: 'vbox', align: 'stretch'}
43
43
  */
44
44
  layout: {ntype: 'vbox', align: 'stretch'}
45
- }}
45
+ }
46
46
  }
47
47
 
48
48
  Neo.applyClassConfig(Container);
@@ -7,17 +7,15 @@ import VDomUtil from '../../../../src/util/VDom.mjs';
7
7
  * @extends Neo.list.Base
8
8
  */
9
9
  class List extends BaseList {
10
- static getStaticConfig() {return {
11
- /**
12
- * A regex to enforce a maxLength (word break)
13
- * @member {RegExp} nameRegEx
14
- * @protected
15
- * @static
16
- */
17
- nameRegEx: /^(.{65}[^\s]*).*/
18
- }}
10
+ /**
11
+ * A regex to enforce a maxLength (word break)
12
+ * @member {RegExp} nameRegEx
13
+ * @protected
14
+ * @static
15
+ */
16
+ static nameRegEx = /^(.{65}[^\s]*).*/
19
17
 
20
- static getConfig() {return {
18
+ static config = {
21
19
  /**
22
20
  * @member {String} className='Website.view.blog.List'
23
21
  * @protected
@@ -42,7 +40,7 @@ class List extends BaseList {
42
40
  {cn: [
43
41
  {tag: 'ul', cn: []}
44
42
  ]}
45
- }}
43
+ }
46
44
 
47
45
  /**
48
46
  * @param {Neo.data.Store} value
@@ -6,17 +6,15 @@ import Examples from '../../store/Examples.mjs';
6
6
  * @extends Neo.list.Base
7
7
  */
8
8
  class List extends BaseList {
9
- static getStaticConfig() {return {
10
- /**
11
- * A regex to enforce a maxLength (word break)
12
- * @member {RegExp} nameRegEx
13
- * @protected
14
- * @static
15
- */
16
- nameRegEx: /^(.{65}[^\s]*).*/
17
- }}
9
+ /**
10
+ * A regex to enforce a maxLength (word break)
11
+ * @member {RegExp} nameRegEx
12
+ * @protected
13
+ * @static
14
+ */
15
+ static nameRegEx = /^(.{65}[^\s]*).*/
18
16
 
19
- static getConfig() {return {
17
+ static config = {
20
18
  /**
21
19
  * @member {String} className='Website.view.examples.List'
22
20
  * @protected
@@ -45,7 +43,7 @@ class List extends BaseList {
45
43
  {cn: [
46
44
  {tag: 'ul', cn: []}
47
45
  ]}
48
- }}
46
+ }
49
47
 
50
48
  /**
51
49
  * Triggered before the store config gets changed.
@@ -6,7 +6,7 @@ import List from './List.mjs';
6
6
  * @extends Neo.container.Base
7
7
  */
8
8
  class TabContainer extends Container {
9
- static getConfig() {return {
9
+ static config = {
10
10
  /**
11
11
  * @member {String} className='Website.view.examples.TabContainer'
12
12
  * @protected
@@ -58,7 +58,7 @@ class TabContainer extends Container {
58
58
  * @member {String} tabBarPosition='left'
59
59
  */
60
60
  tabBarPosition: 'left',
61
- }}
61
+ }
62
62
  }
63
63
 
64
64
  Neo.applyClassConfig(TabContainer);
@@ -5,7 +5,7 @@ import Component from '../../../../src/component/Base.mjs';
5
5
  * @extends Neo.component.Base
6
6
  */
7
7
  class DeveloperIntroComponent extends Component {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='Website.view.home.DeveloperIntroComponent'
11
11
  * @protected
@@ -258,7 +258,7 @@ class DeveloperIntroComponent extends Component {
258
258
  '</p>',
259
259
  '</div>'
260
260
  ].join('')}
261
- }}
261
+ }
262
262
  }
263
263
 
264
264
  Neo.applyClassConfig(DeveloperIntroComponent);
@@ -5,7 +5,7 @@ import Component from '../../../../src/component/Base.mjs';
5
5
  * @extends Neo.component.Base
6
6
  */
7
7
  class ExecutiveIntroComponent extends Component {
8
- static getConfig() {return {
8
+ static config = {
9
9
  /**
10
10
  * @member {String} className='Website.view.home.ExecutiveIntroComponent'
11
11
  * @protected
@@ -283,7 +283,7 @@ class ExecutiveIntroComponent extends Component {
283
283
  '</p>',
284
284
  '</div>'
285
285
  ].join('')}
286
- }}
286
+ }
287
287
  }
288
288
 
289
289
  Neo.applyClassConfig(ExecutiveIntroComponent);
@@ -7,7 +7,7 @@ import ExecutiveIntroComponent from './ExecutiveIntroComponent.mjs';
7
7
  * @extends Neo.container.Base
8
8
  */
9
9
  class TabContainer extends Container {
10
- static getConfig() {return {
10
+ static config = {
11
11
  /**
12
12
  * @member {String} className='Website.view.home.TabContainer'
13
13
  * @protected
@@ -48,7 +48,7 @@ class TabContainer extends Container {
48
48
  * @member {String} tabBarPosition='left'
49
49
  */
50
50
  tabBarPosition: 'left'
51
- }}
51
+ }
52
52
  }
53
53
 
54
54
  Neo.applyClassConfig(TabContainer);
@@ -316,7 +316,7 @@ if (programOpts.info) {
316
316
  codeLine, existingConfigName, j, nextLine;
317
317
 
318
318
  for (; i < len; i++) {
319
- if (contentArray[i].includes('static getConfig')) {
319
+ if (contentArray[i].includes('static config')) {
320
320
  break;
321
321
  }
322
322
  }
@@ -324,7 +324,7 @@ if (programOpts.info) {
324
324
  for (; i < len; i++) {
325
325
  codeLine = contentArray[i];
326
326
 
327
- if (codeLine.includes('}}')) {
327
+ if (codeLine.includes(' }')) {
328
328
  addComma(contentArray, i - 1);
329
329
  addConfig({
330
330
  configName,