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,1929 @@
1
+ export const data = [
2
+ {
3
+ "id": 19,
4
+ "type": "API",
5
+ "name": "With Filters",
6
+ "userId": 336,
7
+ "columns": [
8
+ {
9
+ "id": 1,
10
+ "type": "dropdown",
11
+ "field": "application.name",
12
+ "query": {
13
+ "_ids": [
14
+ 1
15
+ ],
16
+ "condition": "none",
17
+ "first_value": null,
18
+ "second_value": null,
19
+ "first_condition": "contain",
20
+ "second_condition": null
21
+ },
22
+ "width": 244,
23
+ "header": "Application",
24
+ "pinned": null,
25
+ "search": "",
26
+ "is_visible": true,
27
+ "column_data": [],
28
+ "filterValue": [
29
+ 1
30
+ ],
31
+ "is_editable": false,
32
+ "is_sortable": false,
33
+ "is_search_able": false,
34
+ "column_dropdown_value": [
35
+ {
36
+ "id": 34,
37
+ "value": "Magento Dev"
38
+ },
39
+ {
40
+ "id": 100,
41
+ "value": "Magento 1.9 EU"
42
+ },
43
+ {
44
+ "id": 67,
45
+ "value": "Magento 1.9 CA"
46
+ },
47
+ {
48
+ "id": 1,
49
+ "value": "Magento 1.9 UK"
50
+ },
51
+ {
52
+ "id": 199,
53
+ "value": "TestApp"
54
+ },
55
+ {
56
+ "id": 166,
57
+ "value": "Magento 1.9 GP"
58
+ },
59
+ {
60
+ "id": 233,
61
+ "value": "Admin test app"
62
+ },
63
+ {
64
+ "id": 133,
65
+ "value": "Magento 1.9 US"
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "id": 7,
71
+ "type": "string",
72
+ "field": "translatedTexts",
73
+ "query": {
74
+ "_ids": [],
75
+ "condition": "none",
76
+ "first_value": null,
77
+ "second_value": null,
78
+ "first_condition": "contain",
79
+ "second_condition": null
80
+ },
81
+ "width": 266,
82
+ "header": "Translated Texts",
83
+ "search": null,
84
+ "is_visible": true,
85
+ "column_data": [],
86
+ "filterValue": null,
87
+ "is_editable": true,
88
+ "is_sortable": false,
89
+ "is_search_able": true,
90
+ "column_dropdown_value": []
91
+ },
92
+ {
93
+ "id": 2,
94
+ "type": "string",
95
+ "field": "baseText",
96
+ "query": {
97
+ "condition": "none",
98
+ "first_value": "iphone",
99
+ "second_value": null,
100
+ "first_condition": "contain",
101
+ "second_condition": "contain"
102
+ },
103
+ "width": 371,
104
+ "header": "Source Text",
105
+ "search": "",
106
+ "is_visible": true,
107
+ "column_data": [],
108
+ "filterValue": "",
109
+ "is_editable": false,
110
+ "is_sortable": false,
111
+ "is_search_able": true,
112
+ "column_dropdown_value": null
113
+ },
114
+ {
115
+ "id": 3,
116
+ "type": "string",
117
+ "field": "group",
118
+ "query": {
119
+ "_ids": [],
120
+ "condition": "none",
121
+ "first_value": null,
122
+ "second_value": null,
123
+ "first_condition": "contain",
124
+ "second_condition": null
125
+ },
126
+ "width": 124,
127
+ "header": "Group",
128
+ "search": null,
129
+ "is_visible": true,
130
+ "column_data": [],
131
+ "filterValue": null,
132
+ "is_editable": false,
133
+ "is_sortable": false,
134
+ "is_search_able": true,
135
+ "column_dropdown_value": null
136
+ },
137
+ {
138
+ "id": 4,
139
+ "type": "string",
140
+ "field": "reference",
141
+ "query": {
142
+ "_ids": [],
143
+ "condition": "none",
144
+ "first_value": null,
145
+ "second_value": null,
146
+ "first_condition": "contain",
147
+ "second_condition": null
148
+ },
149
+ "width": 150,
150
+ "header": "Reference",
151
+ "search": null,
152
+ "is_visible": true,
153
+ "column_data": [],
154
+ "filterValue": null,
155
+ "is_editable": false,
156
+ "is_sortable": false,
157
+ "is_search_able": true,
158
+ "column_dropdown_value": null
159
+ },
160
+ {
161
+ "id": 5,
162
+ "type": "string",
163
+ "field": "stringKey",
164
+ "query": {
165
+ "_ids": [],
166
+ "condition": "none",
167
+ "first_value": null,
168
+ "second_value": null,
169
+ "first_condition": "contain",
170
+ "second_condition": null
171
+ },
172
+ "width": 292,
173
+ "header": "String Key",
174
+ "search": null,
175
+ "is_visible": true,
176
+ "column_data": [],
177
+ "filterValue": null,
178
+ "is_editable": false,
179
+ "is_sortable": false,
180
+ "is_search_able": true,
181
+ "column_dropdown_value": null
182
+ },
183
+ {
184
+ "id": 6,
185
+ "type": "dropdown",
186
+ "field": "lang",
187
+ "query": {
188
+ "_ids": [],
189
+ "condition": "none",
190
+ "first_value": null,
191
+ "second_value": null,
192
+ "first_condition": "contain",
193
+ "second_condition": null
194
+ },
195
+ "width": 477,
196
+ "header": "Language",
197
+ "search": null,
198
+ "is_visible": true,
199
+ "column_data": [],
200
+ "filterValue": null,
201
+ "is_editable": false,
202
+ "is_sortable": true,
203
+ "is_search_able": false,
204
+ "column_dropdown_value": [
205
+ {
206
+ "id": 4,
207
+ "value": "French (Canada)"
208
+ },
209
+ {
210
+ "id": 6,
211
+ "value": "Spanish (Mexico)"
212
+ },
213
+ {
214
+ "id": 8,
215
+ "value": "German (Austria)"
216
+ },
217
+ {
218
+ "id": 9,
219
+ "value": "Chinese (China)"
220
+ },
221
+ {
222
+ "id": 10,
223
+ "value": "Chinese (Hong Kong)"
224
+ },
225
+ {
226
+ "id": 11,
227
+ "value": "Chinese (Taiwan)"
228
+ },
229
+ {
230
+ "id": 13,
231
+ "value": "Russian (Russia)"
232
+ },
233
+ {
234
+ "id": 15,
235
+ "value": "Italian (Switzerland)"
236
+ },
237
+ {
238
+ "id": 18,
239
+ "value": "Finnish (Finland)"
240
+ },
241
+ {
242
+ "id": 20,
243
+ "value": "Norwegian (Norway)"
244
+ },
245
+ {
246
+ "id": 34,
247
+ "value": "Slovenian (Slovenia)"
248
+ },
249
+ {
250
+ "id": 27,
251
+ "value": "Bulgarian (Български)"
252
+ },
253
+ {
254
+ "id": 29,
255
+ "value": "Croatian (Hrvatski)"
256
+ },
257
+ {
258
+ "id": 22,
259
+ "value": "Czech (Čeština)"
260
+ },
261
+ {
262
+ "id": 19,
263
+ "value": "Danish (Dansk)"
264
+ },
265
+ {
266
+ "id": 16,
267
+ "value": "Dutch (Nederlands)"
268
+ },
269
+ {
270
+ "id": 1,
271
+ "value": "English (English)"
272
+ },
273
+ {
274
+ "id": 28,
275
+ "value": "Estonian (Eesti)"
276
+ },
277
+ {
278
+ "id": 3,
279
+ "value": "French (Français)"
280
+ },
281
+ {
282
+ "id": 7,
283
+ "value": "German (Deutsch)"
284
+ },
285
+ {
286
+ "id": 23,
287
+ "value": "Greek (Ελληνικά)"
288
+ },
289
+ {
290
+ "id": 25,
291
+ "value": "Hungarian (Magyar)"
292
+ },
293
+ {
294
+ "id": 30,
295
+ "value": "Icelandic (Íslenska)"
296
+ },
297
+ {
298
+ "id": 14,
299
+ "value": "Italian (Italiano)"
300
+ },
301
+ {
302
+ "id": 32,
303
+ "value": "Latvian (Latviešu)"
304
+ },
305
+ {
306
+ "id": 31,
307
+ "value": "Lithuanian (Lietuvių)"
308
+ },
309
+ {
310
+ "id": 21,
311
+ "value": "Polish (Polski)"
312
+ },
313
+ {
314
+ "id": 12,
315
+ "value": "Portuguese (Português)"
316
+ },
317
+ {
318
+ "id": 24,
319
+ "value": "Romanian (Română)"
320
+ },
321
+ {
322
+ "id": 33,
323
+ "value": "Slovak (Slovenčina)"
324
+ },
325
+ {
326
+ "id": 5,
327
+ "value": "Spanish (Español)"
328
+ },
329
+ {
330
+ "id": 17,
331
+ "value": "Swedish (Svenska)"
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "id": 8,
337
+ "type": "dropdown",
338
+ "field": "verified",
339
+ "query": {
340
+ "_ids": [],
341
+ "condition": "none",
342
+ "first_value": null,
343
+ "second_value": null,
344
+ "first_condition": "contain",
345
+ "second_condition": null
346
+ },
347
+ "width": 208,
348
+ "header": "Verified",
349
+ "pinned": null,
350
+ "search": null,
351
+ "is_visible": true,
352
+ "column_data": [],
353
+ "filterValue": null,
354
+ "is_editable": false,
355
+ "is_sortable": false,
356
+ "is_search_able": false,
357
+ "column_dropdown_value": [
358
+ "Verified",
359
+ "Un Verified"
360
+ ]
361
+ },
362
+ {
363
+ "id": 9,
364
+ "type": "dropdown",
365
+ "field": "verifiedBy.name",
366
+ "query": {
367
+ "_ids": [],
368
+ "condition": "none",
369
+ "first_value": null,
370
+ "second_value": null,
371
+ "first_condition": "contain",
372
+ "second_condition": null
373
+ },
374
+ "width": 150,
375
+ "header": "Verified By",
376
+ "search": null,
377
+ "is_visible": true,
378
+ "column_data": [],
379
+ "filterValue": null,
380
+ "is_editable": false,
381
+ "is_sortable": false,
382
+ "is_search_able": false,
383
+ "column_dropdown_value": [
384
+ {
385
+ "id": 2,
386
+ "value": "Malik"
387
+ },
388
+ {
389
+ "id": 67,
390
+ "value": "Parth"
391
+ },
392
+ {
393
+ "id": 39,
394
+ "value": "Jay"
395
+ },
396
+ {
397
+ "id": 100,
398
+ "value": "Yash"
399
+ },
400
+ {
401
+ "id": 101,
402
+ "value": "Rohan"
403
+ },
404
+ {
405
+ "id": 102,
406
+ "value": "Krunal"
407
+ },
408
+ {
409
+ "id": 103,
410
+ "value": "Keyur"
411
+ },
412
+ {
413
+ "id": 104,
414
+ "value": "Vivek"
415
+ },
416
+ {
417
+ "id": 166,
418
+ "value": "Moosa"
419
+ },
420
+ {
421
+ "id": 233,
422
+ "value": "Ravi"
423
+ },
424
+ {
425
+ "id": 133,
426
+ "value": "Waqas"
427
+ },
428
+ {
429
+ "id": 199,
430
+ "value": "Mirkaz"
431
+ },
432
+ {
433
+ "id": 265,
434
+ "value": "Sara"
435
+ },
436
+ {
437
+ "id": 298,
438
+ "value": "Paul"
439
+ },
440
+ {
441
+ "id": 331,
442
+ "value": "Saad"
443
+ },
444
+ {
445
+ "id": 332,
446
+ "value": "Himani"
447
+ },
448
+ {
449
+ "id": 333,
450
+ "value": "Edoardo"
451
+ },
452
+ {
453
+ "id": 334,
454
+ "value": "Aman"
455
+ },
456
+ {
457
+ "id": 336,
458
+ "value": "MAsif"
459
+ }
460
+ ]
461
+ },
462
+ {
463
+ "id": 10,
464
+ "type": "dropdown",
465
+ "field": "translator.type",
466
+ "query": {
467
+ "_ids": [],
468
+ "condition": "none",
469
+ "first_value": null,
470
+ "second_value": null,
471
+ "first_condition": "contain",
472
+ "second_condition": null
473
+ },
474
+ "width": 150,
475
+ "header": "Translator",
476
+ "search": null,
477
+ "is_visible": true,
478
+ "column_data": [],
479
+ "filterValue": null,
480
+ "is_editable": false,
481
+ "is_sortable": false,
482
+ "is_search_able": false,
483
+ "column_dropdown_value": [
484
+ {
485
+ "id": 1,
486
+ "value": "GOOGLE"
487
+ },
488
+ {
489
+ "id": 3,
490
+ "value": "MANUAL"
491
+ },
492
+ {
493
+ "id": 2,
494
+ "value": "CHATGPT"
495
+ }
496
+ ]
497
+ },
498
+ {
499
+ "id": 10,
500
+ "type": "dropdown",
501
+ "field": "status",
502
+ "query": {
503
+ "_ids": [],
504
+ "condition": "none",
505
+ "first_value": null,
506
+ "second_value": null,
507
+ "first_condition": "contain",
508
+ "second_condition": null
509
+ },
510
+ "width": 150,
511
+ "header": "Status",
512
+ "search": null,
513
+ "is_visible": true,
514
+ "column_data": [],
515
+ "filterValue": null,
516
+ "is_editable": false,
517
+ "is_sortable": false,
518
+ "is_search_able": false,
519
+ "column_dropdown_value": [
520
+ "PENDING",
521
+ "COMPLETED",
522
+ "FAILED"
523
+ ]
524
+ },
525
+ {
526
+ "id": 11,
527
+ "type": "string",
528
+ "field": "editPageURL",
529
+ "query": {
530
+ "_ids": [],
531
+ "condition": "none",
532
+ "first_value": null,
533
+ "second_value": null,
534
+ "first_condition": "contain",
535
+ "second_condition": null
536
+ },
537
+ "width": 150,
538
+ "header": "Edit Page URL",
539
+ "search": null,
540
+ "is_visible": true,
541
+ "column_data": [],
542
+ "filterValue": null,
543
+ "is_editable": false,
544
+ "is_sortable": false,
545
+ "is_search_able": true,
546
+ "column_dropdown_value": null
547
+ },
548
+ {
549
+ "id": 12,
550
+ "type": "string",
551
+ "field": "viewPageURL",
552
+ "query": {
553
+ "_ids": [],
554
+ "condition": "none",
555
+ "first_value": null,
556
+ "second_value": null,
557
+ "first_condition": "contain",
558
+ "second_condition": null
559
+ },
560
+ "width": 150,
561
+ "header": "View Page URL",
562
+ "search": null,
563
+ "is_visible": true,
564
+ "column_data": [],
565
+ "filterValue": null,
566
+ "is_editable": false,
567
+ "is_sortable": false,
568
+ "is_search_able": true,
569
+ "column_dropdown_value": null
570
+ },
571
+ {
572
+ "id": 13,
573
+ "type": "date",
574
+ "field": "createdAt",
575
+ "query": {
576
+ "_ids": [],
577
+ "condition": "none",
578
+ "first_value": null,
579
+ "second_value": null,
580
+ "first_condition": "contain",
581
+ "second_condition": null
582
+ },
583
+ "width": 150,
584
+ "header": "Created At",
585
+ "search": null,
586
+ "is_visible": true,
587
+ "column_data": [],
588
+ "filterValue": null,
589
+ "is_editable": false,
590
+ "is_sortable": true,
591
+ "is_search_able": false,
592
+ "column_dropdown_value": null
593
+ },
594
+ {
595
+ "id": 14,
596
+ "type": "date",
597
+ "field": "updatedAt",
598
+ "query": {
599
+ "_ids": [],
600
+ "condition": "none",
601
+ "first_value": null,
602
+ "second_value": null,
603
+ "first_condition": "contain",
604
+ "second_condition": null
605
+ },
606
+ "width": 150,
607
+ "header": "Updated At",
608
+ "search": null,
609
+ "is_visible": true,
610
+ "column_data": [],
611
+ "filterValue": null,
612
+ "is_editable": false,
613
+ "is_sortable": true,
614
+ "is_search_able": false,
615
+ "column_dropdown_value": null
616
+ }
617
+ ],
618
+ "filters": [
619
+ {
620
+ "_ids": [
621
+ 1
622
+ ],
623
+ "type": "dropdown",
624
+ "field": "application.name",
625
+ "query": null,
626
+ "search": ""
627
+ },
628
+ {
629
+ "_ids": [],
630
+ "type": "string",
631
+ "field": "baseText",
632
+ "query": {
633
+ "condition": "none",
634
+ "first_value": "iphone",
635
+ "second_value": null,
636
+ "first_condition": "contain",
637
+ "second_condition": "contain"
638
+ },
639
+ "search": ""
640
+ }
641
+ ],
642
+ "config": {
643
+ "fontFaimly": "sans-serif",
644
+ "bodyTextFontsSize": "12",
645
+ "showVerticalBorder": false,
646
+ "headerTextFontsSize": "12",
647
+ "selectedTableLayout": "medium"
648
+ },
649
+ "createdAt": "2025-09-16T04:58:04.022Z",
650
+ "updatedAt": "2025-09-16T04:58:04.022Z"
651
+ },
652
+ {
653
+ "id": 20,
654
+ "type": "API",
655
+ "name": "With out Filters",
656
+ "userId": 336,
657
+ "columns": [
658
+ {
659
+ "id": 1,
660
+ "type": "dropdown",
661
+ "field": "application.name",
662
+ "query": {
663
+ "_ids": [
664
+ 1
665
+ ],
666
+ "condition": "none",
667
+ "first_value": null,
668
+ "second_value": null,
669
+ "first_condition": "contain",
670
+ "second_condition": null
671
+ },
672
+ "width": 244,
673
+ "header": "Application",
674
+ "pinned": null,
675
+ "search": "",
676
+ "is_visible": true,
677
+ "column_data": [],
678
+ "filterValue": [
679
+ 1
680
+ ],
681
+ "is_editable": false,
682
+ "is_sortable": false,
683
+ "is_search_able": false,
684
+ "column_dropdown_value": [
685
+ {
686
+ "id": 34,
687
+ "value": "Magento Dev"
688
+ },
689
+ {
690
+ "id": 100,
691
+ "value": "Magento 1.9 EU"
692
+ },
693
+ {
694
+ "id": 67,
695
+ "value": "Magento 1.9 CA"
696
+ },
697
+ {
698
+ "id": 1,
699
+ "value": "Magento 1.9 UK"
700
+ },
701
+ {
702
+ "id": 199,
703
+ "value": "TestApp"
704
+ },
705
+ {
706
+ "id": 166,
707
+ "value": "Magento 1.9 GP"
708
+ },
709
+ {
710
+ "id": 233,
711
+ "value": "Admin test app"
712
+ },
713
+ {
714
+ "id": 133,
715
+ "value": "Magento 1.9 US"
716
+ }
717
+ ]
718
+ },
719
+ {
720
+ "id": 7,
721
+ "type": "string",
722
+ "field": "translatedTexts",
723
+ "query": {
724
+ "_ids": [],
725
+ "condition": "none",
726
+ "first_value": null,
727
+ "second_value": null,
728
+ "first_condition": "contain",
729
+ "second_condition": null
730
+ },
731
+ "width": 266,
732
+ "header": "Translated Texts",
733
+ "search": null,
734
+ "is_visible": true,
735
+ "column_data": [],
736
+ "filterValue": null,
737
+ "is_editable": true,
738
+ "is_sortable": false,
739
+ "is_search_able": true,
740
+ "column_dropdown_value": []
741
+ },
742
+ {
743
+ "id": 2,
744
+ "type": "string",
745
+ "field": "baseText",
746
+ "query": {
747
+ "condition": "none",
748
+ "first_value": "iphone",
749
+ "second_value": null,
750
+ "first_condition": "contain",
751
+ "second_condition": "contain"
752
+ },
753
+ "width": 371,
754
+ "header": "Source Text",
755
+ "search": "",
756
+ "is_visible": true,
757
+ "column_data": [],
758
+ "filterValue": "",
759
+ "is_editable": false,
760
+ "is_sortable": false,
761
+ "is_search_able": true,
762
+ "column_dropdown_value": null
763
+ },
764
+ {
765
+ "id": 3,
766
+ "type": "string",
767
+ "field": "group",
768
+ "query": {
769
+ "_ids": [],
770
+ "condition": "none",
771
+ "first_value": null,
772
+ "second_value": null,
773
+ "first_condition": "contain",
774
+ "second_condition": null
775
+ },
776
+ "width": 124,
777
+ "header": "Group",
778
+ "search": null,
779
+ "is_visible": true,
780
+ "column_data": [],
781
+ "filterValue": null,
782
+ "is_editable": false,
783
+ "is_sortable": false,
784
+ "is_search_able": true,
785
+ "column_dropdown_value": null
786
+ },
787
+ {
788
+ "id": 4,
789
+ "type": "string",
790
+ "field": "reference",
791
+ "query": {
792
+ "_ids": [],
793
+ "condition": "none",
794
+ "first_value": null,
795
+ "second_value": null,
796
+ "first_condition": "contain",
797
+ "second_condition": null
798
+ },
799
+ "width": 150,
800
+ "header": "Reference",
801
+ "search": null,
802
+ "is_visible": true,
803
+ "column_data": [],
804
+ "filterValue": null,
805
+ "is_editable": false,
806
+ "is_sortable": false,
807
+ "is_search_able": true,
808
+ "column_dropdown_value": null
809
+ },
810
+ {
811
+ "id": 5,
812
+ "type": "string",
813
+ "field": "stringKey",
814
+ "query": {
815
+ "_ids": [],
816
+ "condition": "none",
817
+ "first_value": null,
818
+ "second_value": null,
819
+ "first_condition": "contain",
820
+ "second_condition": null
821
+ },
822
+ "width": 292,
823
+ "header": "String Key",
824
+ "search": null,
825
+ "is_visible": true,
826
+ "column_data": [],
827
+ "filterValue": null,
828
+ "is_editable": false,
829
+ "is_sortable": false,
830
+ "is_search_able": true,
831
+ "column_dropdown_value": null
832
+ },
833
+ {
834
+ "id": 6,
835
+ "type": "dropdown",
836
+ "field": "lang",
837
+ "query": {
838
+ "_ids": [],
839
+ "condition": "none",
840
+ "first_value": null,
841
+ "second_value": null,
842
+ "first_condition": "contain",
843
+ "second_condition": null
844
+ },
845
+ "width": 477,
846
+ "header": "Language",
847
+ "search": null,
848
+ "is_visible": true,
849
+ "column_data": [],
850
+ "filterValue": null,
851
+ "is_editable": false,
852
+ "is_sortable": true,
853
+ "is_search_able": false,
854
+ "column_dropdown_value": [
855
+ {
856
+ "id": 4,
857
+ "value": "French (Canada)"
858
+ },
859
+ {
860
+ "id": 6,
861
+ "value": "Spanish (Mexico)"
862
+ },
863
+ {
864
+ "id": 8,
865
+ "value": "German (Austria)"
866
+ },
867
+ {
868
+ "id": 9,
869
+ "value": "Chinese (China)"
870
+ },
871
+ {
872
+ "id": 10,
873
+ "value": "Chinese (Hong Kong)"
874
+ },
875
+ {
876
+ "id": 11,
877
+ "value": "Chinese (Taiwan)"
878
+ },
879
+ {
880
+ "id": 13,
881
+ "value": "Russian (Russia)"
882
+ },
883
+ {
884
+ "id": 15,
885
+ "value": "Italian (Switzerland)"
886
+ },
887
+ {
888
+ "id": 18,
889
+ "value": "Finnish (Finland)"
890
+ },
891
+ {
892
+ "id": 20,
893
+ "value": "Norwegian (Norway)"
894
+ },
895
+ {
896
+ "id": 34,
897
+ "value": "Slovenian (Slovenia)"
898
+ },
899
+ {
900
+ "id": 27,
901
+ "value": "Bulgarian (Български)"
902
+ },
903
+ {
904
+ "id": 29,
905
+ "value": "Croatian (Hrvatski)"
906
+ },
907
+ {
908
+ "id": 22,
909
+ "value": "Czech (Čeština)"
910
+ },
911
+ {
912
+ "id": 19,
913
+ "value": "Danish (Dansk)"
914
+ },
915
+ {
916
+ "id": 16,
917
+ "value": "Dutch (Nederlands)"
918
+ },
919
+ {
920
+ "id": 1,
921
+ "value": "English (English)"
922
+ },
923
+ {
924
+ "id": 28,
925
+ "value": "Estonian (Eesti)"
926
+ },
927
+ {
928
+ "id": 3,
929
+ "value": "French (Français)"
930
+ },
931
+ {
932
+ "id": 7,
933
+ "value": "German (Deutsch)"
934
+ },
935
+ {
936
+ "id": 23,
937
+ "value": "Greek (Ελληνικά)"
938
+ },
939
+ {
940
+ "id": 25,
941
+ "value": "Hungarian (Magyar)"
942
+ },
943
+ {
944
+ "id": 30,
945
+ "value": "Icelandic (Íslenska)"
946
+ },
947
+ {
948
+ "id": 14,
949
+ "value": "Italian (Italiano)"
950
+ },
951
+ {
952
+ "id": 32,
953
+ "value": "Latvian (Latviešu)"
954
+ },
955
+ {
956
+ "id": 31,
957
+ "value": "Lithuanian (Lietuvių)"
958
+ },
959
+ {
960
+ "id": 21,
961
+ "value": "Polish (Polski)"
962
+ },
963
+ {
964
+ "id": 12,
965
+ "value": "Portuguese (Português)"
966
+ },
967
+ {
968
+ "id": 24,
969
+ "value": "Romanian (Română)"
970
+ },
971
+ {
972
+ "id": 33,
973
+ "value": "Slovak (Slovenčina)"
974
+ },
975
+ {
976
+ "id": 5,
977
+ "value": "Spanish (Español)"
978
+ },
979
+ {
980
+ "id": 17,
981
+ "value": "Swedish (Svenska)"
982
+ }
983
+ ]
984
+ },
985
+ {
986
+ "id": 8,
987
+ "type": "dropdown",
988
+ "field": "verified",
989
+ "query": {
990
+ "_ids": [],
991
+ "condition": "none",
992
+ "first_value": null,
993
+ "second_value": null,
994
+ "first_condition": "contain",
995
+ "second_condition": null
996
+ },
997
+ "width": 208,
998
+ "header": "Verified",
999
+ "pinned": null,
1000
+ "search": null,
1001
+ "is_visible": true,
1002
+ "column_data": [],
1003
+ "filterValue": null,
1004
+ "is_editable": false,
1005
+ "is_sortable": false,
1006
+ "is_search_able": false,
1007
+ "column_dropdown_value": [
1008
+ "Verified",
1009
+ "Un Verified"
1010
+ ]
1011
+ },
1012
+ {
1013
+ "id": 9,
1014
+ "type": "dropdown",
1015
+ "field": "verifiedBy.name",
1016
+ "query": {
1017
+ "_ids": [],
1018
+ "condition": "none",
1019
+ "first_value": null,
1020
+ "second_value": null,
1021
+ "first_condition": "contain",
1022
+ "second_condition": null
1023
+ },
1024
+ "width": 150,
1025
+ "header": "Verified By",
1026
+ "search": null,
1027
+ "is_visible": true,
1028
+ "column_data": [],
1029
+ "filterValue": null,
1030
+ "is_editable": false,
1031
+ "is_sortable": false,
1032
+ "is_search_able": false,
1033
+ "column_dropdown_value": [
1034
+ {
1035
+ "id": 2,
1036
+ "value": "Malik"
1037
+ },
1038
+ {
1039
+ "id": 67,
1040
+ "value": "Parth"
1041
+ },
1042
+ {
1043
+ "id": 39,
1044
+ "value": "Jay"
1045
+ },
1046
+ {
1047
+ "id": 100,
1048
+ "value": "Yash"
1049
+ },
1050
+ {
1051
+ "id": 101,
1052
+ "value": "Rohan"
1053
+ },
1054
+ {
1055
+ "id": 102,
1056
+ "value": "Krunal"
1057
+ },
1058
+ {
1059
+ "id": 103,
1060
+ "value": "Keyur"
1061
+ },
1062
+ {
1063
+ "id": 104,
1064
+ "value": "Vivek"
1065
+ },
1066
+ {
1067
+ "id": 166,
1068
+ "value": "Moosa"
1069
+ },
1070
+ {
1071
+ "id": 233,
1072
+ "value": "Ravi"
1073
+ },
1074
+ {
1075
+ "id": 133,
1076
+ "value": "Waqas"
1077
+ },
1078
+ {
1079
+ "id": 199,
1080
+ "value": "Mirkaz"
1081
+ },
1082
+ {
1083
+ "id": 265,
1084
+ "value": "Sara"
1085
+ },
1086
+ {
1087
+ "id": 298,
1088
+ "value": "Paul"
1089
+ },
1090
+ {
1091
+ "id": 331,
1092
+ "value": "Saad"
1093
+ },
1094
+ {
1095
+ "id": 332,
1096
+ "value": "Himani"
1097
+ },
1098
+ {
1099
+ "id": 333,
1100
+ "value": "Edoardo"
1101
+ },
1102
+ {
1103
+ "id": 334,
1104
+ "value": "Aman"
1105
+ },
1106
+ {
1107
+ "id": 336,
1108
+ "value": "MAsif"
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "id": 10,
1114
+ "type": "dropdown",
1115
+ "field": "translator.type",
1116
+ "query": {
1117
+ "_ids": [],
1118
+ "condition": "none",
1119
+ "first_value": null,
1120
+ "second_value": null,
1121
+ "first_condition": "contain",
1122
+ "second_condition": null
1123
+ },
1124
+ "width": 150,
1125
+ "header": "Translator",
1126
+ "search": null,
1127
+ "is_visible": true,
1128
+ "column_data": [],
1129
+ "filterValue": null,
1130
+ "is_editable": false,
1131
+ "is_sortable": false,
1132
+ "is_search_able": false,
1133
+ "column_dropdown_value": [
1134
+ {
1135
+ "id": 1,
1136
+ "value": "GOOGLE"
1137
+ },
1138
+ {
1139
+ "id": 3,
1140
+ "value": "MANUAL"
1141
+ },
1142
+ {
1143
+ "id": 2,
1144
+ "value": "CHATGPT"
1145
+ }
1146
+ ]
1147
+ },
1148
+ {
1149
+ "id": 10,
1150
+ "type": "dropdown",
1151
+ "field": "status",
1152
+ "query": {
1153
+ "_ids": [],
1154
+ "condition": "none",
1155
+ "first_value": null,
1156
+ "second_value": null,
1157
+ "first_condition": "contain",
1158
+ "second_condition": null
1159
+ },
1160
+ "width": 150,
1161
+ "header": "Status",
1162
+ "search": null,
1163
+ "is_visible": true,
1164
+ "column_data": [],
1165
+ "filterValue": null,
1166
+ "is_editable": false,
1167
+ "is_sortable": false,
1168
+ "is_search_able": false,
1169
+ "column_dropdown_value": [
1170
+ "PENDING",
1171
+ "COMPLETED",
1172
+ "FAILED"
1173
+ ]
1174
+ },
1175
+ {
1176
+ "id": 11,
1177
+ "type": "string",
1178
+ "field": "editPageURL",
1179
+ "query": {
1180
+ "_ids": [],
1181
+ "condition": "none",
1182
+ "first_value": null,
1183
+ "second_value": null,
1184
+ "first_condition": "contain",
1185
+ "second_condition": null
1186
+ },
1187
+ "width": 150,
1188
+ "header": "Edit Page URL",
1189
+ "search": null,
1190
+ "is_visible": true,
1191
+ "column_data": [],
1192
+ "filterValue": null,
1193
+ "is_editable": false,
1194
+ "is_sortable": false,
1195
+ "is_search_able": true,
1196
+ "column_dropdown_value": null
1197
+ },
1198
+ {
1199
+ "id": 12,
1200
+ "type": "string",
1201
+ "field": "viewPageURL",
1202
+ "query": {
1203
+ "_ids": [],
1204
+ "condition": "none",
1205
+ "first_value": null,
1206
+ "second_value": null,
1207
+ "first_condition": "contain",
1208
+ "second_condition": null
1209
+ },
1210
+ "width": 150,
1211
+ "header": "View Page URL",
1212
+ "search": null,
1213
+ "is_visible": true,
1214
+ "column_data": [],
1215
+ "filterValue": null,
1216
+ "is_editable": false,
1217
+ "is_sortable": false,
1218
+ "is_search_able": true,
1219
+ "column_dropdown_value": null
1220
+ },
1221
+ {
1222
+ "id": 13,
1223
+ "type": "date",
1224
+ "field": "createdAt",
1225
+ "query": {
1226
+ "_ids": [],
1227
+ "condition": "none",
1228
+ "first_value": null,
1229
+ "second_value": null,
1230
+ "first_condition": "contain",
1231
+ "second_condition": null
1232
+ },
1233
+ "width": 150,
1234
+ "header": "Created At",
1235
+ "search": null,
1236
+ "is_visible": true,
1237
+ "column_data": [],
1238
+ "filterValue": null,
1239
+ "is_editable": false,
1240
+ "is_sortable": true,
1241
+ "is_search_able": false,
1242
+ "column_dropdown_value": null
1243
+ },
1244
+ {
1245
+ "id": 14,
1246
+ "type": "date",
1247
+ "field": "updatedAt",
1248
+ "query": {
1249
+ "_ids": [],
1250
+ "condition": "none",
1251
+ "first_value": null,
1252
+ "second_value": null,
1253
+ "first_condition": "contain",
1254
+ "second_condition": null
1255
+ },
1256
+ "width": 150,
1257
+ "header": "Updated At",
1258
+ "search": null,
1259
+ "is_visible": true,
1260
+ "column_data": [],
1261
+ "filterValue": null,
1262
+ "is_editable": false,
1263
+ "is_sortable": true,
1264
+ "is_search_able": false,
1265
+ "column_dropdown_value": null
1266
+ }
1267
+ ],
1268
+ "filters": [],
1269
+ "config": {
1270
+ "fontFaimly": "sans-serif",
1271
+ "bodyTextFontsSize": "12",
1272
+ "showVerticalBorder": false,
1273
+ "headerTextFontsSize": "12",
1274
+ "selectedTableLayout": "medium"
1275
+ },
1276
+ "createdAt": "2025-09-16T04:58:47.951Z",
1277
+ "updatedAt": "2025-09-16T04:58:47.951Z"
1278
+ },
1279
+ {
1280
+ "id": 18,
1281
+ "type": "API",
1282
+ "name": "small view",
1283
+ "userId": 336,
1284
+ "columns": [
1285
+ {
1286
+ "id": 1,
1287
+ "type": "dropdown",
1288
+ "field": "application.name",
1289
+ "query": {
1290
+ "_ids": [],
1291
+ "condition": "none",
1292
+ "first_value": null,
1293
+ "second_value": null,
1294
+ "first_condition": "contain",
1295
+ "second_condition": null
1296
+ },
1297
+ "width": 244,
1298
+ "header": "Application",
1299
+ "pinned": null,
1300
+ "search": null,
1301
+ "is_visible": true,
1302
+ "column_data": [],
1303
+ "filterValue": null,
1304
+ "is_editable": false,
1305
+ "is_sortable": false,
1306
+ "is_search_able": false,
1307
+ "column_dropdown_value": [
1308
+ {
1309
+ "id": 34,
1310
+ "value": "Magento Dev"
1311
+ },
1312
+ {
1313
+ "id": 100,
1314
+ "value": "Magento 1.9 EU"
1315
+ },
1316
+ {
1317
+ "id": 67,
1318
+ "value": "Magento 1.9 CA"
1319
+ },
1320
+ {
1321
+ "id": 1,
1322
+ "value": "Magento 1.9 UK"
1323
+ },
1324
+ {
1325
+ "id": 199,
1326
+ "value": "TestApp"
1327
+ },
1328
+ {
1329
+ "id": 166,
1330
+ "value": "Magento 1.9 GP"
1331
+ },
1332
+ {
1333
+ "id": 233,
1334
+ "value": "Admin test app"
1335
+ },
1336
+ {
1337
+ "id": 133,
1338
+ "value": "Magento 1.9 US"
1339
+ }
1340
+ ]
1341
+ },
1342
+ {
1343
+ "id": 7,
1344
+ "type": "string",
1345
+ "field": "translatedTexts",
1346
+ "query": {
1347
+ "_ids": [],
1348
+ "condition": "none",
1349
+ "first_value": null,
1350
+ "second_value": null,
1351
+ "first_condition": "contain",
1352
+ "second_condition": null
1353
+ },
1354
+ "width": 266,
1355
+ "header": "Translated Texts",
1356
+ "search": null,
1357
+ "is_visible": true,
1358
+ "column_data": [],
1359
+ "filterValue": null,
1360
+ "is_editable": true,
1361
+ "is_sortable": false,
1362
+ "is_search_able": true,
1363
+ "column_dropdown_value": []
1364
+ },
1365
+ {
1366
+ "id": 2,
1367
+ "type": "string",
1368
+ "field": "baseText",
1369
+ "query": {
1370
+ "condition": "none",
1371
+ "first_value": "iphone",
1372
+ "second_value": null,
1373
+ "first_condition": "contain",
1374
+ "second_condition": "contain"
1375
+ },
1376
+ "width": 371,
1377
+ "header": "Source Text",
1378
+ "search": "",
1379
+ "is_visible": true,
1380
+ "column_data": [],
1381
+ "filterValue": "",
1382
+ "is_editable": false,
1383
+ "is_sortable": false,
1384
+ "is_search_able": true,
1385
+ "column_dropdown_value": null
1386
+ },
1387
+ {
1388
+ "id": 3,
1389
+ "type": "string",
1390
+ "field": "group",
1391
+ "query": {
1392
+ "_ids": [],
1393
+ "condition": "none",
1394
+ "first_value": null,
1395
+ "second_value": null,
1396
+ "first_condition": "contain",
1397
+ "second_condition": null
1398
+ },
1399
+ "width": 124,
1400
+ "header": "Group",
1401
+ "search": null,
1402
+ "is_visible": true,
1403
+ "column_data": [],
1404
+ "filterValue": null,
1405
+ "is_editable": false,
1406
+ "is_sortable": false,
1407
+ "is_search_able": true,
1408
+ "column_dropdown_value": null
1409
+ },
1410
+ {
1411
+ "id": 4,
1412
+ "type": "string",
1413
+ "field": "reference",
1414
+ "query": {
1415
+ "_ids": [],
1416
+ "condition": "none",
1417
+ "first_value": "hi",
1418
+ "second_value": null,
1419
+ "first_condition": "contain",
1420
+ "second_condition": "contain"
1421
+ },
1422
+ "width": 150,
1423
+ "header": "Reference",
1424
+ "search": "",
1425
+ "is_visible": true,
1426
+ "column_data": [],
1427
+ "filterValue": "",
1428
+ "is_editable": false,
1429
+ "is_sortable": false,
1430
+ "is_search_able": true,
1431
+ "column_dropdown_value": null
1432
+ },
1433
+ {
1434
+ "id": 5,
1435
+ "type": "string",
1436
+ "field": "stringKey",
1437
+ "query": {
1438
+ "_ids": [],
1439
+ "condition": "none",
1440
+ "first_value": null,
1441
+ "second_value": null,
1442
+ "first_condition": "contain",
1443
+ "second_condition": null
1444
+ },
1445
+ "width": 292,
1446
+ "header": "String Key",
1447
+ "search": null,
1448
+ "is_visible": true,
1449
+ "column_data": [],
1450
+ "filterValue": null,
1451
+ "is_editable": false,
1452
+ "is_sortable": false,
1453
+ "is_search_able": true,
1454
+ "column_dropdown_value": null
1455
+ },
1456
+ {
1457
+ "id": 6,
1458
+ "type": "dropdown",
1459
+ "field": "lang",
1460
+ "query": {
1461
+ "_ids": [],
1462
+ "condition": "none",
1463
+ "first_value": null,
1464
+ "second_value": null,
1465
+ "first_condition": "contain",
1466
+ "second_condition": null
1467
+ },
1468
+ "width": 477,
1469
+ "header": "Language",
1470
+ "search": null,
1471
+ "is_visible": true,
1472
+ "column_data": [],
1473
+ "filterValue": null,
1474
+ "is_editable": false,
1475
+ "is_sortable": true,
1476
+ "is_search_able": false,
1477
+ "column_dropdown_value": [
1478
+ {
1479
+ "id": 4,
1480
+ "value": "French (Canada)"
1481
+ },
1482
+ {
1483
+ "id": 6,
1484
+ "value": "Spanish (Mexico)"
1485
+ },
1486
+ {
1487
+ "id": 8,
1488
+ "value": "German (Austria)"
1489
+ },
1490
+ {
1491
+ "id": 9,
1492
+ "value": "Chinese (China)"
1493
+ },
1494
+ {
1495
+ "id": 10,
1496
+ "value": "Chinese (Hong Kong)"
1497
+ },
1498
+ {
1499
+ "id": 11,
1500
+ "value": "Chinese (Taiwan)"
1501
+ },
1502
+ {
1503
+ "id": 13,
1504
+ "value": "Russian (Russia)"
1505
+ },
1506
+ {
1507
+ "id": 15,
1508
+ "value": "Italian (Switzerland)"
1509
+ },
1510
+ {
1511
+ "id": 18,
1512
+ "value": "Finnish (Finland)"
1513
+ },
1514
+ {
1515
+ "id": 20,
1516
+ "value": "Norwegian (Norway)"
1517
+ },
1518
+ {
1519
+ "id": 34,
1520
+ "value": "Slovenian (Slovenia)"
1521
+ },
1522
+ {
1523
+ "id": 27,
1524
+ "value": "Bulgarian (Български)"
1525
+ },
1526
+ {
1527
+ "id": 29,
1528
+ "value": "Croatian (Hrvatski)"
1529
+ },
1530
+ {
1531
+ "id": 22,
1532
+ "value": "Czech (Čeština)"
1533
+ },
1534
+ {
1535
+ "id": 19,
1536
+ "value": "Danish (Dansk)"
1537
+ },
1538
+ {
1539
+ "id": 16,
1540
+ "value": "Dutch (Nederlands)"
1541
+ },
1542
+ {
1543
+ "id": 1,
1544
+ "value": "English (English)"
1545
+ },
1546
+ {
1547
+ "id": 28,
1548
+ "value": "Estonian (Eesti)"
1549
+ },
1550
+ {
1551
+ "id": 3,
1552
+ "value": "French (Français)"
1553
+ },
1554
+ {
1555
+ "id": 7,
1556
+ "value": "German (Deutsch)"
1557
+ },
1558
+ {
1559
+ "id": 23,
1560
+ "value": "Greek (Ελληνικά)"
1561
+ },
1562
+ {
1563
+ "id": 25,
1564
+ "value": "Hungarian (Magyar)"
1565
+ },
1566
+ {
1567
+ "id": 30,
1568
+ "value": "Icelandic (Íslenska)"
1569
+ },
1570
+ {
1571
+ "id": 14,
1572
+ "value": "Italian (Italiano)"
1573
+ },
1574
+ {
1575
+ "id": 32,
1576
+ "value": "Latvian (Latviešu)"
1577
+ },
1578
+ {
1579
+ "id": 31,
1580
+ "value": "Lithuanian (Lietuvių)"
1581
+ },
1582
+ {
1583
+ "id": 21,
1584
+ "value": "Polish (Polski)"
1585
+ },
1586
+ {
1587
+ "id": 12,
1588
+ "value": "Portuguese (Português)"
1589
+ },
1590
+ {
1591
+ "id": 24,
1592
+ "value": "Romanian (Română)"
1593
+ },
1594
+ {
1595
+ "id": 33,
1596
+ "value": "Slovak (Slovenčina)"
1597
+ },
1598
+ {
1599
+ "id": 5,
1600
+ "value": "Spanish (Español)"
1601
+ },
1602
+ {
1603
+ "id": 17,
1604
+ "value": "Swedish (Svenska)"
1605
+ }
1606
+ ]
1607
+ },
1608
+ {
1609
+ "id": 8,
1610
+ "type": "dropdown",
1611
+ "field": "verified",
1612
+ "query": {
1613
+ "_ids": [],
1614
+ "condition": "none",
1615
+ "first_value": null,
1616
+ "second_value": null,
1617
+ "first_condition": "contain",
1618
+ "second_condition": null
1619
+ },
1620
+ "width": 208,
1621
+ "header": "Verified",
1622
+ "pinned": null,
1623
+ "search": null,
1624
+ "is_visible": true,
1625
+ "column_data": [],
1626
+ "filterValue": null,
1627
+ "is_editable": false,
1628
+ "is_sortable": false,
1629
+ "is_search_able": false,
1630
+ "column_dropdown_value": [
1631
+ "Verified",
1632
+ "Un Verified"
1633
+ ]
1634
+ },
1635
+ {
1636
+ "id": 9,
1637
+ "type": "dropdown",
1638
+ "field": "verifiedBy.name",
1639
+ "query": {
1640
+ "_ids": [],
1641
+ "condition": "none",
1642
+ "first_value": null,
1643
+ "second_value": null,
1644
+ "first_condition": "contain",
1645
+ "second_condition": null
1646
+ },
1647
+ "width": 150,
1648
+ "header": "Verified By",
1649
+ "search": null,
1650
+ "is_visible": true,
1651
+ "column_data": [],
1652
+ "filterValue": null,
1653
+ "is_editable": false,
1654
+ "is_sortable": false,
1655
+ "is_search_able": false,
1656
+ "column_dropdown_value": [
1657
+ {
1658
+ "id": 2,
1659
+ "value": "Malik"
1660
+ },
1661
+ {
1662
+ "id": 67,
1663
+ "value": "Parth"
1664
+ },
1665
+ {
1666
+ "id": 39,
1667
+ "value": "Jay"
1668
+ },
1669
+ {
1670
+ "id": 100,
1671
+ "value": "Yash"
1672
+ },
1673
+ {
1674
+ "id": 101,
1675
+ "value": "Rohan"
1676
+ },
1677
+ {
1678
+ "id": 102,
1679
+ "value": "Krunal"
1680
+ },
1681
+ {
1682
+ "id": 103,
1683
+ "value": "Keyur"
1684
+ },
1685
+ {
1686
+ "id": 104,
1687
+ "value": "Vivek"
1688
+ },
1689
+ {
1690
+ "id": 166,
1691
+ "value": "Moosa"
1692
+ },
1693
+ {
1694
+ "id": 233,
1695
+ "value": "Ravi"
1696
+ },
1697
+ {
1698
+ "id": 133,
1699
+ "value": "Waqas"
1700
+ },
1701
+ {
1702
+ "id": 199,
1703
+ "value": "Mirkaz"
1704
+ },
1705
+ {
1706
+ "id": 265,
1707
+ "value": "Sara"
1708
+ },
1709
+ {
1710
+ "id": 298,
1711
+ "value": "Paul"
1712
+ },
1713
+ {
1714
+ "id": 331,
1715
+ "value": "Saad"
1716
+ },
1717
+ {
1718
+ "id": 332,
1719
+ "value": "Himani"
1720
+ },
1721
+ {
1722
+ "id": 333,
1723
+ "value": "Edoardo"
1724
+ },
1725
+ {
1726
+ "id": 334,
1727
+ "value": "Aman"
1728
+ },
1729
+ {
1730
+ "id": 336,
1731
+ "value": "MAsif"
1732
+ }
1733
+ ]
1734
+ },
1735
+ {
1736
+ "id": 10,
1737
+ "type": "dropdown",
1738
+ "field": "translator.type",
1739
+ "query": {
1740
+ "_ids": [],
1741
+ "condition": "none",
1742
+ "first_value": null,
1743
+ "second_value": null,
1744
+ "first_condition": "contain",
1745
+ "second_condition": null
1746
+ },
1747
+ "width": 150,
1748
+ "header": "Translator",
1749
+ "search": null,
1750
+ "is_visible": true,
1751
+ "column_data": [],
1752
+ "filterValue": null,
1753
+ "is_editable": false,
1754
+ "is_sortable": false,
1755
+ "is_search_able": false,
1756
+ "column_dropdown_value": [
1757
+ {
1758
+ "id": 1,
1759
+ "value": "GOOGLE"
1760
+ },
1761
+ {
1762
+ "id": 3,
1763
+ "value": "MANUAL"
1764
+ },
1765
+ {
1766
+ "id": 2,
1767
+ "value": "CHATGPT"
1768
+ }
1769
+ ]
1770
+ },
1771
+ {
1772
+ "id": 10,
1773
+ "type": "dropdown",
1774
+ "field": "status",
1775
+ "query": {
1776
+ "_ids": [],
1777
+ "condition": "none",
1778
+ "first_value": null,
1779
+ "second_value": null,
1780
+ "first_condition": "contain",
1781
+ "second_condition": null
1782
+ },
1783
+ "width": 150,
1784
+ "header": "Status",
1785
+ "search": null,
1786
+ "is_visible": true,
1787
+ "column_data": [],
1788
+ "filterValue": null,
1789
+ "is_editable": false,
1790
+ "is_sortable": false,
1791
+ "is_search_able": false,
1792
+ "column_dropdown_value": [
1793
+ "PENDING",
1794
+ "COMPLETED",
1795
+ "FAILED"
1796
+ ]
1797
+ },
1798
+ {
1799
+ "id": 11,
1800
+ "type": "string",
1801
+ "field": "editPageURL",
1802
+ "query": {
1803
+ "_ids": [],
1804
+ "condition": "none",
1805
+ "first_value": null,
1806
+ "second_value": null,
1807
+ "first_condition": "contain",
1808
+ "second_condition": null
1809
+ },
1810
+ "width": 150,
1811
+ "header": "Edit Page URL",
1812
+ "search": null,
1813
+ "is_visible": true,
1814
+ "column_data": [],
1815
+ "filterValue": null,
1816
+ "is_editable": false,
1817
+ "is_sortable": false,
1818
+ "is_search_able": true,
1819
+ "column_dropdown_value": null
1820
+ },
1821
+ {
1822
+ "id": 12,
1823
+ "type": "string",
1824
+ "field": "viewPageURL",
1825
+ "query": {
1826
+ "_ids": [],
1827
+ "condition": "none",
1828
+ "first_value": null,
1829
+ "second_value": null,
1830
+ "first_condition": "contain",
1831
+ "second_condition": null
1832
+ },
1833
+ "width": 150,
1834
+ "header": "View Page URL",
1835
+ "search": null,
1836
+ "is_visible": true,
1837
+ "column_data": [],
1838
+ "filterValue": null,
1839
+ "is_editable": false,
1840
+ "is_sortable": false,
1841
+ "is_search_able": true,
1842
+ "column_dropdown_value": null
1843
+ },
1844
+ {
1845
+ "id": 13,
1846
+ "type": "date",
1847
+ "field": "createdAt",
1848
+ "query": {
1849
+ "_ids": [],
1850
+ "condition": "none",
1851
+ "first_value": null,
1852
+ "second_value": null,
1853
+ "first_condition": "contain",
1854
+ "second_condition": null
1855
+ },
1856
+ "width": 150,
1857
+ "header": "Created At",
1858
+ "search": null,
1859
+ "is_visible": true,
1860
+ "column_data": [],
1861
+ "filterValue": null,
1862
+ "is_editable": false,
1863
+ "is_sortable": true,
1864
+ "is_search_able": false,
1865
+ "column_dropdown_value": null
1866
+ },
1867
+ {
1868
+ "id": 14,
1869
+ "type": "date",
1870
+ "field": "updatedAt",
1871
+ "query": {
1872
+ "_ids": [],
1873
+ "condition": "none",
1874
+ "first_value": null,
1875
+ "second_value": null,
1876
+ "first_condition": "contain",
1877
+ "second_condition": null
1878
+ },
1879
+ "width": 150,
1880
+ "header": "Updated At",
1881
+ "search": null,
1882
+ "is_visible": true,
1883
+ "column_data": [],
1884
+ "filterValue": null,
1885
+ "is_editable": false,
1886
+ "is_sortable": true,
1887
+ "is_search_able": false,
1888
+ "column_dropdown_value": null
1889
+ }
1890
+ ],
1891
+ "filters": [
1892
+ {
1893
+ "_ids": [],
1894
+ "type": "string",
1895
+ "field": "baseText",
1896
+ "query": {
1897
+ "condition": "none",
1898
+ "first_value": "iphone",
1899
+ "second_value": null,
1900
+ "first_condition": "contain",
1901
+ "second_condition": "contain"
1902
+ },
1903
+ "search": ""
1904
+ },
1905
+ {
1906
+ "_ids": [],
1907
+ "type": "string",
1908
+ "field": "reference",
1909
+ "query": {
1910
+ "condition": "none",
1911
+ "first_value": "hi",
1912
+ "second_value": null,
1913
+ "first_condition": "contain",
1914
+ "second_condition": "contain"
1915
+ },
1916
+ "search": ""
1917
+ }
1918
+ ],
1919
+ "config": {
1920
+ "fontFaimly": "MV Boli",
1921
+ "bodyTextFontsSize": "11",
1922
+ "showVerticalBorder": false,
1923
+ "headerTextFontsSize": "11",
1924
+ "selectedTableLayout": "medium"
1925
+ },
1926
+ "createdAt": "2025-09-16T04:53:19.382Z",
1927
+ "updatedAt": "2025-09-16T06:11:27.043Z"
1928
+ }
1929
+ ]