neo.mjs 6.18.3 → 6.19.1
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/README.md +28 -214
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/colors/view/ViewportController.mjs +7 -3
- package/apps/portal/data/blog.json +13 -0
- package/apps/portal/view/HeaderToolbar.mjs +2 -2
- package/apps/portal/view/Viewport.mjs +4 -2
- package/apps/portal/view/ViewportController.mjs +88 -7
- package/apps/portal/view/blog/Container.mjs +8 -8
- package/apps/portal/view/blog/List.mjs +6 -6
- package/apps/portal/view/home/FooterContainer.mjs +123 -0
- package/apps/portal/view/home/MainContainer.mjs +3 -2
- package/apps/portal/view/home/parts/AfterMath.mjs +17 -24
- package/apps/portal/view/home/parts/Colors.mjs +2 -2
- package/apps/portal/view/home/parts/How.mjs +3 -3
- package/apps/portal/view/home/parts/MainNeo.mjs +6 -7
- package/apps/portal/view/home/parts/References.mjs +88 -0
- package/apps/portal/view/learn/MainContainer.mjs +3 -2
- package/apps/portal/view/learn/MainContainerController.mjs +11 -0
- package/apps/portal/view/learn/PageContainer.mjs +5 -3
- package/apps/portal/view/services/Component.mjs +73 -0
- package/apps/website/data/blog.json +13 -0
- package/examples/ServiceWorker.mjs +2 -2
- package/examples/component/carousel/MainContainer.mjs +42 -33
- package/examples/layout/cube/MainContainer.mjs +217 -0
- package/examples/layout/cube/app.mjs +6 -0
- package/examples/layout/cube/index.html +11 -0
- package/examples/layout/cube/neo-config.json +6 -0
- package/examples/model/twoWay/MainContainer.mjs +76 -0
- package/examples/model/twoWay/app.mjs +6 -0
- package/examples/model/twoWay/index.html +11 -0
- package/examples/model/twoWay/neo-config.json +6 -0
- package/package.json +7 -7
- package/resources/data/deck/learnneo/pages/Earthquakes-01-goals.md +32 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-01-generate-a-workspace.md +47 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-02-generate-the-starter-app.md +150 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-03-debugging.md +136 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-04-fetch-data.md +146 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-05-refactor-the-table.md +146 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-06-use-a-view-model.md +301 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-07-use-the-google-maps-addon.md +175 -0
- package/resources/data/deck/learnneo/pages/Earthquakes-Lab-08-events.md +38 -0
- package/resources/data/deck/learnneo/pages/Earthquakes.md +8 -8
- package/resources/data/deck/learnneo/pages/Glossary.md +0 -0
- package/resources/data/deck/learnneo/pages/GuideEvents.md +80 -1
- package/resources/data/deck/learnneo/tree.json +2 -1
- package/resources/images/apps/portal/neo-references.png +0 -0
- package/resources/scss/src/apps/portal/Viewport.scss +18 -0
- package/resources/scss/src/apps/portal/blog/Container.scss +7 -7
- package/resources/scss/src/apps/portal/blog/List.scss +20 -16
- package/resources/scss/src/apps/portal/home/FooterContainer.scss +31 -0
- package/resources/scss/src/apps/portal/home/parts/AfterMath.scss +5 -0
- package/resources/scss/src/apps/portal/home/parts/MainNeo.scss +4 -5
- package/resources/scss/src/apps/portal/home/parts/References.scss +46 -0
- package/resources/scss/src/apps/portal/learn/ContentTreeList.scss +20 -0
- package/resources/scss/src/apps/portal/learn/ContentView.scss +4 -0
- package/resources/scss/src/apps/portal/learn/MainContainer.scss +1 -1
- package/resources/scss/src/apps/portal/learn/PageContainer.scss +22 -16
- package/resources/scss/src/apps/portal/services/Component.scss +20 -0
- package/resources/scss/src/component/Carousel.scss +21 -0
- package/resources/scss/src/examples/layout/cube/MainContainer.scss +7 -0
- package/resources/scss/src/layout/Cube.scss +80 -0
- package/resources/scss/src/tab/Container.scss +10 -10
- package/resources/scss/theme-neo-light/apps/portal/blog/Container.scss +3 -0
- package/resources/scss/theme-neo-light/form/field/Search.scss +1 -1
- package/resources/scss/theme-neo-light/tooltip/Base.scss +1 -1
- package/src/DefaultConfig.mjs +2 -2
- package/src/Main.mjs +15 -1
- package/src/Neo.mjs +14 -3
- package/src/calendar/view/MainContainer.mjs +8 -7
- package/src/component/Base.mjs +28 -8
- package/src/component/DateSelector.mjs +2 -2
- package/src/container/Base.mjs +3 -1
- package/src/dialog/Base.mjs +1 -2
- package/src/form/field/Time.mjs +18 -16
- package/src/layout/Base.mjs +43 -6
- package/src/layout/Card.mjs +21 -59
- package/src/layout/Cube.mjs +432 -0
- package/src/layout/Fit.mjs +9 -38
- package/src/layout/Flexbox.mjs +16 -17
- package/src/layout/Form.mjs +13 -70
- package/src/layout/Grid.mjs +6 -18
- package/src/list/Base.mjs +3 -3
- package/src/main/mixin/DeltaUpdates.mjs +16 -3
- package/src/model/Component.mjs +25 -6
- package/src/util/Array.mjs +36 -0
- package/src/vdom/Helper.mjs +338 -442
- package/src/vdom/VNode.mjs +12 -1
- package/test/siesta/siesta.js +16 -1
- package/test/siesta/tests/VdomCalendar.mjs +2193 -37
- package/test/siesta/tests/VdomHelper.mjs +287 -48
- package/test/siesta/tests/vdom/Advanced.mjs +368 -0
- package/test/siesta/tests/vdom/layout/Cube.mjs +189 -0
- package/test/siesta/tests/vdom/table/Container.mjs +133 -0
- package/resources/scss/theme-neo-light/apps/portal/learn/ContentTreeList.scss +0 -23
@@ -8,6 +8,88 @@ import VDomUtil from '../../../src/util/VDom.mjs';
|
|
8
8
|
let deltas, output, vdom, vnode;
|
9
9
|
|
10
10
|
StartTest(t => {
|
11
|
+
t.it('Week view: Infinite Scrolling', t => {
|
12
|
+
vdom =
|
13
|
+
{id: 'neo-vnode-1', cn: [
|
14
|
+
{id: 'col-6'},
|
15
|
+
{id: 'col-7'},
|
16
|
+
{id: 'col-8'},
|
17
|
+
{id: 'col-9'},
|
18
|
+
{id: 'col-10'},
|
19
|
+
{id: 'col-11'},
|
20
|
+
{id: 'col-12'},
|
21
|
+
{id: 'col-13'},
|
22
|
+
{id: 'col-14'},
|
23
|
+
{id: 'col-15'}
|
24
|
+
]};
|
25
|
+
|
26
|
+
vnode = VdomHelper.create(vdom);
|
27
|
+
|
28
|
+
vdom =
|
29
|
+
{id: 'neo-vnode-1', cn: [
|
30
|
+
{id: 'col-1'},
|
31
|
+
{id: 'col-2'},
|
32
|
+
{id: 'col-3'},
|
33
|
+
{id: 'col-4'},
|
34
|
+
{id: 'col-5'},
|
35
|
+
{id: 'col-6'},
|
36
|
+
{id: 'col-7'},
|
37
|
+
{id: 'col-8'},
|
38
|
+
{id: 'col-9'},
|
39
|
+
{id: 'col-10'}
|
40
|
+
]};
|
41
|
+
|
42
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
43
|
+
|
44
|
+
t.is(deltas.length, 10, 'Count deltas equals 10');
|
45
|
+
|
46
|
+
t.isDeeplyStrict(deltas, [
|
47
|
+
{action: 'insertNode', index: 0, outerHTML: '<div id="col-1"></div>', parentId: 'neo-vnode-1'},
|
48
|
+
{action: 'insertNode', index: 1, outerHTML: '<div id="col-2"></div>', parentId: 'neo-vnode-1'},
|
49
|
+
{action: 'insertNode', index: 2, outerHTML: '<div id="col-3"></div>', parentId: 'neo-vnode-1'},
|
50
|
+
{action: 'insertNode', index: 3, outerHTML: '<div id="col-4"></div>', parentId: 'neo-vnode-1'},
|
51
|
+
{action: 'insertNode', index: 4, outerHTML: '<div id="col-5"></div>', parentId: 'neo-vnode-1'},
|
52
|
+
{action: 'removeNode', id: 'col-11'},
|
53
|
+
{action: 'removeNode', id: 'col-12'},
|
54
|
+
{action: 'removeNode', id: 'col-13'},
|
55
|
+
{action: 'removeNode', id: 'col-14'},
|
56
|
+
{action: 'removeNode', id: 'col-15'}
|
57
|
+
], 'deltas got created successfully');
|
58
|
+
|
59
|
+
t.diag('Revert operation');
|
60
|
+
|
61
|
+
vdom =
|
62
|
+
{id: 'neo-vnode-1', cn: [
|
63
|
+
{id: 'col-6'},
|
64
|
+
{id: 'col-7'},
|
65
|
+
{id: 'col-8'},
|
66
|
+
{id: 'col-9'},
|
67
|
+
{id: 'col-10'},
|
68
|
+
{id: 'col-11'},
|
69
|
+
{id: 'col-12'},
|
70
|
+
{id: 'col-13'},
|
71
|
+
{id: 'col-14'},
|
72
|
+
{id: 'col-15'}
|
73
|
+
]};
|
74
|
+
|
75
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
76
|
+
|
77
|
+
t.is(deltas.length, 10, 'Count deltas equals 10');
|
78
|
+
|
79
|
+
t.isDeeplyStrict(deltas, [
|
80
|
+
{action: 'insertNode', index: 10, outerHTML: '<div id="col-11"></div>', parentId: 'neo-vnode-1'},
|
81
|
+
{action: 'insertNode', index: 11, outerHTML: '<div id="col-12"></div>', parentId: 'neo-vnode-1'},
|
82
|
+
{action: 'insertNode', index: 12, outerHTML: '<div id="col-13"></div>', parentId: 'neo-vnode-1'},
|
83
|
+
{action: 'insertNode', index: 13, outerHTML: '<div id="col-14"></div>', parentId: 'neo-vnode-1'},
|
84
|
+
{action: 'insertNode', index: 14, outerHTML: '<div id="col-15"></div>', parentId: 'neo-vnode-1'},
|
85
|
+
{action: 'removeNode', id: 'col-1'},
|
86
|
+
{action: 'removeNode', id: 'col-2'},
|
87
|
+
{action: 'removeNode', id: 'col-3'},
|
88
|
+
{action: 'removeNode', id: 'col-4'},
|
89
|
+
{action: 'removeNode', id: 'col-5'}
|
90
|
+
], 'deltas got created successfully');
|
91
|
+
});
|
92
|
+
|
11
93
|
t.it('Drag an event to the top inside the same column', t => {
|
12
94
|
vdom =
|
13
95
|
{id: 'neo-calendar-week', cn: [
|
@@ -39,14 +121,14 @@ StartTest(t => {
|
|
39
121
|
]}
|
40
122
|
]};
|
41
123
|
|
42
|
-
output = VdomHelper.update({vdom
|
124
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
43
125
|
|
44
126
|
t.isDeeplyStrict(deltas, [
|
45
127
|
{action: 'moveNode', id: 'neo-event-2', index: 0, parentId: 'neo-column-1'},
|
46
128
|
{innerHTML: '06:00', id: 'neo-event-2__time'}
|
47
129
|
], 'deltas got created successfully');
|
48
130
|
|
49
|
-
t.diag(
|
131
|
+
t.diag('Revert operation');
|
50
132
|
|
51
133
|
vdom =
|
52
134
|
{id: 'neo-calendar-week', cn: [
|
@@ -62,7 +144,7 @@ StartTest(t => {
|
|
62
144
|
]}
|
63
145
|
]};
|
64
146
|
|
65
|
-
output = VdomHelper.update({vdom
|
147
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
66
148
|
|
67
149
|
t.isDeeplyStrict(deltas, [
|
68
150
|
{action: 'moveNode', id: 'neo-event-1', index: 0, parentId: 'neo-column-1'},
|
@@ -71,7 +153,7 @@ StartTest(t => {
|
|
71
153
|
});
|
72
154
|
|
73
155
|
t.it('Event moving to the right', t => {
|
74
|
-
t.diag(
|
156
|
+
t.diag('Insert event into a column on the right');
|
75
157
|
|
76
158
|
vdom =
|
77
159
|
{id: 'neo-calendar-week', cn: [
|
@@ -94,14 +176,16 @@ StartTest(t => {
|
|
94
176
|
]}
|
95
177
|
]};
|
96
178
|
|
97
|
-
output = VdomHelper.update({vdom
|
179
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
180
|
+
|
181
|
+
t.is(deltas.length, 2, 'Count deltas equals 2');
|
98
182
|
|
99
183
|
t.isDeeplyStrict(deltas, [
|
100
184
|
{action: 'moveNode', id: 'neo-event-1', index: 0, parentId: 'neo-column-2'},
|
101
|
-
{cls: {add: ['foo']
|
185
|
+
{cls: {add: ['foo']}, id: 'neo-event-1'}
|
102
186
|
], 'deltas got created successfully');
|
103
187
|
|
104
|
-
t.diag(
|
188
|
+
t.diag('Revert operation');
|
105
189
|
|
106
190
|
vdom =
|
107
191
|
{id: 'neo-calendar-week', cn: [
|
@@ -109,17 +193,18 @@ StartTest(t => {
|
|
109
193
|
{id: 'neo-column-2', cls: ['neo-c-w-column'], cn : [{id: 'neo-event-2', cls: ['neo-event']}]}
|
110
194
|
]};
|
111
195
|
|
112
|
-
output = VdomHelper.update({vdom
|
196
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
197
|
+
|
198
|
+
t.is(deltas.length, 2, 'Count deltas equals 2');
|
113
199
|
|
114
200
|
t.isDeeplyStrict(deltas, [
|
115
201
|
{action: 'moveNode', id: 'neo-event-1', index: 0, parentId: 'neo-column-1'},
|
116
|
-
{cls: {
|
117
|
-
{action: 'moveNode', id: 'neo-event-2', index: 0, parentId: 'neo-column-2'} // todo: does not hurt, but not needed
|
202
|
+
{cls: {remove: ['foo']}, id: 'neo-event-1'}
|
118
203
|
], 'deltas got created successfully');
|
119
204
|
});
|
120
205
|
|
121
206
|
t.it('Event moving to the left', t => {
|
122
|
-
t.diag(
|
207
|
+
t.diag('Insert event into a column on the left');
|
123
208
|
|
124
209
|
vdom =
|
125
210
|
{id: 'neo-calendar-week', cn: [
|
@@ -142,14 +227,16 @@ StartTest(t => {
|
|
142
227
|
{id: 'neo-column-2', cls: ['neo-c-w-column'], cn: []}
|
143
228
|
]};
|
144
229
|
|
145
|
-
output = VdomHelper.update({vdom
|
230
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
231
|
+
|
232
|
+
t.is(deltas.length, 2, 'Count deltas equals 2');
|
146
233
|
|
147
234
|
t.isDeeplyStrict(deltas, [
|
148
235
|
{action: 'moveNode', id: 'neo-event-2', index: 0, parentId: 'neo-column-1'},
|
149
|
-
{cls: {add: ['foo']
|
236
|
+
{cls: {add: ['foo']}, id: 'neo-event-2'}
|
150
237
|
], 'deltas got created successfully');
|
151
238
|
|
152
|
-
t.diag(
|
239
|
+
t.diag('Revert operation');
|
153
240
|
|
154
241
|
vdom =
|
155
242
|
{id: 'neo-calendar-week', cn: [
|
@@ -161,17 +248,18 @@ StartTest(t => {
|
|
161
248
|
]}
|
162
249
|
]};
|
163
250
|
|
164
|
-
output = VdomHelper.update({vdom
|
251
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
252
|
+
|
253
|
+
t.is(deltas.length, 2, 'Count deltas equals 2');
|
165
254
|
|
166
255
|
t.isDeeplyStrict(deltas, [
|
167
256
|
{action: 'moveNode', id: 'neo-event-2', index: 0, parentId: 'neo-column-2'},
|
168
|
-
{cls: {
|
169
|
-
{action: 'moveNode', id: 'neo-event-1', index: 0, parentId: 'neo-column-1'} // todo: does not hurt, but not needed
|
257
|
+
{cls: {remove: ['foo']}, id: 'neo-event-2'}
|
170
258
|
], 'deltas got created successfully');
|
171
259
|
});
|
172
260
|
|
173
261
|
t.it('removeDom vdom property', t => {
|
174
|
-
t.diag(
|
262
|
+
t.diag('Remove the DOM of the first child node');
|
175
263
|
|
176
264
|
vdom =
|
177
265
|
{id: 'neo-calendar-week', cn: [
|
@@ -189,13 +277,13 @@ StartTest(t => {
|
|
189
277
|
{id: 'neo-column-3'}
|
190
278
|
]};
|
191
279
|
|
192
|
-
output = VdomHelper.update({vdom
|
280
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
193
281
|
|
194
282
|
t.isDeeplyStrict(deltas, [
|
195
|
-
{action: 'removeNode', id: 'neo-column-1'
|
283
|
+
{action: 'removeNode', id: 'neo-column-1'}
|
196
284
|
], 'deltas got created successfully');
|
197
285
|
|
198
|
-
t.diag(
|
286
|
+
t.diag('Revert operation');
|
199
287
|
|
200
288
|
vdom =
|
201
289
|
{id: 'neo-calendar-week', cn: [
|
@@ -204,13 +292,13 @@ StartTest(t => {
|
|
204
292
|
{id: 'neo-column-3'}
|
205
293
|
]};
|
206
294
|
|
207
|
-
output = VdomHelper.update({vdom
|
295
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
208
296
|
|
209
297
|
t.isDeeplyStrict(deltas, [
|
210
|
-
{action: 'insertNode',
|
298
|
+
{action: 'insertNode', index:0, outerHTML: '<div id="neo-column-1"></div>', parentId: 'neo-calendar-week'}
|
211
299
|
], 'deltas got created successfully');
|
212
300
|
|
213
|
-
t.diag(
|
301
|
+
t.diag('Remove the DOM of the last child node');
|
214
302
|
|
215
303
|
vdom =
|
216
304
|
{id: 'neo-calendar-week', cn: [
|
@@ -219,13 +307,13 @@ StartTest(t => {
|
|
219
307
|
{id: 'neo-column-3', removeDom: true}
|
220
308
|
]};
|
221
309
|
|
222
|
-
output = VdomHelper.update({vdom
|
310
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
223
311
|
|
224
312
|
t.isDeeplyStrict(deltas, [
|
225
313
|
{action: 'removeNode', id: 'neo-column-3'}
|
226
314
|
], 'deltas got created successfully');
|
227
315
|
|
228
|
-
t.diag(
|
316
|
+
t.diag('Revert operation');
|
229
317
|
|
230
318
|
vdom =
|
231
319
|
{id: 'neo-calendar-week', cn: [
|
@@ -234,13 +322,13 @@ StartTest(t => {
|
|
234
322
|
{id: 'neo-column-3'}
|
235
323
|
]};
|
236
324
|
|
237
|
-
output = VdomHelper.update({vdom
|
325
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
238
326
|
|
239
327
|
t.isDeeplyStrict(deltas, [
|
240
|
-
{action: 'insertNode',
|
328
|
+
{action: 'insertNode', index:2, outerHTML: '<div id="neo-column-3"></div>', parentId: 'neo-calendar-week'}
|
241
329
|
], 'deltas got created successfully');
|
242
330
|
|
243
|
-
t.diag(
|
331
|
+
t.diag('Remove a top level node');
|
244
332
|
|
245
333
|
vdom =
|
246
334
|
{id: 'neo-1'};
|
@@ -250,14 +338,14 @@ StartTest(t => {
|
|
250
338
|
vdom =
|
251
339
|
{id: 'neo-1', removeDom: true};
|
252
340
|
|
253
|
-
output = VdomHelper.update({vdom
|
341
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
254
342
|
|
255
343
|
t.isDeeplyStrict(deltas, [
|
256
344
|
{action: 'removeNode', id: 'neo-1'}
|
257
345
|
], 'deltas got created successfully');
|
258
346
|
|
259
347
|
// see: https://github.com/neomjs/neo/issues/2390
|
260
|
-
t.diag(
|
348
|
+
t.diag('Move an event with a higher index sibling into a non empty column');
|
261
349
|
|
262
350
|
vdom =
|
263
351
|
{id: 'neo-calendar-week', cn: [
|
@@ -283,14 +371,15 @@ StartTest(t => {
|
|
283
371
|
]}
|
284
372
|
]};
|
285
373
|
|
286
|
-
output = VdomHelper.update({vdom
|
374
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
375
|
+
|
376
|
+
t.is(deltas.length, 1, 'Count deltas equals 1');
|
287
377
|
|
288
378
|
t.isDeeplyStrict(deltas, [
|
289
|
-
{action: 'moveNode', id: 'neo-event-2', index: 1, parentId: 'neo-column-1'}
|
290
|
-
{action: 'moveNode', id: 'neo-event-3', index: 0, parentId: 'neo-column-2'} // todo: does not hurt, but not needed
|
379
|
+
{action: 'moveNode', id: 'neo-event-2', index: 1, parentId: 'neo-column-1'}
|
291
380
|
], 'deltas got created successfully');
|
292
381
|
|
293
|
-
t.diag(
|
382
|
+
t.diag('Remove the first item inside the calendars list');
|
294
383
|
|
295
384
|
vdom =
|
296
385
|
{tag: 'ul', id: 'neo-calendar-calendars-list-1', cn: [
|
@@ -332,10 +421,2077 @@ StartTest(t => {
|
|
332
421
|
]}
|
333
422
|
]};
|
334
423
|
|
335
|
-
output = VdomHelper.update({vdom
|
424
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
336
425
|
|
337
426
|
t.isDeeplyStrict(deltas, [
|
338
|
-
{action: 'removeNode', id: 'neo-calendar-calendars-list-1__1'
|
427
|
+
{action: 'removeNode', id: 'neo-calendar-calendars-list-1__1'}
|
339
428
|
], 'deltas got created successfully');
|
340
429
|
});
|
430
|
+
|
431
|
+
t.it('Month View infinite scrolling', t => {
|
432
|
+
vdom =
|
433
|
+
{cls: ['neo-c-m-scrollcontainer', 'neo-scroll-shadows', 'neo-is-scrolling'], id: 'neo-vnode-150', cn: [
|
434
|
+
{id: 'neo-component-6__week__2021-02-21', flag: '2021-02-21', cls: ['neo-week'], cn: [
|
435
|
+
{cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-02-21', cn: [
|
436
|
+
{cls: ['neo-day-number'], html: 21, id: 'neo-component-6__day_number__2021-02-21'}
|
437
|
+
]},
|
438
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-02-22', cn: [
|
439
|
+
{cls: ['neo-day-number'], html: 22, id: 'neo-component-6__day_number__2021-02-22'}
|
440
|
+
]},
|
441
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-02-23', cn: [
|
442
|
+
{cls: ['neo-day-number'], html: 23, id: 'neo-component-6__day_number__2021-02-23'}
|
443
|
+
]},
|
444
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-02-24', cn: [
|
445
|
+
{cls: ['neo-day-number'], html: 24, id: 'neo-component-6__day_number__2021-02-24'}
|
446
|
+
]},
|
447
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-02-25', cn: [
|
448
|
+
{cls: ['neo-day-number'], html: 25, id: 'neo-component-6__day_number__2021-02-25'}
|
449
|
+
]},
|
450
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-02-26', cn: [
|
451
|
+
{cls: ['neo-day-number'], html: 26, id: 'neo-component-6__day_number__2021-02-26'}
|
452
|
+
]},
|
453
|
+
{cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-02-27', cn: [
|
454
|
+
{cls: ['neo-day-number'], html: 27, id: 'neo-component-6__day_number__2021-02-27'}
|
455
|
+
]}
|
456
|
+
]},
|
457
|
+
{tag: 'div', id: 'neo-vnode-168', 'cls': ['neo-month-header'], 'cn': [
|
458
|
+
{tag: 'div', id: 'neo-vnode-167', 'cls': ['neo-month-header-content'], 'cn': [
|
459
|
+
{tag: 'span', cls: ['neo-month-name'], flag: 'month-name', html: 'Mar', id: 'neo-vnode-166'},
|
460
|
+
{vtype: 'text', id: 'neo-vtext-7', html: ' 2021'}
|
461
|
+
]}
|
462
|
+
]},
|
463
|
+
{tag : 'div', id: 'neo-component-6__week__2021-02-28', flag: '2021-03-01', cls: ['neo-week'], cn: [
|
464
|
+
{tag: 'div', cls: ['neo-day', 'neo-weekend'], id : 'neo-component-6__day__2021-02-28', cn: [
|
465
|
+
{cls : ['neo-day-number'], html: 28, id: 'neo-component-6__day_number__2021-02-28', tag: 'div'}
|
466
|
+
]},
|
467
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-01', cn: [
|
468
|
+
{cls : ['neo-day-number'], html: 1, id: 'neo-component-6__day_number__2021-03-01', tag: 'div'}
|
469
|
+
]},
|
470
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-02', cn: [
|
471
|
+
{cls : ['neo-day-number'], html: 2, id: 'neo-component-6__day_number__2021-03-02', tag: 'div'}
|
472
|
+
]},
|
473
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-03', cn: [
|
474
|
+
{cls : ['neo-day-number'], html: 3, id: 'neo-component-6__day_number__2021-03-03', tag: 'div'}
|
475
|
+
]},
|
476
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-04', cn: [
|
477
|
+
{cls : ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-03-04', tag: 'div'}
|
478
|
+
]},
|
479
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-05', cn: [
|
480
|
+
{cls : ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-03-05', tag: 'div'}
|
481
|
+
]},
|
482
|
+
{tag: 'div', cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-03-06', cn: [
|
483
|
+
{cls : ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-03-06', tag: 'div'}
|
484
|
+
]}
|
485
|
+
]},
|
486
|
+
{tag: 'div', id: 'neo-component-6__week__2021-03-07', flag: '2021-03-07', cls: ['neo-week'], cn: [
|
487
|
+
{tag: 'div', cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-03-07', cn: [
|
488
|
+
{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-03-07', tag: 'div'}
|
489
|
+
]},
|
490
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-08', cn: [
|
491
|
+
{cls: ['neo-day-number'], html: 8, id: 'neo-component-6__day_number__2021-03-08', tag: 'div'}
|
492
|
+
]},
|
493
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-09', cn: [
|
494
|
+
{cls: ['neo-day-number'], html: 9, id: 'neo-component-6__day_number__2021-03-09', tag: 'div'}
|
495
|
+
]},
|
496
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-10', cn: [
|
497
|
+
{cls: ['neo-day-number'], html: 10, id: 'neo-component-6__day_number__2021-03-10', tag: 'div'}
|
498
|
+
]},
|
499
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-11', cn: [
|
500
|
+
{cls: ['neo-day-number'], html: 11, id: 'neo-component-6__day_number__2021-03-11', tag: 'div'}
|
501
|
+
]},
|
502
|
+
{tag: 'div', cls: ['neo-day'], id: 'neo-component-6__day__2021-03-12', cn: [
|
503
|
+
{cls: ['neo-day-number'], html: 12, id: 'neo-component-6__day_number__2021-03-12', tag: 'div'}
|
504
|
+
]},
|
505
|
+
{tag: 'div', cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-03-13', cn: [
|
506
|
+
{cls: ['neo-day-number'], html: 13, id: 'neo-component-6__day_number__2021-03-13', tag: 'div'}
|
507
|
+
]}
|
508
|
+
]}, {
|
509
|
+
flag: '2021-03-14',
|
510
|
+
cls : ['neo-week'],
|
511
|
+
cn : [{
|
512
|
+
cls: ['neo-day', 'neo-weekend'],
|
513
|
+
id : 'neo-component-6__day__2021-03-14',
|
514
|
+
cn : [{
|
515
|
+
cls : ['neo-day-number'],
|
516
|
+
html: 14,
|
517
|
+
id : 'neo-component-6__day_number__2021-03-14',
|
518
|
+
tag : 'div'
|
519
|
+
}],
|
520
|
+
tag: 'div'
|
521
|
+
}, {
|
522
|
+
cls: ['neo-day'],
|
523
|
+
id : 'neo-component-6__day__2021-03-15',
|
524
|
+
cn : [{
|
525
|
+
cls : ['neo-day-number'],
|
526
|
+
html: 15,
|
527
|
+
id : 'neo-component-6__day_number__2021-03-15',
|
528
|
+
tag : 'div'
|
529
|
+
}],
|
530
|
+
tag: 'div'
|
531
|
+
}, {
|
532
|
+
cls: ['neo-day'],
|
533
|
+
id : 'neo-component-6__day__2021-03-16',
|
534
|
+
cn : [{
|
535
|
+
cls : ['neo-day-number'],
|
536
|
+
html: 16,
|
537
|
+
id : 'neo-component-6__day_number__2021-03-16',
|
538
|
+
tag : 'div'
|
539
|
+
}],
|
540
|
+
tag: 'div'
|
541
|
+
}, {
|
542
|
+
cls: ['neo-day'],
|
543
|
+
id : 'neo-component-6__day__2021-03-17',
|
544
|
+
cn : [{
|
545
|
+
cls : ['neo-day-number'],
|
546
|
+
html: 17,
|
547
|
+
id : 'neo-component-6__day_number__2021-03-17',
|
548
|
+
tag : 'div'
|
549
|
+
}],
|
550
|
+
tag: 'div'
|
551
|
+
}, {
|
552
|
+
cls: ['neo-day'],
|
553
|
+
id : 'neo-component-6__day__2021-03-18',
|
554
|
+
cn : [{
|
555
|
+
cls : ['neo-day-number'],
|
556
|
+
html: 18,
|
557
|
+
id : 'neo-component-6__day_number__2021-03-18',
|
558
|
+
tag : 'div'
|
559
|
+
}],
|
560
|
+
tag: 'div'
|
561
|
+
}, {
|
562
|
+
cls: ['neo-day'],
|
563
|
+
id : 'neo-component-6__day__2021-03-19',
|
564
|
+
cn : [{
|
565
|
+
cls : ['neo-day-number'],
|
566
|
+
html: 19,
|
567
|
+
id : 'neo-component-6__day_number__2021-03-19',
|
568
|
+
tag : 'div'
|
569
|
+
}],
|
570
|
+
tag: 'div'
|
571
|
+
}, {
|
572
|
+
cls: ['neo-day', 'neo-weekend'],
|
573
|
+
id : 'neo-component-6__day__2021-03-20',
|
574
|
+
cn : [{
|
575
|
+
cls : ['neo-day-number'],
|
576
|
+
html: 20,
|
577
|
+
id : 'neo-component-6__day_number__2021-03-20',
|
578
|
+
tag : 'div'
|
579
|
+
}],
|
580
|
+
tag: 'div'
|
581
|
+
}],
|
582
|
+
id : 'neo-component-6__week__2021-03-14',
|
583
|
+
tag : 'div'
|
584
|
+
}, {
|
585
|
+
flag: '2021-03-21',
|
586
|
+
cls : ['neo-week'],
|
587
|
+
cn : [{
|
588
|
+
cls: ['neo-day', 'neo-weekend'],
|
589
|
+
id : 'neo-component-6__day__2021-03-21',
|
590
|
+
cn : [{
|
591
|
+
cls : ['neo-day-number'],
|
592
|
+
html: 21,
|
593
|
+
id : 'neo-component-6__day_number__2021-03-21',
|
594
|
+
tag : 'div'
|
595
|
+
}],
|
596
|
+
tag: 'div'
|
597
|
+
}, {
|
598
|
+
cls: ['neo-day'],
|
599
|
+
id : 'neo-component-6__day__2021-03-22',
|
600
|
+
cn : [{
|
601
|
+
cls : ['neo-day-number'],
|
602
|
+
html: 22,
|
603
|
+
id : 'neo-component-6__day_number__2021-03-22',
|
604
|
+
tag : 'div'
|
605
|
+
}],
|
606
|
+
tag: 'div'
|
607
|
+
}, {
|
608
|
+
cls: ['neo-day'],
|
609
|
+
id : 'neo-component-6__day__2021-03-23',
|
610
|
+
cn : [{
|
611
|
+
cls : ['neo-day-number'],
|
612
|
+
html: 23,
|
613
|
+
id : 'neo-component-6__day_number__2021-03-23',
|
614
|
+
tag : 'div'
|
615
|
+
}],
|
616
|
+
tag: 'div'
|
617
|
+
}, {
|
618
|
+
cls: ['neo-day'],
|
619
|
+
id : 'neo-component-6__day__2021-03-24',
|
620
|
+
cn : [{
|
621
|
+
cls : ['neo-day-number'],
|
622
|
+
html: 24,
|
623
|
+
id : 'neo-component-6__day_number__2021-03-24',
|
624
|
+
tag : 'div'
|
625
|
+
}],
|
626
|
+
tag: 'div'
|
627
|
+
}, {
|
628
|
+
cls: ['neo-day'],
|
629
|
+
id : 'neo-component-6__day__2021-03-25',
|
630
|
+
cn : [{
|
631
|
+
cls : ['neo-day-number'],
|
632
|
+
html: 25,
|
633
|
+
id : 'neo-component-6__day_number__2021-03-25',
|
634
|
+
tag : 'div'
|
635
|
+
}],
|
636
|
+
tag: 'div'
|
637
|
+
}, {
|
638
|
+
cls: ['neo-day'],
|
639
|
+
id : 'neo-component-6__day__2021-03-26',
|
640
|
+
cn : [{
|
641
|
+
cls : ['neo-day-number'],
|
642
|
+
html: 26,
|
643
|
+
id : 'neo-component-6__day_number__2021-03-26',
|
644
|
+
tag : 'div'
|
645
|
+
}],
|
646
|
+
tag: 'div'
|
647
|
+
}, {
|
648
|
+
cls: ['neo-day', 'neo-weekend'],
|
649
|
+
id : 'neo-component-6__day__2021-03-27',
|
650
|
+
cn : [{
|
651
|
+
cls : ['neo-day-number'],
|
652
|
+
html: 27,
|
653
|
+
id : 'neo-component-6__day_number__2021-03-27',
|
654
|
+
tag : 'div'
|
655
|
+
}],
|
656
|
+
tag: 'div'
|
657
|
+
}],
|
658
|
+
id : 'neo-component-6__week__2021-03-21',
|
659
|
+
tag : 'div'
|
660
|
+
}, {
|
661
|
+
cls: ['neo-month-header'],
|
662
|
+
cn : [{
|
663
|
+
cls: ['neo-month-header-content'],
|
664
|
+
cn : [{
|
665
|
+
tag : 'span',
|
666
|
+
cls : ['neo-month-name'],
|
667
|
+
flag: 'month-name',
|
668
|
+
html: 'Apr',
|
669
|
+
id : 'neo-vnode-169'
|
670
|
+
}, {vtype: 'text', id: 'neo-vtext-8', html: ' 2021'}],
|
671
|
+
id : 'neo-vnode-170',
|
672
|
+
tag: 'div'
|
673
|
+
}],
|
674
|
+
id : 'neo-vnode-171',
|
675
|
+
tag: 'div'
|
676
|
+
}, {
|
677
|
+
flag: '2021-04-01',
|
678
|
+
cls : ['neo-week'],
|
679
|
+
cn : [{
|
680
|
+
cls: ['neo-day', 'neo-weekend'],
|
681
|
+
id : 'neo-component-6__day__2021-03-28',
|
682
|
+
cn : [{
|
683
|
+
cls : ['neo-day-number'],
|
684
|
+
html: 28,
|
685
|
+
id : 'neo-component-6__day_number__2021-03-28',
|
686
|
+
tag : 'div'
|
687
|
+
}],
|
688
|
+
tag: 'div'
|
689
|
+
}, {
|
690
|
+
cls: ['neo-day'],
|
691
|
+
id : 'neo-component-6__day__2021-03-29',
|
692
|
+
cn : [{
|
693
|
+
cls : ['neo-day-number'],
|
694
|
+
html: 29,
|
695
|
+
id : 'neo-component-6__day_number__2021-03-29',
|
696
|
+
tag : 'div'
|
697
|
+
}],
|
698
|
+
tag: 'div'
|
699
|
+
}, {
|
700
|
+
cls: ['neo-day'],
|
701
|
+
id : 'neo-component-6__day__2021-03-30',
|
702
|
+
cn : [{
|
703
|
+
cls : ['neo-day-number'],
|
704
|
+
html: 30,
|
705
|
+
id : 'neo-component-6__day_number__2021-03-30',
|
706
|
+
tag : 'div'
|
707
|
+
}],
|
708
|
+
tag: 'div'
|
709
|
+
}, {
|
710
|
+
cls: ['neo-day'],
|
711
|
+
id : 'neo-component-6__day__2021-03-31',
|
712
|
+
cn : [{
|
713
|
+
cls : ['neo-day-number'],
|
714
|
+
html: 31,
|
715
|
+
id : 'neo-component-6__day_number__2021-03-31',
|
716
|
+
tag : 'div'
|
717
|
+
}],
|
718
|
+
tag: 'div'
|
719
|
+
}, {
|
720
|
+
cls: ['neo-day'],
|
721
|
+
id : 'neo-component-6__day__2021-04-01',
|
722
|
+
cn : [{
|
723
|
+
cls : ['neo-day-number'],
|
724
|
+
html: 1,
|
725
|
+
id : 'neo-component-6__day_number__2021-04-01',
|
726
|
+
tag : 'div'
|
727
|
+
}],
|
728
|
+
tag: 'div'
|
729
|
+
}, {
|
730
|
+
cls: ['neo-day'],
|
731
|
+
id : 'neo-component-6__day__2021-04-02',
|
732
|
+
cn : [{
|
733
|
+
cls : ['neo-day-number'],
|
734
|
+
html: 2,
|
735
|
+
id : 'neo-component-6__day_number__2021-04-02',
|
736
|
+
tag : 'div'
|
737
|
+
}],
|
738
|
+
tag: 'div'
|
739
|
+
}, {
|
740
|
+
cls: ['neo-day', 'neo-weekend'],
|
741
|
+
id : 'neo-component-6__day__2021-04-03',
|
742
|
+
cn : [{
|
743
|
+
cls : ['neo-day-number'],
|
744
|
+
html: 3,
|
745
|
+
id : 'neo-component-6__day_number__2021-04-03',
|
746
|
+
tag : 'div'
|
747
|
+
}],
|
748
|
+
tag: 'div'
|
749
|
+
}],
|
750
|
+
id : 'neo-component-6__week__2021-03-28',
|
751
|
+
tag : 'div'
|
752
|
+
}, {
|
753
|
+
flag: '2021-04-04',
|
754
|
+
cls : ['neo-week'],
|
755
|
+
cn : [{
|
756
|
+
cls: ['neo-day', 'neo-weekend'],
|
757
|
+
id : 'neo-component-6__day__2021-04-04',
|
758
|
+
cn : [{
|
759
|
+
cls : ['neo-day-number'],
|
760
|
+
html: 4,
|
761
|
+
id : 'neo-component-6__day_number__2021-04-04',
|
762
|
+
tag : 'div'
|
763
|
+
}],
|
764
|
+
tag: 'div'
|
765
|
+
}, {
|
766
|
+
cls: ['neo-day'],
|
767
|
+
id : 'neo-component-6__day__2021-04-05',
|
768
|
+
cn : [{
|
769
|
+
cls : ['neo-day-number'],
|
770
|
+
html: 5,
|
771
|
+
id : 'neo-component-6__day_number__2021-04-05',
|
772
|
+
tag : 'div'
|
773
|
+
}],
|
774
|
+
tag: 'div'
|
775
|
+
}, {
|
776
|
+
cls: ['neo-day'],
|
777
|
+
id : 'neo-component-6__day__2021-04-06',
|
778
|
+
cn : [{
|
779
|
+
cls : ['neo-day-number'],
|
780
|
+
html: 6,
|
781
|
+
id : 'neo-component-6__day_number__2021-04-06',
|
782
|
+
tag : 'div'
|
783
|
+
}],
|
784
|
+
tag: 'div'
|
785
|
+
}, {
|
786
|
+
cls: ['neo-day'],
|
787
|
+
id : 'neo-component-6__day__2021-04-07',
|
788
|
+
cn : [{
|
789
|
+
cls : ['neo-day-number'],
|
790
|
+
html: 7,
|
791
|
+
id : 'neo-component-6__day_number__2021-04-07',
|
792
|
+
tag : 'div'
|
793
|
+
}],
|
794
|
+
tag: 'div'
|
795
|
+
}, {
|
796
|
+
cls: ['neo-day'],
|
797
|
+
id : 'neo-component-6__day__2021-04-08',
|
798
|
+
cn : [{
|
799
|
+
cls : ['neo-day-number'],
|
800
|
+
html: 8,
|
801
|
+
id : 'neo-component-6__day_number__2021-04-08',
|
802
|
+
tag : 'div'
|
803
|
+
}],
|
804
|
+
tag: 'div'
|
805
|
+
}, {
|
806
|
+
cls: ['neo-day'],
|
807
|
+
id : 'neo-component-6__day__2021-04-09',
|
808
|
+
cn : [{
|
809
|
+
cls : ['neo-day-number'],
|
810
|
+
html: 9,
|
811
|
+
id : 'neo-component-6__day_number__2021-04-09',
|
812
|
+
tag : 'div'
|
813
|
+
}],
|
814
|
+
tag: 'div'
|
815
|
+
}, {
|
816
|
+
cls: ['neo-day', 'neo-weekend'],
|
817
|
+
id : 'neo-component-6__day__2021-04-10',
|
818
|
+
cn : [{
|
819
|
+
cls : ['neo-day-number'],
|
820
|
+
html: 10,
|
821
|
+
id : 'neo-component-6__day_number__2021-04-10',
|
822
|
+
tag : 'div'
|
823
|
+
}],
|
824
|
+
tag: 'div'
|
825
|
+
}],
|
826
|
+
id : 'neo-component-6__week__2021-04-04',
|
827
|
+
tag : 'div'
|
828
|
+
}, {
|
829
|
+
flag: '2021-04-11',
|
830
|
+
cls : ['neo-week'],
|
831
|
+
cn : [{
|
832
|
+
cls: ['neo-day', 'neo-weekend'],
|
833
|
+
id : 'neo-component-6__day__2021-04-11',
|
834
|
+
cn : [{
|
835
|
+
cls : ['neo-day-number'],
|
836
|
+
html: 11,
|
837
|
+
id : 'neo-component-6__day_number__2021-04-11',
|
838
|
+
tag : 'div'
|
839
|
+
}],
|
840
|
+
tag: 'div'
|
841
|
+
}, {
|
842
|
+
cls: ['neo-day'],
|
843
|
+
id : 'neo-component-6__day__2021-04-12',
|
844
|
+
cn : [{
|
845
|
+
cls : ['neo-day-number'],
|
846
|
+
html: 12,
|
847
|
+
id : 'neo-component-6__day_number__2021-04-12',
|
848
|
+
tag : 'div'
|
849
|
+
}],
|
850
|
+
tag: 'div'
|
851
|
+
}, {
|
852
|
+
cls: ['neo-day'],
|
853
|
+
id : 'neo-component-6__day__2021-04-13',
|
854
|
+
cn : [{
|
855
|
+
cls : ['neo-day-number'],
|
856
|
+
html: 13,
|
857
|
+
id : 'neo-component-6__day_number__2021-04-13',
|
858
|
+
tag : 'div'
|
859
|
+
}],
|
860
|
+
tag: 'div'
|
861
|
+
}, {
|
862
|
+
cls: ['neo-day'],
|
863
|
+
id : 'neo-component-6__day__2021-04-14',
|
864
|
+
cn : [{
|
865
|
+
cls : ['neo-day-number'],
|
866
|
+
html: 14,
|
867
|
+
id : 'neo-component-6__day_number__2021-04-14',
|
868
|
+
tag : 'div'
|
869
|
+
}],
|
870
|
+
tag: 'div'
|
871
|
+
}, {
|
872
|
+
cls: ['neo-day'],
|
873
|
+
id : 'neo-component-6__day__2021-04-15',
|
874
|
+
cn : [{
|
875
|
+
cls : ['neo-day-number'],
|
876
|
+
html: 15,
|
877
|
+
id : 'neo-component-6__day_number__2021-04-15',
|
878
|
+
tag : 'div'
|
879
|
+
}],
|
880
|
+
tag: 'div'
|
881
|
+
}, {
|
882
|
+
cls: ['neo-day'],
|
883
|
+
id : 'neo-component-6__day__2021-04-16',
|
884
|
+
cn : [{
|
885
|
+
cls : ['neo-day-number'],
|
886
|
+
html: 16,
|
887
|
+
id : 'neo-component-6__day_number__2021-04-16',
|
888
|
+
tag : 'div'
|
889
|
+
}],
|
890
|
+
tag: 'div'
|
891
|
+
}, {
|
892
|
+
cls: ['neo-day', 'neo-weekend'],
|
893
|
+
id : 'neo-component-6__day__2021-04-17',
|
894
|
+
cn : [{
|
895
|
+
cls : ['neo-day-number'],
|
896
|
+
html: 17,
|
897
|
+
id : 'neo-component-6__day_number__2021-04-17',
|
898
|
+
tag : 'div'
|
899
|
+
}],
|
900
|
+
tag: 'div'
|
901
|
+
}],
|
902
|
+
id : 'neo-component-6__week__2021-04-11',
|
903
|
+
tag : 'div'
|
904
|
+
}, {
|
905
|
+
flag: '2021-04-18',
|
906
|
+
cls : ['neo-week'],
|
907
|
+
cn : [{
|
908
|
+
cls: ['neo-day', 'neo-weekend'],
|
909
|
+
id : 'neo-component-6__day__2021-04-18',
|
910
|
+
cn : [{
|
911
|
+
cls : ['neo-day-number'],
|
912
|
+
html: 18,
|
913
|
+
id : 'neo-component-6__day_number__2021-04-18',
|
914
|
+
tag : 'div'
|
915
|
+
}],
|
916
|
+
tag: 'div'
|
917
|
+
}, {
|
918
|
+
cls: ['neo-day'],
|
919
|
+
id : 'neo-component-6__day__2021-04-19',
|
920
|
+
cn : [{
|
921
|
+
cls : ['neo-day-number'],
|
922
|
+
html: 19,
|
923
|
+
id : 'neo-component-6__day_number__2021-04-19',
|
924
|
+
tag : 'div'
|
925
|
+
}],
|
926
|
+
tag: 'div'
|
927
|
+
}, {
|
928
|
+
cls: ['neo-day'],
|
929
|
+
id : 'neo-component-6__day__2021-04-20',
|
930
|
+
cn : [{
|
931
|
+
cls : ['neo-day-number'],
|
932
|
+
html: 20,
|
933
|
+
id : 'neo-component-6__day_number__2021-04-20',
|
934
|
+
tag : 'div'
|
935
|
+
}],
|
936
|
+
tag: 'div'
|
937
|
+
}, {
|
938
|
+
cls: ['neo-day'],
|
939
|
+
id : 'neo-component-6__day__2021-04-21',
|
940
|
+
cn : [{
|
941
|
+
cls : ['neo-day-number'],
|
942
|
+
html: 21,
|
943
|
+
id : 'neo-component-6__day_number__2021-04-21',
|
944
|
+
tag : 'div'
|
945
|
+
}],
|
946
|
+
tag: 'div'
|
947
|
+
}, {
|
948
|
+
cls: ['neo-day'],
|
949
|
+
id : 'neo-component-6__day__2021-04-22',
|
950
|
+
cn : [{
|
951
|
+
cls : ['neo-day-number'],
|
952
|
+
html: 22,
|
953
|
+
id : 'neo-component-6__day_number__2021-04-22',
|
954
|
+
tag : 'div'
|
955
|
+
}],
|
956
|
+
tag: 'div'
|
957
|
+
}, {
|
958
|
+
cls: ['neo-day'],
|
959
|
+
id : 'neo-component-6__day__2021-04-23',
|
960
|
+
cn : [{
|
961
|
+
cls : ['neo-day-number'],
|
962
|
+
html: 23,
|
963
|
+
id : 'neo-component-6__day_number__2021-04-23',
|
964
|
+
tag : 'div'
|
965
|
+
}],
|
966
|
+
tag: 'div'
|
967
|
+
}, {
|
968
|
+
cls: ['neo-day', 'neo-weekend'],
|
969
|
+
id : 'neo-component-6__day__2021-04-24',
|
970
|
+
cn : [{
|
971
|
+
cls : ['neo-day-number'],
|
972
|
+
html: 24,
|
973
|
+
id : 'neo-component-6__day_number__2021-04-24',
|
974
|
+
tag : 'div'
|
975
|
+
}],
|
976
|
+
tag: 'div'
|
977
|
+
}],
|
978
|
+
id : 'neo-component-6__week__2021-04-18',
|
979
|
+
tag : 'div'
|
980
|
+
}, {
|
981
|
+
cls: ['neo-month-header'],
|
982
|
+
cn : [{
|
983
|
+
cls: ['neo-month-header-content'],
|
984
|
+
cn : [{
|
985
|
+
tag : 'span',
|
986
|
+
cls : ['neo-month-name'],
|
987
|
+
flag: 'month-name',
|
988
|
+
html: 'May',
|
989
|
+
id : 'neo-vnode-163'
|
990
|
+
}, {vtype: 'text', id: 'neo-vtext-6', html: ' 2021'}],
|
991
|
+
id : 'neo-vnode-164',
|
992
|
+
tag: 'div'
|
993
|
+
}],
|
994
|
+
id : 'neo-vnode-165',
|
995
|
+
tag: 'div'
|
996
|
+
}, {
|
997
|
+
flag: '2021-05-01',
|
998
|
+
cls : ['neo-week'],
|
999
|
+
cn : [{
|
1000
|
+
cls: ['neo-day', 'neo-weekend'],
|
1001
|
+
id : 'neo-component-6__day__2021-04-25',
|
1002
|
+
cn : [{
|
1003
|
+
cls : ['neo-day-number'],
|
1004
|
+
html: 25,
|
1005
|
+
id : 'neo-component-6__day_number__2021-04-25',
|
1006
|
+
tag : 'div'
|
1007
|
+
}],
|
1008
|
+
tag: 'div'
|
1009
|
+
}, {
|
1010
|
+
cls: ['neo-day'],
|
1011
|
+
id : 'neo-component-6__day__2021-04-26',
|
1012
|
+
cn : [{
|
1013
|
+
cls : ['neo-day-number'],
|
1014
|
+
html: 26,
|
1015
|
+
id : 'neo-component-6__day_number__2021-04-26',
|
1016
|
+
tag : 'div'
|
1017
|
+
}],
|
1018
|
+
tag: 'div'
|
1019
|
+
}, {
|
1020
|
+
cls: ['neo-day'],
|
1021
|
+
id : 'neo-component-6__day__2021-04-27',
|
1022
|
+
cn : [{
|
1023
|
+
cls : ['neo-day-number'],
|
1024
|
+
html: 27,
|
1025
|
+
id : 'neo-component-6__day_number__2021-04-27',
|
1026
|
+
tag : 'div'
|
1027
|
+
}],
|
1028
|
+
tag: 'div'
|
1029
|
+
}, {
|
1030
|
+
cls: ['neo-day'],
|
1031
|
+
id : 'neo-component-6__day__2021-04-28',
|
1032
|
+
cn : [{
|
1033
|
+
cls : ['neo-day-number'],
|
1034
|
+
html: 28,
|
1035
|
+
id : 'neo-component-6__day_number__2021-04-28',
|
1036
|
+
tag : 'div'
|
1037
|
+
}],
|
1038
|
+
tag: 'div'
|
1039
|
+
}, {
|
1040
|
+
cls: ['neo-day'],
|
1041
|
+
id : 'neo-component-6__day__2021-04-29',
|
1042
|
+
cn : [{
|
1043
|
+
cls : ['neo-day-number'],
|
1044
|
+
html: 29,
|
1045
|
+
id : 'neo-component-6__day_number__2021-04-29',
|
1046
|
+
tag : 'div'
|
1047
|
+
}],
|
1048
|
+
tag: 'div'
|
1049
|
+
}, {
|
1050
|
+
cls: ['neo-day'],
|
1051
|
+
id : 'neo-component-6__day__2021-04-30',
|
1052
|
+
cn : [{
|
1053
|
+
cls : ['neo-day-number'],
|
1054
|
+
html: 30,
|
1055
|
+
id : 'neo-component-6__day_number__2021-04-30',
|
1056
|
+
tag : 'div'
|
1057
|
+
}],
|
1058
|
+
tag: 'div'
|
1059
|
+
}, {
|
1060
|
+
cls: ['neo-day', 'neo-weekend'],
|
1061
|
+
id : 'neo-component-6__day__2021-05-01',
|
1062
|
+
cn : [{
|
1063
|
+
cls : ['neo-day-number'],
|
1064
|
+
html: 1,
|
1065
|
+
id : 'neo-component-6__day_number__2021-05-01',
|
1066
|
+
tag : 'div'
|
1067
|
+
}],
|
1068
|
+
tag: 'div'
|
1069
|
+
}],
|
1070
|
+
id : 'neo-component-6__week__2021-04-25',
|
1071
|
+
tag : 'div'
|
1072
|
+
}, {
|
1073
|
+
flag: '2021-05-02',
|
1074
|
+
cls : ['neo-week'],
|
1075
|
+
cn : [{
|
1076
|
+
cls: ['neo-day', 'neo-weekend'],
|
1077
|
+
id : 'neo-component-6__day__2021-05-02',
|
1078
|
+
cn : [{
|
1079
|
+
cls : ['neo-day-number'],
|
1080
|
+
html: 2,
|
1081
|
+
id : 'neo-component-6__day_number__2021-05-02',
|
1082
|
+
tag : 'div'
|
1083
|
+
}],
|
1084
|
+
tag: 'div'
|
1085
|
+
}, {
|
1086
|
+
cls: ['neo-day'],
|
1087
|
+
id : 'neo-component-6__day__2021-05-03',
|
1088
|
+
cn : [{
|
1089
|
+
cls : ['neo-day-number'],
|
1090
|
+
html: 3,
|
1091
|
+
id : 'neo-component-6__day_number__2021-05-03',
|
1092
|
+
tag : 'div'
|
1093
|
+
}],
|
1094
|
+
tag: 'div'
|
1095
|
+
}, {
|
1096
|
+
cls: ['neo-day'],
|
1097
|
+
id : 'neo-component-6__day__2021-05-04',
|
1098
|
+
cn : [{
|
1099
|
+
cls : ['neo-day-number'],
|
1100
|
+
html: 4,
|
1101
|
+
id : 'neo-component-6__day_number__2021-05-04',
|
1102
|
+
tag : 'div'
|
1103
|
+
}],
|
1104
|
+
tag: 'div'
|
1105
|
+
}, {
|
1106
|
+
cls: ['neo-day'],
|
1107
|
+
id : 'neo-component-6__day__2021-05-05',
|
1108
|
+
cn : [{
|
1109
|
+
cls : ['neo-day-number'],
|
1110
|
+
html: 5,
|
1111
|
+
id : 'neo-component-6__day_number__2021-05-05',
|
1112
|
+
tag : 'div'
|
1113
|
+
}],
|
1114
|
+
tag: 'div'
|
1115
|
+
}, {
|
1116
|
+
cls: ['neo-day'],
|
1117
|
+
id : 'neo-component-6__day__2021-05-06',
|
1118
|
+
cn : [{
|
1119
|
+
cls : ['neo-day-number'],
|
1120
|
+
html: 6,
|
1121
|
+
id : 'neo-component-6__day_number__2021-05-06',
|
1122
|
+
tag : 'div'
|
1123
|
+
}],
|
1124
|
+
tag: 'div'
|
1125
|
+
}, {
|
1126
|
+
cls: ['neo-day'],
|
1127
|
+
id : 'neo-component-6__day__2021-05-07',
|
1128
|
+
cn : [{
|
1129
|
+
cls : ['neo-day-number'],
|
1130
|
+
html: 7,
|
1131
|
+
id : 'neo-component-6__day_number__2021-05-07',
|
1132
|
+
tag : 'div'
|
1133
|
+
}],
|
1134
|
+
tag: 'div'
|
1135
|
+
}, {
|
1136
|
+
cls: ['neo-day', 'neo-weekend'],
|
1137
|
+
id : 'neo-component-6__day__2021-05-08',
|
1138
|
+
cn : [{
|
1139
|
+
cls : ['neo-day-number'],
|
1140
|
+
html: 8,
|
1141
|
+
id : 'neo-component-6__day_number__2021-05-08',
|
1142
|
+
tag : 'div'
|
1143
|
+
}],
|
1144
|
+
tag: 'div'
|
1145
|
+
}],
|
1146
|
+
id : 'neo-component-6__week__2021-05-02',
|
1147
|
+
tag : 'div'
|
1148
|
+
}, {
|
1149
|
+
flag: '2021-05-09',
|
1150
|
+
cls : ['neo-week'],
|
1151
|
+
cn : [{
|
1152
|
+
cls: ['neo-day', 'neo-weekend'],
|
1153
|
+
id : 'neo-component-6__day__2021-05-09',
|
1154
|
+
cn : [{
|
1155
|
+
cls : ['neo-day-number'],
|
1156
|
+
html: 9,
|
1157
|
+
id : 'neo-component-6__day_number__2021-05-09',
|
1158
|
+
tag : 'div'
|
1159
|
+
}],
|
1160
|
+
tag: 'div'
|
1161
|
+
}, {
|
1162
|
+
cls: ['neo-day'],
|
1163
|
+
id : 'neo-component-6__day__2021-05-10',
|
1164
|
+
cn : [{
|
1165
|
+
cls : ['neo-day-number'],
|
1166
|
+
html: 10,
|
1167
|
+
id : 'neo-component-6__day_number__2021-05-10',
|
1168
|
+
tag : 'div'
|
1169
|
+
}],
|
1170
|
+
tag: 'div'
|
1171
|
+
}, {
|
1172
|
+
cls: ['neo-day'],
|
1173
|
+
id : 'neo-component-6__day__2021-05-11',
|
1174
|
+
cn : [{
|
1175
|
+
cls : ['neo-day-number'],
|
1176
|
+
html: 11,
|
1177
|
+
id : 'neo-component-6__day_number__2021-05-11',
|
1178
|
+
tag : 'div'
|
1179
|
+
}],
|
1180
|
+
tag: 'div'
|
1181
|
+
}, {
|
1182
|
+
cls: ['neo-day'],
|
1183
|
+
id : 'neo-component-6__day__2021-05-12',
|
1184
|
+
cn : [{
|
1185
|
+
cls : ['neo-day-number'],
|
1186
|
+
html: 12,
|
1187
|
+
id : 'neo-component-6__day_number__2021-05-12',
|
1188
|
+
tag : 'div'
|
1189
|
+
}],
|
1190
|
+
tag: 'div'
|
1191
|
+
}, {
|
1192
|
+
cls: ['neo-day'],
|
1193
|
+
id : 'neo-component-6__day__2021-05-13',
|
1194
|
+
cn : [{
|
1195
|
+
cls : ['neo-day-number'],
|
1196
|
+
html: 13,
|
1197
|
+
id : 'neo-component-6__day_number__2021-05-13',
|
1198
|
+
tag : 'div'
|
1199
|
+
}],
|
1200
|
+
tag: 'div'
|
1201
|
+
}, {
|
1202
|
+
cls: ['neo-day'],
|
1203
|
+
id : 'neo-component-6__day__2021-05-14',
|
1204
|
+
cn : [{
|
1205
|
+
cls : ['neo-day-number'],
|
1206
|
+
html: 14,
|
1207
|
+
id : 'neo-component-6__day_number__2021-05-14',
|
1208
|
+
tag : 'div'
|
1209
|
+
}],
|
1210
|
+
tag: 'div'
|
1211
|
+
}, {
|
1212
|
+
cls: ['neo-day', 'neo-weekend'],
|
1213
|
+
id : 'neo-component-6__day__2021-05-15',
|
1214
|
+
cn : [{
|
1215
|
+
cls : ['neo-day-number'],
|
1216
|
+
html: 15,
|
1217
|
+
id : 'neo-component-6__day_number__2021-05-15',
|
1218
|
+
tag : 'div'
|
1219
|
+
}],
|
1220
|
+
tag: 'div'
|
1221
|
+
}],
|
1222
|
+
id : 'neo-component-6__week__2021-05-09',
|
1223
|
+
tag : 'div'
|
1224
|
+
}, {
|
1225
|
+
flag: '2021-05-16',
|
1226
|
+
cls : ['neo-week'],
|
1227
|
+
cn : [{
|
1228
|
+
cls: ['neo-day', 'neo-weekend'],
|
1229
|
+
id : 'neo-component-6__day__2021-05-16',
|
1230
|
+
cn : [{
|
1231
|
+
cls : ['neo-day-number'],
|
1232
|
+
html: 16,
|
1233
|
+
id : 'neo-component-6__day_number__2021-05-16',
|
1234
|
+
tag : 'div'
|
1235
|
+
}],
|
1236
|
+
tag: 'div'
|
1237
|
+
}, {
|
1238
|
+
cls: ['neo-day'],
|
1239
|
+
id : 'neo-component-6__day__2021-05-17',
|
1240
|
+
cn : [{
|
1241
|
+
cls : ['neo-day-number'],
|
1242
|
+
html: 17,
|
1243
|
+
id : 'neo-component-6__day_number__2021-05-17',
|
1244
|
+
tag : 'div'
|
1245
|
+
}],
|
1246
|
+
tag: 'div'
|
1247
|
+
}, {
|
1248
|
+
cls: ['neo-day'],
|
1249
|
+
id : 'neo-component-6__day__2021-05-18',
|
1250
|
+
cn : [{
|
1251
|
+
cls : ['neo-day-number'],
|
1252
|
+
html: 18,
|
1253
|
+
id : 'neo-component-6__day_number__2021-05-18',
|
1254
|
+
tag : 'div'
|
1255
|
+
}],
|
1256
|
+
tag: 'div'
|
1257
|
+
}, {
|
1258
|
+
cls: ['neo-day'],
|
1259
|
+
id : 'neo-component-6__day__2021-05-19',
|
1260
|
+
cn : [{
|
1261
|
+
cls : ['neo-day-number'],
|
1262
|
+
html: 19,
|
1263
|
+
id : 'neo-component-6__day_number__2021-05-19',
|
1264
|
+
tag : 'div'
|
1265
|
+
}],
|
1266
|
+
tag: 'div'
|
1267
|
+
}, {
|
1268
|
+
cls: ['neo-day'],
|
1269
|
+
id : 'neo-component-6__day__2021-05-20',
|
1270
|
+
cn : [{
|
1271
|
+
cls : ['neo-day-number'],
|
1272
|
+
html: 20,
|
1273
|
+
id : 'neo-component-6__day_number__2021-05-20',
|
1274
|
+
tag : 'div'
|
1275
|
+
}],
|
1276
|
+
tag: 'div'
|
1277
|
+
}, {
|
1278
|
+
cls: ['neo-day'],
|
1279
|
+
id : 'neo-component-6__day__2021-05-21',
|
1280
|
+
cn : [{
|
1281
|
+
cls : ['neo-day-number'],
|
1282
|
+
html: 21,
|
1283
|
+
id : 'neo-component-6__day_number__2021-05-21',
|
1284
|
+
tag : 'div'
|
1285
|
+
}],
|
1286
|
+
tag: 'div'
|
1287
|
+
}, {
|
1288
|
+
cls: ['neo-day', 'neo-weekend'],
|
1289
|
+
id : 'neo-component-6__day__2021-05-22',
|
1290
|
+
cn : [{
|
1291
|
+
cls : ['neo-day-number'],
|
1292
|
+
html: 22,
|
1293
|
+
id : 'neo-component-6__day_number__2021-05-22',
|
1294
|
+
tag : 'div'
|
1295
|
+
}],
|
1296
|
+
tag: 'div'
|
1297
|
+
}],
|
1298
|
+
id : 'neo-component-6__week__2021-05-16',
|
1299
|
+
tag : 'div'
|
1300
|
+
}, {
|
1301
|
+
flag: '2021-05-23',
|
1302
|
+
cls : ['neo-week'],
|
1303
|
+
cn : [{
|
1304
|
+
cls: ['neo-day', 'neo-weekend'],
|
1305
|
+
id : 'neo-component-6__day__2021-05-23',
|
1306
|
+
cn : [{
|
1307
|
+
cls : ['neo-day-number'],
|
1308
|
+
html: 23,
|
1309
|
+
id : 'neo-component-6__day_number__2021-05-23',
|
1310
|
+
tag : 'div'
|
1311
|
+
}],
|
1312
|
+
tag: 'div'
|
1313
|
+
}, {
|
1314
|
+
cls: ['neo-day'],
|
1315
|
+
id : 'neo-component-6__day__2021-05-24',
|
1316
|
+
cn : [{
|
1317
|
+
cls : ['neo-day-number'],
|
1318
|
+
html: 24,
|
1319
|
+
id : 'neo-component-6__day_number__2021-05-24',
|
1320
|
+
tag : 'div'
|
1321
|
+
}],
|
1322
|
+
tag: 'div'
|
1323
|
+
}, {
|
1324
|
+
cls: ['neo-day'],
|
1325
|
+
id : 'neo-component-6__day__2021-05-25',
|
1326
|
+
cn : [{
|
1327
|
+
cls : ['neo-day-number'],
|
1328
|
+
html: 25,
|
1329
|
+
id : 'neo-component-6__day_number__2021-05-25',
|
1330
|
+
tag : 'div'
|
1331
|
+
}],
|
1332
|
+
tag: 'div'
|
1333
|
+
}, {
|
1334
|
+
cls: ['neo-day'],
|
1335
|
+
id : 'neo-component-6__day__2021-05-26',
|
1336
|
+
cn : [{
|
1337
|
+
cls : ['neo-day-number'],
|
1338
|
+
html: 26,
|
1339
|
+
id : 'neo-component-6__day_number__2021-05-26',
|
1340
|
+
tag : 'div'
|
1341
|
+
}],
|
1342
|
+
tag: 'div'
|
1343
|
+
}, {
|
1344
|
+
cls: ['neo-day'],
|
1345
|
+
id : 'neo-component-6__day__2021-05-27',
|
1346
|
+
cn : [{
|
1347
|
+
cls : ['neo-day-number'],
|
1348
|
+
html: 27,
|
1349
|
+
id : 'neo-component-6__day_number__2021-05-27',
|
1350
|
+
tag : 'div'
|
1351
|
+
}],
|
1352
|
+
tag: 'div'
|
1353
|
+
}, {
|
1354
|
+
cls: ['neo-day'],
|
1355
|
+
id : 'neo-component-6__day__2021-05-28',
|
1356
|
+
cn : [{
|
1357
|
+
cls : ['neo-day-number'],
|
1358
|
+
html: 28,
|
1359
|
+
id : 'neo-component-6__day_number__2021-05-28',
|
1360
|
+
tag : 'div'
|
1361
|
+
}],
|
1362
|
+
tag: 'div'
|
1363
|
+
}, {
|
1364
|
+
cls: ['neo-day', 'neo-weekend'],
|
1365
|
+
id : 'neo-component-6__day__2021-05-29',
|
1366
|
+
cn : [{
|
1367
|
+
cls : ['neo-day-number'],
|
1368
|
+
html: 29,
|
1369
|
+
id : 'neo-component-6__day_number__2021-05-29',
|
1370
|
+
tag : 'div'
|
1371
|
+
}],
|
1372
|
+
tag: 'div'
|
1373
|
+
}],
|
1374
|
+
id : 'neo-component-6__week__2021-05-23',
|
1375
|
+
tag : 'div'
|
1376
|
+
}, {
|
1377
|
+
cls: ['neo-month-header'],
|
1378
|
+
cn : [{
|
1379
|
+
cls: ['neo-month-header-content'],
|
1380
|
+
cn : [{
|
1381
|
+
tag : 'span',
|
1382
|
+
cls : ['neo-month-name'],
|
1383
|
+
flag: 'month-name',
|
1384
|
+
html: 'Jun',
|
1385
|
+
id : 'neo-vnode-151'
|
1386
|
+
}, {vtype: 'text', id: 'neo-vtext-2', html: ' 2021'}],
|
1387
|
+
id : 'neo-vnode-152',
|
1388
|
+
tag: 'div'
|
1389
|
+
}],
|
1390
|
+
id : 'neo-vnode-153',
|
1391
|
+
tag: 'div'
|
1392
|
+
}, {
|
1393
|
+
flag: '2021-06-01',
|
1394
|
+
cls : ['neo-week'],
|
1395
|
+
cn : [{
|
1396
|
+
cls: ['neo-day', 'neo-weekend'],
|
1397
|
+
id : 'neo-component-6__day__2021-05-30',
|
1398
|
+
cn : [{
|
1399
|
+
cls : ['neo-day-number'],
|
1400
|
+
html: 30,
|
1401
|
+
id : 'neo-component-6__day_number__2021-05-30',
|
1402
|
+
tag : 'div'
|
1403
|
+
}],
|
1404
|
+
tag: 'div'
|
1405
|
+
}, {
|
1406
|
+
cls: ['neo-day'],
|
1407
|
+
id : 'neo-component-6__day__2021-05-31',
|
1408
|
+
cn : [{
|
1409
|
+
cls : ['neo-day-number'],
|
1410
|
+
html: 31,
|
1411
|
+
id : 'neo-component-6__day_number__2021-05-31',
|
1412
|
+
tag : 'div'
|
1413
|
+
}],
|
1414
|
+
tag: 'div'
|
1415
|
+
}, {
|
1416
|
+
cls: ['neo-day'],
|
1417
|
+
id : 'neo-component-6__day__2021-06-01',
|
1418
|
+
cn : [{
|
1419
|
+
cls : ['neo-day-number'],
|
1420
|
+
html: 1,
|
1421
|
+
id : 'neo-component-6__day_number__2021-06-01',
|
1422
|
+
tag : 'div'
|
1423
|
+
}],
|
1424
|
+
tag: 'div'
|
1425
|
+
}, {
|
1426
|
+
cls: ['neo-day'],
|
1427
|
+
id : 'neo-component-6__day__2021-06-02',
|
1428
|
+
cn : [{
|
1429
|
+
cls : ['neo-day-number'],
|
1430
|
+
html: 2,
|
1431
|
+
id : 'neo-component-6__day_number__2021-06-02',
|
1432
|
+
tag : 'div'
|
1433
|
+
}],
|
1434
|
+
tag: 'div'
|
1435
|
+
}, {
|
1436
|
+
cls: ['neo-day'],
|
1437
|
+
id : 'neo-component-6__day__2021-06-03',
|
1438
|
+
cn : [{
|
1439
|
+
cls : ['neo-day-number'],
|
1440
|
+
html: 3,
|
1441
|
+
id : 'neo-component-6__day_number__2021-06-03',
|
1442
|
+
tag : 'div'
|
1443
|
+
}],
|
1444
|
+
tag: 'div'
|
1445
|
+
}, {
|
1446
|
+
cls: ['neo-day'],
|
1447
|
+
id : 'neo-component-6__day__2021-06-04',
|
1448
|
+
cn : [{
|
1449
|
+
cls : ['neo-day-number'],
|
1450
|
+
html: 4,
|
1451
|
+
id : 'neo-component-6__day_number__2021-06-04',
|
1452
|
+
tag : 'div'
|
1453
|
+
}],
|
1454
|
+
tag: 'div'
|
1455
|
+
}, {
|
1456
|
+
cls: ['neo-day', 'neo-weekend'],
|
1457
|
+
id : 'neo-component-6__day__2021-06-05',
|
1458
|
+
cn : [{
|
1459
|
+
cls : ['neo-day-number'],
|
1460
|
+
html: 5,
|
1461
|
+
id : 'neo-component-6__day_number__2021-06-05',
|
1462
|
+
tag : 'div'
|
1463
|
+
}],
|
1464
|
+
tag: 'div'
|
1465
|
+
}],
|
1466
|
+
id : 'neo-component-6__week__2021-05-30',
|
1467
|
+
tag : 'div'
|
1468
|
+
}, {
|
1469
|
+
flag: '2021-06-06',
|
1470
|
+
cls : ['neo-week'],
|
1471
|
+
cn : [{
|
1472
|
+
cls: ['neo-day', 'neo-weekend'],
|
1473
|
+
id : 'neo-component-6__day__2021-06-06',
|
1474
|
+
cn : [{
|
1475
|
+
cls : ['neo-day-number'],
|
1476
|
+
html: 6,
|
1477
|
+
id : 'neo-component-6__day_number__2021-06-06',
|
1478
|
+
tag : 'div'
|
1479
|
+
}],
|
1480
|
+
tag: 'div'
|
1481
|
+
}, {
|
1482
|
+
cls: ['neo-day'],
|
1483
|
+
id : 'neo-component-6__day__2021-06-07',
|
1484
|
+
cn : [{
|
1485
|
+
cls : ['neo-day-number'],
|
1486
|
+
html: 7,
|
1487
|
+
id : 'neo-component-6__day_number__2021-06-07',
|
1488
|
+
tag : 'div'
|
1489
|
+
}],
|
1490
|
+
tag: 'div'
|
1491
|
+
}, {
|
1492
|
+
cls: ['neo-day'],
|
1493
|
+
id : 'neo-component-6__day__2021-06-08',
|
1494
|
+
cn : [{
|
1495
|
+
cls : ['neo-day-number'],
|
1496
|
+
html: 8,
|
1497
|
+
id : 'neo-component-6__day_number__2021-06-08',
|
1498
|
+
tag : 'div'
|
1499
|
+
}],
|
1500
|
+
tag: 'div'
|
1501
|
+
}, {
|
1502
|
+
cls: ['neo-day'],
|
1503
|
+
id : 'neo-component-6__day__2021-06-09',
|
1504
|
+
cn : [{
|
1505
|
+
cls : ['neo-day-number'],
|
1506
|
+
html: 9,
|
1507
|
+
id : 'neo-component-6__day_number__2021-06-09',
|
1508
|
+
tag : 'div'
|
1509
|
+
}],
|
1510
|
+
tag: 'div'
|
1511
|
+
}, {
|
1512
|
+
cls: ['neo-day'],
|
1513
|
+
id : 'neo-component-6__day__2021-06-10',
|
1514
|
+
cn : [{
|
1515
|
+
cls : ['neo-day-number'],
|
1516
|
+
html: 10,
|
1517
|
+
id : 'neo-component-6__day_number__2021-06-10',
|
1518
|
+
tag : 'div'
|
1519
|
+
}],
|
1520
|
+
tag: 'div'
|
1521
|
+
}, {
|
1522
|
+
cls: ['neo-day'],
|
1523
|
+
id : 'neo-component-6__day__2021-06-11',
|
1524
|
+
cn : [{
|
1525
|
+
cls : ['neo-day-number'],
|
1526
|
+
html: 11,
|
1527
|
+
id : 'neo-component-6__day_number__2021-06-11',
|
1528
|
+
tag : 'div'
|
1529
|
+
}],
|
1530
|
+
tag: 'div'
|
1531
|
+
}, {
|
1532
|
+
cls: ['neo-day', 'neo-weekend'],
|
1533
|
+
id : 'neo-component-6__day__2021-06-12',
|
1534
|
+
cn : [{
|
1535
|
+
cls : ['neo-day-number'],
|
1536
|
+
html: 12,
|
1537
|
+
id : 'neo-component-6__day_number__2021-06-12',
|
1538
|
+
tag : 'div'
|
1539
|
+
}],
|
1540
|
+
tag: 'div'
|
1541
|
+
}],
|
1542
|
+
id : 'neo-component-6__week__2021-06-06',
|
1543
|
+
tag : 'div'
|
1544
|
+
}, {
|
1545
|
+
flag: '2021-06-13',
|
1546
|
+
cls : ['neo-week'],
|
1547
|
+
cn : [{
|
1548
|
+
cls: ['neo-day', 'neo-weekend'],
|
1549
|
+
id : 'neo-component-6__day__2021-06-13',
|
1550
|
+
cn : [{
|
1551
|
+
cls : ['neo-day-number'],
|
1552
|
+
html: 13,
|
1553
|
+
id : 'neo-component-6__day_number__2021-06-13',
|
1554
|
+
tag : 'div'
|
1555
|
+
}],
|
1556
|
+
tag: 'div'
|
1557
|
+
}, {
|
1558
|
+
cls: ['neo-day'],
|
1559
|
+
id : 'neo-component-6__day__2021-06-14',
|
1560
|
+
cn : [{
|
1561
|
+
cls : ['neo-day-number'],
|
1562
|
+
html: 14,
|
1563
|
+
id : 'neo-component-6__day_number__2021-06-14',
|
1564
|
+
tag : 'div'
|
1565
|
+
}],
|
1566
|
+
tag: 'div'
|
1567
|
+
}, {
|
1568
|
+
cls: ['neo-day'],
|
1569
|
+
id : 'neo-component-6__day__2021-06-15',
|
1570
|
+
cn : [{
|
1571
|
+
cls : ['neo-day-number'],
|
1572
|
+
html: 15,
|
1573
|
+
id : 'neo-component-6__day_number__2021-06-15',
|
1574
|
+
tag : 'div'
|
1575
|
+
}],
|
1576
|
+
tag: 'div'
|
1577
|
+
}, {
|
1578
|
+
cls: ['neo-day'],
|
1579
|
+
id : 'neo-component-6__day__2021-06-16',
|
1580
|
+
cn : [{
|
1581
|
+
cls : ['neo-day-number'],
|
1582
|
+
html: 16,
|
1583
|
+
id : 'neo-component-6__day_number__2021-06-16',
|
1584
|
+
tag : 'div'
|
1585
|
+
}],
|
1586
|
+
tag: 'div'
|
1587
|
+
}, {
|
1588
|
+
cls: ['neo-day'],
|
1589
|
+
id : 'neo-component-6__day__2021-06-17',
|
1590
|
+
cn : [{
|
1591
|
+
cls : ['neo-day-number'],
|
1592
|
+
html: 17,
|
1593
|
+
id : 'neo-component-6__day_number__2021-06-17',
|
1594
|
+
tag : 'div'
|
1595
|
+
}],
|
1596
|
+
tag: 'div'
|
1597
|
+
}, {
|
1598
|
+
cls: ['neo-day'],
|
1599
|
+
id : 'neo-component-6__day__2021-06-18',
|
1600
|
+
cn : [{
|
1601
|
+
cls : ['neo-day-number'],
|
1602
|
+
html: 18,
|
1603
|
+
id : 'neo-component-6__day_number__2021-06-18',
|
1604
|
+
tag : 'div'
|
1605
|
+
}],
|
1606
|
+
tag: 'div'
|
1607
|
+
}, {
|
1608
|
+
cls: ['neo-day', 'neo-weekend'],
|
1609
|
+
id : 'neo-component-6__day__2021-06-19',
|
1610
|
+
cn : [{
|
1611
|
+
cls : ['neo-day-number'],
|
1612
|
+
html: 19,
|
1613
|
+
id : 'neo-component-6__day_number__2021-06-19',
|
1614
|
+
tag : 'div'
|
1615
|
+
}],
|
1616
|
+
tag: 'div'
|
1617
|
+
}],
|
1618
|
+
id : 'neo-component-6__week__2021-06-13',
|
1619
|
+
tag : 'div'
|
1620
|
+
}, {
|
1621
|
+
flag: '2021-06-20',
|
1622
|
+
cls : ['neo-week'],
|
1623
|
+
cn : [{
|
1624
|
+
cls: ['neo-day', 'neo-weekend'],
|
1625
|
+
id : 'neo-component-6__day__2021-06-20',
|
1626
|
+
cn : [{
|
1627
|
+
cls : ['neo-day-number'],
|
1628
|
+
html: 20,
|
1629
|
+
id : 'neo-component-6__day_number__2021-06-20',
|
1630
|
+
tag : 'div'
|
1631
|
+
}],
|
1632
|
+
tag: 'div'
|
1633
|
+
}, {
|
1634
|
+
cls: ['neo-day'],
|
1635
|
+
id : 'neo-component-6__day__2021-06-21',
|
1636
|
+
cn : [{
|
1637
|
+
cls : ['neo-day-number'],
|
1638
|
+
html: 21,
|
1639
|
+
id : 'neo-component-6__day_number__2021-06-21',
|
1640
|
+
tag : 'div'
|
1641
|
+
}],
|
1642
|
+
tag: 'div'
|
1643
|
+
}, {
|
1644
|
+
cls: ['neo-day'],
|
1645
|
+
id : 'neo-component-6__day__2021-06-22',
|
1646
|
+
cn : [{
|
1647
|
+
cls : ['neo-day-number'],
|
1648
|
+
html: 22,
|
1649
|
+
id : 'neo-component-6__day_number__2021-06-22',
|
1650
|
+
tag : 'div'
|
1651
|
+
}],
|
1652
|
+
tag: 'div'
|
1653
|
+
}, {
|
1654
|
+
cls: ['neo-day'],
|
1655
|
+
id : 'neo-component-6__day__2021-06-23',
|
1656
|
+
cn : [{
|
1657
|
+
cls : ['neo-day-number'],
|
1658
|
+
html: 23,
|
1659
|
+
id : 'neo-component-6__day_number__2021-06-23',
|
1660
|
+
tag : 'div'
|
1661
|
+
}],
|
1662
|
+
tag: 'div'
|
1663
|
+
}, {
|
1664
|
+
cls: ['neo-day'],
|
1665
|
+
id : 'neo-component-6__day__2021-06-24',
|
1666
|
+
cn : [{
|
1667
|
+
cls : ['neo-day-number'],
|
1668
|
+
html: 24,
|
1669
|
+
id : 'neo-component-6__day_number__2021-06-24',
|
1670
|
+
tag : 'div'
|
1671
|
+
}],
|
1672
|
+
tag: 'div'
|
1673
|
+
}, {
|
1674
|
+
cls: ['neo-day'],
|
1675
|
+
id : 'neo-component-6__day__2021-06-25',
|
1676
|
+
cn : [{
|
1677
|
+
cls : ['neo-day-number'],
|
1678
|
+
html: 25,
|
1679
|
+
id : 'neo-component-6__day_number__2021-06-25',
|
1680
|
+
tag : 'div'
|
1681
|
+
}],
|
1682
|
+
tag: 'div'
|
1683
|
+
}, {
|
1684
|
+
cls: ['neo-day', 'neo-weekend'],
|
1685
|
+
id : 'neo-component-6__day__2021-06-26',
|
1686
|
+
cn : [{
|
1687
|
+
cls : ['neo-day-number'],
|
1688
|
+
html: 26,
|
1689
|
+
id : 'neo-component-6__day_number__2021-06-26',
|
1690
|
+
tag : 'div'
|
1691
|
+
}],
|
1692
|
+
tag: 'div'
|
1693
|
+
}],
|
1694
|
+
id : 'neo-component-6__week__2021-06-20',
|
1695
|
+
tag : 'div'
|
1696
|
+
}], tag: 'div'
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
vnode = VdomHelper.create(vdom);
|
1700
|
+
|
1701
|
+
vdom =
|
1702
|
+
{cls: ['neo-c-m-scrollcontainer', 'neo-scroll-shadows', 'neo-is-scrolling'], id: 'neo-vnode-150', cn: [
|
1703
|
+
{id: 'neo-component-6__week__2021-04-04', flag: '2021-04-04', cls: ['neo-week'], cn: [
|
1704
|
+
{cls: ['neo-day', 'neo-weekend'], id : 'neo-component-6__day__2021-04-04', cn : [
|
1705
|
+
{cls: ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-04-04'}
|
1706
|
+
]},
|
1707
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-05', cn: [
|
1708
|
+
{cls: ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-04-05'}
|
1709
|
+
]},
|
1710
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-06', cn: [
|
1711
|
+
{cls: ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-04-06'}
|
1712
|
+
]},
|
1713
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-07', cn: [
|
1714
|
+
{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-04-07'}
|
1715
|
+
]},
|
1716
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-08', cn: [
|
1717
|
+
{cls: ['neo-day-number'], html: 8, id: 'neo-component-6__day_number__2021-04-08'}
|
1718
|
+
]},
|
1719
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-09', cn: [
|
1720
|
+
{cls: ['neo-day-number'], html: 9, id: 'neo-component-6__day_number__2021-04-09'}
|
1721
|
+
]},
|
1722
|
+
{cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-04-10', cn: [
|
1723
|
+
{cls: ['neo-day-number'], html: 10, id: 'neo-component-6__day_number__2021-04-10'}
|
1724
|
+
]}
|
1725
|
+
]},
|
1726
|
+
{id: 'neo-component-6__week__2021-04-11', flag: '2021-04-11', cls: ['neo-week'], cn: [
|
1727
|
+
{cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-04-11', cn: [
|
1728
|
+
{cls: ['neo-day-number'], html: 11, id: 'neo-component-6__day_number__2021-04-11'}
|
1729
|
+
]},
|
1730
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-12', cn: [
|
1731
|
+
{cls: ['neo-day-number'], html: 12, id: 'neo-component-6__day_number__2021-04-12'}
|
1732
|
+
]},
|
1733
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-13', cn: [
|
1734
|
+
{cls: ['neo-day-number'], html: 13, id: 'neo-component-6__day_number__2021-04-13'}
|
1735
|
+
]},
|
1736
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-14', cn: [
|
1737
|
+
{cls: ['neo-day-number'], html: 14, id: 'neo-component-6__day_number__2021-04-14'}
|
1738
|
+
]},
|
1739
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-15', cn: [
|
1740
|
+
{cls: ['neo-day-number'], html: 15, id: 'neo-component-6__day_number__2021-04-15'}
|
1741
|
+
]},
|
1742
|
+
{cls: ['neo-day'], id: 'neo-component-6__day__2021-04-16', cn: [
|
1743
|
+
{cls: ['neo-day-number'], html: 16, id: 'neo-component-6__day_number__2021-04-16'}
|
1744
|
+
]},
|
1745
|
+
{cls: ['neo-day', 'neo-weekend'], id: 'neo-component-6__day__2021-04-17', cn: [
|
1746
|
+
{cls: ['neo-day-number'], html: 17, id: 'neo-component-6__day_number__2021-04-17'}
|
1747
|
+
]}
|
1748
|
+
]},
|
1749
|
+
{
|
1750
|
+
flag: '2021-04-18',
|
1751
|
+
cls : ['neo-week'],
|
1752
|
+
cn : [{
|
1753
|
+
cls: ['neo-day', 'neo-weekend'],
|
1754
|
+
id : 'neo-component-6__day__2021-04-18',
|
1755
|
+
cn : [{cls: ['neo-day-number'], html: 18, id: 'neo-component-6__day_number__2021-04-18'}]
|
1756
|
+
}, {
|
1757
|
+
cls: ['neo-day'],
|
1758
|
+
id : 'neo-component-6__day__2021-04-19',
|
1759
|
+
cn : [{cls: ['neo-day-number'], html: 19, id: 'neo-component-6__day_number__2021-04-19'}]
|
1760
|
+
}, {
|
1761
|
+
cls: ['neo-day'],
|
1762
|
+
id : 'neo-component-6__day__2021-04-20',
|
1763
|
+
cn : [{cls: ['neo-day-number'], html: 20, id: 'neo-component-6__day_number__2021-04-20'}]
|
1764
|
+
}, {
|
1765
|
+
cls: ['neo-day'],
|
1766
|
+
id : 'neo-component-6__day__2021-04-21',
|
1767
|
+
cn : [{cls: ['neo-day-number'], html: 21, id: 'neo-component-6__day_number__2021-04-21'}]
|
1768
|
+
}, {
|
1769
|
+
cls: ['neo-day'],
|
1770
|
+
id : 'neo-component-6__day__2021-04-22',
|
1771
|
+
cn : [{cls: ['neo-day-number'], html: 22, id: 'neo-component-6__day_number__2021-04-22'}]
|
1772
|
+
}, {
|
1773
|
+
cls: ['neo-day'],
|
1774
|
+
id : 'neo-component-6__day__2021-04-23',
|
1775
|
+
cn : [{cls: ['neo-day-number'], html: 23, id: 'neo-component-6__day_number__2021-04-23'}]
|
1776
|
+
}, {
|
1777
|
+
cls: ['neo-day', 'neo-weekend'],
|
1778
|
+
id : 'neo-component-6__day__2021-04-24',
|
1779
|
+
cn : [{cls: ['neo-day-number'], html: 24, id: 'neo-component-6__day_number__2021-04-24'}]
|
1780
|
+
}],
|
1781
|
+
id : 'neo-component-6__week__2021-04-18'
|
1782
|
+
}, {
|
1783
|
+
cls: ['neo-month-header'],
|
1784
|
+
cn : [{
|
1785
|
+
cls: ['neo-month-header-content'],
|
1786
|
+
cn : [{
|
1787
|
+
tag : 'span',
|
1788
|
+
cls : ['neo-month-name'],
|
1789
|
+
flag: 'month-name',
|
1790
|
+
html: 'May',
|
1791
|
+
id : 'neo-vnode-163'
|
1792
|
+
}, {vtype: 'text', html: ' 2021', id: 'neo-vtext-6'}],
|
1793
|
+
id : 'neo-vnode-164'
|
1794
|
+
}],
|
1795
|
+
id : 'neo-vnode-165'
|
1796
|
+
}, {
|
1797
|
+
flag: '2021-05-01',
|
1798
|
+
cls : ['neo-week'],
|
1799
|
+
cn : [{
|
1800
|
+
cls: ['neo-day', 'neo-weekend'],
|
1801
|
+
id : 'neo-component-6__day__2021-04-25',
|
1802
|
+
cn : [{cls: ['neo-day-number'], html: 25, id: 'neo-component-6__day_number__2021-04-25'}]
|
1803
|
+
}, {
|
1804
|
+
cls: ['neo-day'],
|
1805
|
+
id : 'neo-component-6__day__2021-04-26',
|
1806
|
+
cn : [{cls: ['neo-day-number'], html: 26, id: 'neo-component-6__day_number__2021-04-26'}]
|
1807
|
+
}, {
|
1808
|
+
cls: ['neo-day'],
|
1809
|
+
id : 'neo-component-6__day__2021-04-27',
|
1810
|
+
cn : [{cls: ['neo-day-number'], html: 27, id: 'neo-component-6__day_number__2021-04-27'}]
|
1811
|
+
}, {
|
1812
|
+
cls: ['neo-day'],
|
1813
|
+
id : 'neo-component-6__day__2021-04-28',
|
1814
|
+
cn : [{cls: ['neo-day-number'], html: 28, id: 'neo-component-6__day_number__2021-04-28'}]
|
1815
|
+
}, {
|
1816
|
+
cls: ['neo-day'],
|
1817
|
+
id : 'neo-component-6__day__2021-04-29',
|
1818
|
+
cn : [{cls: ['neo-day-number'], html: 29, id: 'neo-component-6__day_number__2021-04-29'}]
|
1819
|
+
}, {
|
1820
|
+
cls: ['neo-day'],
|
1821
|
+
id : 'neo-component-6__day__2021-04-30',
|
1822
|
+
cn : [{cls: ['neo-day-number'], html: 30, id: 'neo-component-6__day_number__2021-04-30'}]
|
1823
|
+
}, {
|
1824
|
+
cls: ['neo-day', 'neo-weekend'],
|
1825
|
+
id : 'neo-component-6__day__2021-05-01',
|
1826
|
+
cn : [{cls: ['neo-day-number'], html: 1, id: 'neo-component-6__day_number__2021-05-01'}]
|
1827
|
+
}],
|
1828
|
+
id : 'neo-component-6__week__2021-04-25'
|
1829
|
+
}, {
|
1830
|
+
flag: '2021-05-02',
|
1831
|
+
cls : ['neo-week'],
|
1832
|
+
cn : [{
|
1833
|
+
cls: ['neo-day', 'neo-weekend'],
|
1834
|
+
id : 'neo-component-6__day__2021-05-02',
|
1835
|
+
cn : [{cls: ['neo-day-number'], html: 2, id: 'neo-component-6__day_number__2021-05-02'}]
|
1836
|
+
}, {
|
1837
|
+
cls: ['neo-day'],
|
1838
|
+
id : 'neo-component-6__day__2021-05-03',
|
1839
|
+
cn : [{cls: ['neo-day-number'], html: 3, id: 'neo-component-6__day_number__2021-05-03'}]
|
1840
|
+
}, {
|
1841
|
+
cls: ['neo-day'],
|
1842
|
+
id : 'neo-component-6__day__2021-05-04',
|
1843
|
+
cn : [{cls: ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-05-04'}]
|
1844
|
+
}, {
|
1845
|
+
cls: ['neo-day'],
|
1846
|
+
id : 'neo-component-6__day__2021-05-05',
|
1847
|
+
cn : [{cls: ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-05-05'}]
|
1848
|
+
}, {
|
1849
|
+
cls: ['neo-day'],
|
1850
|
+
id : 'neo-component-6__day__2021-05-06',
|
1851
|
+
cn : [{cls: ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-05-06'}]
|
1852
|
+
}, {
|
1853
|
+
cls: ['neo-day'],
|
1854
|
+
id : 'neo-component-6__day__2021-05-07',
|
1855
|
+
cn : [{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-05-07'}]
|
1856
|
+
}, {
|
1857
|
+
cls: ['neo-day', 'neo-weekend'],
|
1858
|
+
id : 'neo-component-6__day__2021-05-08',
|
1859
|
+
cn : [{cls: ['neo-day-number'], html: 8, id: 'neo-component-6__day_number__2021-05-08'}]
|
1860
|
+
}],
|
1861
|
+
id : 'neo-component-6__week__2021-05-02'
|
1862
|
+
}, {
|
1863
|
+
flag: '2021-05-09',
|
1864
|
+
cls : ['neo-week'],
|
1865
|
+
cn : [{
|
1866
|
+
cls: ['neo-day', 'neo-weekend'],
|
1867
|
+
id : 'neo-component-6__day__2021-05-09',
|
1868
|
+
cn : [{cls: ['neo-day-number'], html: 9, id: 'neo-component-6__day_number__2021-05-09'}]
|
1869
|
+
}, {
|
1870
|
+
cls: ['neo-day'],
|
1871
|
+
id : 'neo-component-6__day__2021-05-10',
|
1872
|
+
cn : [{cls: ['neo-day-number'], html: 10, id: 'neo-component-6__day_number__2021-05-10'}]
|
1873
|
+
}, {
|
1874
|
+
cls: ['neo-day'],
|
1875
|
+
id : 'neo-component-6__day__2021-05-11',
|
1876
|
+
cn : [{cls: ['neo-day-number'], html: 11, id: 'neo-component-6__day_number__2021-05-11'}]
|
1877
|
+
}, {
|
1878
|
+
cls: ['neo-day'],
|
1879
|
+
id : 'neo-component-6__day__2021-05-12',
|
1880
|
+
cn : [{cls: ['neo-day-number'], html: 12, id: 'neo-component-6__day_number__2021-05-12'}]
|
1881
|
+
}, {
|
1882
|
+
cls: ['neo-day'],
|
1883
|
+
id : 'neo-component-6__day__2021-05-13',
|
1884
|
+
cn : [{cls: ['neo-day-number'], html: 13, id: 'neo-component-6__day_number__2021-05-13'}]
|
1885
|
+
}, {
|
1886
|
+
cls: ['neo-day'],
|
1887
|
+
id : 'neo-component-6__day__2021-05-14',
|
1888
|
+
cn : [{cls: ['neo-day-number'], html: 14, id: 'neo-component-6__day_number__2021-05-14'}]
|
1889
|
+
}, {
|
1890
|
+
cls: ['neo-day', 'neo-weekend'],
|
1891
|
+
id : 'neo-component-6__day__2021-05-15',
|
1892
|
+
cn : [{cls: ['neo-day-number'], html: 15, id: 'neo-component-6__day_number__2021-05-15'}]
|
1893
|
+
}],
|
1894
|
+
id : 'neo-component-6__week__2021-05-09'
|
1895
|
+
}, {
|
1896
|
+
flag: '2021-05-16',
|
1897
|
+
cls : ['neo-week'],
|
1898
|
+
cn : [{
|
1899
|
+
cls: ['neo-day', 'neo-weekend'],
|
1900
|
+
id : 'neo-component-6__day__2021-05-16',
|
1901
|
+
cn : [{cls: ['neo-day-number'], html: 16, id: 'neo-component-6__day_number__2021-05-16'}]
|
1902
|
+
}, {
|
1903
|
+
cls: ['neo-day'],
|
1904
|
+
id : 'neo-component-6__day__2021-05-17',
|
1905
|
+
cn : [{cls: ['neo-day-number'], html: 17, id: 'neo-component-6__day_number__2021-05-17'}]
|
1906
|
+
}, {
|
1907
|
+
cls: ['neo-day'],
|
1908
|
+
id : 'neo-component-6__day__2021-05-18',
|
1909
|
+
cn : [{cls: ['neo-day-number'], html: 18, id: 'neo-component-6__day_number__2021-05-18'}]
|
1910
|
+
}, {
|
1911
|
+
cls: ['neo-day'],
|
1912
|
+
id : 'neo-component-6__day__2021-05-19',
|
1913
|
+
cn : [{cls: ['neo-day-number'], html: 19, id: 'neo-component-6__day_number__2021-05-19'}]
|
1914
|
+
}, {
|
1915
|
+
cls: ['neo-day'],
|
1916
|
+
id : 'neo-component-6__day__2021-05-20',
|
1917
|
+
cn : [{cls: ['neo-day-number'], html: 20, id: 'neo-component-6__day_number__2021-05-20'}]
|
1918
|
+
}, {
|
1919
|
+
cls: ['neo-day'],
|
1920
|
+
id : 'neo-component-6__day__2021-05-21',
|
1921
|
+
cn : [{cls: ['neo-day-number'], html: 21, id: 'neo-component-6__day_number__2021-05-21'}]
|
1922
|
+
}, {
|
1923
|
+
cls: ['neo-day', 'neo-weekend'],
|
1924
|
+
id : 'neo-component-6__day__2021-05-22',
|
1925
|
+
cn : [{cls: ['neo-day-number'], html: 22, id: 'neo-component-6__day_number__2021-05-22'}]
|
1926
|
+
}],
|
1927
|
+
id : 'neo-component-6__week__2021-05-16'
|
1928
|
+
}, {
|
1929
|
+
flag: '2021-05-23',
|
1930
|
+
cls : ['neo-week'],
|
1931
|
+
cn : [{
|
1932
|
+
cls: ['neo-day', 'neo-weekend'],
|
1933
|
+
id : 'neo-component-6__day__2021-05-23',
|
1934
|
+
cn : [{cls: ['neo-day-number'], html: 23, id: 'neo-component-6__day_number__2021-05-23'}]
|
1935
|
+
}, {
|
1936
|
+
cls: ['neo-day'],
|
1937
|
+
id : 'neo-component-6__day__2021-05-24',
|
1938
|
+
cn : [{cls: ['neo-day-number'], html: 24, id: 'neo-component-6__day_number__2021-05-24'}]
|
1939
|
+
}, {
|
1940
|
+
cls: ['neo-day'],
|
1941
|
+
id : 'neo-component-6__day__2021-05-25',
|
1942
|
+
cn : [{cls: ['neo-day-number'], html: 25, id: 'neo-component-6__day_number__2021-05-25'}]
|
1943
|
+
}, {
|
1944
|
+
cls: ['neo-day'],
|
1945
|
+
id : 'neo-component-6__day__2021-05-26',
|
1946
|
+
cn : [{cls: ['neo-day-number'], html: 26, id: 'neo-component-6__day_number__2021-05-26'}]
|
1947
|
+
}, {
|
1948
|
+
cls: ['neo-day'],
|
1949
|
+
id : 'neo-component-6__day__2021-05-27',
|
1950
|
+
cn : [{cls: ['neo-day-number'], html: 27, id: 'neo-component-6__day_number__2021-05-27'}]
|
1951
|
+
}, {
|
1952
|
+
cls: ['neo-day'],
|
1953
|
+
id : 'neo-component-6__day__2021-05-28',
|
1954
|
+
cn : [{cls: ['neo-day-number'], html: 28, id: 'neo-component-6__day_number__2021-05-28'}]
|
1955
|
+
}, {
|
1956
|
+
cls: ['neo-day', 'neo-weekend'],
|
1957
|
+
id : 'neo-component-6__day__2021-05-29',
|
1958
|
+
cn : [{cls: ['neo-day-number'], html: 29, id: 'neo-component-6__day_number__2021-05-29'}]
|
1959
|
+
}],
|
1960
|
+
id : 'neo-component-6__week__2021-05-23'
|
1961
|
+
}, {
|
1962
|
+
cls: ['neo-month-header'],
|
1963
|
+
cn : [{
|
1964
|
+
id : 'neo-vnode-152',
|
1965
|
+
cls: ['neo-month-header-content'],
|
1966
|
+
cn : [{
|
1967
|
+
tag : 'span',
|
1968
|
+
cls : ['neo-month-name'],
|
1969
|
+
flag: 'month-name',
|
1970
|
+
html: 'Jun',
|
1971
|
+
id : 'neo-vnode-151'
|
1972
|
+
}, {vtype: 'text', html: ' 2021', id: 'neo-vtext-2'}]
|
1973
|
+
}],
|
1974
|
+
id : 'neo-vnode-153'
|
1975
|
+
}, {
|
1976
|
+
flag: '2021-06-01',
|
1977
|
+
cls : ['neo-week'],
|
1978
|
+
cn : [{
|
1979
|
+
cls: ['neo-day', 'neo-weekend'],
|
1980
|
+
id : 'neo-component-6__day__2021-05-30',
|
1981
|
+
cn : [{cls: ['neo-day-number'], html: 30, id: 'neo-component-6__day_number__2021-05-30'}]
|
1982
|
+
}, {
|
1983
|
+
cls: ['neo-day'],
|
1984
|
+
id : 'neo-component-6__day__2021-05-31',
|
1985
|
+
cn : [{cls: ['neo-day-number'], html: 31, id: 'neo-component-6__day_number__2021-05-31'}]
|
1986
|
+
}, {
|
1987
|
+
cls: ['neo-day'],
|
1988
|
+
id : 'neo-component-6__day__2021-06-01',
|
1989
|
+
cn : [{cls: ['neo-day-number'], html: 1, id: 'neo-component-6__day_number__2021-06-01'}]
|
1990
|
+
}, {
|
1991
|
+
cls: ['neo-day'],
|
1992
|
+
id : 'neo-component-6__day__2021-06-02',
|
1993
|
+
cn : [{cls: ['neo-day-number'], html: 2, id: 'neo-component-6__day_number__2021-06-02'}]
|
1994
|
+
}, {
|
1995
|
+
cls: ['neo-day'],
|
1996
|
+
id : 'neo-component-6__day__2021-06-03',
|
1997
|
+
cn : [{cls: ['neo-day-number'], html: 3, id: 'neo-component-6__day_number__2021-06-03'}]
|
1998
|
+
}, {
|
1999
|
+
cls: ['neo-day'],
|
2000
|
+
id : 'neo-component-6__day__2021-06-04',
|
2001
|
+
cn : [{cls: ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-06-04'}]
|
2002
|
+
}, {
|
2003
|
+
cls: ['neo-day', 'neo-weekend'],
|
2004
|
+
id : 'neo-component-6__day__2021-06-05',
|
2005
|
+
cn : [{cls: ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-06-05'}]
|
2006
|
+
}],
|
2007
|
+
id : 'neo-component-6__week__2021-05-30'
|
2008
|
+
}, {
|
2009
|
+
flag: '2021-06-06',
|
2010
|
+
cls : ['neo-week'],
|
2011
|
+
cn : [{
|
2012
|
+
cls: ['neo-day', 'neo-weekend'],
|
2013
|
+
id : 'neo-component-6__day__2021-06-06',
|
2014
|
+
cn : [{cls: ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-06-06'}]
|
2015
|
+
}, {
|
2016
|
+
cls: ['neo-day'],
|
2017
|
+
id : 'neo-component-6__day__2021-06-07',
|
2018
|
+
cn : [{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-06-07'}]
|
2019
|
+
}, {
|
2020
|
+
cls: ['neo-day'],
|
2021
|
+
id : 'neo-component-6__day__2021-06-08',
|
2022
|
+
cn : [{cls: ['neo-day-number'], html: 8, id: 'neo-component-6__day_number__2021-06-08'}]
|
2023
|
+
}, {
|
2024
|
+
cls: ['neo-day'],
|
2025
|
+
id : 'neo-component-6__day__2021-06-09',
|
2026
|
+
cn : [{cls: ['neo-day-number'], html: 9, id: 'neo-component-6__day_number__2021-06-09'}]
|
2027
|
+
}, {
|
2028
|
+
cls: ['neo-day'],
|
2029
|
+
id : 'neo-component-6__day__2021-06-10',
|
2030
|
+
cn : [{cls: ['neo-day-number'], html: 10, id: 'neo-component-6__day_number__2021-06-10'}]
|
2031
|
+
}, {
|
2032
|
+
cls: ['neo-day'],
|
2033
|
+
id : 'neo-component-6__day__2021-06-11',
|
2034
|
+
cn : [{cls: ['neo-day-number'], html: 11, id: 'neo-component-6__day_number__2021-06-11'}]
|
2035
|
+
}, {
|
2036
|
+
cls: ['neo-day', 'neo-weekend'],
|
2037
|
+
id : 'neo-component-6__day__2021-06-12',
|
2038
|
+
cn : [{cls: ['neo-day-number'], html: 12, id: 'neo-component-6__day_number__2021-06-12'}]
|
2039
|
+
}],
|
2040
|
+
id : 'neo-component-6__week__2021-06-06'
|
2041
|
+
}, {
|
2042
|
+
flag: '2021-06-13',
|
2043
|
+
cls : ['neo-week'],
|
2044
|
+
cn : [{
|
2045
|
+
cls: ['neo-day', 'neo-weekend'],
|
2046
|
+
id : 'neo-component-6__day__2021-06-13',
|
2047
|
+
cn : [{cls: ['neo-day-number'], html: 13, id: 'neo-component-6__day_number__2021-06-13'}]
|
2048
|
+
}, {
|
2049
|
+
cls: ['neo-day'],
|
2050
|
+
id : 'neo-component-6__day__2021-06-14',
|
2051
|
+
cn : [{cls: ['neo-day-number'], html: 14, id: 'neo-component-6__day_number__2021-06-14'}]
|
2052
|
+
}, {
|
2053
|
+
cls: ['neo-day'],
|
2054
|
+
id : 'neo-component-6__day__2021-06-15',
|
2055
|
+
cn : [{cls: ['neo-day-number'], html: 15, id: 'neo-component-6__day_number__2021-06-15'}]
|
2056
|
+
}, {
|
2057
|
+
cls: ['neo-day'],
|
2058
|
+
id : 'neo-component-6__day__2021-06-16',
|
2059
|
+
cn : [{cls: ['neo-day-number'], html: 16, id: 'neo-component-6__day_number__2021-06-16'}]
|
2060
|
+
}, {
|
2061
|
+
cls: ['neo-day'],
|
2062
|
+
id : 'neo-component-6__day__2021-06-17',
|
2063
|
+
cn : [{cls: ['neo-day-number'], html: 17, id: 'neo-component-6__day_number__2021-06-17'}]
|
2064
|
+
}, {
|
2065
|
+
cls: ['neo-day'],
|
2066
|
+
id : 'neo-component-6__day__2021-06-18',
|
2067
|
+
cn : [{cls: ['neo-day-number'], html: 18, id: 'neo-component-6__day_number__2021-06-18'}]
|
2068
|
+
}, {
|
2069
|
+
cls: ['neo-day', 'neo-weekend'],
|
2070
|
+
id : 'neo-component-6__day__2021-06-19',
|
2071
|
+
cn : [{cls: ['neo-day-number'], html: 19, id: 'neo-component-6__day_number__2021-06-19'}]
|
2072
|
+
}],
|
2073
|
+
id : 'neo-component-6__week__2021-06-13'
|
2074
|
+
}, {
|
2075
|
+
flag: '2021-06-20',
|
2076
|
+
cls : ['neo-week'],
|
2077
|
+
cn : [{
|
2078
|
+
cls: ['neo-day', 'neo-weekend'],
|
2079
|
+
id : 'neo-component-6__day__2021-06-20',
|
2080
|
+
cn : [{cls: ['neo-day-number'], html: 20, id: 'neo-component-6__day_number__2021-06-20'}]
|
2081
|
+
}, {
|
2082
|
+
cls: ['neo-day'],
|
2083
|
+
id : 'neo-component-6__day__2021-06-21',
|
2084
|
+
cn : [{cls: ['neo-day-number'], html: 21, id: 'neo-component-6__day_number__2021-06-21'}]
|
2085
|
+
}, {
|
2086
|
+
cls: ['neo-day'],
|
2087
|
+
id : 'neo-component-6__day__2021-06-22',
|
2088
|
+
cn : [{cls: ['neo-day-number'], html: 22, id: 'neo-component-6__day_number__2021-06-22'}]
|
2089
|
+
}, {
|
2090
|
+
cls: ['neo-day'],
|
2091
|
+
id : 'neo-component-6__day__2021-06-23',
|
2092
|
+
cn : [{cls: ['neo-day-number'], html: 23, id: 'neo-component-6__day_number__2021-06-23'}]
|
2093
|
+
}, {
|
2094
|
+
cls: ['neo-day'],
|
2095
|
+
id : 'neo-component-6__day__2021-06-24',
|
2096
|
+
cn : [{cls: ['neo-day-number'], html: 24, id: 'neo-component-6__day_number__2021-06-24'}]
|
2097
|
+
}, {
|
2098
|
+
cls: ['neo-day'],
|
2099
|
+
id : 'neo-component-6__day__2021-06-25',
|
2100
|
+
cn : [{cls: ['neo-day-number'], html: 25, id: 'neo-component-6__day_number__2021-06-25'}]
|
2101
|
+
}, {
|
2102
|
+
cls: ['neo-day', 'neo-weekend'],
|
2103
|
+
id : 'neo-component-6__day__2021-06-26',
|
2104
|
+
cn : [{cls: ['neo-day-number'], html: 26, id: 'neo-component-6__day_number__2021-06-26'}]
|
2105
|
+
}],
|
2106
|
+
id : 'neo-component-6__week__2021-06-20'
|
2107
|
+
}, {
|
2108
|
+
cls: ['neo-month-header'],
|
2109
|
+
cn : [{
|
2110
|
+
cls: ['neo-month-header-content'],
|
2111
|
+
cn : [{tag: 'span', cls: ['neo-month-name'], flag: 'month-name', html: 'Jul'}, {
|
2112
|
+
vtype: 'text',
|
2113
|
+
html : ' 2021'
|
2114
|
+
}]
|
2115
|
+
}]
|
2116
|
+
}, {
|
2117
|
+
flag: '2021-07-01',
|
2118
|
+
cls : ['neo-week'],
|
2119
|
+
cn : [{
|
2120
|
+
cls: ['neo-day', 'neo-weekend'],
|
2121
|
+
id : 'neo-component-6__day__2021-06-27',
|
2122
|
+
cn : [{cls: ['neo-day-number'], html: 27, id: 'neo-component-6__day_number__2021-06-27'}]
|
2123
|
+
}, {
|
2124
|
+
cls: ['neo-day'],
|
2125
|
+
id : 'neo-component-6__day__2021-06-28',
|
2126
|
+
cn : [{cls: ['neo-day-number'], html: 28, id: 'neo-component-6__day_number__2021-06-28'}]
|
2127
|
+
}, {
|
2128
|
+
cls: ['neo-day'],
|
2129
|
+
id : 'neo-component-6__day__2021-06-29',
|
2130
|
+
cn : [{cls: ['neo-day-number'], html: 29, id: 'neo-component-6__day_number__2021-06-29'}]
|
2131
|
+
}, {
|
2132
|
+
cls: ['neo-day'],
|
2133
|
+
id : 'neo-component-6__day__2021-06-30',
|
2134
|
+
cn : [{cls: ['neo-day-number'], html: 30, id: 'neo-component-6__day_number__2021-06-30'}]
|
2135
|
+
}, {
|
2136
|
+
cls: ['neo-day'],
|
2137
|
+
id : 'neo-component-6__day__2021-07-01',
|
2138
|
+
cn : [{cls: ['neo-day-number'], html: 1, id: 'neo-component-6__day_number__2021-07-01'}]
|
2139
|
+
}, {
|
2140
|
+
cls: ['neo-day'],
|
2141
|
+
id : 'neo-component-6__day__2021-07-02',
|
2142
|
+
cn : [{cls: ['neo-day-number'], html: 2, id: 'neo-component-6__day_number__2021-07-02'}]
|
2143
|
+
}, {
|
2144
|
+
cls: ['neo-day', 'neo-weekend'],
|
2145
|
+
id : 'neo-component-6__day__2021-07-03',
|
2146
|
+
cn : [{cls: ['neo-day-number'], html: 3, id: 'neo-component-6__day_number__2021-07-03'}]
|
2147
|
+
}],
|
2148
|
+
id : 'neo-component-6__week__2021-06-27'
|
2149
|
+
}, {
|
2150
|
+
flag: '2021-07-04',
|
2151
|
+
cls : ['neo-week'],
|
2152
|
+
cn : [{
|
2153
|
+
cls: ['neo-day', 'neo-weekend'],
|
2154
|
+
id : 'neo-component-6__day__2021-07-04',
|
2155
|
+
cn : [{cls: ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-07-04'}]
|
2156
|
+
}, {
|
2157
|
+
cls: ['neo-day'],
|
2158
|
+
id : 'neo-component-6__day__2021-07-05',
|
2159
|
+
cn : [{cls: ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-07-05'}]
|
2160
|
+
}, {
|
2161
|
+
cls: ['neo-day'],
|
2162
|
+
id : 'neo-component-6__day__2021-07-06',
|
2163
|
+
cn : [{cls: ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-07-06'}]
|
2164
|
+
}, {
|
2165
|
+
cls: ['neo-day'],
|
2166
|
+
id : 'neo-component-6__day__2021-07-07',
|
2167
|
+
cn : [{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-07-07'}]
|
2168
|
+
}, {
|
2169
|
+
cls: ['neo-day'],
|
2170
|
+
id : 'neo-component-6__day__2021-07-08',
|
2171
|
+
cn : [{cls: ['neo-day-number'], html: 8, id: 'neo-component-6__day_number__2021-07-08'}]
|
2172
|
+
}, {
|
2173
|
+
cls: ['neo-day'],
|
2174
|
+
id : 'neo-component-6__day__2021-07-09',
|
2175
|
+
cn : [{cls: ['neo-day-number'], html: 9, id: 'neo-component-6__day_number__2021-07-09'}]
|
2176
|
+
}, {
|
2177
|
+
cls: ['neo-day', 'neo-weekend'],
|
2178
|
+
id : 'neo-component-6__day__2021-07-10',
|
2179
|
+
cn : [{cls: ['neo-day-number'], html: 10, id: 'neo-component-6__day_number__2021-07-10'}]
|
2180
|
+
}],
|
2181
|
+
id : 'neo-component-6__week__2021-07-04'
|
2182
|
+
}, {
|
2183
|
+
flag: '2021-07-11',
|
2184
|
+
cls : ['neo-week'],
|
2185
|
+
cn : [{
|
2186
|
+
cls: ['neo-day', 'neo-weekend'],
|
2187
|
+
id : 'neo-component-6__day__2021-07-11',
|
2188
|
+
cn : [{cls: ['neo-day-number'], html: 11, id: 'neo-component-6__day_number__2021-07-11'}]
|
2189
|
+
}, {
|
2190
|
+
cls: ['neo-day'],
|
2191
|
+
id : 'neo-component-6__day__2021-07-12',
|
2192
|
+
cn : [{cls: ['neo-day-number'], html: 12, id: 'neo-component-6__day_number__2021-07-12'}]
|
2193
|
+
}, {
|
2194
|
+
cls: ['neo-day'],
|
2195
|
+
id : 'neo-component-6__day__2021-07-13',
|
2196
|
+
cn : [{cls: ['neo-day-number'], html: 13, id: 'neo-component-6__day_number__2021-07-13'}]
|
2197
|
+
}, {
|
2198
|
+
cls: ['neo-day'],
|
2199
|
+
id : 'neo-component-6__day__2021-07-14',
|
2200
|
+
cn : [{
|
2201
|
+
cls : ['neo-day-number'],
|
2202
|
+
html: 14,
|
2203
|
+
id : 'neo-component-6__day_number__2021-07-14'
|
2204
|
+
}, {
|
2205
|
+
cls : ['neo-event', 'neo-red'],
|
2206
|
+
flag : 1,
|
2207
|
+
id : 'neo-component-6__1',
|
2208
|
+
tabIndex: -1,
|
2209
|
+
cn : [{
|
2210
|
+
cls : ['neo-event-title'],
|
2211
|
+
html: 'Event 1',
|
2212
|
+
id : 'neo-component-6__title__1'
|
2213
|
+
}, {cls: ['neo-event-time'], html: '09:15', id: 'neo-component-6__time__1'}]
|
2214
|
+
}, {
|
2215
|
+
cls : ['neo-event', 'neo-red'],
|
2216
|
+
flag : 2,
|
2217
|
+
id : 'neo-component-6__2',
|
2218
|
+
tabIndex: -1,
|
2219
|
+
cn : [{
|
2220
|
+
cls : ['neo-event-title'],
|
2221
|
+
html: 'Event 2',
|
2222
|
+
id : 'neo-component-6__title__2'
|
2223
|
+
}, {cls: ['neo-event-time'], html: '11:30', id: 'neo-component-6__time__2'}]
|
2224
|
+
}, {
|
2225
|
+
cls : ['neo-event', 'neo-red'],
|
2226
|
+
flag : 3,
|
2227
|
+
id : 'neo-component-6__3',
|
2228
|
+
tabIndex: -1,
|
2229
|
+
cn : [{
|
2230
|
+
cls : ['neo-event-title'],
|
2231
|
+
html: 'Event 3 with a long title',
|
2232
|
+
id : 'neo-component-6__title__3'
|
2233
|
+
}, {cls: ['neo-event-time'], html: '13:45', id: 'neo-component-6__time__3'}]
|
2234
|
+
}, {
|
2235
|
+
cls : ['neo-event', 'neo-red'],
|
2236
|
+
flag : 4,
|
2237
|
+
id : 'neo-component-6__4',
|
2238
|
+
tabIndex: -1,
|
2239
|
+
cn : [{
|
2240
|
+
cls : ['neo-event-title'],
|
2241
|
+
html: 'Event 4',
|
2242
|
+
id : 'neo-component-6__title__4'
|
2243
|
+
}, {cls: ['neo-event-time'], html: '16:00', id: 'neo-component-6__time__4'}]
|
2244
|
+
}]
|
2245
|
+
}, {
|
2246
|
+
cls: ['neo-day'],
|
2247
|
+
id : 'neo-component-6__day__2021-07-15',
|
2248
|
+
cn : [{cls: ['neo-day-number'], html: 15, id: 'neo-component-6__day_number__2021-07-15'}]
|
2249
|
+
}, {
|
2250
|
+
cls: ['neo-day'],
|
2251
|
+
id : 'neo-component-6__day__2021-07-16',
|
2252
|
+
cn : [{cls: ['neo-day-number'], html: 16, id: 'neo-component-6__day_number__2021-07-16'}]
|
2253
|
+
}, {
|
2254
|
+
cls: ['neo-day', 'neo-weekend'],
|
2255
|
+
id : 'neo-component-6__day__2021-07-17',
|
2256
|
+
cn : [{cls: ['neo-day-number'], html: 17, id: 'neo-component-6__day_number__2021-07-17'}]
|
2257
|
+
}],
|
2258
|
+
id : 'neo-component-6__week__2021-07-11'
|
2259
|
+
}, {
|
2260
|
+
flag: '2021-07-18',
|
2261
|
+
cls : ['neo-week'],
|
2262
|
+
cn : [{
|
2263
|
+
cls: ['neo-day', 'neo-weekend'],
|
2264
|
+
id : 'neo-component-6__day__2021-07-18',
|
2265
|
+
cn : [{cls: ['neo-day-number'], html: 18, id: 'neo-component-6__day_number__2021-07-18'}]
|
2266
|
+
}, {
|
2267
|
+
cls: ['neo-day'],
|
2268
|
+
id : 'neo-component-6__day__2021-07-19',
|
2269
|
+
cn : [{
|
2270
|
+
cls : ['neo-day-number'],
|
2271
|
+
html: 19,
|
2272
|
+
id : 'neo-component-6__day_number__2021-07-19'
|
2273
|
+
}, {
|
2274
|
+
cls : ['neo-event', 'neo-yellow'],
|
2275
|
+
flag : 5,
|
2276
|
+
id : 'neo-component-6__5',
|
2277
|
+
tabIndex: -1,
|
2278
|
+
cn : [{
|
2279
|
+
cls : ['neo-event-title'],
|
2280
|
+
html: 'Coding',
|
2281
|
+
id : 'neo-component-6__title__5'
|
2282
|
+
}, {cls: ['neo-event-time'], html: '09:15', id: 'neo-component-6__time__5'}]
|
2283
|
+
}]
|
2284
|
+
}, {
|
2285
|
+
cls: ['neo-day'],
|
2286
|
+
id : 'neo-component-6__day__2021-07-20',
|
2287
|
+
cn : [{
|
2288
|
+
cls : ['neo-day-number'],
|
2289
|
+
html: 20,
|
2290
|
+
id : 'neo-component-6__day_number__2021-07-20'
|
2291
|
+
}, {
|
2292
|
+
cls : ['neo-event', 'neo-red'],
|
2293
|
+
flag : 6,
|
2294
|
+
id : 'neo-component-6__6',
|
2295
|
+
tabIndex: -1,
|
2296
|
+
cn : [{
|
2297
|
+
cls : ['neo-event-title'],
|
2298
|
+
html: 'Coding',
|
2299
|
+
id : 'neo-component-6__title__6'
|
2300
|
+
}, {cls: ['neo-event-time'], html: '09:15', id: 'neo-component-6__time__6'}]
|
2301
|
+
}]
|
2302
|
+
}, {
|
2303
|
+
cls: ['neo-day'],
|
2304
|
+
id : 'neo-component-6__day__2021-07-21',
|
2305
|
+
cn : [{cls: ['neo-day-number'], html: 21, id: 'neo-component-6__day_number__2021-07-21'}]
|
2306
|
+
}, {
|
2307
|
+
cls: ['neo-day'],
|
2308
|
+
id : 'neo-component-6__day__2021-07-22',
|
2309
|
+
cn : [{
|
2310
|
+
cls : ['neo-day-number'],
|
2311
|
+
html: 22,
|
2312
|
+
id : 'neo-component-6__day_number__2021-07-22'
|
2313
|
+
}, {
|
2314
|
+
cls : ['neo-event', 'neo-orange'],
|
2315
|
+
flag : 7,
|
2316
|
+
id : 'neo-component-6__7',
|
2317
|
+
tabIndex: -1,
|
2318
|
+
cn : [{
|
2319
|
+
cls : ['neo-event-title'],
|
2320
|
+
html: 'Breakfast',
|
2321
|
+
id : 'neo-component-6__title__7'
|
2322
|
+
}, {cls: ['neo-event-time'], html: '08:00', id: 'neo-component-6__time__7'}]
|
2323
|
+
}, {
|
2324
|
+
cls : ['neo-event', 'neo-blue'],
|
2325
|
+
flag : 8,
|
2326
|
+
id : 'neo-component-6__8',
|
2327
|
+
tabIndex: -1,
|
2328
|
+
cn : [{
|
2329
|
+
cls : ['neo-event-title'],
|
2330
|
+
html: 'Lunch Break 1',
|
2331
|
+
id : 'neo-component-6__title__8'
|
2332
|
+
}, {cls: ['neo-event-time'], html: '12:00', id: 'neo-component-6__time__8'}]
|
2333
|
+
}]
|
2334
|
+
}, {
|
2335
|
+
cls: ['neo-day'],
|
2336
|
+
id : 'neo-component-6__day__2021-07-23',
|
2337
|
+
cn : [{
|
2338
|
+
cls : ['neo-day-number'],
|
2339
|
+
html: 23,
|
2340
|
+
id : 'neo-component-6__day_number__2021-07-23'
|
2341
|
+
}, {
|
2342
|
+
cls : ['neo-event', 'neo-green'],
|
2343
|
+
flag : 9,
|
2344
|
+
id : 'neo-component-6__9',
|
2345
|
+
tabIndex: -1,
|
2346
|
+
cn : [{
|
2347
|
+
cls : ['neo-event-title'],
|
2348
|
+
html: 'Lunch Break 2',
|
2349
|
+
id : 'neo-component-6__title__9'
|
2350
|
+
}, {cls: ['neo-event-time'], html: '12:00', id: 'neo-component-6__time__9'}]
|
2351
|
+
}, {
|
2352
|
+
cls : ['neo-event', 'neo-pink'],
|
2353
|
+
flag : 10,
|
2354
|
+
id : 'neo-component-6__10',
|
2355
|
+
tabIndex: -1,
|
2356
|
+
cn : [{
|
2357
|
+
cls : ['neo-event-title'],
|
2358
|
+
html: 'Dinner',
|
2359
|
+
id : 'neo-component-6__title__10'
|
2360
|
+
}, {cls: ['neo-event-time'], html: '19:30', id: 'neo-component-6__time__10'}]
|
2361
|
+
}]
|
2362
|
+
}, {
|
2363
|
+
cls: ['neo-day', 'neo-weekend'],
|
2364
|
+
id : 'neo-component-6__day__2021-07-24',
|
2365
|
+
cn : [{cls: ['neo-day-number'], html: 24, id: 'neo-component-6__day_number__2021-07-24'}]
|
2366
|
+
}],
|
2367
|
+
id : 'neo-component-6__week__2021-07-18'
|
2368
|
+
}, {
|
2369
|
+
flag: '2021-07-25',
|
2370
|
+
cls : ['neo-week'],
|
2371
|
+
cn : [{
|
2372
|
+
cls: ['neo-day', 'neo-weekend'],
|
2373
|
+
id : 'neo-component-6__day__2021-07-25',
|
2374
|
+
cn : [{cls: ['neo-day-number'], html: 25, id: 'neo-component-6__day_number__2021-07-25'}]
|
2375
|
+
}, {
|
2376
|
+
cls: ['neo-day'],
|
2377
|
+
id : 'neo-component-6__day__2021-07-26',
|
2378
|
+
cn : [{cls: ['neo-day-number'], html: 26, id: 'neo-component-6__day_number__2021-07-26'}]
|
2379
|
+
}, {
|
2380
|
+
cls: ['neo-day'],
|
2381
|
+
id : 'neo-component-6__day__2021-07-27',
|
2382
|
+
cn : [{cls: ['neo-day-number'], html: 27, id: 'neo-component-6__day_number__2021-07-27'}]
|
2383
|
+
}, {
|
2384
|
+
cls: ['neo-day'],
|
2385
|
+
id : 'neo-component-6__day__2021-07-28',
|
2386
|
+
cn : [{cls: ['neo-day-number'], html: 28, id: 'neo-component-6__day_number__2021-07-28'}]
|
2387
|
+
}, {
|
2388
|
+
cls: ['neo-day'],
|
2389
|
+
id : 'neo-component-6__day__2021-07-29',
|
2390
|
+
cn : [{
|
2391
|
+
cls : ['neo-day-number'],
|
2392
|
+
html: 29,
|
2393
|
+
id : 'neo-component-6__day_number__2021-07-29'
|
2394
|
+
}, {
|
2395
|
+
cls : ['neo-event', 'neo-red'],
|
2396
|
+
flag : 11,
|
2397
|
+
id : 'neo-component-6__11',
|
2398
|
+
tabIndex: -1,
|
2399
|
+
cn : [{
|
2400
|
+
cls : ['neo-event-title'],
|
2401
|
+
html: 'Lunch Break 3',
|
2402
|
+
id : 'neo-component-6__title__11'
|
2403
|
+
}, {cls: ['neo-event-time'], html: '12:00', id: 'neo-component-6__time__11'}]
|
2404
|
+
}, {
|
2405
|
+
cls : ['neo-event', 'neo-red'],
|
2406
|
+
flag : 12,
|
2407
|
+
id : 'neo-component-6__12',
|
2408
|
+
tabIndex: -1,
|
2409
|
+
cn : [{
|
2410
|
+
cls : ['neo-event-title'],
|
2411
|
+
html: 'Siesta',
|
2412
|
+
id : 'neo-component-6__title__12'
|
2413
|
+
}, {cls: ['neo-event-time'], html: '14:00', id: 'neo-component-6__time__12'}]
|
2414
|
+
}]
|
2415
|
+
}, {
|
2416
|
+
cls: ['neo-day'],
|
2417
|
+
id : 'neo-component-6__day__2021-07-30',
|
2418
|
+
cn : [{cls: ['neo-day-number'], html: 30, id: 'neo-component-6__day_number__2021-07-30'}]
|
2419
|
+
}, {
|
2420
|
+
cls: ['neo-day', 'neo-weekend'],
|
2421
|
+
id : 'neo-component-6__day__2021-07-31',
|
2422
|
+
cn : [{cls: ['neo-day-number'], html: 31, id: 'neo-component-6__day_number__2021-07-31'}]
|
2423
|
+
}],
|
2424
|
+
id : 'neo-component-6__week__2021-07-25'
|
2425
|
+
}, {
|
2426
|
+
cls: ['neo-month-header'],
|
2427
|
+
cn : [{
|
2428
|
+
cls: ['neo-month-header-content'],
|
2429
|
+
cn : [{tag: 'span', cls: ['neo-month-name'], flag: 'month-name', html: 'Aug'}, {
|
2430
|
+
vtype: 'text',
|
2431
|
+
html : ' 2021'
|
2432
|
+
}]
|
2433
|
+
}]
|
2434
|
+
}, {
|
2435
|
+
flag: '2021-08-01',
|
2436
|
+
cls : ['neo-week'],
|
2437
|
+
cn : [{
|
2438
|
+
cls: ['neo-day', 'neo-weekend'],
|
2439
|
+
id : 'neo-component-6__day__2021-08-01',
|
2440
|
+
cn : [{cls: ['neo-day-number'], html: 1, id: 'neo-component-6__day_number__2021-08-01'}]
|
2441
|
+
}, {
|
2442
|
+
cls: ['neo-day'],
|
2443
|
+
id : 'neo-component-6__day__2021-08-02',
|
2444
|
+
cn : [{cls: ['neo-day-number'], html: 2, id: 'neo-component-6__day_number__2021-08-02'}]
|
2445
|
+
}, {
|
2446
|
+
cls: ['neo-day'],
|
2447
|
+
id : 'neo-component-6__day__2021-08-03',
|
2448
|
+
cn : [{cls: ['neo-day-number'], html: 3, id: 'neo-component-6__day_number__2021-08-03'}]
|
2449
|
+
}, {
|
2450
|
+
cls: ['neo-day'],
|
2451
|
+
id : 'neo-component-6__day__2021-08-04',
|
2452
|
+
cn : [{cls: ['neo-day-number'], html: 4, id: 'neo-component-6__day_number__2021-08-04'}]
|
2453
|
+
}, {
|
2454
|
+
cls: ['neo-day'],
|
2455
|
+
id : 'neo-component-6__day__2021-08-05',
|
2456
|
+
cn : [{cls: ['neo-day-number'], html: 5, id: 'neo-component-6__day_number__2021-08-05'}]
|
2457
|
+
}, {
|
2458
|
+
cls: ['neo-day'],
|
2459
|
+
id : 'neo-component-6__day__2021-08-06',
|
2460
|
+
cn : [{cls: ['neo-day-number'], html: 6, id: 'neo-component-6__day_number__2021-08-06'}]
|
2461
|
+
}, {
|
2462
|
+
cls: ['neo-day', 'neo-weekend'],
|
2463
|
+
id : 'neo-component-6__day__2021-08-07',
|
2464
|
+
cn : [{cls: ['neo-day-number'], html: 7, id: 'neo-component-6__day_number__2021-08-07'}]
|
2465
|
+
}],
|
2466
|
+
id : 'neo-component-6__week__2021-08-01'
|
2467
|
+
}]
|
2468
|
+
};
|
2469
|
+
|
2470
|
+
output = VdomHelper.update({vdom, vnode}); deltas = output.deltas; vnode = output.vnode;
|
2471
|
+
|
2472
|
+
t.is(deltas.length, 16, 'Count deltas equals 16');
|
2473
|
+
|
2474
|
+
t.isDeeplyStrict(deltas, [
|
2475
|
+
{action: 'insertNode', index: 22, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2476
|
+
{action: 'insertNode', index: 23, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2477
|
+
{action: 'insertNode', index: 24, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2478
|
+
{action: 'insertNode', index: 25, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2479
|
+
{action: 'insertNode', index: 26, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2480
|
+
{action: 'insertNode', index: 27, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2481
|
+
{action: 'insertNode', index: 28, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2482
|
+
{action: 'insertNode', index: 29, parentId: 'neo-vnode-150', outerHTML: t.any(String)},
|
2483
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-02-21'},
|
2484
|
+
{action: 'removeNode', id: 'neo-vnode-168'},
|
2485
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-02-28'},
|
2486
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-03-07'},
|
2487
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-03-14'},
|
2488
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-03-21'},
|
2489
|
+
{action: 'removeNode', id: 'neo-vnode-171'},
|
2490
|
+
{action: 'removeNode', id: 'neo-component-6__week__2021-03-28'}
|
2491
|
+
], 'deltas got created successfully');
|
2492
|
+
|
2493
|
+
|
2494
|
+
//let removedQuotes = JSON.stringify(deltas).replace(/"[^"]*":/g, match => match.replace(/"/g, ''));
|
2495
|
+
//console.log(removedQuotes);
|
2496
|
+
});
|
341
2497
|
});
|