data-grid-workspace 0.0.120

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 (325) hide show
  1. package/.editorconfig +16 -0
  2. package/.vscode/extensions.json +4 -0
  3. package/.vscode/launch.json +20 -0
  4. package/.vscode/tasks.json +42 -0
  5. package/README.md +265 -0
  6. package/angular.json +144 -0
  7. package/backup-04112025/projects/data-grid/README.md +24 -0
  8. package/backup-04112025/projects/data-grid/ng-package.json +18 -0
  9. package/backup-04112025/projects/data-grid/package-lock.json +25 -0
  10. package/backup-04112025/projects/data-grid/package.json +23 -0
  11. package/backup-04112025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  12. package/backup-04112025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  13. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5356 -0
  14. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2005 -0
  15. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  16. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5368 -0
  17. package/backup-04112025/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  18. package/backup-04112025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  19. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  20. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  21. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  22. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  23. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  24. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  25. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  26. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  27. package/backup-04112025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  28. package/backup-04112025/projects/data-grid/src/lib/services/common.service.ts +278 -0
  29. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  30. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  31. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  32. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  33. package/backup-04112025/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  34. package/backup-04112025/projects/data-grid/src/lib/services/export.service.ts +189 -0
  35. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  36. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  37. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  38. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  39. package/backup-04112025/projects/data-grid/src/public-api.ts +6 -0
  40. package/backup-04112025/projects/data-grid/src/typings.d.ts +4 -0
  41. package/backup-04112025/projects/data-grid/tsconfig.lib.json +19 -0
  42. package/backup-04112025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  43. package/backup-04112025/projects/data-grid/tsconfig.spec.json +14 -0
  44. package/backup-29-10-2025/projects/data-grid/README.md +24 -0
  45. package/backup-29-10-2025/projects/data-grid/ng-package.json +10 -0
  46. package/backup-29-10-2025/projects/data-grid/package-lock.json +25 -0
  47. package/backup-29-10-2025/projects/data-grid/package.json +12 -0
  48. package/backup-29-10-2025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  49. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  50. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5236 -0
  51. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +1717 -0
  52. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  53. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5092 -0
  54. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/statuses.ts +47 -0
  55. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  56. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  57. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  58. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  59. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  60. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  61. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  62. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  63. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  64. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  65. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.ts +274 -0
  66. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  67. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.ts +251 -0
  68. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  69. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  70. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  71. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  72. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  73. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  74. package/backup-29-10-2025/projects/data-grid/src/public-api.ts +6 -0
  75. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.json +16 -0
  76. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  77. package/backup-29-10-2025/projects/data-grid/tsconfig.spec.json +14 -0
  78. package/image.png +0 -0
  79. package/package.json +52 -0
  80. package/projects/data-grid/README.md +324 -0
  81. package/projects/data-grid/ng-package.json +19 -0
  82. package/projects/data-grid/package-lock.json +25 -0
  83. package/projects/data-grid/package.json +38 -0
  84. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
  85. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
  86. package/projects/data-grid/src/lib/assets/fonts/Inter/OFL.txt +93 -0
  87. package/projects/data-grid/src/lib/assets/fonts/Inter/README.txt +118 -0
  88. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Black.ttf +0 -0
  89. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BlackItalic.ttf +0 -0
  90. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Bold.ttf +0 -0
  91. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BoldItalic.ttf +0 -0
  92. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBold.ttf +0 -0
  93. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBoldItalic.ttf +0 -0
  94. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLight.ttf +0 -0
  95. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLightItalic.ttf +0 -0
  96. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Italic.ttf +0 -0
  97. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Light.ttf +0 -0
  98. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-LightItalic.ttf +0 -0
  99. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Medium.ttf +0 -0
  100. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-MediumItalic.ttf +0 -0
  101. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Regular.ttf +0 -0
  102. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf +0 -0
  103. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBoldItalic.ttf +0 -0
  104. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Thin.ttf +0 -0
  105. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ThinItalic.ttf +0 -0
  106. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Black.ttf +0 -0
  107. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BlackItalic.ttf +0 -0
  108. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Bold.ttf +0 -0
  109. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BoldItalic.ttf +0 -0
  110. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBold.ttf +0 -0
  111. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBoldItalic.ttf +0 -0
  112. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLight.ttf +0 -0
  113. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLightItalic.ttf +0 -0
  114. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Italic.ttf +0 -0
  115. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Light.ttf +0 -0
  116. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-LightItalic.ttf +0 -0
  117. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Medium.ttf +0 -0
  118. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-MediumItalic.ttf +0 -0
  119. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Regular.ttf +0 -0
  120. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf +0 -0
  121. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBoldItalic.ttf +0 -0
  122. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Thin.ttf +0 -0
  123. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ThinItalic.ttf +0 -0
  124. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Black.ttf +0 -0
  125. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BlackItalic.ttf +0 -0
  126. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Bold.ttf +0 -0
  127. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BoldItalic.ttf +0 -0
  128. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBold.ttf +0 -0
  129. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf +0 -0
  130. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLight.ttf +0 -0
  131. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLightItalic.ttf +0 -0
  132. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Italic.ttf +0 -0
  133. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Light.ttf +0 -0
  134. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-LightItalic.ttf +0 -0
  135. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Medium.ttf +0 -0
  136. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-MediumItalic.ttf +0 -0
  137. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Regular.ttf +0 -0
  138. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBold.ttf +0 -0
  139. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBoldItalic.ttf +0 -0
  140. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Thin.ttf +0 -0
  141. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ThinItalic.ttf +0 -0
  142. package/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  143. package/projects/data-grid/src/lib/data-grid/animations.ts +267 -0
  144. package/projects/data-grid/src/lib/data-grid/data-grid.component.html +5759 -0
  145. package/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2154 -0
  146. package/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  147. package/projects/data-grid/src/lib/data-grid/data-grid.component.ts +6773 -0
  148. package/projects/data-grid/src/lib/data-grid/data-grid.tokens.ts +4 -0
  149. package/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  150. package/projects/data-grid/src/lib/data-grid.module.ts +23 -0
  151. package/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  152. package/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  153. package/projects/data-grid/src/lib/directives/cell-editor.directive.spec.ts +11 -0
  154. package/projects/data-grid/src/lib/directives/cell-editor.directive.ts +88 -0
  155. package/projects/data-grid/src/lib/directives/cell-render-init.directive.spec.ts +11 -0
  156. package/projects/data-grid/src/lib/directives/cell-render-init.directive.ts +98 -0
  157. package/projects/data-grid/src/lib/directives/cellHost.directive.spec.ts +11 -0
  158. package/projects/data-grid/src/lib/directives/cellHost.directive.ts +10 -0
  159. package/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  160. package/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  161. package/projects/data-grid/src/lib/interfaces/data-grid-config.ts.ts +136 -0
  162. package/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  163. package/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  164. package/projects/data-grid/src/lib/pipes/format-currency.pipe.spec.ts +11 -0
  165. package/projects/data-grid/src/lib/pipes/format-currency.pipe.ts +59 -0
  166. package/projects/data-grid/src/lib/pipes/format-index.pipe.spec.ts +11 -0
  167. package/projects/data-grid/src/lib/pipes/format-index.pipe.ts +20 -0
  168. package/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  169. package/projects/data-grid/src/lib/services/cell-selection.service.ts +372 -0
  170. package/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  171. package/projects/data-grid/src/lib/services/common.service.ts +395 -0
  172. package/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  173. package/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  174. package/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  175. package/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  176. package/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  177. package/projects/data-grid/src/lib/services/export.service.ts +189 -0
  178. package/projects/data-grid/src/lib/services/row-action.service.ts +203 -0
  179. package/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  180. package/projects/data-grid/src/lib/services/split-columns.service.ts +168 -0
  181. package/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  182. package/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  183. package/projects/data-grid/src/lib/styles/font-style.css +34 -0
  184. package/projects/data-grid/src/public-api.ts +8 -0
  185. package/projects/data-grid/src/typings.d.ts +4 -0
  186. package/projects/data-grid/tsconfig.lib.json +19 -0
  187. package/projects/data-grid/tsconfig.lib.prod.json +10 -0
  188. package/projects/data-grid/tsconfig.spec.json +14 -0
  189. package/src/app/app.component.html +61 -0
  190. package/src/app/app.component.scss +1 -0
  191. package/src/app/app.component.spec.ts +27 -0
  192. package/src/app/app.component.ts +166 -0
  193. package/src/app/app.module.ts +33 -0
  194. package/src/app/dropdown-filter/dropdown-filter.component.css +122 -0
  195. package/src/app/dropdown-filter/dropdown-filter.component.html +118 -0
  196. package/src/app/dropdown-filter/dropdown-filter.component.spec.ts +28 -0
  197. package/src/app/dropdown-filter/dropdown-filter.component.ts +139 -0
  198. package/src/app/status-cell/status-cell.component.css +0 -0
  199. package/src/app/status-cell/status-cell.component.html +1 -0
  200. package/src/app/status-cell/status-cell.component.spec.ts +28 -0
  201. package/src/app/status-cell/status-cell.component.ts +18 -0
  202. package/src/app/status-cell-editor/status-cell-editor.component.css +0 -0
  203. package/src/app/status-cell-editor/status-cell-editor.component.html +12 -0
  204. package/src/app/status-cell-editor/status-cell-editor.component.spec.ts +28 -0
  205. package/src/app/status-cell-editor/status-cell-editor.component.ts +77 -0
  206. package/src/app/sub-category-cell-component/sub-category-cell-component.component.css +6 -0
  207. package/src/app/sub-category-cell-component/sub-category-cell-component.component.html +3 -0
  208. package/src/app/sub-category-cell-component/sub-category-cell-component.component.spec.ts +28 -0
  209. package/src/app/sub-category-cell-component/sub-category-cell-component.component.ts +26 -0
  210. package/src/app/testing-data/api-translation/data.ts +1929 -0
  211. package/src/app/testing-data/assets-category/data.ts +1410 -0
  212. package/src/app/testing-data/assets-list/data.ts +26633 -0
  213. package/src/app/testing-data/invoices/data.ts +3698 -0
  214. package/src/app/testing-data/manage-employee/data.ts +83205 -0
  215. package/src/app/testing-data/single-day-timesheet/data.ts +4450 -0
  216. package/src/app/testing-data/task-management/tasks.ts +2536 -0
  217. package/src/app/testing-data/translation.ts +135580 -0
  218. package/src/app/testing-data/writeup/data.ts +29506 -0
  219. package/src/assets/.gitkeep +0 -0
  220. package/src/assets/data-grid/document-icons/Newxlsx.svg +19 -0
  221. package/src/assets/data-grid/document-icons/Presentation.pptx +0 -0
  222. package/src/assets/data-grid/document-icons/Untitled spreadsheet.xlsx +0 -0
  223. package/src/assets/data-grid/document-icons/bell-icon.svg +31 -0
  224. package/src/assets/data-grid/document-icons/blank sheet ppt.pptx +0 -0
  225. package/src/assets/data-grid/document-icons/blank-docs-file.docx +0 -0
  226. package/src/assets/data-grid/document-icons/csv.svg +34 -0
  227. package/src/assets/data-grid/document-icons/doc.svg +34 -0
  228. package/src/assets/data-grid/document-icons/document-download.svg +18 -0
  229. package/src/assets/data-grid/document-icons/document-upload.svg +6 -0
  230. package/src/assets/data-grid/document-icons/docx.svg +35 -0
  231. package/src/assets/data-grid/document-icons/downloadDOC.svg +7 -0
  232. package/src/assets/data-grid/document-icons/edit-doc.svg +6 -0
  233. package/src/assets/data-grid/document-icons/empty-trash.svg +47 -0
  234. package/src/assets/data-grid/document-icons/jpeg.svg +40 -0
  235. package/src/assets/data-grid/document-icons/jpg.svg +24 -0
  236. package/src/assets/data-grid/document-icons/loading gif.gif +0 -0
  237. package/src/assets/data-grid/document-icons/more-Icon.svg +19 -0
  238. package/src/assets/data-grid/document-icons/mp4.svg +28 -0
  239. package/src/assets/data-grid/document-icons/my-request-empty.svg +37 -0
  240. package/src/assets/data-grid/document-icons/newDoc.svg +16 -0
  241. package/src/assets/data-grid/document-icons/newppt.svg +16 -0
  242. package/src/assets/data-grid/document-icons/overDue.svg +8 -0
  243. package/src/assets/data-grid/document-icons/ownerShare.svg +13 -0
  244. package/src/assets/data-grid/document-icons/pdf.svg +36 -0
  245. package/src/assets/data-grid/document-icons/permanantDelete.svg +4 -0
  246. package/src/assets/data-grid/document-icons/png.svg +53 -0
  247. package/src/assets/data-grid/document-icons/ppt.svg +24 -0
  248. package/src/assets/data-grid/document-icons/pptx.svg +25 -0
  249. package/src/assets/data-grid/document-icons/restore-delete.svg +4 -0
  250. package/src/assets/data-grid/document-icons/restoreTrash.svg +10 -0
  251. package/src/assets/data-grid/document-icons/send-2.svg +16 -0
  252. package/src/assets/data-grid/document-icons/send-request-empty.svg +41 -0
  253. package/src/assets/data-grid/document-icons/shareIcon.svg +6 -0
  254. package/src/assets/data-grid/document-icons/sharedFileIcon.svg +6 -0
  255. package/src/assets/data-grid/document-icons/sharedriveempty.svg +40 -0
  256. package/src/assets/data-grid/document-icons/task-square.svg +25 -0
  257. package/src/assets/data-grid/document-icons/trash-01.svg +3 -0
  258. package/src/assets/data-grid/document-icons/trashRestore.svg +4 -0
  259. package/src/assets/data-grid/document-icons/txt.svg +34 -0
  260. package/src/assets/data-grid/document-icons/uploadFile.svg +16 -0
  261. package/src/assets/data-grid/document-icons/uploadfilefolder.svg +40 -0
  262. package/src/assets/data-grid/document-icons/xls.svg +34 -0
  263. package/src/assets/data-grid/document-icons/xlsx.svg +36 -0
  264. package/src/assets/data-grid/icons/Buttons.svg +3 -0
  265. package/src/assets/data-grid/icons/High.svg +3 -0
  266. package/src/assets/data-grid/icons/Low.svg +3 -0
  267. package/src/assets/data-grid/icons/Medium.svg +3 -0
  268. package/src/assets/data-grid/icons/Vector.svg +3 -0
  269. package/src/assets/data-grid/icons/arrow-counterclockwise.svg +4 -0
  270. package/src/assets/data-grid/icons/arrow-down.svg +3 -0
  271. package/src/assets/data-grid/icons/arrow-left.svg +3 -0
  272. package/src/assets/data-grid/icons/arrow-right-solid-full.svg +1 -0
  273. package/src/assets/data-grid/icons/arrow-right.svg +10 -0
  274. package/src/assets/data-grid/icons/arrow-up.svg +3 -0
  275. package/src/assets/data-grid/icons/arrows-angle-expand.svg +3 -0
  276. package/src/assets/data-grid/icons/arrows-expand-vertical.svg +3 -0
  277. package/src/assets/data-grid/icons/arrows-move.svg +3 -0
  278. package/src/assets/data-grid/icons/attachments.svg +3 -0
  279. package/src/assets/data-grid/icons/ban.svg +3 -0
  280. package/src/assets/data-grid/icons/check-blue.svg +3 -0
  281. package/src/assets/data-grid/icons/chevron-down.svg +3 -0
  282. package/src/assets/data-grid/icons/chevron-right.svg +3 -0
  283. package/src/assets/data-grid/icons/comments.svg +3 -0
  284. package/src/assets/data-grid/icons/cross-primary.svg +3 -0
  285. package/src/assets/data-grid/icons/dash.svg +3 -0
  286. package/src/assets/data-grid/icons/delete.svg +3 -0
  287. package/src/assets/data-grid/icons/diagram-3.svg +3 -0
  288. package/src/assets/data-grid/icons/download.svg +5 -0
  289. package/src/assets/data-grid/icons/edit.svg +3 -0
  290. package/src/assets/data-grid/icons/expend.svg +3 -0
  291. package/src/assets/data-grid/icons/eye-cross.svg +10 -0
  292. package/src/assets/data-grid/icons/eye.svg +4 -0
  293. package/src/assets/data-grid/icons/filter-2.svg +5 -0
  294. package/src/assets/data-grid/icons/grid-3x2-gap.svg +3 -0
  295. package/src/assets/data-grid/icons/grip-vertical.svg +8 -0
  296. package/src/assets/data-grid/icons/horizontal-dots.svg +5 -0
  297. package/src/assets/data-grid/icons/justify.svg +3 -0
  298. package/src/assets/data-grid/icons/layout-three-columns.svg +3 -0
  299. package/src/assets/data-grid/icons/list-details.svg +8 -0
  300. package/src/assets/data-grid/icons/minimize.svg +4 -0
  301. package/src/assets/data-grid/icons/pin-blue.svg +5 -0
  302. package/src/assets/data-grid/icons/pin-left.svg +3 -0
  303. package/src/assets/data-grid/icons/pin-right.svg +3 -0
  304. package/src/assets/data-grid/icons/pin.svg +5 -0
  305. package/src/assets/data-grid/icons/plus.svg +3 -0
  306. package/src/assets/data-grid/icons/resize-handle.svg +3 -0
  307. package/src/assets/data-grid/icons/search.svg +3 -0
  308. package/src/assets/data-grid/icons/settings-2.svg +3 -0
  309. package/src/assets/data-grid/icons/sort-asc.svg +4 -0
  310. package/src/assets/data-grid/icons/sort-desc.svg +4 -0
  311. package/src/assets/data-grid/icons/star-blue.svg +3 -0
  312. package/src/assets/data-grid/icons/star.svg +3 -0
  313. package/src/assets/data-grid/icons/table-2.svg +3 -0
  314. package/src/assets/data-grid/icons/three-dots-vertical.svg +5 -0
  315. package/src/assets/data-grid/icons/trash-red.svg +7 -0
  316. package/src/assets/data-grid/icons/ui-checks-grid.svg +3 -0
  317. package/src/assets/data-grid/icons/x.svg +3 -0
  318. package/src/assets/data-grid/icons/zoom-charge.svg +4 -0
  319. package/src/favicon.ico +0 -0
  320. package/src/index.html +19 -0
  321. package/src/main.ts +7 -0
  322. package/src/styles.scss +3 -0
  323. package/tsconfig.app.json +14 -0
  324. package/tsconfig.json +44 -0
  325. package/tsconfig.spec.json +14 -0
@@ -0,0 +1,1410 @@
1
+ export const result = {
2
+ "config": {
3
+ "actions": [],
4
+ "columns": [
5
+ {
6
+ "_id": "68cba4330656a4ebf5f79019",
7
+ "field": "name",
8
+ "header": "Category",
9
+ "type": "string",
10
+ "search": null,
11
+ "is_search_able": true,
12
+ "query": {
13
+ "first_condition": null,
14
+ "second_condition": null,
15
+ "first_value": null,
16
+ "second_value": null,
17
+ "condition": null,
18
+ "__typename": "queryType"
19
+ },
20
+ "is_visible": true,
21
+ "is_sortable": true,
22
+ is_editable: true,
23
+ "is_amount": false,
24
+ "filterValue": null,
25
+ "column_data": [],
26
+ "__typename": "listingColumnsType"
27
+ },
28
+ {
29
+ "_id": "68cba4330656a4ebf5f7901a",
30
+ "field": "subCategoryCount",
31
+ "header": "Sub Categories Counts ",
32
+ "type": "number",
33
+ "search": null,
34
+ "is_search_able": false,
35
+ "query": {
36
+ "first_condition": null,
37
+ "second_condition": null,
38
+ "first_value": null,
39
+ "second_value": null,
40
+ "condition": null,
41
+ "__typename": "queryType"
42
+ },
43
+ "is_visible": true,
44
+ "is_sortable": false,
45
+ "is_amount": false,
46
+ "filterValue": null,
47
+ is_editable: true,
48
+ "column_data": [],
49
+ "__typename": "listingColumnsType"
50
+ },
51
+ {
52
+ "_id": "68cba4330656a4ebf5f7901b",
53
+ "field": "totalActualCost",
54
+ "header": "Total Asset Value",
55
+ "type": "number",
56
+ "search": null,
57
+ "is_search_able": false,
58
+ "query": {
59
+ "first_condition": null,
60
+ "second_condition": null,
61
+ "first_value": null,
62
+ "second_value": null,
63
+ "condition": null,
64
+ "__typename": "queryType"
65
+ },
66
+ "is_visible": true,
67
+ "is_sortable": false,
68
+ is_editable: true,
69
+ "is_amount": true,
70
+ "filterValue": null,
71
+ "column_data": [],
72
+ "__typename": "listingColumnsType"
73
+ },
74
+ {
75
+ "_id": "68cba4330656a4ebf5f7901c",
76
+ "field": "totalDepreciationValue",
77
+ "header": "Total Depreciation ",
78
+ "type": "number",
79
+ "search": null,
80
+ "is_search_able": false,
81
+ "query": {
82
+ "first_condition": null,
83
+ "second_condition": null,
84
+ "first_value": null,
85
+ "second_value": null,
86
+ "condition": null,
87
+ "__typename": "queryType"
88
+ },
89
+ "is_visible": true,
90
+ "is_sortable": false,
91
+ "is_amount": true,
92
+ is_editable: true,
93
+ isGroupable: true,
94
+ "filterValue": null,
95
+ "column_data": [],
96
+ "__typename": "listingColumnsType"
97
+ },
98
+ {
99
+ "_id": "68cba4330656a4ebf5f7901d",
100
+ "field": "totalCurrentValue",
101
+ "header": "Current Value",
102
+ "type": "number",
103
+ "search": null,
104
+ "is_search_able": false,
105
+ "query": {
106
+ "first_condition": null,
107
+ "second_condition": null,
108
+ "first_value": null,
109
+ "second_value": null,
110
+ "condition": null,
111
+ "__typename": "queryType"
112
+ },
113
+ "is_visible": true,
114
+ "is_sortable": false,
115
+ "is_amount": true,
116
+ isGroupable: true,
117
+ is_editable: true,
118
+ "filterValue": null,
119
+ "column_data": [],
120
+ "__typename": "listingColumnsType"
121
+ },
122
+ {
123
+ "_id": "68cba4330656a4ebf5f7901e",
124
+ "field": "assigned_asset_count",
125
+ "header": "Assigned Asset Count",
126
+ "type": "number",
127
+ "search": null,
128
+ "is_search_able": false,
129
+ "query": {
130
+ "first_condition": null,
131
+ "second_condition": null,
132
+ "first_value": null,
133
+ "second_value": null,
134
+ "condition": null,
135
+ "__typename": "queryType"
136
+ },
137
+ "is_visible": true,
138
+ "is_sortable": false,
139
+ is_editable: true,
140
+ isGroupable: true,
141
+ "is_amount": false,
142
+ "filterValue": null,
143
+ "column_data": [],
144
+ "__typename": "listingColumnsType"
145
+ },
146
+ {
147
+ "_id": "68cba4330656a4ebf5f7901f",
148
+ "field": "unassigned_asset_count",
149
+ "header": "Unassigned Asset count",
150
+ "type": "number",
151
+ "search": null,
152
+ "is_search_able": false,
153
+ "query": {
154
+ "first_condition": null,
155
+ "second_condition": null,
156
+ "first_value": null,
157
+ "second_value": null,
158
+ "condition": null,
159
+ "__typename": "queryType"
160
+ },
161
+ "is_visible": true,
162
+ "is_sortable": false,
163
+ "is_amount": false,
164
+ is_editable: true,
165
+ "filterValue": null,
166
+ "column_data": [],
167
+ "__typename": "listingColumnsType"
168
+ },
169
+ {
170
+ "_id": "68cba4330656a4ebf5f79020",
171
+ "field": "dispose_asset_count",
172
+ "header": "Dispose Asset Count",
173
+ "type": "number",
174
+ "search": null,
175
+ "is_search_able": false,
176
+ "query": {
177
+ "first_condition": null,
178
+ "second_condition": null,
179
+ "first_value": null,
180
+ "second_value": null,
181
+ "condition": null,
182
+ "__typename": "queryType"
183
+ },
184
+ "is_visible": true,
185
+ "is_sortable": false,
186
+ is_editable: true,
187
+ "is_amount": false,
188
+ "filterValue": null,
189
+ "column_data": [],
190
+ "__typename": "listingColumnsType"
191
+ },
192
+ {
193
+ "_id": "68cba4330656a4ebf5f79021",
194
+ "field": "maintenance_asset_count",
195
+ "header": "Maintenance Asset Count",
196
+ "type": "number",
197
+ "search": null,
198
+ "is_search_able": false,
199
+ "query": {
200
+ "first_condition": null,
201
+ "second_condition": null,
202
+ "first_value": null,
203
+ "second_value": null,
204
+ "condition": null,
205
+ "__typename": "queryType"
206
+ },
207
+ "is_visible": true,
208
+ "is_sortable": false,
209
+ "is_amount": false,
210
+ is_editable: true,
211
+ "filterValue": null,
212
+ "column_data": [],
213
+ "__typename": "listingColumnsType"
214
+ },
215
+ {
216
+ "_id": "68cba4330656a4ebf5f79022",
217
+ "field": "reserved_asset_count",
218
+ "header": "Reserved Asset Count",
219
+ "type": "number",
220
+ "search": null,
221
+ "is_search_able": false,
222
+ "query": {
223
+ "first_condition": null,
224
+ "second_condition": null,
225
+ "first_value": null,
226
+ "second_value": null,
227
+ "condition": null,
228
+ "__typename": "queryType"
229
+ },
230
+ "is_visible": true,
231
+ "is_sortable": false,
232
+ "is_amount": false,
233
+ is_editable: true,
234
+ "filterValue": null,
235
+ "column_data": [],
236
+ "__typename": "listingColumnsType"
237
+ },
238
+ {
239
+ "_id": "68cba4330656a4ebf5f79023",
240
+ "field": "scrap_asset_count",
241
+ "header": "Scrap Asset Count",
242
+ "type": "number",
243
+ "search": null,
244
+ "is_search_able": false,
245
+ "query": {
246
+ "first_condition": null,
247
+ "second_condition": null,
248
+ "first_value": null,
249
+ "second_value": null,
250
+ "condition": null,
251
+ "__typename": "queryType"
252
+ },
253
+ "is_visible": true,
254
+ "is_sortable": false,
255
+ is_editable: true,
256
+ "is_amount": false,
257
+ "filterValue": null,
258
+ "column_data": [],
259
+ "__typename": "listingColumnsType"
260
+ },
261
+ {
262
+ "_id": "68cba4330656a4ebf5f79024",
263
+ "field": "trashed_asset_count",
264
+ "header": "Trashed Asset Count",
265
+ "type": "number",
266
+ "search": null,
267
+ "is_search_able": false,
268
+ "query": {
269
+ "first_condition": null,
270
+ "second_condition": null,
271
+ "first_value": null,
272
+ "second_value": null,
273
+ "condition": null,
274
+ "__typename": "queryType"
275
+ },
276
+ "is_visible": true,
277
+ "is_sortable": false,
278
+ is_editable: true,
279
+ isGroupable: true,
280
+ "is_amount": false,
281
+ "filterValue": null,
282
+ "column_data": [],
283
+ "__typename": "listingColumnsType"
284
+ }
285
+ ],
286
+ "filters": [],
287
+ "limit": 10,
288
+ "page": 1,
289
+ "totalPages": 1,
290
+ "totalResults": 3,
291
+ "no_of_records": 10,
292
+ "type": "AssetCategoryListing",
293
+ "__typename": "dataTableConfig"
294
+ },
295
+ "data": [
296
+ {
297
+ "unassigned_asset_count": 0,
298
+ "assigned_asset_count": 0,
299
+ "maintenance_asset_count": 0,
300
+ "trashed_asset_count": 0,
301
+ "scrap_asset_count": 0,
302
+ "reserved_asset_count": 0,
303
+ "dispose_asset_count": 0,
304
+ "_id": "66f3df1815132d4fb294481b",
305
+ "name": "Security and Surveillance",
306
+ "subCategoryCount": 1,
307
+ "totalActualCost": null,
308
+ "totalDepreciationValue": 0,
309
+ "totalCurrentValue": null,
310
+ "is_deleted": false,
311
+ "detail": {
312
+ "columns": [
313
+ {
314
+ "header": "Actual Cost",
315
+ "field": "actualCost",
316
+ "is_amount": true,
317
+ "__typename": "listingColumnsType"
318
+ },
319
+ {
320
+ "header": " All Asset Count",
321
+ "field": "assetCount",
322
+ "is_amount": false,
323
+ "__typename": "listingColumnsType"
324
+ },
325
+ {
326
+ "header": "Depreciation Value",
327
+ "field": "depreciationValue",
328
+ "is_amount": true,
329
+ "__typename": "listingColumnsType"
330
+ },
331
+ {
332
+ "header": "Sub Category",
333
+ "field": "name",
334
+ "is_amount": false,
335
+ "__typename": "listingColumnsType"
336
+ }
337
+ ],
338
+ "result": [
339
+ {
340
+ "name": "Accessories",
341
+ "actualCost": 0,
342
+ "assetCount": 1,
343
+ "depreciationValue": 0,
344
+ "__typename": "AssetSubCategory"
345
+ }
346
+ ],
347
+ "__typename": "subCategoryDetail"
348
+ },
349
+ "__typename": "categoryData"
350
+ },
351
+ {
352
+ "unassigned_asset_count": 0,
353
+ "assigned_asset_count": 0,
354
+ "maintenance_asset_count": 0,
355
+ "trashed_asset_count": 0,
356
+ "scrap_asset_count": 0,
357
+ "reserved_asset_count": 0,
358
+ "dispose_asset_count": 0,
359
+ "_id": "66f3b9fd56ca93702183db29",
360
+ "name": "Furniture and Fixtures",
361
+ "subCategoryCount": 1,
362
+ "totalActualCost": null,
363
+ "totalDepreciationValue": 0,
364
+ "totalCurrentValue": null,
365
+ "is_deleted": false,
366
+ "detail": {
367
+ "columns": [
368
+ {
369
+ "header": "Actual Cost",
370
+ "field": "actualCost",
371
+ "is_amount": true,
372
+ "__typename": "listingColumnsType"
373
+ },
374
+ {
375
+ "header": " All Asset Count",
376
+ "field": "assetCount",
377
+ "is_amount": false,
378
+ "__typename": "listingColumnsType"
379
+ },
380
+ {
381
+ "header": "Depreciation Value",
382
+ "field": "depreciationValue",
383
+ "is_amount": true,
384
+ "__typename": "listingColumnsType"
385
+ },
386
+ {
387
+ "header": "Sub Category",
388
+ "field": "name",
389
+ "is_amount": false,
390
+ "__typename": "listingColumnsType"
391
+ }
392
+ ],
393
+ "result": [
394
+ {
395
+ "name": "Shelf",
396
+ "actualCost": 75.47,
397
+ "assetCount": 2,
398
+ "depreciationValue": 0,
399
+ "__typename": "AssetSubCategory"
400
+ }
401
+ ],
402
+ "__typename": "subCategoryDetail"
403
+ },
404
+ "__typename": "categoryData"
405
+ },
406
+ {
407
+ "unassigned_asset_count": 0,
408
+ "assigned_asset_count": 0,
409
+ "maintenance_asset_count": 0,
410
+ "trashed_asset_count": 0,
411
+ "scrap_asset_count": 0,
412
+ "reserved_asset_count": 0,
413
+ "dispose_asset_count": 0,
414
+ "_id": "66f39030677697f458028e2a",
415
+ "name": "Technology and Equipment",
416
+ "subCategoryCount": 17,
417
+ "totalActualCost": 1,
418
+ "totalDepreciationValue": 0,
419
+ "totalCurrentValue": 1,
420
+ "is_deleted": false,
421
+ "detail": {
422
+ "columns": [
423
+ {
424
+ "header": "Actual Cost",
425
+ "field": "actualCost",
426
+ "is_amount": true,
427
+ "__typename": "listingColumnsType"
428
+ },
429
+ {
430
+ "header": " All Asset Count",
431
+ "field": "assetCount",
432
+ "is_amount": false,
433
+ "__typename": "listingColumnsType"
434
+ },
435
+ {
436
+ "header": "Depreciation Value",
437
+ "field": "depreciationValue",
438
+ "is_amount": true,
439
+ "__typename": "listingColumnsType"
440
+ },
441
+ {
442
+ "header": "Sub Category",
443
+ "field": "name",
444
+ "is_amount": false,
445
+ "__typename": "listingColumnsType"
446
+ }
447
+ ],
448
+ "result": [
449
+ {
450
+ "name": "Desktops",
451
+ "actualCost": 1,
452
+ "assetCount": 147,
453
+ "depreciationValue": 0,
454
+ "__typename": "AssetSubCategory"
455
+ },
456
+ {
457
+ "name": "Access Points",
458
+ "actualCost": 2862,
459
+ "assetCount": 75,
460
+ "depreciationValue": 0,
461
+ "__typename": "AssetSubCategory"
462
+ },
463
+ {
464
+ "name": "Network Switches",
465
+ "actualCost": 522.91,
466
+ "assetCount": 9,
467
+ "depreciationValue": 0,
468
+ "__typename": "AssetSubCategory"
469
+ },
470
+ {
471
+ "name": "Network Tools",
472
+ "actualCost": 17.99,
473
+ "assetCount": 1,
474
+ "depreciationValue": 0,
475
+ "__typename": "AssetSubCategory"
476
+ },
477
+ {
478
+ "name": "Rack",
479
+ "actualCost": 796.47,
480
+ "assetCount": 3,
481
+ "depreciationValue": 0,
482
+ "__typename": "AssetSubCategory"
483
+ },
484
+ {
485
+ "name": "Network Testing Equipment",
486
+ "actualCost": 18.04,
487
+ "assetCount": 1,
488
+ "depreciationValue": 0,
489
+ "__typename": "AssetSubCategory"
490
+ },
491
+ {
492
+ "name": "Label Maker",
493
+ "actualCost": 39.99,
494
+ "assetCount": 1,
495
+ "depreciationValue": 0,
496
+ "__typename": "AssetSubCategory"
497
+ },
498
+ {
499
+ "name": "Server",
500
+ "actualCost": 18.99,
501
+ "assetCount": 1,
502
+ "depreciationValue": 0,
503
+ "__typename": "AssetSubCategory"
504
+ },
505
+ {
506
+ "name": "Monitors",
507
+ "actualCost": 0,
508
+ "assetCount": 196,
509
+ "depreciationValue": 0,
510
+ "__typename": "AssetSubCategory"
511
+ },
512
+ {
513
+ "name": "Keyboards",
514
+ "actualCost": 0,
515
+ "assetCount": 125,
516
+ "depreciationValue": 0,
517
+ "__typename": "AssetSubCategory"
518
+ },
519
+ {
520
+ "name": "Mouse",
521
+ "actualCost": 0,
522
+ "assetCount": 123,
523
+ "depreciationValue": 0,
524
+ "__typename": "AssetSubCategory"
525
+ },
526
+ {
527
+ "name": "Printers",
528
+ "actualCost": 0,
529
+ "assetCount": 179,
530
+ "depreciationValue": 0,
531
+ "__typename": "AssetSubCategory"
532
+ },
533
+ {
534
+ "name": "Scanner",
535
+ "actualCost": 0,
536
+ "assetCount": 118,
537
+ "depreciationValue": 0,
538
+ "__typename": "AssetSubCategory"
539
+ },
540
+ {
541
+ "name": "Microsoft Tablet",
542
+ "actualCost": 0,
543
+ "assetCount": 6,
544
+ "depreciationValue": 0,
545
+ "__typename": "AssetSubCategory"
546
+ },
547
+ {
548
+ "name": "Ipad",
549
+ "actualCost": 0,
550
+ "assetCount": 11,
551
+ "depreciationValue": 0,
552
+ "__typename": "AssetSubCategory"
553
+ },
554
+ {
555
+ "name": "Camera",
556
+ "actualCost": 0,
557
+ "assetCount": 160,
558
+ "depreciationValue": 0,
559
+ "__typename": "AssetSubCategory"
560
+ },
561
+ {
562
+ "name": "Laptops",
563
+ "actualCost": 0,
564
+ "assetCount": 2,
565
+ "depreciationValue": 0,
566
+ "__typename": "AssetSubCategory"
567
+ }
568
+ ],
569
+ "__typename": "subCategoryDetail"
570
+ },
571
+ "__typename": "categoryData"
572
+ },
573
+ {
574
+ "unassigned_asset_count": 0,
575
+ "assigned_asset_count": 0,
576
+ "maintenance_asset_count": 0,
577
+ "trashed_asset_count": 0,
578
+ "scrap_asset_count": 0,
579
+ "reserved_asset_count": 0,
580
+ "dispose_asset_count": 0,
581
+ "_id": "66f39030677697f45806767e2a",
582
+ "name": "Technology and Equipment",
583
+ "subCategoryCount": 17,
584
+ "totalActualCost": 1,
585
+ "totalDepreciationValue": 0,
586
+ "totalCurrentValue": 1,
587
+ "is_deleted": false,
588
+ "detail": {
589
+ "columns": [
590
+ {
591
+ "header": "Actual Cost",
592
+ "field": "actualCost",
593
+ "is_amount": true,
594
+ "__typename": "listingColumnsType"
595
+ },
596
+ {
597
+ "header": " All Asset Count",
598
+ "field": "assetCount",
599
+ "is_amount": false,
600
+ "__typename": "listingColumnsType"
601
+ },
602
+ {
603
+ "header": "Depreciation Value",
604
+ "field": "depreciationValue",
605
+ "is_amount": true,
606
+ "__typename": "listingColumnsType"
607
+ },
608
+ {
609
+ "header": "Sub Category",
610
+ "field": "name",
611
+ "is_amount": false,
612
+ "__typename": "listingColumnsType"
613
+ }
614
+ ],
615
+ "result": [
616
+ {
617
+ "name": "Desktops",
618
+ "actualCost": 1,
619
+ "assetCount": 147,
620
+ "depreciationValue": 0,
621
+ "__typename": "AssetSubCategory"
622
+ },
623
+ {
624
+ "name": "Access Points",
625
+ "actualCost": 2862,
626
+ "assetCount": 75,
627
+ "depreciationValue": 0,
628
+ "__typename": "AssetSubCategory"
629
+ },
630
+ {
631
+ "name": "Network Switches",
632
+ "actualCost": 522.91,
633
+ "assetCount": 9,
634
+ "depreciationValue": 0,
635
+ "__typename": "AssetSubCategory"
636
+ },
637
+ {
638
+ "name": "Network Tools",
639
+ "actualCost": 17.99,
640
+ "assetCount": 1,
641
+ "depreciationValue": 0,
642
+ "__typename": "AssetSubCategory"
643
+ },
644
+ {
645
+ "name": "Rack",
646
+ "actualCost": 796.47,
647
+ "assetCount": 3,
648
+ "depreciationValue": 0,
649
+ "__typename": "AssetSubCategory"
650
+ },
651
+ {
652
+ "name": "Network Testing Equipment",
653
+ "actualCost": 18.04,
654
+ "assetCount": 1,
655
+ "depreciationValue": 0,
656
+ "__typename": "AssetSubCategory"
657
+ },
658
+ {
659
+ "name": "Label Maker",
660
+ "actualCost": 39.99,
661
+ "assetCount": 1,
662
+ "depreciationValue": 0,
663
+ "__typename": "AssetSubCategory"
664
+ },
665
+ {
666
+ "name": "Server",
667
+ "actualCost": 18.99,
668
+ "assetCount": 1,
669
+ "depreciationValue": 0,
670
+ "__typename": "AssetSubCategory"
671
+ },
672
+ {
673
+ "name": "Monitors",
674
+ "actualCost": 0,
675
+ "assetCount": 196,
676
+ "depreciationValue": 0,
677
+ "__typename": "AssetSubCategory"
678
+ },
679
+ {
680
+ "name": "Keyboards",
681
+ "actualCost": 0,
682
+ "assetCount": 125,
683
+ "depreciationValue": 0,
684
+ "__typename": "AssetSubCategory"
685
+ },
686
+ {
687
+ "name": "Mouse",
688
+ "actualCost": 0,
689
+ "assetCount": 123,
690
+ "depreciationValue": 0,
691
+ "__typename": "AssetSubCategory"
692
+ },
693
+ {
694
+ "name": "Printers",
695
+ "actualCost": 0,
696
+ "assetCount": 179,
697
+ "depreciationValue": 0,
698
+ "__typename": "AssetSubCategory"
699
+ },
700
+ {
701
+ "name": "Scanner",
702
+ "actualCost": 0,
703
+ "assetCount": 118,
704
+ "depreciationValue": 0,
705
+ "__typename": "AssetSubCategory"
706
+ },
707
+ {
708
+ "name": "Microsoft Tablet",
709
+ "actualCost": 0,
710
+ "assetCount": 6,
711
+ "depreciationValue": 0,
712
+ "__typename": "AssetSubCategory"
713
+ },
714
+ {
715
+ "name": "Ipad",
716
+ "actualCost": 0,
717
+ "assetCount": 11,
718
+ "depreciationValue": 0,
719
+ "__typename": "AssetSubCategory"
720
+ },
721
+ {
722
+ "name": "Camera",
723
+ "actualCost": 0,
724
+ "assetCount": 160,
725
+ "depreciationValue": 0,
726
+ "__typename": "AssetSubCategory"
727
+ },
728
+ {
729
+ "name": "Laptops",
730
+ "actualCost": 0,
731
+ "assetCount": 2,
732
+ "depreciationValue": 0,
733
+ "__typename": "AssetSubCategory"
734
+ }
735
+ ],
736
+ "__typename": "subCategoryDetail"
737
+ },
738
+ "__typename": "categoryData"
739
+ },
740
+ {
741
+ "unassigned_asset_count": 0,
742
+ "assigned_asset_count": 0,
743
+ "maintenance_asset_count": 0,
744
+ "trashed_asset_count": 0,
745
+ "scrap_asset_count": 0,
746
+ "reserved_asset_count": 0,
747
+ "dispose_asset_count": 0,
748
+ "_id": "66f390306776974525806767e2a",
749
+ "name": "Technology and Equipment",
750
+ "subCategoryCount": 17,
751
+ "totalActualCost": 1,
752
+ "totalDepreciationValue": 0,
753
+ "totalCurrentValue": 1,
754
+ "is_deleted": false,
755
+ "detail": {
756
+ "columns": [
757
+ {
758
+ "header": "Actual Cost",
759
+ "field": "actualCost",
760
+ "is_amount": true,
761
+ "__typename": "listingColumnsType"
762
+ },
763
+ {
764
+ "header": " All Asset Count",
765
+ "field": "assetCount",
766
+ "is_amount": false,
767
+ "__typename": "listingColumnsType"
768
+ },
769
+ {
770
+ "header": "Depreciation Value",
771
+ "field": "depreciationValue",
772
+ "is_amount": true,
773
+ "__typename": "listingColumnsType"
774
+ },
775
+ {
776
+ "header": "Sub Category",
777
+ "field": "name",
778
+ "is_amount": false,
779
+ "__typename": "listingColumnsType"
780
+ }
781
+ ],
782
+ "result": [
783
+ {
784
+ "name": "Desktops",
785
+ "actualCost": 1,
786
+ "assetCount": 147,
787
+ "depreciationValue": 0,
788
+ "__typename": "AssetSubCategory"
789
+ },
790
+ {
791
+ "name": "Access Points",
792
+ "actualCost": 2862,
793
+ "assetCount": 75,
794
+ "depreciationValue": 0,
795
+ "__typename": "AssetSubCategory"
796
+ },
797
+ {
798
+ "name": "Network Switches",
799
+ "actualCost": 522.91,
800
+ "assetCount": 9,
801
+ "depreciationValue": 0,
802
+ "__typename": "AssetSubCategory"
803
+ },
804
+ {
805
+ "name": "Network Tools",
806
+ "actualCost": 17.99,
807
+ "assetCount": 1,
808
+ "depreciationValue": 0,
809
+ "__typename": "AssetSubCategory"
810
+ },
811
+ {
812
+ "name": "Rack",
813
+ "actualCost": 796.47,
814
+ "assetCount": 3,
815
+ "depreciationValue": 0,
816
+ "__typename": "AssetSubCategory"
817
+ },
818
+ {
819
+ "name": "Network Testing Equipment",
820
+ "actualCost": 18.04,
821
+ "assetCount": 1,
822
+ "depreciationValue": 0,
823
+ "__typename": "AssetSubCategory"
824
+ },
825
+ {
826
+ "name": "Label Maker",
827
+ "actualCost": 39.99,
828
+ "assetCount": 1,
829
+ "depreciationValue": 0,
830
+ "__typename": "AssetSubCategory"
831
+ },
832
+ {
833
+ "name": "Server",
834
+ "actualCost": 18.99,
835
+ "assetCount": 1,
836
+ "depreciationValue": 0,
837
+ "__typename": "AssetSubCategory"
838
+ },
839
+ {
840
+ "name": "Monitors",
841
+ "actualCost": 0,
842
+ "assetCount": 196,
843
+ "depreciationValue": 0,
844
+ "__typename": "AssetSubCategory"
845
+ },
846
+ {
847
+ "name": "Keyboards",
848
+ "actualCost": 0,
849
+ "assetCount": 125,
850
+ "depreciationValue": 0,
851
+ "__typename": "AssetSubCategory"
852
+ },
853
+ {
854
+ "name": "Mouse",
855
+ "actualCost": 0,
856
+ "assetCount": 123,
857
+ "depreciationValue": 0,
858
+ "__typename": "AssetSubCategory"
859
+ },
860
+ {
861
+ "name": "Printers",
862
+ "actualCost": 0,
863
+ "assetCount": 179,
864
+ "depreciationValue": 0,
865
+ "__typename": "AssetSubCategory"
866
+ },
867
+ {
868
+ "name": "Scanner",
869
+ "actualCost": 0,
870
+ "assetCount": 118,
871
+ "depreciationValue": 0,
872
+ "__typename": "AssetSubCategory"
873
+ },
874
+ {
875
+ "name": "Microsoft Tablet",
876
+ "actualCost": 0,
877
+ "assetCount": 6,
878
+ "depreciationValue": 0,
879
+ "__typename": "AssetSubCategory"
880
+ },
881
+ {
882
+ "name": "Ipad",
883
+ "actualCost": 0,
884
+ "assetCount": 11,
885
+ "depreciationValue": 0,
886
+ "__typename": "AssetSubCategory"
887
+ },
888
+ {
889
+ "name": "Camera",
890
+ "actualCost": 0,
891
+ "assetCount": 160,
892
+ "depreciationValue": 0,
893
+ "__typename": "AssetSubCategory"
894
+ },
895
+ {
896
+ "name": "Laptops",
897
+ "actualCost": 0,
898
+ "assetCount": 2,
899
+ "depreciationValue": 0,
900
+ "__typename": "AssetSubCategory"
901
+ }
902
+ ],
903
+ "__typename": "subCategoryDetail"
904
+ },
905
+ "__typename": "categoryData"
906
+ },
907
+ {
908
+ "unassigned_asset_count": 0,
909
+ "assigned_asset_count": 0,
910
+ "maintenance_asset_count": 0,
911
+ "trashed_asset_count": 0,
912
+ "scrap_asset_count": 0,
913
+ "reserved_asset_count": 0,
914
+ "dispose_asset_count": 0,
915
+ "_id": "66f390334376974525806767e2a",
916
+ "name": "Technology and Equipment",
917
+ "subCategoryCount": 17,
918
+ "totalActualCost": 1,
919
+ "totalDepreciationValue": 0,
920
+ "totalCurrentValue": 1,
921
+ "is_deleted": false,
922
+ "detail": {
923
+ "columns": [
924
+ {
925
+ "header": "Actual Cost",
926
+ "field": "actualCost",
927
+ "is_amount": true,
928
+ "__typename": "listingColumnsType"
929
+ },
930
+ {
931
+ "header": " All Asset Count",
932
+ "field": "assetCount",
933
+ "is_amount": false,
934
+ "__typename": "listingColumnsType"
935
+ },
936
+ {
937
+ "header": "Depreciation Value",
938
+ "field": "depreciationValue",
939
+ "is_amount": true,
940
+ "__typename": "listingColumnsType"
941
+ },
942
+ {
943
+ "header": "Sub Category",
944
+ "field": "name",
945
+ "is_amount": false,
946
+ "__typename": "listingColumnsType"
947
+ }
948
+ ],
949
+ "result": [
950
+ {
951
+ "name": "Desktops",
952
+ "actualCost": 1,
953
+ "assetCount": 147,
954
+ "depreciationValue": 0,
955
+ "__typename": "AssetSubCategory"
956
+ },
957
+ {
958
+ "name": "Access Points",
959
+ "actualCost": 2862,
960
+ "assetCount": 75,
961
+ "depreciationValue": 0,
962
+ "__typename": "AssetSubCategory"
963
+ },
964
+ {
965
+ "name": "Network Switches",
966
+ "actualCost": 522.91,
967
+ "assetCount": 9,
968
+ "depreciationValue": 0,
969
+ "__typename": "AssetSubCategory"
970
+ },
971
+ {
972
+ "name": "Network Tools",
973
+ "actualCost": 17.99,
974
+ "assetCount": 1,
975
+ "depreciationValue": 0,
976
+ "__typename": "AssetSubCategory"
977
+ },
978
+ {
979
+ "name": "Rack",
980
+ "actualCost": 796.47,
981
+ "assetCount": 3,
982
+ "depreciationValue": 0,
983
+ "__typename": "AssetSubCategory"
984
+ },
985
+ {
986
+ "name": "Network Testing Equipment",
987
+ "actualCost": 18.04,
988
+ "assetCount": 1,
989
+ "depreciationValue": 0,
990
+ "__typename": "AssetSubCategory"
991
+ },
992
+ {
993
+ "name": "Label Maker",
994
+ "actualCost": 39.99,
995
+ "assetCount": 1,
996
+ "depreciationValue": 0,
997
+ "__typename": "AssetSubCategory"
998
+ },
999
+ {
1000
+ "name": "Server",
1001
+ "actualCost": 18.99,
1002
+ "assetCount": 1,
1003
+ "depreciationValue": 0,
1004
+ "__typename": "AssetSubCategory"
1005
+ },
1006
+ {
1007
+ "name": "Monitors",
1008
+ "actualCost": 0,
1009
+ "assetCount": 196,
1010
+ "depreciationValue": 0,
1011
+ "__typename": "AssetSubCategory"
1012
+ },
1013
+ {
1014
+ "name": "Keyboards",
1015
+ "actualCost": 0,
1016
+ "assetCount": 125,
1017
+ "depreciationValue": 0,
1018
+ "__typename": "AssetSubCategory"
1019
+ },
1020
+ {
1021
+ "name": "Mouse",
1022
+ "actualCost": 0,
1023
+ "assetCount": 123,
1024
+ "depreciationValue": 0,
1025
+ "__typename": "AssetSubCategory"
1026
+ },
1027
+ {
1028
+ "name": "Printers",
1029
+ "actualCost": 0,
1030
+ "assetCount": 179,
1031
+ "depreciationValue": 0,
1032
+ "__typename": "AssetSubCategory"
1033
+ },
1034
+ {
1035
+ "name": "Scanner",
1036
+ "actualCost": 0,
1037
+ "assetCount": 118,
1038
+ "depreciationValue": 0,
1039
+ "__typename": "AssetSubCategory"
1040
+ },
1041
+ {
1042
+ "name": "Microsoft Tablet",
1043
+ "actualCost": 0,
1044
+ "assetCount": 6,
1045
+ "depreciationValue": 0,
1046
+ "__typename": "AssetSubCategory"
1047
+ },
1048
+ {
1049
+ "name": "Ipad",
1050
+ "actualCost": 0,
1051
+ "assetCount": 11,
1052
+ "depreciationValue": 0,
1053
+ "__typename": "AssetSubCategory"
1054
+ },
1055
+ {
1056
+ "name": "Camera",
1057
+ "actualCost": 0,
1058
+ "assetCount": 160,
1059
+ "depreciationValue": 0,
1060
+ "__typename": "AssetSubCategory"
1061
+ },
1062
+ {
1063
+ "name": "Laptops",
1064
+ "actualCost": 0,
1065
+ "assetCount": 2,
1066
+ "depreciationValue": 0,
1067
+ "__typename": "AssetSubCategory"
1068
+ }
1069
+ ],
1070
+ "__typename": "subCategoryDetail"
1071
+ },
1072
+ "__typename": "categoryData"
1073
+ },
1074
+ {
1075
+ "unassigned_asset_count": 0,
1076
+ "assigned_asset_count": 0,
1077
+ "maintenance_asset_count": 0,
1078
+ "trashed_asset_count": 0,
1079
+ "scrap_asset_count": 0,
1080
+ "reserved_asset_count": 0,
1081
+ "dispose_asset_count": 0,
1082
+ "_id": "66f323406776974525806767e2a",
1083
+ "name": "Technology and Equipment",
1084
+ "subCategoryCount": 17,
1085
+ "totalActualCost": 1,
1086
+ "totalDepreciationValue": 0,
1087
+ "totalCurrentValue": 1,
1088
+ "is_deleted": false,
1089
+ "detail": {
1090
+ "columns": [
1091
+ {
1092
+ "header": "Actual Cost",
1093
+ "field": "actualCost",
1094
+ "is_amount": true,
1095
+ "__typename": "listingColumnsType"
1096
+ },
1097
+ {
1098
+ "header": " All Asset Count",
1099
+ "field": "assetCount",
1100
+ "is_amount": false,
1101
+ "__typename": "listingColumnsType"
1102
+ },
1103
+ {
1104
+ "header": "Depreciation Value",
1105
+ "field": "depreciationValue",
1106
+ "is_amount": true,
1107
+ "__typename": "listingColumnsType"
1108
+ },
1109
+ {
1110
+ "header": "Sub Category",
1111
+ "field": "name",
1112
+ "is_amount": false,
1113
+ "__typename": "listingColumnsType"
1114
+ }
1115
+ ],
1116
+ "result": [
1117
+ {
1118
+ "name": "Desktops",
1119
+ "actualCost": 1,
1120
+ "assetCount": 147,
1121
+ "depreciationValue": 0,
1122
+ "__typename": "AssetSubCategory"
1123
+ },
1124
+ {
1125
+ "name": "Access Points",
1126
+ "actualCost": 2862,
1127
+ "assetCount": 75,
1128
+ "depreciationValue": 0,
1129
+ "__typename": "AssetSubCategory"
1130
+ },
1131
+ {
1132
+ "name": "Network Switches",
1133
+ "actualCost": 522.91,
1134
+ "assetCount": 9,
1135
+ "depreciationValue": 0,
1136
+ "__typename": "AssetSubCategory"
1137
+ },
1138
+ {
1139
+ "name": "Network Tools",
1140
+ "actualCost": 17.99,
1141
+ "assetCount": 1,
1142
+ "depreciationValue": 0,
1143
+ "__typename": "AssetSubCategory"
1144
+ },
1145
+ {
1146
+ "name": "Rack",
1147
+ "actualCost": 796.47,
1148
+ "assetCount": 3,
1149
+ "depreciationValue": 0,
1150
+ "__typename": "AssetSubCategory"
1151
+ },
1152
+ {
1153
+ "name": "Network Testing Equipment",
1154
+ "actualCost": 18.04,
1155
+ "assetCount": 1,
1156
+ "depreciationValue": 0,
1157
+ "__typename": "AssetSubCategory"
1158
+ },
1159
+ {
1160
+ "name": "Label Maker",
1161
+ "actualCost": 39.99,
1162
+ "assetCount": 1,
1163
+ "depreciationValue": 0,
1164
+ "__typename": "AssetSubCategory"
1165
+ },
1166
+ {
1167
+ "name": "Server",
1168
+ "actualCost": 18.99,
1169
+ "assetCount": 1,
1170
+ "depreciationValue": 0,
1171
+ "__typename": "AssetSubCategory"
1172
+ },
1173
+ {
1174
+ "name": "Monitors",
1175
+ "actualCost": 0,
1176
+ "assetCount": 196,
1177
+ "depreciationValue": 0,
1178
+ "__typename": "AssetSubCategory"
1179
+ },
1180
+ {
1181
+ "name": "Keyboards",
1182
+ "actualCost": 0,
1183
+ "assetCount": 125,
1184
+ "depreciationValue": 0,
1185
+ "__typename": "AssetSubCategory"
1186
+ },
1187
+ {
1188
+ "name": "Mouse",
1189
+ "actualCost": 0,
1190
+ "assetCount": 123,
1191
+ "depreciationValue": 0,
1192
+ "__typename": "AssetSubCategory"
1193
+ },
1194
+ {
1195
+ "name": "Printers",
1196
+ "actualCost": 0,
1197
+ "assetCount": 179,
1198
+ "depreciationValue": 0,
1199
+ "__typename": "AssetSubCategory"
1200
+ },
1201
+ {
1202
+ "name": "Scanner",
1203
+ "actualCost": 0,
1204
+ "assetCount": 118,
1205
+ "depreciationValue": 0,
1206
+ "__typename": "AssetSubCategory"
1207
+ },
1208
+ {
1209
+ "name": "Microsoft Tablet",
1210
+ "actualCost": 0,
1211
+ "assetCount": 6,
1212
+ "depreciationValue": 0,
1213
+ "__typename": "AssetSubCategory"
1214
+ },
1215
+ {
1216
+ "name": "Ipad",
1217
+ "actualCost": 0,
1218
+ "assetCount": 11,
1219
+ "depreciationValue": 0,
1220
+ "__typename": "AssetSubCategory"
1221
+ },
1222
+ {
1223
+ "name": "Camera",
1224
+ "actualCost": 0,
1225
+ "assetCount": 160,
1226
+ "depreciationValue": 0,
1227
+ "__typename": "AssetSubCategory"
1228
+ },
1229
+ {
1230
+ "name": "Laptops",
1231
+ "actualCost": 0,
1232
+ "assetCount": 2,
1233
+ "depreciationValue": 0,
1234
+ "__typename": "AssetSubCategory"
1235
+ }
1236
+ ],
1237
+ "__typename": "subCategoryDetail"
1238
+ },
1239
+ "__typename": "categoryData"
1240
+ },
1241
+ {
1242
+ "unassigned_asset_count": 0,
1243
+ "assigned_asset_count": 0,
1244
+ "maintenance_asset_count": 0,
1245
+ "trashed_asset_count": 0,
1246
+ "scrap_asset_count": 0,
1247
+ "reserved_asset_count": 0,
1248
+ "dispose_asset_count": 0,
1249
+ "_id": "66f987645306776974525806767e2a",
1250
+ "name": "Technology and Equipment",
1251
+ "subCategoryCount": 17,
1252
+ "totalActualCost": 1,
1253
+ "totalDepreciationValue": 0,
1254
+ "totalCurrentValue": 1,
1255
+ "is_deleted": false,
1256
+ "detail": {
1257
+ "columns": [
1258
+ {
1259
+ "header": "Actual Cost",
1260
+ "field": "actualCost",
1261
+ "is_amount": true,
1262
+ "__typename": "listingColumnsType"
1263
+ },
1264
+ {
1265
+ "header": " All Asset Count",
1266
+ "field": "assetCount",
1267
+ "is_amount": false,
1268
+ "__typename": "listingColumnsType"
1269
+ },
1270
+ {
1271
+ "header": "Depreciation Value",
1272
+ "field": "depreciationValue",
1273
+ "is_amount": true,
1274
+ "__typename": "listingColumnsType"
1275
+ },
1276
+ {
1277
+ "header": "Sub Category",
1278
+ "field": "name",
1279
+ "is_amount": false,
1280
+ "__typename": "listingColumnsType"
1281
+ }
1282
+ ],
1283
+ "result": [
1284
+ {
1285
+ "name": "Desktops",
1286
+ "actualCost": 1,
1287
+ "assetCount": 147,
1288
+ "depreciationValue": 0,
1289
+ "__typename": "AssetSubCategory"
1290
+ },
1291
+ {
1292
+ "name": "Access Points",
1293
+ "actualCost": 2862,
1294
+ "assetCount": 75,
1295
+ "depreciationValue": 0,
1296
+ "__typename": "AssetSubCategory"
1297
+ },
1298
+ {
1299
+ "name": "Network Switches",
1300
+ "actualCost": 522.91,
1301
+ "assetCount": 9,
1302
+ "depreciationValue": 0,
1303
+ "__typename": "AssetSubCategory"
1304
+ },
1305
+ {
1306
+ "name": "Network Tools",
1307
+ "actualCost": 17.99,
1308
+ "assetCount": 1,
1309
+ "depreciationValue": 0,
1310
+ "__typename": "AssetSubCategory"
1311
+ },
1312
+ {
1313
+ "name": "Rack",
1314
+ "actualCost": 796.47,
1315
+ "assetCount": 3,
1316
+ "depreciationValue": 0,
1317
+ "__typename": "AssetSubCategory"
1318
+ },
1319
+ {
1320
+ "name": "Network Testing Equipment",
1321
+ "actualCost": 18.04,
1322
+ "assetCount": 1,
1323
+ "depreciationValue": 0,
1324
+ "__typename": "AssetSubCategory"
1325
+ },
1326
+ {
1327
+ "name": "Label Maker",
1328
+ "actualCost": 39.99,
1329
+ "assetCount": 1,
1330
+ "depreciationValue": 0,
1331
+ "__typename": "AssetSubCategory"
1332
+ },
1333
+ {
1334
+ "name": "Server",
1335
+ "actualCost": 18.99,
1336
+ "assetCount": 1,
1337
+ "depreciationValue": 0,
1338
+ "__typename": "AssetSubCategory"
1339
+ },
1340
+ {
1341
+ "name": "Monitors",
1342
+ "actualCost": 0,
1343
+ "assetCount": 196,
1344
+ "depreciationValue": 0,
1345
+ "__typename": "AssetSubCategory"
1346
+ },
1347
+ {
1348
+ "name": "Keyboards",
1349
+ "actualCost": 0,
1350
+ "assetCount": 125,
1351
+ "depreciationValue": 0,
1352
+ "__typename": "AssetSubCategory"
1353
+ },
1354
+ {
1355
+ "name": "Mouse",
1356
+ "actualCost": 0,
1357
+ "assetCount": 123,
1358
+ "depreciationValue": 0,
1359
+ "__typename": "AssetSubCategory"
1360
+ },
1361
+ {
1362
+ "name": "Printers",
1363
+ "actualCost": 0,
1364
+ "assetCount": 179,
1365
+ "depreciationValue": 0,
1366
+ "__typename": "AssetSubCategory"
1367
+ },
1368
+ {
1369
+ "name": "Scanner",
1370
+ "actualCost": 0,
1371
+ "assetCount": 118,
1372
+ "depreciationValue": 0,
1373
+ "__typename": "AssetSubCategory"
1374
+ },
1375
+ {
1376
+ "name": "Microsoft Tablet",
1377
+ "actualCost": 0,
1378
+ "assetCount": 6,
1379
+ "depreciationValue": 0,
1380
+ "__typename": "AssetSubCategory"
1381
+ },
1382
+ {
1383
+ "name": "Ipad",
1384
+ "actualCost": 0,
1385
+ "assetCount": 11,
1386
+ "depreciationValue": 0,
1387
+ "__typename": "AssetSubCategory"
1388
+ },
1389
+ {
1390
+ "name": "Camera",
1391
+ "actualCost": 0,
1392
+ "assetCount": 160,
1393
+ "depreciationValue": 0,
1394
+ "__typename": "AssetSubCategory"
1395
+ },
1396
+ {
1397
+ "name": "Laptops",
1398
+ "actualCost": 0,
1399
+ "assetCount": 2,
1400
+ "depreciationValue": 0,
1401
+ "__typename": "AssetSubCategory"
1402
+ }
1403
+ ],
1404
+ "__typename": "subCategoryDetail"
1405
+ },
1406
+ "__typename": "categoryData"
1407
+ },
1408
+ ],
1409
+ "__typename": "categoryListingResult"
1410
+ }