pixel-react 1.5.9 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/lib/components/AppHeader/AppHeader.d.ts +1 -0
  3. package/lib/components/AppHeader/types.d.ts +18 -6
  4. package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
  5. package/lib/components/Charts/DashboardDonutChart/types.d.ts +2 -0
  6. package/lib/components/Excel/ExcelToolBar/ExcelToolBar.d.ts +0 -1
  7. package/lib/components/FieldSet/FieldSet.d.ts +5 -0
  8. package/lib/components/FieldSet/index.d.ts +1 -0
  9. package/lib/components/FieldSet/types.d.ts +7 -0
  10. package/lib/components/FileDropzone/types.d.ts +8 -0
  11. package/lib/components/MachineInputField/types.d.ts +1 -1
  12. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  13. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +1 -0
  14. package/lib/components/PopUpModal/PopUpModal.d.ts +5 -0
  15. package/lib/components/PopUpModal/types.d.ts +14 -0
  16. package/lib/components/RadioGroup/radioGroupTypes.d.ts +20 -0
  17. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.d.ts +2 -1
  18. package/lib/components/SequentialConnectingBranch/components/Branches/Branches.d.ts +1 -1
  19. package/lib/components/SequentialConnectingBranch/components/Branches/types.d.ts +3 -2
  20. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.d.ts +1 -1
  21. package/lib/components/SequentialConnectingBranch/components/ConnectingBranches/types.d.ts +3 -2
  22. package/lib/components/SequentialConnectingBranch/types.d.ts +11 -3
  23. package/lib/components/TableTree/TableTree.d.ts +4 -24
  24. package/lib/components/TableTree/data.d.ts +112 -273
  25. package/lib/components/TableTree/types.d.ts +28 -0
  26. package/lib/index.d.ts +149 -32
  27. package/lib/index.esm.js +1104 -742
  28. package/lib/index.esm.js.map +1 -1
  29. package/lib/index.js +1109 -742
  30. package/lib/index.js.map +1 -1
  31. package/lib/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +2 -2
  33. package/src/assets/Themes/BaseTheme.scss +5 -14
  34. package/src/assets/Themes/DarkTheme.scss +5 -2
  35. package/src/assets/icons/arrow_up.svg +1 -1
  36. package/src/assets/icons/export.svg +5 -0
  37. package/src/assets/icons/import.svg +5 -0
  38. package/src/assets/icons/info_icon.svg +4 -16
  39. package/src/assets/icons/replace_file.svg +14 -0
  40. package/src/assets/icons/web_service_icon.svg +3 -0
  41. package/src/assets/styles/_fonts.scss +4 -2
  42. package/src/components/AppHeader/AppHeader.stories.tsx +242 -39
  43. package/src/components/AppHeader/AppHeader.tsx +158 -139
  44. package/src/components/AppHeader/types.ts +19 -6
  45. package/src/components/Charts/BarChart/BarChart.scss +34 -34
  46. package/src/components/Charts/BarChart/BarChart.stories.tsx +3 -2
  47. package/src/components/Charts/BarChart/BarChart.tsx +79 -55
  48. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +25 -18
  49. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +31 -11
  50. package/src/components/Charts/DashboardDonutChart/types.ts +2 -0
  51. package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +3 -0
  52. package/src/components/Charts/LineChart/LineChart.scss +13 -4
  53. package/src/components/Charts/LineChart/LineChart.stories.tsx +100 -102
  54. package/src/components/Charts/LineChart/LineChart.tsx +143 -131
  55. package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +23 -2
  56. package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +109 -24
  57. package/src/components/Charts/PieChart/PieChart.scss +5 -3
  58. package/src/components/Charts/PieChart/PieChart.tsx +1 -2
  59. package/src/components/Checkbox/Checkbox.tsx +1 -7
  60. package/src/components/DatePicker/DatePicker.scss +15 -1
  61. package/src/components/DragAndDrop/DragAndDropList.tsx +5 -4
  62. package/src/components/Excel/ExcelFile/ExcelFile.scss +1 -1
  63. package/src/components/Excel/ExcelFile/ExcelFile.tsx +34 -20
  64. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +0 -1
  65. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +44 -15
  66. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +47 -4
  67. package/src/components/FieldSet/FieldSet.scss +9 -0
  68. package/src/components/FieldSet/FieldSet.stories.tsx +103 -0
  69. package/src/components/FieldSet/FieldSet.tsx +29 -0
  70. package/src/components/FieldSet/index.ts +1 -0
  71. package/src/components/FieldSet/types.ts +8 -0
  72. package/src/components/FileDropzone/FileDropzone.scss +1 -1
  73. package/src/components/FileDropzone/FileDropzone.stories.tsx +15 -3
  74. package/src/components/FileDropzone/FileDropzone.tsx +5 -0
  75. package/src/components/FileDropzone/FilePreview.tsx +1 -1
  76. package/src/components/FileDropzone/types.ts +8 -0
  77. package/src/components/Icon/Icons.scss +1 -1
  78. package/src/components/Icon/iconList.ts +11 -7
  79. package/src/components/MachineInputField/MachineInputField.scss +15 -2
  80. package/src/components/MachineInputField/MachineInputField.tsx +17 -3
  81. package/src/components/MachineInputField/types.ts +1 -1
  82. package/src/components/MultiSelect/Dropdown.tsx +7 -3
  83. package/src/components/MultiSelect/MultiSelect.stories.tsx +6 -1
  84. package/src/components/MultiSelect/MultiSelect.tsx +4 -20
  85. package/src/components/MultiSelect/MultiSelectTypes.ts +2 -0
  86. package/src/components/PopUpModal/PopUpModal.scss +36 -0
  87. package/src/components/PopUpModal/PopUpModal.stories.tsx +61 -0
  88. package/src/components/PopUpModal/PopUpModal.tsx +85 -0
  89. package/src/components/PopUpModal/types.ts +14 -0
  90. package/src/components/RadioGroup/RadioGroup.scss +7 -0
  91. package/src/components/RadioGroup/RadioGroup.stories.tsx +26 -0
  92. package/src/components/RadioGroup/RadioGroup.tsx +16 -0
  93. package/src/components/RadioGroup/radioGroupTypes.tsx +24 -0
  94. package/src/components/Select/Select.tsx +3 -4
  95. package/src/components/Select/components/Dropdown.tsx +34 -34
  96. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +9 -0
  97. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +74 -43
  98. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +9 -3
  99. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +45 -14
  100. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +9 -2
  101. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +3 -1
  102. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +9 -2
  103. package/src/components/SequentialConnectingBranch/types.ts +18 -3
  104. package/src/components/TableTree/TableTree.scss +154 -123
  105. package/src/components/TableTree/TableTree.stories.tsx +148 -96
  106. package/src/components/TableTree/TableTree.tsx +250 -282
  107. package/src/components/TableTree/data.ts +318 -569
  108. package/src/components/TableTree/types.ts +30 -0
  109. package/src/components/Toast/Toast.tsx +1 -1
  110. package/src/index.ts +11 -0
@@ -1,573 +1,322 @@
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
+ parentId: null, // Root has no parent
28
+ id: 'MOD1001', // Unique ID
29
+ },
30
+ level: 0,
31
+ },
32
+ {
33
+ node: {
34
+ subModuleCount: 15,
35
+ title: 'mod1',
36
+ scriptCount: 0,
37
+ path: '/Root',
38
+ expanded: true,
39
+ modifiedOn: '19-12-2023 15:32',
40
+ children: false,
41
+ lastExecutionOrder: 3,
42
+ imported: false,
43
+ modifiedBy: '--',
44
+ moduleCountWithScript: 1,
45
+ state: 'NEW',
46
+ key: 'MOD1001',
47
+ ver: 1,
48
+ hierarchy: 0,
49
+ assigneeCount: 0,
50
+ searchKey: '/MOD1001111110000000000',
51
+ modifiedByUname: '--',
52
+ executionOrder: 0,
53
+ createdByUname: 'Shivaprasad',
54
+ folder: true,
55
+ moduleLevelScriptCount: 0,
56
+ name: 'Root Module',
57
+ parentId: 'MOD1001', // Root has no parent
58
+ id: 'MOD1002', // Unique ID
59
+ },
60
+ level: 1,
61
+ },
62
+ {
63
+ node: {
64
+ subModuleCount: 10,
65
+ title: 'Home',
66
+ scriptCount: 0,
67
+ path: '/Root/Home',
68
+ expanded: true,
69
+ modifiedOn: '19-12-2023 15:43',
70
+ folder: true,
71
+ children: false,
72
+ parentId: 'MOD1001', // Parent is '/Root'
73
+ id: 'MOD1003', // Unique ID
74
+ },
75
+ level: 1,
76
+ },
77
+ {
78
+ node: {
79
+ ver: 1,
80
+ hierarchy: 2,
81
+ subModuleCount: 4,
82
+ assigneeCount: 0,
83
+ searchKey: '/MOD1001/MOD1002/MOD10031111',
84
+ modifiedByUname: '--',
85
+ title: 'Setup',
86
+ scriptCount: 0,
87
+ executionOrder: 1,
88
+ createdByUname: 'Shivaprasad',
89
+ parentId: 'MOD1003', // Parent is 'Home'
90
+ path: '/Root/Home/Setup',
91
+ expanded: false,
92
+ modifiedOn: '19-12-2023 16:40',
93
+ parentName: 'Home',
94
+ moduleLevelScriptCount: 0,
95
+ lastExecutionOrder: 0,
96
+ imported: false,
97
+ name: 'Setup',
98
+ modifiedBy: '--',
99
+ moduleCountWithScript: 0,
100
+ state: 'NEW',
101
+ key: 'MOD1003',
102
+ folder: true,
103
+ children: false,
104
+ id: 'MOD1004', // Unique ID
105
+ },
106
+ level: 2,
107
+ },
108
+ {
109
+ node: {
110
+ ver: 1,
111
+ hierarchy: 3,
112
+ subModuleCount: 0,
113
+ assigneeCount: 0,
114
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1101',
115
+ modifiedByUname: '--',
116
+ title: 'Initial Setup',
117
+ scriptCount: 0,
118
+ executionOrder: 1,
119
+ createdByUname: 'Shivaprasad',
120
+ parentId: 'MOD1004', // Parent is 'Setup'
121
+ path: '/Root/Home/Setup/Initial Setup',
122
+ expanded: false,
123
+ modifiedOn: '20-12-2023 09:00',
124
+ parentName: 'Setup',
125
+ moduleLevelScriptCount: 0,
126
+ lastExecutionOrder: 0,
127
+ imported: false,
128
+ name: 'Initial Setup',
129
+ modifiedBy: '--',
130
+ moduleCountWithScript: 0,
131
+ state: 'NEW',
132
+ key: 'MOD1101',
133
+ children: true,
134
+ id: 'MOD1101', // Unique ID
135
+ },
136
+ level: 3,
137
+ },
138
+ {
139
+ node: {
140
+ ver: 1,
141
+ hierarchy: 3,
142
+ subModuleCount: 0,
143
+ assigneeCount: 0,
144
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1102',
145
+ modifiedByUname: '--',
146
+ title: 'Advanced Setup',
147
+ scriptCount: 0,
148
+ executionOrder: 2,
149
+ createdByUname: 'Shivaprasad',
150
+ parentId: 'MOD1004', // Parent is 'Setup'
151
+ path: '/Root/Home/Setup/Advanced Setup',
152
+ expanded: false,
153
+ modifiedOn: '20-12-2023 09:30',
154
+ parentName: 'Setup',
155
+ moduleLevelScriptCount: 0,
156
+ lastExecutionOrder: 0,
157
+ imported: false,
158
+ name: 'Advanced Setup',
159
+ modifiedBy: '--',
160
+ moduleCountWithScript: 0,
161
+ state: 'NEW',
162
+ key: 'MOD1102',
163
+ children: true,
164
+ id: 'MOD1102', // Unique ID
165
+ },
166
+ level: 3,
167
+ },
168
+ {
169
+ node: {
170
+ ver: 1,
171
+ hierarchy: 3,
172
+ subModuleCount: 0,
173
+ assigneeCount: 0,
174
+ searchKey: '/MOD1001/MOD1002/MOD1003/MOD1103',
175
+ modifiedByUname: '--',
176
+ title: 'Setup Review',
177
+ scriptCount: 0,
178
+ executionOrder: 3,
179
+ createdByUname: 'Shivaprasad',
180
+ parentId: 'MOD1004', // Parent is 'Setup'
181
+ path: '/Root/Home/Setup/Setup Review',
182
+ expanded: false,
183
+ modifiedOn: '20-12-2023 10:00',
184
+ parentName: 'Setup',
185
+ moduleLevelScriptCount: 0,
186
+ lastExecutionOrder: 0,
187
+ imported: false,
188
+ name: 'Setup Review',
189
+ modifiedBy: '--',
190
+ moduleCountWithScript: 0,
191
+ state: 'NEW',
192
+ key: 'MOD1103',
193
+ children: true,
194
+ id: 'MOD1103', // Unique ID
195
+ },
196
+ level: 3,
197
+ },
198
+ {
199
+ node: {
200
+ ver: 1,
201
+ hierarchy: 2,
202
+ subModuleCount: 4,
203
+ assigneeCount: 0,
204
+ searchKey: '/MOD1001/MOD1002/MOD1004',
205
+ modifiedByUname: '--',
206
+ title: 'Authoring Cycle',
207
+ scriptCount: 0,
208
+ executionOrder: 2,
209
+ createdByUname: 'Shivaprasad',
210
+ parentId: 'MOD1003', // Parent is 'Home'
211
+ path: '/Root/Home/Authoring Cycle',
212
+ expanded: false,
213
+ modifiedOn: '19-12-2023 16:40',
214
+ parentName: 'Home',
215
+ moduleLevelScriptCount: 0,
216
+ lastExecutionOrder: 0,
217
+ imported: false,
218
+ name: 'Authoring Cycle',
219
+ modifiedBy: '--',
220
+ moduleCountWithScript: 0,
221
+ state: 'NEW',
222
+ key: 'MOD1004',
223
+ folder: true,
224
+ children: false,
225
+ id: 'MOD1005', // Unique ID
226
+ },
227
+ level: 2,
228
+ },
229
+ {
230
+ node: {
231
+ ver: 1,
232
+ hierarchy: 3,
233
+ subModuleCount: 0,
234
+ assigneeCount: 0,
235
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1201',
236
+ modifiedByUname: '--',
237
+ title: 'Draft Authoring',
238
+ scriptCount: 0,
239
+ executionOrder: 1,
240
+ createdByUname: 'Shivaprasad',
241
+ parentId: 'MOD1005', // Parent is 'Authoring Cycle'
242
+ path: '/Root/Home/Authoring Cycle/Draft Authoring',
243
+ expanded: false,
244
+ modifiedOn: '21-12-2023 11:00',
245
+ parentName: 'Authoring Cycle',
246
+ moduleLevelScriptCount: 0,
247
+ lastExecutionOrder: 0,
248
+ imported: false,
249
+ name: 'Draft Authoring',
250
+ modifiedBy: '--',
251
+ moduleCountWithScript: 0,
252
+ state: 'NEW',
253
+ key: 'MOD1201',
254
+ children: true,
255
+ id: 'MOD1201', // Unique ID
256
+ },
257
+ level: 3,
258
+ },
259
+ {
260
+ node: {
261
+ ver: 1,
262
+ hierarchy: 3,
263
+ subModuleCount: 0,
264
+ assigneeCount: 0,
265
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1202',
266
+ modifiedByUname: '--',
267
+ title: 'Peer Review',
268
+ scriptCount: 0,
269
+ executionOrder: 2,
270
+ createdByUname: 'Shivaprasad',
271
+ parentId: 'MOD1005', // Parent is 'Authoring Cycle'
272
+ path: '/Root/Home/Authoring Cycle/Peer Review',
273
+ expanded: false,
274
+ modifiedOn: '21-12-2023 12:00',
275
+ parentName: 'Authoring Cycle',
276
+ moduleLevelScriptCount: 0,
277
+ lastExecutionOrder: 0,
278
+ imported: false,
279
+ name: 'Peer Review',
280
+ modifiedBy: '--',
281
+ moduleCountWithScript: 0,
282
+ state: 'NEW',
283
+ key: 'MOD1202',
284
+ children: true,
285
+ id: 'MOD1202', // Unique ID
286
+ },
287
+ level: 3,
288
+ },
289
+ {
290
+ node: {
291
+ ver: 1,
292
+ hierarchy: 3,
293
+ subModuleCount: 0,
294
+ assigneeCount: 0,
295
+ searchKey: '/MOD1001/MOD1002/MOD1004/MOD1203',
296
+ modifiedByUname: '--',
297
+ title: 'Final Review',
298
+ scriptCount: 0,
299
+ executionOrder: 3,
300
+ createdByUname: 'Shivaprasad',
301
+ parentId: 'MOD1005', // Parent is 'Authoring Cycle'
302
+ path: '/Root/Home/Authoring Cycle/Final Review',
303
+ expanded: false,
304
+ modifiedOn: '21-12-2023 13:00',
305
+ parentName: 'Authoring Cycle',
306
+ moduleLevelScriptCount: 0,
307
+ lastExecutionOrder: 0,
308
+ imported: false,
309
+ name: 'Final Review',
310
+ modifiedBy: '--',
311
+ moduleCountWithScript: 0,
312
+ state: 'NEW',
313
+ key: 'MOD1203',
314
+ children: true,
315
+ id: 'MOD1203', // Unique ID
316
+ },
317
+ level: 3,
570
318
  },
571
319
  ];
572
320
 
573
- export default extendedData;
321
+
322
+ export default data;