neo.mjs 6.15.5 → 6.15.6

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 (60) hide show
  1. package/apps/ServiceWorker.mjs +2 -2
  2. package/apps/form/view/FormContainerController.mjs +1 -1
  3. package/apps/form/view/ViewportController.mjs +2 -2
  4. package/apps/portal/view/home/MainContainer.mjs +2 -2
  5. package/apps/portal/view/learn/ContentView.mjs +1 -1
  6. package/apps/portal/view/learn/LivePreview.mjs +0 -27
  7. package/apps/realworld2/view/user/LoginFormContainer.mjs +1 -1
  8. package/docs/app/view/MainContainer.mjs +1 -11
  9. package/examples/ServiceWorker.mjs +2 -2
  10. package/examples/component/timer/MainContainerController.mjs +2 -2
  11. package/examples/component/toast/MainContainerController.mjs +2 -2
  12. package/examples/date/selectorContainer/MainContainer.mjs +215 -0
  13. package/examples/date/selectorContainer/app.mjs +6 -0
  14. package/examples/date/selectorContainer/index.html +11 -0
  15. package/examples/date/selectorContainer/neo-config.json +6 -0
  16. package/package.json +3 -3
  17. package/resources/data/deck/learnneo/pages/Welcome.md +8 -0
  18. package/resources/data/deck/learnneo/pages/WhyNeo-Speed.md +5 -3
  19. package/resources/data/deck/learnneo/tree.json +4 -4
  20. package/resources/scss/src/date/SelectorContainer.scss +120 -0
  21. package/resources/scss/theme-dark/date/SelectorContainer.scss +24 -0
  22. package/resources/scss/theme-light/date/SelectorContainer.scss +24 -0
  23. package/resources/scss/theme-neo-light/date/SelectorContainer.scss +24 -0
  24. package/src/DefaultConfig.mjs +2 -2
  25. package/src/Neo.mjs +5 -5
  26. package/src/component/Base.mjs +1 -1
  27. package/src/container/Base.mjs +42 -17
  28. package/src/controller/Component.mjs +5 -4
  29. package/src/core/Observable.mjs +30 -5
  30. package/src/core/Util.mjs +1 -1
  31. package/src/date/DayViewComponent.mjs +251 -0
  32. package/src/date/SelectorContainer.mjs +352 -0
  33. package/src/date/SelectorContainerModel.mjs +33 -0
  34. package/src/form/Container.mjs +10 -2
  35. package/src/form/field/Base.mjs +10 -2
  36. package/src/form/field/CheckBox.mjs +13 -5
  37. package/src/form/field/ComboBox.mjs +20 -15
  38. package/src/form/field/Date.mjs +2 -2
  39. package/src/form/field/Text.mjs +18 -17
  40. package/src/main/addon/IntersectionObserver.mjs +27 -20
  41. package/src/tab/Container.mjs +56 -55
  42. package/docs/app/model/Tutorial.mjs +0 -41
  43. package/docs/app/store/Tutorials.mjs +0 -28
  44. package/docs/app/view/TutorialsTreeList.mjs +0 -51
  45. package/docs/tutorials/01_Concept.html +0 -45
  46. package/docs/tutorials/01_Concept.json +0 -123
  47. package/docs/tutorials/01_Concept.md +0 -55
  48. package/docs/tutorials/02_ClassSystem.html +0 -171
  49. package/docs/tutorials/02_ClassSystem.md +0 -187
  50. package/docs/tutorials/03_ComponentLifecycle.html +0 -28
  51. package/docs/tutorials/03_ComponentLifecycle.md +0 -23
  52. package/docs/tutorials/04_VdomVnode.html +0 -161
  53. package/docs/tutorials/05_RemoteMethodAccess.html +0 -82
  54. package/docs/tutorials/06_EcmaScript6Plus.html +0 -10
  55. package/docs/tutorials/07_WebWorkers.html +0 -9
  56. package/docs/tutorials/08_DomEvents.html +0 -7
  57. package/docs/tutorials/09_TodoList_version1.html +0 -503
  58. package/docs/tutorials/11_CreateApp.html +0 -94
  59. package/docs/tutorials/tutorials.json +0 -100
  60. package/resources/scss/src/apps/docs/TutorialsTreeList.scss +0 -7
@@ -1,100 +0,0 @@
1
- [
2
- {
3
- "id" : 1,
4
- "isLeaf" : false,
5
- "name" : "neo.mjs",
6
- "parentId": null
7
- },
8
- {
9
- "fileName": "01_Concept.json",
10
- "id" : 2,
11
- "isLeaf" : true,
12
- "name" : "Concept",
13
- "parentId": 1,
14
- "type" : "json"
15
- },
16
- {
17
- "fileName": "11_CreateApp.html",
18
- "id" : 3,
19
- "isLeaf" : true,
20
- "name" : "create-app script",
21
- "parentId": 1,
22
- "type" : "html"
23
- },
24
- {
25
- "fileName": "02_ClassSystem.html",
26
- "id" : 4,
27
- "isLeaf" : true,
28
- "name" : "Class System",
29
- "parentId": 1,
30
- "type" : "html"
31
- },
32
- {
33
- "fileName": "03_ComponentLifecycle.html",
34
- "id" : 5,
35
- "isLeaf" : true,
36
- "name" : "Component Lifecycle",
37
- "parentId": 1,
38
- "type" : "html"
39
- },
40
- {
41
- "fileName": "08_DomEvents.html",
42
- "id" : 6,
43
- "isLeaf" : true,
44
- "name" : "Dom Events",
45
- "parentId": 1,
46
- "type" : "html"
47
- },
48
- {
49
- "fileName": "04_VdomVnode.html",
50
- "id" : 7,
51
- "isLeaf" : true,
52
- "name" : "Vdom & Vnodes",
53
- "parentId": 1,
54
- "type" : "html"
55
- },
56
- {
57
- "fileName": "05_RemoteMethodAccess.html",
58
- "id" : 8,
59
- "isLeaf" : true,
60
- "name" : "Remote Method Access",
61
- "parentId": 1,
62
- "type" : "html"
63
- },
64
- {
65
- "id" : 9,
66
- "isLeaf" : false,
67
- "name" : "Building a TodoList",
68
- "parentId": null
69
- },
70
- {
71
- "fileName": "09_TodoList_version1.html",
72
- "id" : 10,
73
- "isLeaf" : true,
74
- "name" : "Version 1",
75
- "parentId": 9,
76
- "type" : "html"
77
- },
78
- {
79
- "id" : 11,
80
- "isLeaf" : false,
81
- "name" : "basics",
82
- "parentId": null
83
- },
84
- {
85
- "fileName": "06_EcmaScript6Plus.html",
86
- "id" : 12,
87
- "isLeaf" : true,
88
- "name" : "EcmaScript 6+",
89
- "parentId": 11,
90
- "type" : "html"
91
- },
92
- {
93
- "fileName": "07_WebWorkers.html",
94
- "id" : 13,
95
- "isLeaf" : true,
96
- "name" : "Web Workers",
97
- "parentId": 11,
98
- "type" : "html"
99
- }
100
- ]
@@ -1,7 +0,0 @@
1
- .docs-tutorials-treelist.neo-list {
2
- .neo-list-item-leaf {
3
- .neo-list-item-content:before {
4
- content: "\f4c4";
5
- }
6
- }
7
- }