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