neo.mjs 7.2.0 → 7.3.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.
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/portal/index.html +1 -1
- package/apps/portal/model/Example.mjs +14 -4
- package/apps/portal/resources/data/examples_devmode.json +114 -173
- package/apps/portal/resources/data/examples_dist_dev.json +108 -164
- package/apps/portal/resources/data/examples_dist_prod.json +108 -164
- package/apps/portal/store/Examples.mjs +1 -8
- package/apps/portal/view/examples/List.mjs +39 -5
- package/apps/portal/view/examples/TabContainer.mjs +2 -0
- package/apps/portal/view/home/FooterContainer.mjs +1 -1
- package/apps/realworld/api/Article.mjs +7 -1
- package/apps/realworld/api/Favorite.mjs +7 -1
- package/apps/realworld/api/Profile.mjs +7 -1
- package/apps/realworld/api/Tag.mjs +7 -1
- package/apps/realworld/api/User.mjs +7 -1
- package/apps/realworld2/api/Article.mjs +7 -1
- package/apps/realworld2/api/Favorite.mjs +7 -1
- package/apps/realworld2/api/Profile.mjs +7 -1
- package/apps/realworld2/api/Tag.mjs +7 -1
- package/apps/realworld2/api/User.mjs +7 -1
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +2 -2
- package/resources/scss/src/apps/portal/examples/List.scss +1 -0
- package/resources/scss/src/apps/portal/examples/TabContainer.scss +2 -2
- package/src/DefaultConfig.mjs +2 -2
- package/src/calendar/view/MainContainer.mjs +6 -5
package/apps/ServiceWorker.mjs
CHANGED
package/apps/portal/index.html
CHANGED
@@ -19,11 +19,17 @@ class Example extends Model {
|
|
19
19
|
name: 'backgroundColor',
|
20
20
|
type: 'String'
|
21
21
|
}, {
|
22
|
-
name: 'browsers',
|
23
|
-
type: 'Array'
|
22
|
+
name : 'browsers',
|
23
|
+
type : 'Array',
|
24
|
+
defaultValue: ['Chrome', 'Edge', 'Firefox', 'Safari']
|
24
25
|
}, {
|
25
|
-
name: 'environments',
|
26
|
-
type: 'Array'
|
26
|
+
name : 'environments',
|
27
|
+
type : 'Array',
|
28
|
+
defaultValue: ['Desktop']
|
29
|
+
}, {
|
30
|
+
name : 'hidden',
|
31
|
+
type : 'Boolean',
|
32
|
+
defaultValue: false
|
27
33
|
}, {
|
28
34
|
name: 'id',
|
29
35
|
type: 'Integer'
|
@@ -33,6 +39,10 @@ class Example extends Model {
|
|
33
39
|
}, {
|
34
40
|
name: 'name',
|
35
41
|
type: 'String'
|
42
|
+
}, {
|
43
|
+
name : 'sharedWorkers',
|
44
|
+
type : 'Boolean',
|
45
|
+
defaultValue: false
|
36
46
|
}, {
|
37
47
|
name: 'sourceUrl',
|
38
48
|
type: 'String'
|
@@ -1,173 +1,114 @@
|
|
1
|
-
[
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
"name" : "component.DateSelector",
|
116
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/component/dateSelector",
|
117
|
-
"url" : "https://neomjs.com/examples/component/dateSelector/index.html"
|
118
|
-
},
|
119
|
-
{
|
120
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
121
|
-
"environments": ["Desktop"],
|
122
|
-
"id" : 6,
|
123
|
-
"image" : "devmode/gallery.png",
|
124
|
-
"name" : "component.Gallery",
|
125
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/component/gallery",
|
126
|
-
"url" : "https://neomjs.com/examples/component/gallery/index.html"
|
127
|
-
},
|
128
|
-
{
|
129
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
130
|
-
"environments": ["Desktop"],
|
131
|
-
"id" : 5,
|
132
|
-
"image" : "devmode/helix.png",
|
133
|
-
"name" : "component.Helix",
|
134
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/component/helix",
|
135
|
-
"url" : "https://neomjs.com/examples/component/helix/index.html"
|
136
|
-
},
|
137
|
-
{
|
138
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
139
|
-
"environments": ["Desktop"],
|
140
|
-
"id" : 4,
|
141
|
-
"image" : "devmode/dateField.png",
|
142
|
-
"name" : "form.field.Date",
|
143
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/form/field/date",
|
144
|
-
"url" : "https://neomjs.com/examples/form/field/date/index.html"
|
145
|
-
},
|
146
|
-
{
|
147
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
148
|
-
"environments": ["Desktop"],
|
149
|
-
"id" : 3,
|
150
|
-
"image" : "devmode/selectField.png",
|
151
|
-
"name" : "form.field.Select",
|
152
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/form/field/select",
|
153
|
-
"url" : "https://neomjs.com/examples/form/field/select/index.html"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
157
|
-
"environments": ["Desktop"],
|
158
|
-
"id" : 2,
|
159
|
-
"image" : "devmode/tabContainer.png",
|
160
|
-
"name" : "tab.Container",
|
161
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/examples/tab/container",
|
162
|
-
"url" : "https://neomjs.com/examples/tab/container/index.html"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"browsers" : ["Chrome", "Edge", "Firefox", "Safari"],
|
166
|
-
"environments": ["Desktop"],
|
167
|
-
"id" : 1,
|
168
|
-
"image" : "devmode/siesta.png",
|
169
|
-
"name" : "Siesta Unit Tests",
|
170
|
-
"sourceUrl" : "https://github.com/neo.mjs/neo/tree/dev/test/siesta",
|
171
|
-
"url" : "https://neomjs.com/test/siesta/index.html"
|
172
|
-
}
|
173
|
-
]
|
1
|
+
[{
|
2
|
+
"id" : 18,
|
3
|
+
"image" : "devmode/sharedcovid.png",
|
4
|
+
"name" : "Multi Window Covid App",
|
5
|
+
"sharedWorkers": true,
|
6
|
+
"sourceUrl" : "apps/sharedcovid",
|
7
|
+
"url" : "apps/sharedcovid/index.html#mainview=table"
|
8
|
+
}, {
|
9
|
+
"id" : 17,
|
10
|
+
"image" : "devmode/calendar-preview.png",
|
11
|
+
"name" : "Calendar",
|
12
|
+
"sourceUrl": "src/calendar",
|
13
|
+
"url" : "examples/calendar/basic/index.html"
|
14
|
+
}, {
|
15
|
+
"id" : 16,
|
16
|
+
"image" : "devmode/helix.png",
|
17
|
+
"name" : "component.Helix",
|
18
|
+
"sourceUrl": "examples/component/helix",
|
19
|
+
"url" : "examples/component/helix/index.html"
|
20
|
+
}, {
|
21
|
+
"id" : 15,
|
22
|
+
"image" : "devmode/coronaGallery.png",
|
23
|
+
"name" : "COVID-19 Gallery",
|
24
|
+
"sourceUrl": "examples/component/coronaGallery",
|
25
|
+
"url" : "examples/component/coronaGallery/index.html"
|
26
|
+
}, {
|
27
|
+
"id" : 14,
|
28
|
+
"image" : "devmode/tabContainer.png",
|
29
|
+
"name" : "tab.Container",
|
30
|
+
"sourceUrl": "examples/tab/container",
|
31
|
+
"url" : "examples/tab/container/index.html"
|
32
|
+
}, {
|
33
|
+
"id" : 13,
|
34
|
+
"image" : "devmode/model-component-example.png",
|
35
|
+
"name" : "View Models Example",
|
36
|
+
"sourceUrl": "examples/model/advanced",
|
37
|
+
"url" : "examples/model/advanced/index.html"
|
38
|
+
}, {
|
39
|
+
"id" : 12,
|
40
|
+
"image" : "devmode/dragdrop.png",
|
41
|
+
"name" : "Dialog drag&drop",
|
42
|
+
"sourceUrl": "examples/dialog",
|
43
|
+
"url" : "examples/dialog/"
|
44
|
+
}, {
|
45
|
+
"id" : 11,
|
46
|
+
"image" : "devmode/covidDashboard.png",
|
47
|
+
"name" : "Covid Dashboard",
|
48
|
+
"sourceUrl": "apps/covid",
|
49
|
+
"url" : "apps/covid/index.html"
|
50
|
+
}, {
|
51
|
+
"id" : 10,
|
52
|
+
"image" : "devmode/coronaHelix.png",
|
53
|
+
"name" : "COVID-19 Helix",
|
54
|
+
"sourceUrl": "examples/component/coronaHelix",
|
55
|
+
"url" : "examples/component/coronaHelix/index.html"
|
56
|
+
}, {
|
57
|
+
"id" : 9,
|
58
|
+
"image" : "devmode/gallery.png",
|
59
|
+
"name" : "component.Gallery",
|
60
|
+
"sourceUrl": "examples/component/gallery",
|
61
|
+
"url" : "examples/component/gallery/index.html"
|
62
|
+
}, {
|
63
|
+
"id" : 8,
|
64
|
+
"image" : "devmode/tableFiltering.png",
|
65
|
+
"name" : "Table Filtering",
|
66
|
+
"sourceUrl": "examples/tableFiltering",
|
67
|
+
"url" : "examples/tableFiltering/"
|
68
|
+
}, {
|
69
|
+
"id" : 7,
|
70
|
+
"image" : "devmode/dateSelector.png",
|
71
|
+
"name" : "component.DateSelector",
|
72
|
+
"sourceUrl": "examples/component/dateSelector",
|
73
|
+
"url" : "examples/component/dateSelector/index.html"
|
74
|
+
}, {
|
75
|
+
"id" : 6,
|
76
|
+
"image" : "devmode/dateField.png",
|
77
|
+
"name" : "form.field.Date",
|
78
|
+
"sourceUrl": "examples/form/field/date",
|
79
|
+
"url" : "examples/form/field/date/index.html"
|
80
|
+
}, {
|
81
|
+
"id" : 5,
|
82
|
+
"image" : "devmode/selectField.png",
|
83
|
+
"name" : "form.field.ComboBox",
|
84
|
+
"sourceUrl": "examples/form/field/combobox",
|
85
|
+
"url" : "examples/form/field/combobox/index.html"
|
86
|
+
}, {
|
87
|
+
"id" : 4,
|
88
|
+
"image" : "devmode/siesta.png",
|
89
|
+
"name" : "Siesta Unit Tests",
|
90
|
+
"sourceUrl": "test/siesta",
|
91
|
+
"url" : "test/siesta/index.html"
|
92
|
+
}, {
|
93
|
+
"hidden" : true,
|
94
|
+
"id" : 3,
|
95
|
+
"image" : "devmode/multi_window_dd.png",
|
96
|
+
"name" : "Multi Window Drag&Drop",
|
97
|
+
"sharedWorkers": true,
|
98
|
+
"sourceUrl" : "apps/shareddialog",
|
99
|
+
"url" : "apps/shareddialog/index.html"
|
100
|
+
}, {
|
101
|
+
"hidden" : true,
|
102
|
+
"id" : 2,
|
103
|
+
"image" : "devmode/realworldApp.png",
|
104
|
+
"name" : "RealWorld App",
|
105
|
+
"sourceUrl": "apps/realworld",
|
106
|
+
"url" : "apps/realworld/index.html"
|
107
|
+
}, {
|
108
|
+
"hidden" : true,
|
109
|
+
"id" : 1,
|
110
|
+
"image" : "devmode/realworldApp2.png",
|
111
|
+
"name" : "RealWorld App v2</br>(in progress)",
|
112
|
+
"sourceUrl": "apps/realworld2",
|
113
|
+
"url" : "apps/realworld2/index.html#/gallery"
|
114
|
+
}]
|