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.
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/form/view/FormContainerController.mjs +1 -1
- package/apps/form/view/ViewportController.mjs +2 -2
- package/apps/portal/view/home/MainContainer.mjs +2 -2
- package/apps/portal/view/learn/ContentView.mjs +1 -1
- package/apps/portal/view/learn/LivePreview.mjs +0 -27
- package/apps/realworld2/view/user/LoginFormContainer.mjs +1 -1
- package/docs/app/view/MainContainer.mjs +1 -11
- package/examples/ServiceWorker.mjs +2 -2
- package/examples/component/timer/MainContainerController.mjs +2 -2
- package/examples/component/toast/MainContainerController.mjs +2 -2
- package/examples/date/selectorContainer/MainContainer.mjs +215 -0
- package/examples/date/selectorContainer/app.mjs +6 -0
- package/examples/date/selectorContainer/index.html +11 -0
- package/examples/date/selectorContainer/neo-config.json +6 -0
- package/package.json +3 -3
- package/resources/data/deck/learnneo/pages/Welcome.md +8 -0
- package/resources/data/deck/learnneo/pages/WhyNeo-Speed.md +5 -3
- package/resources/data/deck/learnneo/tree.json +4 -4
- package/resources/scss/src/date/SelectorContainer.scss +120 -0
- package/resources/scss/theme-dark/date/SelectorContainer.scss +24 -0
- package/resources/scss/theme-light/date/SelectorContainer.scss +24 -0
- package/resources/scss/theme-neo-light/date/SelectorContainer.scss +24 -0
- package/src/DefaultConfig.mjs +2 -2
- package/src/Neo.mjs +5 -5
- package/src/component/Base.mjs +1 -1
- package/src/container/Base.mjs +42 -17
- package/src/controller/Component.mjs +5 -4
- package/src/core/Observable.mjs +30 -5
- package/src/core/Util.mjs +1 -1
- package/src/date/DayViewComponent.mjs +251 -0
- package/src/date/SelectorContainer.mjs +352 -0
- package/src/date/SelectorContainerModel.mjs +33 -0
- package/src/form/Container.mjs +10 -2
- package/src/form/field/Base.mjs +10 -2
- package/src/form/field/CheckBox.mjs +13 -5
- package/src/form/field/ComboBox.mjs +20 -15
- package/src/form/field/Date.mjs +2 -2
- package/src/form/field/Text.mjs +18 -17
- package/src/main/addon/IntersectionObserver.mjs +27 -20
- package/src/tab/Container.mjs +56 -55
- package/docs/app/model/Tutorial.mjs +0 -41
- package/docs/app/store/Tutorials.mjs +0 -28
- package/docs/app/view/TutorialsTreeList.mjs +0 -51
- package/docs/tutorials/01_Concept.html +0 -45
- package/docs/tutorials/01_Concept.json +0 -123
- package/docs/tutorials/01_Concept.md +0 -55
- package/docs/tutorials/02_ClassSystem.html +0 -171
- package/docs/tutorials/02_ClassSystem.md +0 -187
- package/docs/tutorials/03_ComponentLifecycle.html +0 -28
- package/docs/tutorials/03_ComponentLifecycle.md +0 -23
- package/docs/tutorials/04_VdomVnode.html +0 -161
- package/docs/tutorials/05_RemoteMethodAccess.html +0 -82
- package/docs/tutorials/06_EcmaScript6Plus.html +0 -10
- package/docs/tutorials/07_WebWorkers.html +0 -9
- package/docs/tutorials/08_DomEvents.html +0 -7
- package/docs/tutorials/09_TodoList_version1.html +0 -503
- package/docs/tutorials/11_CreateApp.html +0 -94
- package/docs/tutorials/tutorials.json +0 -100
- 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
|
-
]
|