pixel-react 1.5.8 → 1.6.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.
Files changed (72) hide show
  1. package/.storybook/main.ts +1 -7
  2. package/.storybook/preview-head.html +3 -0
  3. package/.yarn/install-state.gz +0 -0
  4. package/index.scss +5 -0
  5. package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +1 -1
  6. package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.d.ts +2 -2
  7. package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +17 -1
  8. package/lib/components/Excel/Types.d.ts +22 -1
  9. package/lib/components/Excel/dataConversion.d.ts +3 -0
  10. package/lib/components/FieldSet/FieldSet.d.ts +5 -0
  11. package/lib/components/FieldSet/index.d.ts +1 -0
  12. package/lib/components/FieldSet/types.d.ts +7 -0
  13. package/lib/components/FileDropzone/types.d.ts +8 -0
  14. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  15. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +1 -0
  16. package/lib/components/TableTree/TableTree.d.ts +4 -24
  17. package/lib/components/TableTree/data.d.ts +78 -273
  18. package/lib/components/TableTree/types.d.ts +29 -0
  19. package/lib/index.d.ts +99 -21
  20. package/lib/index.esm.js +597 -392
  21. package/lib/index.esm.js.map +1 -1
  22. package/lib/index.js +601 -392
  23. package/lib/index.js.map +1 -1
  24. package/lib/tsconfig.tsbuildinfo +1 -1
  25. package/package.json +2 -3
  26. package/src/assets/icons/export.svg +5 -0
  27. package/src/assets/icons/import.svg +5 -0
  28. package/src/assets/icons/info_icon.svg +4 -16
  29. package/src/assets/icons/replace_file.svg +14 -0
  30. package/src/assets/icons/web_service_icon.svg +3 -0
  31. package/src/components/Checkbox/Checkbox.tsx +1 -7
  32. package/src/components/DragAndDrop/DragAndDropList.tsx +5 -4
  33. package/src/components/Excel/ExcelFile/ExcelFile.tsx +60 -5
  34. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +39 -39
  35. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +34 -28
  36. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +0 -29
  37. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +29 -0
  38. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +33 -0
  39. package/src/components/Excel/ExcelFile.stories.tsx +77 -67
  40. package/src/components/Excel/Types.ts +23 -1
  41. package/src/components/Excel/dataConversion.ts +173 -0
  42. package/src/components/FieldSet/FieldSet.scss +9 -0
  43. package/src/components/FieldSet/FieldSet.stories.tsx +103 -0
  44. package/src/components/FieldSet/FieldSet.tsx +29 -0
  45. package/src/components/FieldSet/index.ts +1 -0
  46. package/src/components/FieldSet/types.ts +8 -0
  47. package/src/components/FileDropzone/FileDropzone.scss +1 -1
  48. package/src/components/FileDropzone/FileDropzone.stories.tsx +15 -3
  49. package/src/components/FileDropzone/FileDropzone.tsx +5 -0
  50. package/src/components/FileDropzone/FilePreview.tsx +1 -1
  51. package/src/components/FileDropzone/types.ts +8 -0
  52. package/src/components/Icon/iconList.ts +11 -7
  53. package/src/components/MultiSelect/Dropdown.tsx +7 -3
  54. package/src/components/MultiSelect/MultiSelect.stories.tsx +6 -1
  55. package/src/components/MultiSelect/MultiSelect.tsx +4 -20
  56. package/src/components/MultiSelect/MultiSelectTypes.ts +2 -0
  57. package/src/components/TableTree/TableTree.scss +154 -123
  58. package/src/components/TableTree/TableTree.stories.tsx +10 -5
  59. package/src/components/TableTree/TableTree.tsx +220 -287
  60. package/src/components/TableTree/data.ts +677 -569
  61. package/src/components/TableTree/types.ts +31 -0
  62. package/src/components/Toast/Toast.tsx +1 -1
  63. package/src/components/Typography/Typography.scss +1 -36
  64. package/src/index.ts +8 -0
  65. package/src/assets/fonts/Poppins-Bold.ttf +0 -0
  66. package/src/assets/fonts/Poppins-Bold.woff2 +0 -0
  67. package/src/assets/fonts/Poppins-Medium.ttf +0 -0
  68. package/src/assets/fonts/Poppins-Medium.woff2 +0 -0
  69. package/src/assets/fonts/Poppins-Regular.ttf +0 -0
  70. package/src/assets/fonts/Poppins-Regular.woff2 +0 -0
  71. package/src/assets/fonts/Poppins-SemiBold.ttf +0 -0
  72. package/src/assets/fonts/Poppins-SemiBold.woff2 +0 -0
@@ -1,573 +1,681 @@
1
- const extendedData = [
1
+ const data = [
2
2
  {
3
- subModuleCount: 15,
4
- title: 'FIreFlink',
5
- scriptCount: 0,
6
- path: '/Root',
7
- expanded: true,
8
- modifiedOn: '19-12-2023 15:32',
9
- children: [
10
- {
11
- subModuleCount: 10,
12
- title: 'Home',
13
- scriptCount: 0,
14
- path: '/Root/Home',
15
- expanded: true,
16
- modifiedOn: '19-12-2023 15:43',
17
- folder: true,
18
- children: [
19
- {
20
- ver: 1,
21
- hierarchy: 2,
22
- subModuleCount: 4,
23
- assigneeCount: 0,
24
- searchKey: '/MOD1001/MOD1002/MOD1003',
25
- modifiedByUname: '--',
26
- title: 'Setup',
27
- scriptCount: 0,
28
- executionOrder: 1,
29
- createdByUname: 'Shivaprasad',
30
- parentId: 'MOD1002',
31
- path: '/Root/Home/Setup',
32
- expanded: false,
33
- modifiedOn: '19-12-2023 16:40',
34
- parentName: 'Home',
35
- moduleLevelScriptCount: 0,
36
- lastExecutionOrder: 0,
37
- imported: false,
38
- name: 'Setup',
39
- modifiedBy: '--',
40
- moduleCountWithScript: 0,
41
- state: 'NEW',
42
- key: 'MOD1003',
43
- folder: true,
44
- children: [
45
- {
46
- ver: 1,
47
- hierarchy: 3,
48
- subModuleCount: 0,
49
- assigneeCount: 0,
50
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1101',
51
- modifiedByUname: '--',
52
- title: 'Initial Setup',
53
- scriptCount: 0,
54
- executionOrder: 1,
55
- createdByUname: 'Shivaprasad',
56
- parentId: 'MOD1003',
57
- path: '/Root/Home/Setup/Initial Setup',
58
- expanded: false,
59
- modifiedOn: '20-12-2023 09:00',
60
- parentName: 'Setup',
61
- moduleLevelScriptCount: 0,
62
- lastExecutionOrder: 0,
63
- imported: false,
64
- name: 'Initial Setup',
65
- modifiedBy: '--',
66
- moduleCountWithScript: 0,
67
- state: 'NEW',
68
- key: 'MOD1101',
69
- },
70
- {
71
- ver: 1,
72
- hierarchy: 3,
73
- subModuleCount: 0,
74
- assigneeCount: 0,
75
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1102',
76
- modifiedByUname: '--',
77
- title: 'Advanced Setup',
78
- scriptCount: 0,
79
- executionOrder: 2,
80
- createdByUname: 'Shivaprasad',
81
- parentId: 'MOD1003',
82
- path: '/Root/Home/Setup/Advanced Setup',
83
- expanded: false,
84
- modifiedOn: '20-12-2023 09:30',
85
- parentName: 'Setup',
86
- moduleLevelScriptCount: 0,
87
- lastExecutionOrder: 0,
88
- imported: false,
89
- name: 'Advanced Setup',
90
- modifiedBy: '--',
91
- moduleCountWithScript: 0,
92
- state: 'NEW',
93
- key: 'MOD1102',
94
- },
95
- {
96
- ver: 1,
97
- hierarchy: 3,
98
- subModuleCount: 0,
99
- assigneeCount: 0,
100
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1103',
101
- modifiedByUname: '--',
102
- title: 'Setup Review',
103
- scriptCount: 0,
104
- executionOrder: 3,
105
- createdByUname: 'Shivaprasad',
106
- parentId: 'MOD1003',
107
- path: '/Root/Home/Setup/Setup Review',
108
- expanded: false,
109
- modifiedOn: '20-12-2023 10:00',
110
- parentName: 'Setup',
111
- moduleLevelScriptCount: 0,
112
- lastExecutionOrder: 0,
113
- imported: false,
114
- name: 'Setup Review',
115
- modifiedBy: '--',
116
- moduleCountWithScript: 0,
117
- state: 'NEW',
118
- key: 'MOD1103',
119
- },
120
- ],
121
- },
122
- {
123
- ver: 1,
124
- hierarchy: 2,
125
- subModuleCount: 4,
126
- assigneeCount: 0,
127
- searchKey: '/MOD1001/MOD1002/MOD1004',
128
- modifiedByUname: '--',
129
- title: 'Authoring',
130
- scriptCount: 0,
131
- executionOrder: 2,
132
- createdByUname: 'Shivaprasad',
133
- parentId: 'MOD1002',
134
- path: '/Root/Home/Authoring Cycle',
135
- expanded: false,
136
- modifiedOn: '19-12-2023 16:40',
137
- parentName: 'Home',
138
- moduleLevelScriptCount: 0,
139
- lastExecutionOrder: 0,
140
- imported: false,
141
- name: 'Authoring Cycle',
142
- modifiedBy: '--',
143
- moduleCountWithScript: 0,
144
- state: 'NEW',
145
- key: 'MOD1004',
146
- folder: true,
147
- children: [
148
- {
149
- ver: 1,
150
- hierarchy: 3,
151
- subModuleCount: 0,
152
- assigneeCount: 0,
153
- searchKey: '/MOD1001/MOD1002/MOD1004/MOD1201',
154
- modifiedByUname: '--',
155
- title: 'Draft Authoring',
156
- scriptCount: 0,
157
- executionOrder: 1,
158
- createdByUname: 'Shivaprasad',
159
- parentId: 'MOD1004',
160
- path: '/Root/Home/Authoring Cycle/Draft Authoring',
161
- expanded: false,
162
- modifiedOn: '21-12-2023 11:00',
163
- parentName: 'Authoring Cycle',
164
- moduleLevelScriptCount: 0,
165
- lastExecutionOrder: 0,
166
- imported: false,
167
- name: 'Draft Authoring',
168
- modifiedBy: '--',
169
- moduleCountWithScript: 0,
170
- state: 'NEW',
171
- key: 'MOD1201',
172
- },
173
- {
174
- ver: 1,
175
- hierarchy: 3,
176
- subModuleCount: 0,
177
- assigneeCount: 0,
178
- searchKey: '/MOD1001/MOD1002/MOD1004/MOD1202',
179
- modifiedByUname: '--',
180
- title: 'Peer Review',
181
- scriptCount: 0,
182
- executionOrder: 2,
183
- createdByUname: 'Shivaprasad',
184
- parentId: 'MOD1004',
185
- path: '/Root/Home/Authoring Cycle/Peer Review',
186
- expanded: false,
187
- modifiedOn: '21-12-2023 11:30',
188
- parentName: 'Authoring Cycle',
189
- moduleLevelScriptCount: 0,
190
- lastExecutionOrder: 0,
191
- imported: false,
192
- name: 'Peer Review',
193
- modifiedBy: '--',
194
- moduleCountWithScript: 0,
195
- state: 'NEW',
196
- key: 'MOD1202',
197
- },
198
- ],
199
- },
200
- {
201
- subModuleCount: 10,
202
- title: 'Home',
203
- scriptCount: 0,
204
- path: '/Root/Home',
205
- expanded: false,
206
- modifiedOn: '19-12-2023 15:43',
207
- folder: true,
208
- children: [
209
- {
210
- ver: 1,
211
- hierarchy: 2,
212
- subModuleCount: 4,
213
- assigneeCount: 0,
214
- searchKey: '/MOD1001/MOD1002/MOD1003',
215
- modifiedByUname: '--',
216
- title: 'Setup',
217
- scriptCount: 0,
218
- executionOrder: 1,
219
- createdByUname: 'Shivaprasad',
220
- parentId: 'MOD1002',
221
- path: '/Root/Home/Setup',
222
- expanded: false,
223
- modifiedOn: '19-12-2023 16:40',
224
- parentName: 'Home',
225
- moduleLevelScriptCount: 0,
226
- lastExecutionOrder: 0,
227
- imported: false,
228
- name: 'Setup',
229
- modifiedBy: '--',
230
- moduleCountWithScript: 0,
231
- state: 'NEW',
232
- key: 'MOD1003',
233
- folder: true,
234
- children: [
235
- {
236
- ver: 1,
237
- hierarchy: 3,
238
- subModuleCount: 0,
239
- assigneeCount: 0,
240
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1101',
241
- modifiedByUname: '--',
242
- title: 'Initial Setup',
243
- scriptCount: 0,
244
- executionOrder: 1,
245
- createdByUname: 'Shivaprasad',
246
- parentId: 'MOD1003',
247
- path: '/Root/Home/Setup/Initial Setup',
248
- expanded: false,
249
- modifiedOn: '20-12-2023 09:00',
250
- parentName: 'Setup',
251
- moduleLevelScriptCount: 0,
252
- lastExecutionOrder: 0,
253
- imported: false,
254
- name: 'Initial Setup',
255
- modifiedBy: '--',
256
- moduleCountWithScript: 0,
257
- state: 'NEW',
258
- key: 'MOD1101',
259
- },
260
- {
261
- ver: 1,
262
- hierarchy: 3,
263
- subModuleCount: 0,
264
- assigneeCount: 0,
265
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1102',
266
- modifiedByUname: '--',
267
- title: 'Advanced Setup',
268
- scriptCount: 0,
269
- executionOrder: 2,
270
- createdByUname: 'Shivaprasad',
271
- parentId: 'MOD1003',
272
- path: '/Root/Home/Setup/Advanced Setup',
273
- expanded: false,
274
- modifiedOn: '20-12-2023 09:30',
275
- parentName: 'Setup',
276
- moduleLevelScriptCount: 0,
277
- lastExecutionOrder: 0,
278
- imported: false,
279
- name: 'Advanced Setup',
280
- modifiedBy: '--',
281
- moduleCountWithScript: 0,
282
- state: 'NEW',
283
- key: 'MOD1102',
284
- },
285
- {
286
- ver: 1,
287
- hierarchy: 3,
288
- subModuleCount: 0,
289
- assigneeCount: 0,
290
- searchKey: '/MOD1001/MOD1002/MOD1003/MOD1103',
291
- modifiedByUname: '--',
292
- title: 'Setup Review',
293
- scriptCount: 0,
294
- executionOrder: 3,
295
- createdByUname: 'Shivaprasad',
296
- parentId: 'MOD1003',
297
- path: '/Root/Home/Setup/Setup Review',
298
- expanded: false,
299
- modifiedOn: '20-12-2023 10:00',
300
- parentName: 'Setup',
301
- moduleLevelScriptCount: 0,
302
- lastExecutionOrder: 0,
303
- imported: false,
304
- name: 'Setup Review',
305
- modifiedBy: '--',
306
- moduleCountWithScript: 0,
307
- state: 'NEW',
308
- key: 'MOD1103',
309
- },
310
- ],
311
- },
312
- {
313
- ver: 1,
314
- hierarchy: 2,
315
- subModuleCount: 4,
316
- assigneeCount: 0,
317
- searchKey: '/MOD1001/MOD1002/MOD1004',
318
- modifiedByUname: '--',
319
- title: 'Authoring Cycle',
320
- scriptCount: 0,
321
- executionOrder: 2,
322
- createdByUname: 'Shivaprasad',
323
- parentId: 'MOD1002',
324
- path: '/Root/Home/Authoring Cycle',
325
- expanded: false,
326
- modifiedOn: '19-12-2023 16:40',
327
- parentName: 'Home',
328
- moduleLevelScriptCount: 0,
329
- lastExecutionOrder: 0,
330
- imported: false,
331
- name: 'Authoring Cycle',
332
- modifiedBy: '--',
333
- moduleCountWithScript: 0,
334
- state: 'NEW',
335
- key: 'MOD1004',
336
- folder: true,
337
- children: [
338
- {
339
- ver: 1,
340
- hierarchy: 3,
341
- subModuleCount: 0,
342
- assigneeCount: 0,
343
- searchKey: '/MOD1001/MOD1002/MOD1004/MOD1201',
344
- modifiedByUname: '--',
345
- title: 'Draft Authoring',
346
- scriptCount: 0,
347
- executionOrder: 1,
348
- createdByUname: 'Shivaprasad',
349
- parentId: 'MOD1004',
350
- path: '/Root/Home/Authoring Cycle/Draft Authoring',
351
- expanded: false,
352
- modifiedOn: '21-12-2023 11:00',
353
- parentName: 'Authoring Cycle',
354
- moduleLevelScriptCount: 0,
355
- lastExecutionOrder: 0,
356
- imported: false,
357
- name: 'Draft Authoring',
358
- modifiedBy: '--',
359
- moduleCountWithScript: 0,
360
- state: 'NEW',
361
- key: 'MOD1201',
362
- },
363
- {
364
- ver: 1,
365
- hierarchy: 3,
366
- subModuleCount: 0,
367
- assigneeCount: 0,
368
- searchKey: '/MOD1001/MOD1002/MOD1004/MOD1202',
369
- modifiedByUname: '--',
370
- title: 'Peer Review',
371
- scriptCount: 0,
372
- executionOrder: 2,
373
- createdByUname: 'Shivaprasad',
374
- parentId: 'MOD1004',
375
- path: '/Root/Home/Authoring Cycle/Peer Review',
376
- expanded: false,
377
- modifiedOn: '21-12-2023 11:30',
378
- parentName: 'Authoring Cycle',
379
- moduleLevelScriptCount: 0,
380
- lastExecutionOrder: 0,
381
- imported: false,
382
- name: 'Peer Review',
383
- modifiedBy: '--',
384
- moduleCountWithScript: 0,
385
- state: 'NEW',
386
- key: 'MOD1202',
387
- },
388
- ],
389
- },
390
- ],
391
- },
392
- {
393
- ver: 1,
394
- hierarchy: 2,
395
- subModuleCount: 0,
396
- assigneeCount: 0,
397
- searchKey: '/MOD1001/MOD1021/MOD1022',
398
- modifiedByUname: '--',
399
- title: 'Login',
400
- scriptCount: 0,
401
- executionOrder: 1,
402
- createdByUname: 'Natacha',
403
- parentId: 'MOD1021',
404
- path: '/Root/Test/Login',
405
- expanded: false,
406
- modifiedOn: '10-01-2024 20:57',
407
- parentName: 'Test',
408
- moduleLevelScriptCount: 0,
409
- lastExecutionOrder: 0,
410
- imported: false,
411
- name: 'Login',
412
- modifiedBy: '--',
413
- moduleCountWithScript: 0,
414
- state: 'NEW',
415
- key: 'MOD1022',
416
- },
417
- {
418
- subModuleCount: 5,
419
- title: 'Test',
420
- scriptCount: 0,
421
- path: '/Root/Test',
422
- expanded: false,
423
- modifiedOn: '10-01-2024 20:56',
424
- folder: true,
425
- children: [
426
- {
427
- ver: 1,
428
- hierarchy: 2,
429
- subModuleCount: 0,
430
- assigneeCount: 0,
431
- searchKey: '/MOD1001/MOD1021/MOD1022',
432
- modifiedByUname: '--',
433
- title: 'Login',
434
- scriptCount: 0,
435
- executionOrder: 1,
436
- createdByUname: 'Natacha',
437
- parentId: 'MOD1021',
438
- path: '/Root/Test/Login',
439
- expanded: false,
440
- modifiedOn: '10-01-2024 20:57',
441
- parentName: 'Test',
442
- moduleLevelScriptCount: 0,
443
- lastExecutionOrder: 0,
444
- imported: false,
445
- name: 'Login',
446
- modifiedBy: '--',
447
- moduleCountWithScript: 0,
448
- state: 'NEW',
449
- key: 'MOD1022',
450
- },
451
- ],
452
- },
453
- ],
454
- },
455
- {
456
- subModuleCount: 5,
457
- title: 'Test',
458
- scriptCount: 0,
459
- path: '/Root/Test',
460
- expanded: true,
461
- modifiedOn: '10-01-2024 20:56',
462
- folder: true,
463
- children: [
464
- {
465
- ver: 1,
466
- hierarchy: 2,
467
- subModuleCount: 0,
468
- assigneeCount: 0,
469
- searchKey: '/MOD1001/MOD1021/MOD1022',
470
- modifiedByUname: '--',
471
- title: 'Login',
472
- scriptCount: 0,
473
- executionOrder: 1,
474
- createdByUname: 'Natacha',
475
- parentId: 'MOD1021',
476
- path: '/Root/Test/Login',
477
- expanded: false,
478
- modifiedOn: '10-01-2024 20:57',
479
- parentName: 'Test',
480
- moduleLevelScriptCount: 0,
481
- lastExecutionOrder: 0,
482
- imported: false,
483
- name: 'Login',
484
- modifiedBy: '--',
485
- moduleCountWithScript: 0,
486
- state: 'NEW',
487
- key: 'MOD1022',
488
- },
489
- ],
490
- },
491
- {
492
- ver: 1,
493
- hierarchy: 1,
494
- subModuleCount: 0,
495
- assigneeCount: 0,
496
- searchKey: '/MOD1001/MOD1024',
497
- modifiedByUname: '--',
498
- title: 'Others',
499
- scriptCount: 0,
500
- executionOrder: 3,
501
- createdByUname: 'Solabs',
502
- parentId: 'MOD1001',
503
- path: '/Root/Others',
504
- expanded: false,
505
- modifiedOn: '18-01-2024 16:14',
506
- parentName: 'Root Module',
507
- folder: true,
508
- moduleLevelScriptCount: 0,
509
- lastExecutionOrder: 0,
510
- imported: false,
511
- name: 'Others',
512
- modifiedBy: '--',
513
- moduleCountWithScript: 0,
514
- state: 'NEW',
515
- key: 'MOD1024',
516
- children: [ {
517
- subModuleCount: 5,
518
- title: 'Test',
519
- scriptCount: 0,
520
- path: '/Root/Test',
521
- expanded: false,
522
- modifiedOn: '10-01-2024 20:56',
523
- folder: true,
524
- children: [
525
- {
526
- ver: 1,
527
- hierarchy: 2,
528
- subModuleCount: 0,
529
- assigneeCount: 0,
530
- searchKey: '/MOD1001/MOD1021/MOD1022',
531
- modifiedByUname: '--',
532
- title: 'Login',
533
- scriptCount: 0,
534
- executionOrder: 1,
535
- createdByUname: 'Natacha',
536
- parentId: 'MOD1021',
537
- path: '/Root/Test/Login',
538
- expanded: false,
539
- modifiedOn: '10-01-2024 20:57',
540
- parentName: 'Test',
541
- moduleLevelScriptCount: 0,
542
- lastExecutionOrder: 0,
543
- imported: false,
544
- name: 'Login',
545
- modifiedBy: '--',
546
- moduleCountWithScript: 0,
547
- state: 'NEW',
548
- key: 'MOD1022',
549
- },
550
- ],
551
- },],
552
- },
553
- ],
554
- lastExecutionOrder: 3,
555
- imported: false,
556
- modifiedBy: '--',
557
- moduleCountWithScript: 1,
558
- state: 'NEW',
559
- key: 'MOD1001',
560
- ver: 1,
561
- hierarchy: 0,
562
- assigneeCount: 0,
563
- searchKey: '/MOD1001',
564
- modifiedByUname: '--',
565
- executionOrder: 0,
566
- createdByUname: 'Shivaprasad',
567
- folder: true,
568
- moduleLevelScriptCount: 0,
569
- name: 'Root Module',
3
+ node: {
4
+ subModuleCount: 15,
5
+ title: 'FIreFlink',
6
+ scriptCount: 0,
7
+ path: '/Root',
8
+ expanded: true,
9
+ modifiedOn: '19-12-2023 15:32',
10
+ children: false,
11
+ lastExecutionOrder: 3,
12
+ imported: false,
13
+ modifiedBy: '--',
14
+ moduleCountWithScript: 1,
15
+ state: 'NEW',
16
+ key: 'MOD1001',
17
+ ver: 1,
18
+ hierarchy: 0,
19
+ assigneeCount: 0,
20
+ searchKey: '/MOD100111111',
21
+ modifiedByUname: '--',
22
+ executionOrder: 0,
23
+ createdByUname: 'Shivaprasad',
24
+ folder: true,
25
+ moduleLevelScriptCount: 0,
26
+ name: 'Root Module',
27
+ },
28
+ level: 0,
29
+ },
30
+ {
31
+ node: {
32
+ subModuleCount: 15,
33
+ title: 'FIreFlink---------------s',
34
+ scriptCount: 0,
35
+ path: '/Root',
36
+ expanded: true,
37
+ modifiedOn: '19-12-2023 15:32',
38
+ children: false,
39
+ lastExecutionOrder: 3,
40
+ imported: false,
41
+ modifiedBy: '--',
42
+ moduleCountWithScript: 1,
43
+ state: 'NEW',
44
+ key: 'MOD1001',
45
+ ver: 1,
46
+ hierarchy: 0,
47
+ assigneeCount: 0,
48
+ searchKey: '/MOD1001111110000000000',
49
+ modifiedByUname: '--',
50
+ executionOrder: 0,
51
+ createdByUname: 'Shivaprasad',
52
+ folder: true,
53
+ moduleLevelScriptCount: 0,
54
+ name: 'Root Module',
55
+ },
56
+ level: 1,
57
+ },
58
+ {
59
+ node: {
60
+ subModuleCount: 10,
61
+ title: 'Home',
62
+ scriptCount: 0,
63
+ path: '/Root/Home',
64
+ expanded: true,
65
+ modifiedOn: '19-12-2023 15:43',
66
+ folder: true,
67
+ children: false,
68
+ },
69
+ level: 1,
70
+ },
71
+ {
72
+ node: {
73
+ ver: 1,
74
+ hierarchy: 2,
75
+ subModuleCount: 4,
76
+ assigneeCount: 0,
77
+ searchKey: '/MOD1001/MOD1002/MOD10031111',
78
+ modifiedByUname: '--',
79
+ title: 'Setup',
80
+ scriptCount: 0,
81
+ executionOrder: 1,
82
+ createdByUname: 'Shivaprasad',
83
+ parentId: 'MOD1002',
84
+ path: '/Root/Home/Setup',
85
+ expanded: false,
86
+ modifiedOn: '19-12-2023 16:40',
87
+ parentName: 'Home',
88
+ moduleLevelScriptCount: 0,
89
+ lastExecutionOrder: 0,
90
+ imported: false,
91
+ name: 'Setup',
92
+ modifiedBy: '--',
93
+ moduleCountWithScript: 0,
94
+ state: 'NEW',
95
+ key: 'MOD1003',
96
+ folder: true,
97
+ children: false,
98
+ },
99
+ level: 2,
100
+ },
101
+ {
102
+ node: {
103
+ ver: 1,
104
+ hierarchy: 3,
105
+ subModuleCount: 0,
106
+ assigneeCount: 0,
107
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1101',
108
+ modifiedByUname: '--',
109
+ title: 'Initial Setup',
110
+ scriptCount: 0,
111
+ executionOrder: 1,
112
+ createdByUname: 'Shivaprasad',
113
+ parentId: 'MOD1003',
114
+ path: '/Root/Home/Setup/Initial Setup',
115
+ expanded: false,
116
+ modifiedOn: '20-12-2023 09:00',
117
+ parentName: 'Setup',
118
+ moduleLevelScriptCount: 0,
119
+ lastExecutionOrder: 0,
120
+ imported: false,
121
+ name: 'Initial Setup',
122
+ modifiedBy: '--',
123
+ moduleCountWithScript: 0,
124
+ state: 'NEW',
125
+ key: 'MOD1101',
126
+ children: true,
127
+ },
128
+ level: 3,
129
+ },
130
+ {
131
+ node: {
132
+ ver: 1,
133
+ hierarchy: 3,
134
+ subModuleCount: 0,
135
+ assigneeCount: 0,
136
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1102',
137
+ modifiedByUname: '--',
138
+ title: 'Advanced Setup',
139
+ scriptCount: 0,
140
+ executionOrder: 2,
141
+ createdByUname: 'Shivaprasad',
142
+ parentId: 'MOD1003',
143
+ path: '/Root/Home/Setup/Advanced Setup',
144
+ expanded: false,
145
+ modifiedOn: '20-12-2023 09:30',
146
+ parentName: 'Setup',
147
+ moduleLevelScriptCount: 0,
148
+ lastExecutionOrder: 0,
149
+ imported: false,
150
+ name: 'Advanced Setup',
151
+ modifiedBy: '--',
152
+ moduleCountWithScript: 0,
153
+ state: 'NEW',
154
+ key: 'MOD1102',
155
+ children: true,
156
+ },
157
+ level: 3,
158
+ },
159
+ {
160
+ node: {
161
+ ver: 1,
162
+ hierarchy: 3,
163
+ subModuleCount: 0,
164
+ assigneeCount: 0,
165
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1103',
166
+ modifiedByUname: '--',
167
+ title: 'Setup Review',
168
+ scriptCount: 0,
169
+ executionOrder: 3,
170
+ createdByUname: 'Shivaprasad',
171
+ parentId: 'MOD1003',
172
+ path: '/Root/Home/Setup/Setup Review',
173
+ expanded: false,
174
+ modifiedOn: '20-12-2023 10:00',
175
+ parentName: 'Setup',
176
+ moduleLevelScriptCount: 0,
177
+ lastExecutionOrder: 0,
178
+ imported: false,
179
+ name: 'Setup Review',
180
+ modifiedBy: '--',
181
+ moduleCountWithScript: 0,
182
+ state: 'NEW',
183
+ key: 'MOD1103',
184
+ children: true,
185
+ },
186
+ level: 3,
187
+ },
188
+ {
189
+ node: {
190
+ ver: 1,
191
+ hierarchy: 2,
192
+ subModuleCount: 4,
193
+ assigneeCount: 0,
194
+ searchKey: '/MOD1001/MOD1002/MOD1004',
195
+ modifiedByUname: '--',
196
+ title: 'Authoring',
197
+ scriptCount: 0,
198
+ executionOrder: 2,
199
+ createdByUname: 'Shivaprasad',
200
+ parentId: 'MOD1002',
201
+ path: '/Root/Home/Authoring Cycle',
202
+ expanded: false,
203
+ modifiedOn: '19-12-2023 16:40',
204
+ parentName: 'Home',
205
+ moduleLevelScriptCount: 0,
206
+ lastExecutionOrder: 0,
207
+ imported: false,
208
+ name: 'Authoring Cycle',
209
+ modifiedBy: '--',
210
+ moduleCountWithScript: 0,
211
+ state: 'NEW',
212
+ key: 'MOD1004',
213
+ folder: true,
214
+ children: false,
215
+ },
216
+ level: 2,
217
+ },
218
+ {
219
+ node: {
220
+ ver: 1,
221
+ hierarchy: 3,
222
+ subModuleCount: 0,
223
+ assigneeCount: 0,
224
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1201',
225
+ modifiedByUname: '--',
226
+ title: 'Draft Authoring',
227
+ scriptCount: 0,
228
+ executionOrder: 1,
229
+ createdByUname: 'Shivaprasad',
230
+ parentId: 'MOD1004',
231
+ path: '/Root/Home/Authoring Cycle/Draft Authoring',
232
+ expanded: false,
233
+ modifiedOn: '21-12-2023 11:00',
234
+ parentName: 'Authoring Cycle',
235
+ moduleLevelScriptCount: 0,
236
+ lastExecutionOrder: 0,
237
+ imported: false,
238
+ name: 'Draft Authoring',
239
+ modifiedBy: '--',
240
+ moduleCountWithScript: 0,
241
+ state: 'NEW',
242
+ key: 'MOD1201',
243
+ children: true,
244
+ },
245
+ level: 3,
246
+ },
247
+ {
248
+ node: {
249
+ ver: 1,
250
+ hierarchy: 3,
251
+ subModuleCount: 0,
252
+ assigneeCount: 0,
253
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1202',
254
+ modifiedByUname: '--',
255
+ title: 'Peer Review',
256
+ scriptCount: 0,
257
+ executionOrder: 2,
258
+ createdByUname: 'Shivaprasad',
259
+ parentId: 'MOD1004',
260
+ path: '/Root/Home/Authoring Cycle/Peer Review',
261
+ expanded: false,
262
+ modifiedOn: '21-12-2023 11:30',
263
+ parentName: 'Authoring Cycle',
264
+ moduleLevelScriptCount: 0,
265
+ lastExecutionOrder: 0,
266
+ imported: false,
267
+ name: 'Peer Review',
268
+ modifiedBy: '--',
269
+ moduleCountWithScript: 0,
270
+ state: 'NEW',
271
+ key: 'MOD1202',
272
+ children: true,
273
+ },
274
+ level: 3,
275
+ },
276
+ {
277
+ node: {
278
+ subModuleCount: 10,
279
+ title: 'Home',
280
+ scriptCount: 0,
281
+ path: '/Root/Home',
282
+ expanded: false,
283
+ modifiedOn: '19-12-2023 15:43',
284
+ folder: true,
285
+ children: false,
286
+ },
287
+ level: 2,
288
+ },
289
+ {
290
+ node: {
291
+ ver: 1,
292
+ hierarchy: 2,
293
+ subModuleCount: 4,
294
+ assigneeCount: 0,
295
+ searchKey: '/MOD1001/MOD1002/MOD1003',
296
+ modifiedByUname: '--',
297
+ title: 'Setup',
298
+ scriptCount: 0,
299
+ executionOrder: 1,
300
+ createdByUname: 'Shivaprasad',
301
+ parentId: 'MOD1002',
302
+ path: '/Root/Home/Setup',
303
+ expanded: false,
304
+ modifiedOn: '19-12-2023 16:40',
305
+ parentName: 'Home',
306
+ moduleLevelScriptCount: 0,
307
+ lastExecutionOrder: 0,
308
+ imported: false,
309
+ name: 'Setup',
310
+ modifiedBy: '--',
311
+ moduleCountWithScript: 0,
312
+ state: 'NEW',
313
+ key: 'MOD1003',
314
+ folder: true,
315
+ children: false,
316
+ },
317
+ level: 3,
318
+ },
319
+ {
320
+ node: {
321
+ ver: 1,
322
+ hierarchy: 3,
323
+ subModuleCount: 0,
324
+ assigneeCount: 0,
325
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1101',
326
+ modifiedByUname: '--',
327
+ title: 'Initial Setup',
328
+ scriptCount: 0,
329
+ executionOrder: 1,
330
+ createdByUname: 'Shivaprasad',
331
+ parentId: 'MOD1003',
332
+ path: '/Root/Home/Setup/Initial Setup',
333
+ expanded: false,
334
+ modifiedOn: '20-12-2023 09:00',
335
+ parentName: 'Setup',
336
+ moduleLevelScriptCount: 0,
337
+ lastExecutionOrder: 0,
338
+ imported: false,
339
+ name: 'Initial Setup',
340
+ modifiedBy: '--',
341
+ moduleCountWithScript: 0,
342
+ state: 'NEW',
343
+ key: 'MOD1101',
344
+ children: true,
345
+ },
346
+ level: 4,
347
+ },
348
+ {
349
+ node: {
350
+ ver: 1,
351
+ hierarchy: 3,
352
+ subModuleCount: 0,
353
+ assigneeCount: 0,
354
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1102',
355
+ modifiedByUname: '--',
356
+ title: 'Advanced Setup',
357
+ scriptCount: 0,
358
+ executionOrder: 2,
359
+ createdByUname: 'Shivaprasad',
360
+ parentId: 'MOD1003',
361
+ path: '/Root/Home/Setup/Advanced Setup',
362
+ expanded: false,
363
+ modifiedOn: '20-12-2023 09:30',
364
+ parentName: 'Setup',
365
+ moduleLevelScriptCount: 0,
366
+ lastExecutionOrder: 0,
367
+ imported: false,
368
+ name: 'Advanced Setup',
369
+ modifiedBy: '--',
370
+ moduleCountWithScript: 0,
371
+ state: 'NEW',
372
+ key: 'MOD1102',
373
+ children: true,
374
+ },
375
+ level: 4,
376
+ },
377
+ {
378
+ node: {
379
+ ver: 1,
380
+ hierarchy: 3,
381
+ subModuleCount: 0,
382
+ assigneeCount: 0,
383
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1103',
384
+ modifiedByUname: '--',
385
+ title: 'Setup Review',
386
+ scriptCount: 0,
387
+ executionOrder: 3,
388
+ createdByUname: 'Shivaprasad',
389
+ parentId: 'MOD1003',
390
+ path: '/Root/Home/Setup/Setup Review',
391
+ expanded: false,
392
+ modifiedOn: '20-12-2023 10:00',
393
+ parentName: 'Setup',
394
+ moduleLevelScriptCount: 0,
395
+ lastExecutionOrder: 0,
396
+ imported: false,
397
+ name: 'Setup Review',
398
+ modifiedBy: '--',
399
+ moduleCountWithScript: 0,
400
+ state: 'NEW',
401
+ key: 'MOD1103',
402
+ children: true,
403
+ },
404
+ level: 4,
405
+ },
406
+ {
407
+ node: {
408
+ ver: 1,
409
+ hierarchy: 2,
410
+ subModuleCount: 4,
411
+ assigneeCount: 0,
412
+ searchKey: '/MOD1001/MOD1002/MOD1004',
413
+ modifiedByUname: '--',
414
+ title: 'Authoring Cycle',
415
+ scriptCount: 0,
416
+ executionOrder: 2,
417
+ createdByUname: 'Shivaprasad',
418
+ parentId: 'MOD1002',
419
+ path: '/Root/Home/Authoring Cycle',
420
+ expanded: false,
421
+ modifiedOn: '19-12-2023 16:40',
422
+ parentName: 'Home',
423
+ moduleLevelScriptCount: 0,
424
+ lastExecutionOrder: 0,
425
+ imported: false,
426
+ name: 'Authoring Cycle',
427
+ modifiedBy: '--',
428
+ moduleCountWithScript: 0,
429
+ state: 'NEW',
430
+ key: 'MOD1004',
431
+ folder: true,
432
+ children: false,
433
+ },
434
+ level: 3,
435
+ },
436
+ {
437
+ node: {
438
+ ver: 1,
439
+ hierarchy: 3,
440
+ subModuleCount: 0,
441
+ assigneeCount: 0,
442
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1201',
443
+ modifiedByUname: '--',
444
+ title: 'Draft Authoring',
445
+ scriptCount: 0,
446
+ executionOrder: 1,
447
+ createdByUname: 'Shivaprasad',
448
+ parentId: 'MOD1004',
449
+ path: '/Root/Home/Authoring Cycle/Draft Authoring',
450
+ expanded: false,
451
+ modifiedOn: '21-12-2023 11:00',
452
+ parentName: 'Authoring Cycle',
453
+ moduleLevelScriptCount: 0,
454
+ lastExecutionOrder: 0,
455
+ imported: false,
456
+ name: 'Draft Authoring',
457
+ modifiedBy: '--',
458
+ moduleCountWithScript: 0,
459
+ state: 'NEW',
460
+ key: 'MOD1201',
461
+ children: true,
462
+ },
463
+ level: 4,
464
+ },
465
+ {
466
+ node: {
467
+ ver: 1,
468
+ hierarchy: 3,
469
+ subModuleCount: 0,
470
+ assigneeCount: 0,
471
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1202',
472
+ modifiedByUname: '--',
473
+ title: 'Peer Review',
474
+ scriptCount: 0,
475
+ executionOrder: 2,
476
+ createdByUname: 'Shivaprasad',
477
+ parentId: 'MOD1004',
478
+ path: '/Root/Home/Authoring Cycle/Peer Review',
479
+ expanded: false,
480
+ modifiedOn: '21-12-2023 11:30',
481
+ parentName: 'Authoring Cycle',
482
+ moduleLevelScriptCount: 0,
483
+ lastExecutionOrder: 0,
484
+ imported: false,
485
+ name: 'Peer Review',
486
+ modifiedBy: '--',
487
+ moduleCountWithScript: 0,
488
+ state: 'NEW',
489
+ key: 'MOD1202',
490
+ children: true,
491
+ },
492
+ level: 4,
493
+ },
494
+ {
495
+ node: {
496
+ ver: 1,
497
+ hierarchy: 2,
498
+ subModuleCount: 0,
499
+ assigneeCount: 0,
500
+ searchKey: '/MOD1001/D1021/MOD1022',
501
+ modifiedByUname: '--',
502
+ title: 'Login',
503
+ scriptCount: 0,
504
+ executionOrder: 1,
505
+ createdByUname: 'Natacha',
506
+ parentId: 'MOD1021',
507
+ path: '/Root/Test/Login',
508
+ expanded: false,
509
+ modifiedOn: '10-01-2024 20:57',
510
+ parentName: 'Test',
511
+ moduleLevelScriptCount: 0,
512
+ lastExecutionOrder: 0,
513
+ imported: false,
514
+ name: 'Login',
515
+ modifiedBy: '--',
516
+ moduleCountWithScript: 0,
517
+ state: 'NEW',
518
+ key: 'MOD1022',
519
+ children: true,
520
+ },
521
+ level: 2,
522
+ },
523
+ {
524
+ node: {
525
+ subModuleCount: 5,
526
+ title: 'Test',
527
+ scriptCount: 0,
528
+ path: '/Root/Test',
529
+ expanded: false,
530
+ modifiedOn: '10-01-2024 20:56',
531
+ folder: true,
532
+ children: false,
533
+ },
534
+ level: 2,
535
+ },
536
+ {
537
+ node: {
538
+ ver: 1,
539
+ hierarchy: 2,
540
+ subModuleCount: 0,
541
+ assigneeCount: 0,
542
+ searchKey: '/MOD1001/MOD1021/MOD1022',
543
+ modifiedByUname: '--',
544
+ title: 'Login',
545
+ scriptCount: 0,
546
+ executionOrder: 1,
547
+ createdByUname: 'Natacha',
548
+ parentId: 'MOD1021',
549
+ path: '/Root/Test/Login',
550
+ expanded: false,
551
+ modifiedOn: '10-01-2024 20:57',
552
+ parentName: 'Test',
553
+ moduleLevelScriptCount: 0,
554
+ lastExecutionOrder: 0,
555
+ imported: false,
556
+ name: 'Login',
557
+ modifiedBy: '--',
558
+ moduleCountWithScript: 0,
559
+ state: 'NEW',
560
+ key: 'MOD1022',
561
+ children: true,
562
+ },
563
+ level: 3,
564
+ },
565
+ {
566
+ node: {
567
+ subModuleCount: 5,
568
+ title: 'Test',
569
+ scriptCount: 0,
570
+ path: '/Root/Test',
571
+ expanded: true,
572
+ modifiedOn: '10-01-2024 20:56',
573
+ folder: true,
574
+ children: false,
575
+ },
576
+ level: 1,
577
+ },
578
+ {
579
+ node: {
580
+ ver: 1,
581
+ hierarchy: 2,
582
+ subModuleCount: 0,
583
+ assigneeCount: 0,
584
+ searchKey: '/MOD1001/MOD1021/MOD10',
585
+ modifiedByUname: '--',
586
+ title: 'Login',
587
+ scriptCount: 0,
588
+ executionOrder: 1,
589
+ createdByUname: 'Natacha',
590
+ parentId: 'MOD1021',
591
+ path: '/Root/Test/Login',
592
+ expanded: false,
593
+ modifiedOn: '10-01-2024 20:57',
594
+ parentName: 'Test',
595
+ moduleLevelScriptCount: 0,
596
+ lastExecutionOrder: 0,
597
+ imported: false,
598
+ name: 'Login',
599
+ modifiedBy: '--',
600
+ moduleCountWithScript: 0,
601
+ state: 'NEW',
602
+ key: 'MOD1022',
603
+ children: true,
604
+ },
605
+ level: 2,
606
+ },
607
+ {
608
+ node: {
609
+ ver: 1,
610
+ hierarchy: 1,
611
+ subModuleCount: 0,
612
+ assigneeCount: 0,
613
+ searchKey: '/MOD1001/MOD1024',
614
+ modifiedByUname: '--',
615
+ title: 'Others',
616
+ scriptCount: 0,
617
+ executionOrder: 3,
618
+ createdByUname: 'Solabs',
619
+ parentId: 'MOD1001',
620
+ path: '/Root/Others',
621
+ expanded: false,
622
+ modifiedOn: '18-01-2024 16:14',
623
+ parentName: 'Root Module',
624
+ folder: true,
625
+ moduleLevelScriptCount: 0,
626
+ lastExecutionOrder: 0,
627
+ imported: false,
628
+ name: 'Others',
629
+ modifiedBy: '--',
630
+ moduleCountWithScript: 0,
631
+ state: 'NEW',
632
+ key: 'MOD1024',
633
+ children: false,
634
+ },
635
+ level: 1,
636
+ },
637
+ {
638
+ node: {
639
+ subModuleCount: 5,
640
+ title: 'Test',
641
+ scriptCount: 0,
642
+ path: '/Root/Test',
643
+ expanded: false,
644
+ modifiedOn: '10-01-2024 20:56',
645
+ folder: true,
646
+ children: false,
647
+ },
648
+ level: 2,
649
+ },
650
+ {
651
+ node: {
652
+ ver: 1,
653
+ hierarchy: 2,
654
+ subModuleCount: 0,
655
+ assigneeCount: 0,
656
+ searchKey: '/MOD1001/M1021/MOD1022',
657
+ modifiedByUname: '--',
658
+ title: 'Login',
659
+ scriptCount: 0,
660
+ executionOrder: 1,
661
+ createdByUname: 'Natacha',
662
+ parentId: 'MOD1021',
663
+ path: '/Root/Test/Login',
664
+ expanded: false,
665
+ modifiedOn: '10-01-2024 20:57',
666
+ parentName: 'Test',
667
+ moduleLevelScriptCount: 0,
668
+ lastExecutionOrder: 0,
669
+ imported: false,
670
+ name: 'Login',
671
+ modifiedBy: '--',
672
+ moduleCountWithScript: 0,
673
+ state: 'NEW',
674
+ key: 'MOD1022',
675
+ children: true,
676
+ },
677
+ level: 3,
570
678
  },
571
679
  ];
572
680
 
573
- export default extendedData;
681
+ export default data;