@elliemae/ds-datagrids 2.2.0-alpha.3 → 3.0.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/cjs/DSDataGrid.js +635 -395
  2. package/cjs/DataGridImpl.js +128 -103
  3. package/cjs/PaginatedDataGrid.js +68 -68
  4. package/cjs/blockNames.js +11 -39
  5. package/cjs/columns/IconColumn.js +62 -78
  6. package/cjs/columns/NumberColumn.js +5 -35
  7. package/cjs/components/BodyCell.js +80 -83
  8. package/cjs/components/BodyList.js +52 -52
  9. package/cjs/components/ColumnVisibilityMenuOption.js +31 -53
  10. package/cjs/components/ColumnsOptionsMenuSection.js +44 -59
  11. package/cjs/components/EmptyState.js +50 -81
  12. package/cjs/components/HeaderCell.js +58 -64
  13. package/cjs/components/List.js +29 -41
  14. package/cjs/components/ListItem.js +36 -43
  15. package/cjs/components/NoResults.js +51 -55
  16. package/cjs/components/RowsLoader.js +22 -42
  17. package/cjs/components/Table.js +87 -78
  18. package/cjs/components/TableBody.js +60 -61
  19. package/cjs/components/TableHeader.js +30 -47
  20. package/cjs/components/footer/addOptionalFooterComponents.js +43 -53
  21. package/cjs/components/header/PrimaryControls.js +35 -49
  22. package/cjs/components/header/addOptionalHeaderComponents.js +43 -54
  23. package/cjs/components/index.js +17 -43
  24. package/cjs/components/renderers/defaultClassedRenderers.js +57 -64
  25. package/cjs/components/renderers/index.js +17 -44
  26. package/cjs/components/renderers/renderRowsLoader.js +18 -39
  27. package/cjs/components/tableContext.js +13 -36
  28. package/cjs/defaultPlugins.js +12 -44
  29. package/cjs/index.js +67 -72
  30. package/cjs/plugins/body-header-scroll-sync/BodyHeaderScrollSyncPlugin.js +114 -102
  31. package/cjs/plugins/body-header-scroll-sync/index.js +9 -35
  32. package/cjs/plugins/column-dnd/DndColumnsPlugin.js +86 -107
  33. package/cjs/plugins/column-dnd/decorateGridWithDndColumns.js +27 -43
  34. package/cjs/plugins/column-dnd/index.js +9 -35
  35. package/cjs/plugins/column-sizing/ColumnSizingPlugin.js +55 -59
  36. package/cjs/plugins/column-sizing/columnMeasurerTransformer.js +53 -48
  37. package/cjs/plugins/column-sizing/ext-points/decorateColumn.js +13 -40
  38. package/cjs/plugins/column-sizing/ext-points/getTableProps.js +54 -55
  39. package/cjs/plugins/column-sizing/getColumnNameFromProperty.js +9 -37
  40. package/cjs/plugins/column-sizing/index.js +9 -35
  41. package/cjs/plugins/column-sizing/useColumnSizeService.js +86 -72
  42. package/cjs/plugins/column-sizing/useStylesheetHelpers.js +199 -96
  43. package/cjs/plugins/column-sizing/utils.js +29 -52
  44. package/cjs/plugins/custom-cell-renderer/CustomRendererPlugin.js +16 -38
  45. package/cjs/plugins/custom-cell-renderer/addCustomRendererToCell.js +56 -61
  46. package/cjs/plugins/custom-cell-renderer/getRendererComponent.js +60 -58
  47. package/cjs/plugins/custom-cell-renderer/index.js +9 -35
  48. package/cjs/plugins/editable/EditableComponents/ComboBox.js +53 -50
  49. package/cjs/plugins/editable/EditableComponents/TextBox.js +76 -56
  50. package/cjs/plugins/editable/EditableComponents/index.js +11 -37
  51. package/cjs/plugins/editable/EditablePlugin.js +75 -60
  52. package/cjs/plugins/editable/decorateEditable.js +98 -61
  53. package/cjs/plugins/editable/getEditorComponent.js +76 -70
  54. package/cjs/plugins/editable/index.js +13 -38
  55. package/cjs/plugins/expandable-grid/ExpandableColumn.js +144 -112
  56. package/cjs/plugins/expandable-grid/ExpandablePlugin.js +180 -118
  57. package/cjs/plugins/expandable-grid/ExpandedRow.js +139 -117
  58. package/cjs/plugins/expandable-grid/ExpandedRowExtra.js +52 -54
  59. package/cjs/plugins/expandable-grid/index.js +11 -37
  60. package/cjs/plugins/expandable-grid/useExpandGridState.js +31 -45
  61. package/cjs/plugins/export-data/ExportDataPlugin.js +116 -82
  62. package/cjs/plugins/export-data/index.js +12 -35
  63. package/cjs/plugins/filterable/FilterablePlugin.js +55 -54
  64. package/cjs/plugins/filterable/addFilterToColumn.js +28 -40
  65. package/cjs/plugins/filterable/components/FilterableHeader.js +107 -119
  66. package/cjs/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.js +116 -116
  67. package/cjs/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.js +73 -97
  68. package/cjs/plugins/filterable/components/filterable-menus/SingleRangeSwitcherMenu.js +132 -138
  69. package/cjs/plugins/filterable/components/filterable-menus/TextFilterMenu.js +119 -115
  70. package/cjs/plugins/filterable/components/filterable-menus/defaultDateFormat.js +7 -35
  71. package/cjs/plugins/filterable/components/filterable-menus/getFilterMenuByType.js +15 -46
  72. package/cjs/plugins/filterable/filterableFormatter.js +51 -61
  73. package/cjs/plugins/filterable/filtering-helper/filterRowsByQuery.js +55 -60
  74. package/cjs/plugins/filterable/filtering-helper/strategiesOperators.js +22 -43
  75. package/cjs/plugins/filterable/helper.js +79 -68
  76. package/cjs/plugins/filterable/index.js +9 -35
  77. package/cjs/plugins/filterable/useFilterableState.js +66 -62
  78. package/cjs/plugins/grouping-by/GroupingByPlugin.js +23 -40
  79. package/cjs/plugins/grouping-grid/GroupingPlugin.js +109 -86
  80. package/cjs/plugins/grouping-grid/walkStrategy.js +26 -46
  81. package/cjs/plugins/index.js +48 -68
  82. package/cjs/plugins/infinite-scrolling/InfiniteScrollPlugin.js +88 -64
  83. package/cjs/plugins/infinite-scrolling/index.js +9 -35
  84. package/cjs/plugins/pagination/PaginationPlugin.js +90 -73
  85. package/cjs/plugins/pagination/components/Pagination.js +35 -54
  86. package/cjs/plugins/pagination/components/Paginator.js +44 -59
  87. package/cjs/plugins/pagination/components/PerPageDropdown.js +63 -51
  88. package/cjs/plugins/pagination/helper.js +24 -45
  89. package/cjs/plugins/pagination/index.js +9 -35
  90. package/cjs/plugins/pagination/usePaginationState.js +38 -46
  91. package/cjs/plugins/resizable/ResizablePlugin.js +55 -51
  92. package/cjs/plugins/resizable/decorateResizable.js +53 -49
  93. package/cjs/plugins/resizable/index.js +9 -35
  94. package/cjs/plugins/resizable/useResizeHandle.js +50 -56
  95. package/cjs/plugins/resizable/utils.js +28 -49
  96. package/cjs/plugins/row-dnd/DndRowsPlugin.js +82 -103
  97. package/cjs/plugins/row-dnd/index.js +9 -35
  98. package/cjs/plugins/selectable/SelectablePlugin.js +134 -101
  99. package/cjs/plugins/selectable/addSelectableColumn.js +68 -67
  100. package/cjs/plugins/selectable/helper.js +39 -50
  101. package/cjs/plugins/selectable/index.js +9 -35
  102. package/cjs/plugins/selectable/selectableFormatter.js +105 -83
  103. package/cjs/plugins/selectable/useSelectableState.js +94 -67
  104. package/cjs/plugins/sortable/SortablePlugin.js +76 -62
  105. package/cjs/plugins/sortable/checkIfSortable.js +14 -37
  106. package/cjs/plugins/sortable/index.js +9 -35
  107. package/cjs/plugins/sortable/sortHeaderFormatter.js +50 -56
  108. package/cjs/plugins/sortable/sortTree.js +47 -40
  109. package/cjs/plugins/sortable/sorter.js +172 -140
  110. package/cjs/plugins/sortable/useSortableState.js +79 -53
  111. package/cjs/plugins/toolbar/RowRenderer.js +76 -75
  112. package/cjs/plugins/toolbar/ToolbarPlugin.js +33 -49
  113. package/cjs/plugins/toolbar/ToolbarTrigger.js +70 -89
  114. package/cjs/plugins/toolbar/index.js +9 -35
  115. package/cjs/plugins/virtualization/AutoHeightList.js +52 -64
  116. package/cjs/plugins/virtualization/VirtualizationPlugin.js +97 -86
  117. package/cjs/plugins/virtualization/VirtualizedBody.js +155 -139
  118. package/cjs/plugins/virtualization/VirtualizedBodyRow.js +17 -39
  119. package/cjs/plugins/virtualization/helper.js +7 -35
  120. package/cjs/plugins/virtualization/index.js +9 -35
  121. package/cjs/renders/CellWithAddons.js +50 -98
  122. package/cjs/renders/index.js +11 -37
  123. package/cjs/renders/styled.js +27 -78
  124. package/cjs/rowSizes.js +12 -44
  125. package/cjs/utilities/getPluginsFromProps.js +39 -67
  126. package/cjs/utilities/getScrollbarSize.js +25 -44
  127. package/cjs/utilities/normalizeData.js +34 -44
  128. package/esm/DSDataGrid.js +597 -337
  129. package/esm/DataGridImpl.js +113 -68
  130. package/esm/PaginatedDataGrid.js +59 -39
  131. package/esm/blockNames.js +5 -10
  132. package/esm/columns/IconColumn.js +54 -49
  133. package/esm/columns/NumberColumn.js +3 -6
  134. package/esm/components/BodyCell.js +68 -51
  135. package/esm/components/BodyList.js +43 -23
  136. package/esm/components/ColumnVisibilityMenuOption.js +27 -24
  137. package/esm/components/ColumnsOptionsMenuSection.js +38 -30
  138. package/esm/components/EmptyState.js +40 -52
  139. package/esm/components/HeaderCell.js +48 -33
  140. package/esm/components/List.js +23 -12
  141. package/esm/components/ListItem.js +30 -14
  142. package/esm/components/NoResults.js +43 -26
  143. package/esm/components/RowsLoader.js +15 -13
  144. package/esm/components/Table.js +76 -45
  145. package/esm/components/TableBody.js +52 -32
  146. package/esm/components/TableHeader.js +23 -17
  147. package/esm/components/footer/addOptionalFooterComponents.js +37 -24
  148. package/esm/components/header/PrimaryControls.js +29 -20
  149. package/esm/components/header/addOptionalHeaderComponents.js +36 -25
  150. package/esm/components/index.js +5 -14
  151. package/esm/components/renderers/defaultClassedRenderers.js +46 -41
  152. package/esm/components/renderers/index.js +5 -16
  153. package/esm/components/renderers/renderRowsLoader.js +10 -10
  154. package/esm/components/tableContext.js +5 -7
  155. package/esm/defaultPlugins.js +8 -15
  156. package/esm/index.js +27 -63
  157. package/esm/plugins/body-header-scroll-sync/BodyHeaderScrollSyncPlugin.js +101 -71
  158. package/esm/plugins/body-header-scroll-sync/index.js +1 -6
  159. package/esm/plugins/column-dnd/DndColumnsPlugin.js +68 -69
  160. package/esm/plugins/column-dnd/decorateGridWithDndColumns.js +18 -16
  161. package/esm/plugins/column-dnd/index.js +1 -6
  162. package/esm/plugins/column-sizing/ColumnSizingPlugin.js +37 -20
  163. package/esm/plugins/column-sizing/columnMeasurerTransformer.js +42 -16
  164. package/esm/plugins/column-sizing/ext-points/decorateColumn.js +7 -9
  165. package/esm/plugins/column-sizing/ext-points/getTableProps.js +43 -23
  166. package/esm/plugins/column-sizing/getColumnNameFromProperty.js +7 -8
  167. package/esm/plugins/column-sizing/index.js +1 -6
  168. package/esm/plugins/column-sizing/useColumnSizeService.js +71 -34
  169. package/esm/plugins/column-sizing/useStylesheetHelpers.js +171 -64
  170. package/esm/plugins/column-sizing/utils.js +21 -23
  171. package/esm/plugins/custom-cell-renderer/CustomRendererPlugin.js +7 -8
  172. package/esm/plugins/custom-cell-renderer/addCustomRendererToCell.js +43 -28
  173. package/esm/plugins/custom-cell-renderer/getRendererComponent.js +44 -22
  174. package/esm/plugins/custom-cell-renderer/index.js +1 -6
  175. package/esm/plugins/editable/EditableComponents/ComboBox.js +46 -20
  176. package/esm/plugins/editable/EditableComponents/TextBox.js +68 -26
  177. package/esm/plugins/editable/EditableComponents/index.js +2 -8
  178. package/esm/plugins/editable/EditablePlugin.js +63 -27
  179. package/esm/plugins/editable/decorateEditable.js +68 -32
  180. package/esm/plugins/editable/getEditorComponent.js +66 -39
  181. package/esm/plugins/editable/index.js +3 -9
  182. package/esm/plugins/expandable-grid/ExpandableColumn.js +133 -82
  183. package/esm/plugins/expandable-grid/ExpandablePlugin.js +160 -81
  184. package/esm/plugins/expandable-grid/ExpandedRow.js +124 -86
  185. package/esm/plugins/expandable-grid/ExpandedRowExtra.js +44 -25
  186. package/esm/plugins/expandable-grid/index.js +2 -8
  187. package/esm/plugins/expandable-grid/useExpandGridState.js +25 -14
  188. package/esm/plugins/export-data/ExportDataPlugin.js +103 -52
  189. package/esm/plugins/export-data/index.js +1 -6
  190. package/esm/plugins/filterable/FilterablePlugin.js +44 -22
  191. package/esm/plugins/filterable/addFilterToColumn.js +20 -11
  192. package/esm/plugins/filterable/components/FilterableHeader.js +95 -85
  193. package/esm/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.js +103 -83
  194. package/esm/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.js +63 -68
  195. package/esm/plugins/filterable/components/filterable-menus/SingleRangeSwitcherMenu.js +116 -108
  196. package/esm/plugins/filterable/components/filterable-menus/TextFilterMenu.js +106 -84
  197. package/esm/plugins/filterable/components/filterable-menus/defaultDateFormat.js +3 -6
  198. package/esm/plugins/filterable/components/filterable-menus/getFilterMenuByType.js +12 -16
  199. package/esm/plugins/filterable/filterableFormatter.js +45 -32
  200. package/esm/plugins/filterable/filtering-helper/filterRowsByQuery.js +44 -29
  201. package/esm/plugins/filterable/filtering-helper/strategiesOperators.js +13 -11
  202. package/esm/plugins/filterable/helper.js +62 -42
  203. package/esm/plugins/filterable/index.js +1 -6
  204. package/esm/plugins/filterable/useFilterableState.js +54 -33
  205. package/esm/plugins/grouping-by/GroupingByPlugin.js +14 -10
  206. package/esm/plugins/grouping-grid/GroupingPlugin.js +94 -53
  207. package/esm/plugins/grouping-grid/walkStrategy.js +22 -17
  208. package/esm/plugins/index.js +19 -39
  209. package/esm/plugins/infinite-scrolling/InfiniteScrollPlugin.js +74 -31
  210. package/esm/plugins/infinite-scrolling/index.js +1 -6
  211. package/esm/plugins/pagination/PaginationPlugin.js +75 -42
  212. package/esm/plugins/pagination/components/Pagination.js +27 -25
  213. package/esm/plugins/pagination/components/Paginator.js +35 -29
  214. package/esm/plugins/pagination/components/PerPageDropdown.js +54 -22
  215. package/esm/plugins/pagination/helper.js +19 -16
  216. package/esm/plugins/pagination/index.js +1 -6
  217. package/esm/plugins/pagination/usePaginationState.js +28 -15
  218. package/esm/plugins/resizable/ResizablePlugin.js +45 -20
  219. package/esm/plugins/resizable/decorateResizable.js +41 -19
  220. package/esm/plugins/resizable/index.js +1 -6
  221. package/esm/plugins/resizable/useResizeHandle.js +39 -24
  222. package/esm/plugins/resizable/utils.js +18 -20
  223. package/esm/plugins/row-dnd/DndRowsPlugin.js +71 -73
  224. package/esm/plugins/row-dnd/index.js +1 -6
  225. package/esm/plugins/selectable/SelectablePlugin.js +117 -64
  226. package/esm/plugins/selectable/addSelectableColumn.js +57 -39
  227. package/esm/plugins/selectable/helper.js +25 -19
  228. package/esm/plugins/selectable/index.js +1 -6
  229. package/esm/plugins/selectable/selectableFormatter.js +97 -54
  230. package/esm/plugins/selectable/useSelectableState.js +78 -34
  231. package/esm/plugins/sortable/SortablePlugin.js +43 -30
  232. package/esm/plugins/sortable/checkIfSortable.js +9 -8
  233. package/esm/plugins/sortable/index.js +1 -6
  234. package/esm/plugins/sortable/sortHeaderFormatter.js +43 -27
  235. package/esm/plugins/sortable/sortTree.js +24 -13
  236. package/esm/plugins/sortable/sorter.js +163 -112
  237. package/esm/plugins/sortable/useSortableState.js +49 -22
  238. package/esm/plugins/toolbar/RowRenderer.js +61 -40
  239. package/esm/plugins/toolbar/ToolbarPlugin.js +23 -19
  240. package/esm/plugins/toolbar/ToolbarTrigger.js +57 -59
  241. package/esm/plugins/toolbar/index.js +1 -6
  242. package/esm/plugins/virtualization/AutoHeightList.js +40 -30
  243. package/esm/plugins/virtualization/VirtualizationPlugin.js +84 -55
  244. package/esm/plugins/virtualization/VirtualizedBody.js +132 -94
  245. package/esm/plugins/virtualization/VirtualizedBodyRow.js +15 -10
  246. package/esm/plugins/virtualization/helper.js +3 -6
  247. package/esm/plugins/virtualization/index.js +1 -6
  248. package/esm/renders/CellWithAddons.js +40 -69
  249. package/esm/renders/index.js +2 -8
  250. package/esm/renders/styled.js +16 -49
  251. package/esm/rowSizes.js +6 -15
  252. package/esm/utilities/getPluginsFromProps.js +24 -25
  253. package/esm/utilities/getScrollbarSize.js +21 -15
  254. package/esm/utilities/normalizeData.js +24 -15
  255. package/package.json +20 -20
  256. package/types/DSDataGrid.d.ts +1 -1
  257. package/types/DataGridImpl.d.ts +2 -3
  258. package/types/PaginatedDataGrid.d.ts +2 -1
  259. package/types/columns/IconColumn.d.ts +2 -3
  260. package/types/components/BodyCell.d.ts +12 -13
  261. package/types/components/ColumnVisibilityMenuOption.d.ts +2 -2
  262. package/types/components/ColumnsOptionsMenuSection.d.ts +0 -1
  263. package/types/components/HeaderCell.d.ts +10 -10
  264. package/types/components/NoResults.d.ts +2 -2
  265. package/types/components/RowsLoader.d.ts +2 -2
  266. package/types/components/Table.d.ts +11 -6
  267. package/types/components/TableBody.d.ts +8 -3
  268. package/types/components/TableHeader.d.ts +1 -2
  269. package/types/components/footer/addOptionalFooterComponents.d.ts +0 -1
  270. package/types/components/header/PrimaryControls.d.ts +0 -1
  271. package/types/components/header/addOptionalHeaderComponents.d.ts +1 -1
  272. package/types/components/renderers/index.d.ts +1 -1
  273. package/types/components/renderers/renderRowsLoader.d.ts +1 -1
  274. package/types/index.d.ts +8 -7
  275. package/types/plugins/body-header-scroll-sync/index.d.ts +1 -1
  276. package/types/plugins/column-dnd/index.d.ts +1 -1
  277. package/types/plugins/column-sizing/getColumnNameFromProperty.d.ts +1 -2
  278. package/types/plugins/column-sizing/index.d.ts +1 -1
  279. package/types/plugins/column-sizing/useColumnSizeService.d.ts +1 -2
  280. package/types/plugins/custom-cell-renderer/addCustomRendererToCell.d.ts +0 -1
  281. package/types/plugins/custom-cell-renderer/getRendererComponent.d.ts +0 -1
  282. package/types/plugins/custom-cell-renderer/index.d.ts +1 -1
  283. package/types/plugins/editable/EditableComponents/ComboBox.d.ts +1 -3
  284. package/types/plugins/editable/EditableComponents/TextBox.d.ts +1 -3
  285. package/types/plugins/editable/getEditorComponent.d.ts +0 -1
  286. package/types/plugins/editable/index.d.ts +2 -2
  287. package/types/plugins/expandable-grid/ExpandableColumn.d.ts +2 -3
  288. package/types/plugins/expandable-grid/ExpandedRow.d.ts +0 -1
  289. package/types/plugins/expandable-grid/ExpandedRowExtra.d.ts +0 -1
  290. package/types/plugins/expandable-grid/index.d.ts +2 -2
  291. package/types/plugins/export-data/index.d.ts +1 -1
  292. package/types/plugins/filterable/components/FilterableHeader.d.ts +15 -15
  293. package/types/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.d.ts +0 -1
  294. package/types/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.d.ts +0 -1
  295. package/types/plugins/filterable/components/filterable-menus/SingleRangeSwitcherMenu.d.ts +1 -2
  296. package/types/plugins/filterable/components/filterable-menus/TextFilterMenu.d.ts +0 -1
  297. package/types/plugins/filterable/components/filterable-menus/getFilterMenuByType.d.ts +1 -2
  298. package/types/plugins/filterable/filterableFormatter.d.ts +2 -3
  299. package/types/plugins/filterable/filtering-helper/filterRowsByQuery.d.ts +1 -2
  300. package/types/plugins/filterable/filtering-helper/strategiesOperators.d.ts +2 -2
  301. package/types/plugins/filterable/index.d.ts +1 -1
  302. package/types/plugins/index.d.ts +16 -16
  303. package/types/plugins/infinite-scrolling/index.d.ts +1 -1
  304. package/types/plugins/pagination/components/Paginator.d.ts +0 -1
  305. package/types/plugins/pagination/components/PerPageDropdown.d.ts +0 -1
  306. package/types/plugins/pagination/helper.d.ts +2 -3
  307. package/types/plugins/pagination/index.d.ts +1 -1
  308. package/types/plugins/resizable/index.d.ts +1 -1
  309. package/types/plugins/row-dnd/index.d.ts +1 -1
  310. package/types/plugins/selectable/index.d.ts +1 -1
  311. package/types/plugins/selectable/selectableFormatter.d.ts +0 -1
  312. package/types/plugins/sortable/index.d.ts +1 -1
  313. package/types/plugins/sortable/sortHeaderFormatter.d.ts +0 -1
  314. package/types/plugins/sortable/sortTree.d.ts +0 -1
  315. package/types/plugins/sortable/sorter.d.ts +1 -1
  316. package/types/plugins/toolbar/index.d.ts +1 -1
  317. package/types/plugins/virtualization/AutoHeightList.d.ts +1 -1
  318. package/types/plugins/virtualization/VirtualizedBody.d.ts +0 -1
  319. package/types/plugins/virtualization/VirtualizedBodyRow.d.ts +2 -2
  320. package/types/plugins/virtualization/index.d.ts +1 -1
  321. package/types/utilities/getPluginsFromProps.d.ts +1 -2
  322. package/cjs/DSDataGrid.js.map +0 -7
  323. package/cjs/DataGridImpl.js.map +0 -7
  324. package/cjs/PaginatedDataGrid.js.map +0 -7
  325. package/cjs/blockNames.js.map +0 -7
  326. package/cjs/columns/IconColumn.js.map +0 -7
  327. package/cjs/columns/NumberColumn.js.map +0 -7
  328. package/cjs/components/BodyCell.js.map +0 -7
  329. package/cjs/components/BodyList.js.map +0 -7
  330. package/cjs/components/ColumnVisibilityMenuOption.js.map +0 -7
  331. package/cjs/components/ColumnsOptionsMenuSection.js.map +0 -7
  332. package/cjs/components/EmptyState.js.map +0 -7
  333. package/cjs/components/HeaderCell.js.map +0 -7
  334. package/cjs/components/List.js.map +0 -7
  335. package/cjs/components/ListItem.js.map +0 -7
  336. package/cjs/components/NoResults.js.map +0 -7
  337. package/cjs/components/RowsLoader.js.map +0 -7
  338. package/cjs/components/Table.js.map +0 -7
  339. package/cjs/components/TableBody.js.map +0 -7
  340. package/cjs/components/TableHeader.js.map +0 -7
  341. package/cjs/components/footer/addOptionalFooterComponents.js.map +0 -7
  342. package/cjs/components/header/PrimaryControls.js.map +0 -7
  343. package/cjs/components/header/addOptionalHeaderComponents.js.map +0 -7
  344. package/cjs/components/index.js.map +0 -7
  345. package/cjs/components/renderers/defaultClassedRenderers.js.map +0 -7
  346. package/cjs/components/renderers/index.js.map +0 -7
  347. package/cjs/components/renderers/renderRowsLoader.js.map +0 -7
  348. package/cjs/components/tableContext.js.map +0 -7
  349. package/cjs/defaultPlugins.js.map +0 -7
  350. package/cjs/index.js.map +0 -7
  351. package/cjs/plugins/body-header-scroll-sync/BodyHeaderScrollSyncPlugin.js.map +0 -7
  352. package/cjs/plugins/body-header-scroll-sync/index.js.map +0 -7
  353. package/cjs/plugins/column-dnd/DndColumnsPlugin.js.map +0 -7
  354. package/cjs/plugins/column-dnd/decorateGridWithDndColumns.js.map +0 -7
  355. package/cjs/plugins/column-dnd/index.js.map +0 -7
  356. package/cjs/plugins/column-sizing/ColumnSizingPlugin.js.map +0 -7
  357. package/cjs/plugins/column-sizing/columnMeasurerTransformer.js.map +0 -7
  358. package/cjs/plugins/column-sizing/ext-points/decorateColumn.js.map +0 -7
  359. package/cjs/plugins/column-sizing/ext-points/getTableProps.js.map +0 -7
  360. package/cjs/plugins/column-sizing/getColumnNameFromProperty.js.map +0 -7
  361. package/cjs/plugins/column-sizing/index.js.map +0 -7
  362. package/cjs/plugins/column-sizing/useColumnSizeService.js.map +0 -7
  363. package/cjs/plugins/column-sizing/useStylesheetHelpers.js.map +0 -7
  364. package/cjs/plugins/column-sizing/utils.js.map +0 -7
  365. package/cjs/plugins/custom-cell-renderer/CustomRendererPlugin.js.map +0 -7
  366. package/cjs/plugins/custom-cell-renderer/addCustomRendererToCell.js.map +0 -7
  367. package/cjs/plugins/custom-cell-renderer/getRendererComponent.js.map +0 -7
  368. package/cjs/plugins/custom-cell-renderer/index.js.map +0 -7
  369. package/cjs/plugins/editable/EditableComponents/ComboBox.js.map +0 -7
  370. package/cjs/plugins/editable/EditableComponents/TextBox.js.map +0 -7
  371. package/cjs/plugins/editable/EditableComponents/index.js.map +0 -7
  372. package/cjs/plugins/editable/EditablePlugin.js.map +0 -7
  373. package/cjs/plugins/editable/decorateEditable.js.map +0 -7
  374. package/cjs/plugins/editable/getEditorComponent.js.map +0 -7
  375. package/cjs/plugins/editable/index.js.map +0 -7
  376. package/cjs/plugins/expandable-grid/ExpandableColumn.js.map +0 -7
  377. package/cjs/plugins/expandable-grid/ExpandablePlugin.js.map +0 -7
  378. package/cjs/plugins/expandable-grid/ExpandedRow.js.map +0 -7
  379. package/cjs/plugins/expandable-grid/ExpandedRowExtra.js.map +0 -7
  380. package/cjs/plugins/expandable-grid/index.js.map +0 -7
  381. package/cjs/plugins/expandable-grid/useExpandGridState.js.map +0 -7
  382. package/cjs/plugins/export-data/ExportDataPlugin.js.map +0 -7
  383. package/cjs/plugins/export-data/index.js.map +0 -7
  384. package/cjs/plugins/filterable/FilterablePlugin.js.map +0 -7
  385. package/cjs/plugins/filterable/addFilterToColumn.js.map +0 -7
  386. package/cjs/plugins/filterable/components/FilterableHeader.js.map +0 -7
  387. package/cjs/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.js.map +0 -7
  388. package/cjs/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.js.map +0 -7
  389. package/cjs/plugins/filterable/components/filterable-menus/SingleRangeSwitcherMenu.js.map +0 -7
  390. package/cjs/plugins/filterable/components/filterable-menus/TextFilterMenu.js.map +0 -7
  391. package/cjs/plugins/filterable/components/filterable-menus/defaultDateFormat.js.map +0 -7
  392. package/cjs/plugins/filterable/components/filterable-menus/getFilterMenuByType.js.map +0 -7
  393. package/cjs/plugins/filterable/filterableFormatter.js.map +0 -7
  394. package/cjs/plugins/filterable/filtering-helper/filterRowsByQuery.js.map +0 -7
  395. package/cjs/plugins/filterable/filtering-helper/strategiesOperators.js.map +0 -7
  396. package/cjs/plugins/filterable/helper.js.map +0 -7
  397. package/cjs/plugins/filterable/index.js.map +0 -7
  398. package/cjs/plugins/filterable/useFilterableState.js.map +0 -7
  399. package/cjs/plugins/grouping-by/GroupingByPlugin.js.map +0 -7
  400. package/cjs/plugins/grouping-grid/GroupingPlugin.js.map +0 -7
  401. package/cjs/plugins/grouping-grid/walkStrategy.js.map +0 -7
  402. package/cjs/plugins/index.js.map +0 -7
  403. package/cjs/plugins/infinite-scrolling/InfiniteScrollPlugin.js.map +0 -7
  404. package/cjs/plugins/infinite-scrolling/index.js.map +0 -7
  405. package/cjs/plugins/pagination/PaginationPlugin.js.map +0 -7
  406. package/cjs/plugins/pagination/components/Pagination.js.map +0 -7
  407. package/cjs/plugins/pagination/components/Paginator.js.map +0 -7
  408. package/cjs/plugins/pagination/components/PerPageDropdown.js.map +0 -7
  409. package/cjs/plugins/pagination/helper.js.map +0 -7
  410. package/cjs/plugins/pagination/index.js.map +0 -7
  411. package/cjs/plugins/pagination/usePaginationState.js.map +0 -7
  412. package/cjs/plugins/resizable/ResizablePlugin.js.map +0 -7
  413. package/cjs/plugins/resizable/decorateResizable.js.map +0 -7
  414. package/cjs/plugins/resizable/index.js.map +0 -7
  415. package/cjs/plugins/resizable/useResizeHandle.js.map +0 -7
  416. package/cjs/plugins/resizable/utils.js.map +0 -7
  417. package/cjs/plugins/row-dnd/DndRowsPlugin.js.map +0 -7
  418. package/cjs/plugins/row-dnd/index.js.map +0 -7
  419. package/cjs/plugins/selectable/SelectablePlugin.js.map +0 -7
  420. package/cjs/plugins/selectable/addSelectableColumn.js.map +0 -7
  421. package/cjs/plugins/selectable/helper.js.map +0 -7
  422. package/cjs/plugins/selectable/index.js.map +0 -7
  423. package/cjs/plugins/selectable/selectableFormatter.js.map +0 -7
  424. package/cjs/plugins/selectable/useSelectableState.js.map +0 -7
  425. package/cjs/plugins/sortable/SortablePlugin.js.map +0 -7
  426. package/cjs/plugins/sortable/checkIfSortable.js.map +0 -7
  427. package/cjs/plugins/sortable/index.js.map +0 -7
  428. package/cjs/plugins/sortable/sortHeaderFormatter.js.map +0 -7
  429. package/cjs/plugins/sortable/sortTree.js.map +0 -7
  430. package/cjs/plugins/sortable/sorter.js.map +0 -7
  431. package/cjs/plugins/sortable/useSortableState.js.map +0 -7
  432. package/cjs/plugins/toolbar/RowRenderer.js.map +0 -7
  433. package/cjs/plugins/toolbar/ToolbarPlugin.js.map +0 -7
  434. package/cjs/plugins/toolbar/ToolbarTrigger.js.map +0 -7
  435. package/cjs/plugins/toolbar/index.js.map +0 -7
  436. package/cjs/plugins/virtualization/AutoHeightList.js.map +0 -7
  437. package/cjs/plugins/virtualization/VirtualizationPlugin.js.map +0 -7
  438. package/cjs/plugins/virtualization/VirtualizedBody.js.map +0 -7
  439. package/cjs/plugins/virtualization/VirtualizedBodyRow.js.map +0 -7
  440. package/cjs/plugins/virtualization/helper.js.map +0 -7
  441. package/cjs/plugins/virtualization/index.js.map +0 -7
  442. package/cjs/renders/CellWithAddons.js.map +0 -7
  443. package/cjs/renders/index.js.map +0 -7
  444. package/cjs/renders/styled.js.map +0 -7
  445. package/cjs/rowSizes.js.map +0 -7
  446. package/cjs/utilities/DataGridUtilities.json +0 -1315
  447. package/cjs/utilities/getPluginsFromProps.js.map +0 -7
  448. package/cjs/utilities/getScrollbarSize.js.map +0 -7
  449. package/cjs/utilities/normalizeData.js.map +0 -7
  450. package/esm/DSDataGrid.js.map +0 -7
  451. package/esm/DataGridImpl.js.map +0 -7
  452. package/esm/PaginatedDataGrid.js.map +0 -7
  453. package/esm/blockNames.js.map +0 -7
  454. package/esm/columns/IconColumn.js.map +0 -7
  455. package/esm/columns/NumberColumn.js.map +0 -7
  456. package/esm/components/BodyCell.js.map +0 -7
  457. package/esm/components/BodyList.js.map +0 -7
  458. package/esm/components/ColumnVisibilityMenuOption.js.map +0 -7
  459. package/esm/components/ColumnsOptionsMenuSection.js.map +0 -7
  460. package/esm/components/EmptyState.js.map +0 -7
  461. package/esm/components/HeaderCell.js.map +0 -7
  462. package/esm/components/List.js.map +0 -7
  463. package/esm/components/ListItem.js.map +0 -7
  464. package/esm/components/NoResults.js.map +0 -7
  465. package/esm/components/RowsLoader.js.map +0 -7
  466. package/esm/components/Table.js.map +0 -7
  467. package/esm/components/TableBody.js.map +0 -7
  468. package/esm/components/TableHeader.js.map +0 -7
  469. package/esm/components/footer/addOptionalFooterComponents.js.map +0 -7
  470. package/esm/components/header/PrimaryControls.js.map +0 -7
  471. package/esm/components/header/addOptionalHeaderComponents.js.map +0 -7
  472. package/esm/components/index.js.map +0 -7
  473. package/esm/components/renderers/defaultClassedRenderers.js.map +0 -7
  474. package/esm/components/renderers/index.js.map +0 -7
  475. package/esm/components/renderers/renderRowsLoader.js.map +0 -7
  476. package/esm/components/tableContext.js.map +0 -7
  477. package/esm/defaultPlugins.js.map +0 -7
  478. package/esm/index.js.map +0 -7
  479. package/esm/plugins/body-header-scroll-sync/BodyHeaderScrollSyncPlugin.js.map +0 -7
  480. package/esm/plugins/body-header-scroll-sync/index.js.map +0 -7
  481. package/esm/plugins/column-dnd/DndColumnsPlugin.js.map +0 -7
  482. package/esm/plugins/column-dnd/decorateGridWithDndColumns.js.map +0 -7
  483. package/esm/plugins/column-dnd/index.js.map +0 -7
  484. package/esm/plugins/column-sizing/ColumnSizingPlugin.js.map +0 -7
  485. package/esm/plugins/column-sizing/columnMeasurerTransformer.js.map +0 -7
  486. package/esm/plugins/column-sizing/ext-points/decorateColumn.js.map +0 -7
  487. package/esm/plugins/column-sizing/ext-points/getTableProps.js.map +0 -7
  488. package/esm/plugins/column-sizing/getColumnNameFromProperty.js.map +0 -7
  489. package/esm/plugins/column-sizing/index.js.map +0 -7
  490. package/esm/plugins/column-sizing/useColumnSizeService.js.map +0 -7
  491. package/esm/plugins/column-sizing/useStylesheetHelpers.js.map +0 -7
  492. package/esm/plugins/column-sizing/utils.js.map +0 -7
  493. package/esm/plugins/custom-cell-renderer/CustomRendererPlugin.js.map +0 -7
  494. package/esm/plugins/custom-cell-renderer/addCustomRendererToCell.js.map +0 -7
  495. package/esm/plugins/custom-cell-renderer/getRendererComponent.js.map +0 -7
  496. package/esm/plugins/custom-cell-renderer/index.js.map +0 -7
  497. package/esm/plugins/editable/EditableComponents/ComboBox.js.map +0 -7
  498. package/esm/plugins/editable/EditableComponents/TextBox.js.map +0 -7
  499. package/esm/plugins/editable/EditableComponents/index.js.map +0 -7
  500. package/esm/plugins/editable/EditablePlugin.js.map +0 -7
  501. package/esm/plugins/editable/decorateEditable.js.map +0 -7
  502. package/esm/plugins/editable/getEditorComponent.js.map +0 -7
  503. package/esm/plugins/editable/index.js.map +0 -7
  504. package/esm/plugins/expandable-grid/ExpandableColumn.js.map +0 -7
  505. package/esm/plugins/expandable-grid/ExpandablePlugin.js.map +0 -7
  506. package/esm/plugins/expandable-grid/ExpandedRow.js.map +0 -7
  507. package/esm/plugins/expandable-grid/ExpandedRowExtra.js.map +0 -7
  508. package/esm/plugins/expandable-grid/index.js.map +0 -7
  509. package/esm/plugins/expandable-grid/useExpandGridState.js.map +0 -7
  510. package/esm/plugins/export-data/ExportDataPlugin.js.map +0 -7
  511. package/esm/plugins/export-data/index.js.map +0 -7
  512. package/esm/plugins/filterable/FilterablePlugin.js.map +0 -7
  513. package/esm/plugins/filterable/addFilterToColumn.js.map +0 -7
  514. package/esm/plugins/filterable/components/FilterableHeader.js.map +0 -7
  515. package/esm/plugins/filterable/components/filterable-menus/DateRangeFilterMenu.js.map +0 -7
  516. package/esm/plugins/filterable/components/filterable-menus/SingleDateFilterMenu.js.map +0 -7
  517. package/esm/plugins/filterable/components/filterable-menus/SingleRangeSwitcherMenu.js.map +0 -7
  518. package/esm/plugins/filterable/components/filterable-menus/TextFilterMenu.js.map +0 -7
  519. package/esm/plugins/filterable/components/filterable-menus/defaultDateFormat.js.map +0 -7
  520. package/esm/plugins/filterable/components/filterable-menus/getFilterMenuByType.js.map +0 -7
  521. package/esm/plugins/filterable/filterableFormatter.js.map +0 -7
  522. package/esm/plugins/filterable/filtering-helper/filterRowsByQuery.js.map +0 -7
  523. package/esm/plugins/filterable/filtering-helper/strategiesOperators.js.map +0 -7
  524. package/esm/plugins/filterable/helper.js.map +0 -7
  525. package/esm/plugins/filterable/index.js.map +0 -7
  526. package/esm/plugins/filterable/useFilterableState.js.map +0 -7
  527. package/esm/plugins/grouping-by/GroupingByPlugin.js.map +0 -7
  528. package/esm/plugins/grouping-grid/GroupingPlugin.js.map +0 -7
  529. package/esm/plugins/grouping-grid/walkStrategy.js.map +0 -7
  530. package/esm/plugins/index.js.map +0 -7
  531. package/esm/plugins/infinite-scrolling/InfiniteScrollPlugin.js.map +0 -7
  532. package/esm/plugins/infinite-scrolling/index.js.map +0 -7
  533. package/esm/plugins/pagination/PaginationPlugin.js.map +0 -7
  534. package/esm/plugins/pagination/components/Pagination.js.map +0 -7
  535. package/esm/plugins/pagination/components/Paginator.js.map +0 -7
  536. package/esm/plugins/pagination/components/PerPageDropdown.js.map +0 -7
  537. package/esm/plugins/pagination/helper.js.map +0 -7
  538. package/esm/plugins/pagination/index.js.map +0 -7
  539. package/esm/plugins/pagination/usePaginationState.js.map +0 -7
  540. package/esm/plugins/resizable/ResizablePlugin.js.map +0 -7
  541. package/esm/plugins/resizable/decorateResizable.js.map +0 -7
  542. package/esm/plugins/resizable/index.js.map +0 -7
  543. package/esm/plugins/resizable/useResizeHandle.js.map +0 -7
  544. package/esm/plugins/resizable/utils.js.map +0 -7
  545. package/esm/plugins/row-dnd/DndRowsPlugin.js.map +0 -7
  546. package/esm/plugins/row-dnd/index.js.map +0 -7
  547. package/esm/plugins/selectable/SelectablePlugin.js.map +0 -7
  548. package/esm/plugins/selectable/addSelectableColumn.js.map +0 -7
  549. package/esm/plugins/selectable/helper.js.map +0 -7
  550. package/esm/plugins/selectable/index.js.map +0 -7
  551. package/esm/plugins/selectable/selectableFormatter.js.map +0 -7
  552. package/esm/plugins/selectable/useSelectableState.js.map +0 -7
  553. package/esm/plugins/sortable/SortablePlugin.js.map +0 -7
  554. package/esm/plugins/sortable/checkIfSortable.js.map +0 -7
  555. package/esm/plugins/sortable/index.js.map +0 -7
  556. package/esm/plugins/sortable/sortHeaderFormatter.js.map +0 -7
  557. package/esm/plugins/sortable/sortTree.js.map +0 -7
  558. package/esm/plugins/sortable/sorter.js.map +0 -7
  559. package/esm/plugins/sortable/useSortableState.js.map +0 -7
  560. package/esm/plugins/toolbar/RowRenderer.js.map +0 -7
  561. package/esm/plugins/toolbar/ToolbarPlugin.js.map +0 -7
  562. package/esm/plugins/toolbar/ToolbarTrigger.js.map +0 -7
  563. package/esm/plugins/toolbar/index.js.map +0 -7
  564. package/esm/plugins/virtualization/AutoHeightList.js.map +0 -7
  565. package/esm/plugins/virtualization/VirtualizationPlugin.js.map +0 -7
  566. package/esm/plugins/virtualization/VirtualizedBody.js.map +0 -7
  567. package/esm/plugins/virtualization/VirtualizedBodyRow.js.map +0 -7
  568. package/esm/plugins/virtualization/helper.js.map +0 -7
  569. package/esm/plugins/virtualization/index.js.map +0 -7
  570. package/esm/renders/CellWithAddons.js.map +0 -7
  571. package/esm/renders/index.js.map +0 -7
  572. package/esm/renders/styled.js.map +0 -7
  573. package/esm/rowSizes.js.map +0 -7
  574. package/esm/utilities/DataGridUtilities.json +0 -1315
  575. package/esm/utilities/getPluginsFromProps.js.map +0 -7
  576. package/esm/utilities/getScrollbarSize.js.map +0 -7
  577. package/esm/utilities/normalizeData.js.map +0 -7
@@ -1,1315 +0,0 @@
1
- {
2
- "rows5": [
3
- {
4
- "id": "0",
5
- "name": "Lance Stine",
6
- "position": "none",
7
- "boss": "Rosie Webster",
8
- "country": "NO",
9
- "salary": "96162242",
10
- "active": ""
11
- },
12
- {
13
- "id": "1",
14
- "name": "Hannah Gamble",
15
- "position": "healthcare",
16
- "boss": "Michael Smit",
17
- "country": "SI",
18
- "salary": "79746959",
19
- "active": ""
20
- },
21
- {
22
- "id": "2",
23
- "name": "Anton Krumm",
24
- "position": "technician",
25
- "boss": "Myong Pickering",
26
- "country": "BV",
27
- "salary": "31807692",
28
- "active": ""
29
- },
30
- {
31
- "id": "3",
32
- "name": "Max Pullman",
33
- "position": "technician",
34
- "boss": "Rene Winter",
35
- "country": "BL",
36
- "salary": "36770507",
37
- "active": ""
38
- },
39
- {
40
- "id": "4",
41
- "name": "Jenna Pace",
42
- "position": "marketing",
43
- "boss": "Adam Seabury",
44
- "country": "SO",
45
- "salary": "21140934",
46
- "active": ""
47
- }
48
- ],
49
- "rows10": [
50
- {
51
- "id": "0",
52
- "name": "Darrell Keesee",
53
- "position": "salesman",
54
- "boss": "Hannah Pace",
55
- "country": "GR",
56
- "salary": "76090799",
57
- "active": ""
58
- },
59
- {
60
- "id": "1",
61
- "name": "Edward Seabury",
62
- "position": "artist",
63
- "boss": "Andy",
64
- "country": "RU",
65
- "salary": "82485522",
66
- "active": ""
67
- },
68
- {
69
- "id": "2",
70
- "name": "Michelle Rhymer",
71
- "position": "librarian",
72
- "boss": "Curtis Bourne",
73
- "country": "FO",
74
- "salary": "34673329",
75
- "active": ""
76
- },
77
- {
78
- "id": "3",
79
- "name": "Joslyn Smit",
80
- "position": "educator",
81
- "boss": "Drew Charley",
82
- "country": "GB",
83
- "salary": "97420811",
84
- "active": ""
85
- },
86
- {
87
- "id": "4",
88
- "name": "Richelle Stine",
89
- "position": "scientist",
90
- "boss": "Hannah Garling",
91
- "country": "AQ",
92
- "salary": "65525592",
93
- "active": ""
94
- },
95
- {
96
- "id": "5",
97
- "name": "Cory Brandt",
98
- "position": "executive",
99
- "boss": "Yuri Krumm",
100
- "country": "BA",
101
- "salary": "69985552",
102
- "active": ""
103
- },
104
- {
105
- "id": "6",
106
- "name": "Brian Rohloff",
107
- "position": "doctor",
108
- "boss": "Rolf Milligan",
109
- "country": "TJ",
110
- "salary": "20495071",
111
- "active": ""
112
- },
113
- {
114
- "id": "7",
115
- "name": "Theo Cumbie",
116
- "position": "administrator",
117
- "boss": "Lyle Milligan",
118
- "country": "TR",
119
- "salary": "71548853",
120
- "active": ""
121
- },
122
- {
123
- "id": "8",
124
- "name": "Rikki Lenihan",
125
- "position": "librarian",
126
- "boss": "Anton Rohloff",
127
- "country": "SY",
128
- "salary": "17478677",
129
- "active": ""
130
- },
131
- {
132
- "id": "9",
133
- "name": "Kirstie Starck",
134
- "position": "entertainment",
135
- "boss": "Mitch Castleman",
136
- "country": "IO",
137
- "salary": "73504624",
138
- "active": ""
139
- }
140
- ],
141
- "rows30": [
142
- {
143
- "id": "0",
144
- "name": "Kurt Raymond",
145
- "position": "lawyer",
146
- "boss": "Joslyn Schaefer",
147
- "country": "IO",
148
- "salary": "90301853",
149
- "active": ""
150
- },
151
- {
152
- "id": "1",
153
- "name": "Alexa Bryd",
154
- "position": "executive",
155
- "boss": "Edward Remus",
156
- "country": "PY",
157
- "salary": "24694175",
158
- "active": ""
159
- },
160
- {
161
- "id": "2",
162
- "name": "Rolf Seabury",
163
- "position": "healthcare",
164
- "boss": "Haley Zobel",
165
- "country": "HT",
166
- "salary": "13740171",
167
- "active": ""
168
- },
169
- {
170
- "id": "3",
171
- "name": "Russell Zobel",
172
- "position": "salesman",
173
- "boss": "Maisha Rohloff",
174
- "country": "PF",
175
- "salary": "29193742",
176
- "active": ""
177
- },
178
- {
179
- "id": "4",
180
- "name": "Cecilia Keesee",
181
- "position": "student",
182
- "boss": "Rico Pace",
183
- "country": "GE",
184
- "salary": "94535802",
185
- "active": ""
186
- },
187
- {
188
- "id": "5",
189
- "name": "Richelle Correa",
190
- "position": "lawyer",
191
- "boss": "Andy Goudy",
192
- "country": "TW",
193
- "salary": "14802030",
194
- "active": ""
195
- },
196
- {
197
- "id": "6",
198
- "name": "Gavin Connor",
199
- "position": "student",
200
- "boss": "Francis Wallis",
201
- "country": "AM",
202
- "salary": "80086603",
203
- "active": ""
204
- },
205
- {
206
- "id": "7",
207
- "name": "Lynetta Stine",
208
- "position": "doctor",
209
- "boss": "Rene Dunham",
210
- "country": "PA",
211
- "salary": "13451487",
212
- "active": ""
213
- },
214
- {
215
- "id": "8",
216
- "name": "Drew Karst",
217
- "position": "homemaker",
218
- "boss": "Haydee Bourquin",
219
- "country": "MM",
220
- "salary": "93657351",
221
- "active": ""
222
- },
223
- {
224
- "id": "9",
225
- "name": "Kathy Pace",
226
- "position": "librarian",
227
- "boss": "Yuri Milligan",
228
- "country": "CK",
229
- "salary": "52453945",
230
- "active": ""
231
- },
232
- {
233
- "id": "10",
234
- "name": "Travis Sager",
235
- "position": "executive",
236
- "boss": "Rosanne Friedrich",
237
- "country": "PG",
238
- "salary": "63215702",
239
- "active": ""
240
- },
241
- {
242
- "id": "11",
243
- "name": "Francis Risley",
244
- "position": "executive",
245
- "boss": "Max Verde",
246
- "country": "MO",
247
- "salary": "75145099",
248
- "active": ""
249
- },
250
- {
251
- "id": "12",
252
- "name": "Janett Wallis",
253
- "position": "programmer",
254
- "boss": "Alejandro Rebelo",
255
- "country": "GY",
256
- "salary": "16422941",
257
- "active": ""
258
- },
259
- {
260
- "id": "13",
261
- "name": "Alejandro Bourquin",
262
- "position": "homemaker",
263
- "boss": "Jetta Starck",
264
- "country": "FI",
265
- "salary": "54791289",
266
- "active": ""
267
- },
268
- {
269
- "id": "14",
270
- "name": "Hannah Milligan",
271
- "position": "marketing",
272
- "boss": "Lloyd Smit",
273
- "country": "LA",
274
- "salary": "83487669",
275
- "active": ""
276
- },
277
- {
278
- "id": "15",
279
- "name": "Dannielle Zobel",
280
- "position": "student",
281
- "boss": "Curtis Oldman",
282
- "country": "SC",
283
- "salary": "56824281",
284
- "active": ""
285
- },
286
- {
287
- "id": "16",
288
- "name": "Jamie Starck",
289
- "position": "engineer",
290
- "boss": "Rolf Freeman",
291
- "country": "BB",
292
- "salary": "47675368",
293
- "active": ""
294
- },
295
- {
296
- "id": "17",
297
- "name": "Ian Bradbury",
298
- "position": "other",
299
- "boss": "Layla White",
300
- "country": "RS",
301
- "salary": "26516781",
302
- "active": ""
303
- },
304
- {
305
- "id": "18",
306
- "name": "Michael Grieve",
307
- "position": "engineer",
308
- "boss": "Juliana Pendergast",
309
- "country": "TV",
310
- "salary": "71154257",
311
- "active": ""
312
- },
313
- {
314
- "id": "19",
315
- "name": "Madelyn Higgins",
316
- "position": "marketing",
317
- "boss": "Vernon Brier",
318
- "country": "BO",
319
- "salary": "17061785",
320
- "active": ""
321
- },
322
- {
323
- "id": "20",
324
- "name": "Theo Brandt",
325
- "position": "educator",
326
- "boss": "Rene Hollis",
327
- "country": "SK",
328
- "salary": "18572030",
329
- "active": ""
330
- },
331
- {
332
- "id": "21",
333
- "name": "Layla Rebelo",
334
- "position": "marketing",
335
- "boss": "Lorelei Paquette",
336
- "country": "PA",
337
- "salary": "27590532",
338
- "active": ""
339
- },
340
- {
341
- "id": "22",
342
- "name": "Cyrus Sager",
343
- "position": "entertainment",
344
- "boss": "Roman Pendergast",
345
- "country": "DM",
346
- "salary": "19062339",
347
- "active": ""
348
- },
349
- {
350
- "id": "23",
351
- "name": "Lance Jensen",
352
- "position": "administrator",
353
- "boss": "Janett Drolet",
354
- "country": "CH",
355
- "salary": "57060911",
356
- "active": ""
357
- },
358
- {
359
- "id": "24",
360
- "name": "Warren Karst",
361
- "position": "scientist",
362
- "boss": "Vaughn Pleiman",
363
- "country": "NR",
364
- "salary": "94697923",
365
- "active": ""
366
- },
367
- {
368
- "id": "25",
369
- "name": "Maisha Neal",
370
- "position": "technician",
371
- "boss": "Cory Garling",
372
- "country": "TL",
373
- "salary": "87733972",
374
- "active": ""
375
- },
376
- {
377
- "id": "26",
378
- "name": "Brian Oldman",
379
- "position": "marketing",
380
- "boss": "Juliana Keesee",
381
- "country": "ZW",
382
- "salary": "57491378",
383
- "active": ""
384
- },
385
- {
386
- "id": "27",
387
- "name": "Jenette Freeman",
388
- "position": "marketing",
389
- "boss": "Richelle Bryd",
390
- "country": "BD",
391
- "salary": "91702600",
392
- "active": ""
393
- },
394
- {
395
- "id": "28",
396
- "name": "Eleanore White",
397
- "position": "lawyer",
398
- "boss": "Katelin White",
399
- "country": "AR",
400
- "salary": "90153943",
401
- "active": ""
402
- },
403
- {
404
- "id": "29",
405
- "name": "Emma Caffey",
406
- "position": "scientist",
407
- "boss": "Lance Connor",
408
- "country": "CO",
409
- "salary": "35738875",
410
- "active": ""
411
- }
412
- ],
413
- "rows100": [
414
- {
415
- "id": "0",
416
- "name": "Alejandro Miers",
417
- "position": "doctor",
418
- "boss": "Rosie Turner",
419
- "country": "TV",
420
- "salary": "42016025",
421
- "active": ""
422
- },
423
- {
424
- "id": "1",
425
- "name": "Gavin Freeman",
426
- "position": "other",
427
- "boss": "Dori Correa",
428
- "country": "BV",
429
- "salary": "15896460",
430
- "active": ""
431
- },
432
- {
433
- "id": "2",
434
- "name": "Rico Smit",
435
- "position": "doctor",
436
- "boss": "Ivan Brandt",
437
- "country": "VU",
438
- "salary": "75594566",
439
- "active": ""
440
- },
441
- {
442
- "id": "3",
443
- "name": "Aiden Castleman",
444
- "position": "entertainment",
445
- "boss": "Theo Brier",
446
- "country": "WF",
447
- "salary": "18810462",
448
- "active": ""
449
- },
450
- {
451
- "id": "4",
452
- "name": "Chloe Seabury",
453
- "position": "administrator",
454
- "boss": "Lorelei Pace",
455
- "country": "JM",
456
- "salary": "85551646",
457
- "active": ""
458
- },
459
- {
460
- "id": "5",
461
- "name": "Lyn Brier",
462
- "position": "educator",
463
- "boss": "Emma Bryd",
464
- "country": "MY",
465
- "salary": "46853520",
466
- "active": ""
467
- },
468
- {
469
- "id": "6",
470
- "name": "Ivan Smit",
471
- "position": "writer",
472
- "boss": "Michael Pleiman",
473
- "country": "FK",
474
- "salary": "62042170",
475
- "active": ""
476
- },
477
- {
478
- "id": "7",
479
- "name": "Dori Furlough",
480
- "position": "executive",
481
- "boss": "Rufus Young",
482
- "country": "RU",
483
- "salary": "74270953",
484
- "active": ""
485
- },
486
- {
487
- "id": "8",
488
- "name": "Benito Cappel",
489
- "position": "writer",
490
- "boss": "Madelyn Bourquin",
491
- "country": "CK",
492
- "salary": "32779705",
493
- "active": ""
494
- },
495
- {
496
- "id": "9",
497
- "name": "Rosanne Mullens",
498
- "position": "homemaker",
499
- "boss": "Rosanne Friedrich",
500
- "country": "NE",
501
- "salary": "58421842",
502
- "active": ""
503
- },
504
- {
505
- "id": "10",
506
- "name": "Florance Paquette",
507
- "position": "scientist",
508
- "boss": "Alexa Winter",
509
- "country": "PW",
510
- "salary": "43438228",
511
- "active": ""
512
- },
513
- {
514
- "id": "11",
515
- "name": "Jason Cumbie",
516
- "position": "lawyer",
517
- "boss": "Raymond Fennell",
518
- "country": "MY",
519
- "salary": "32678633",
520
- "active": ""
521
- },
522
- {
523
- "id": "12",
524
- "name": "Maisha Whitson",
525
- "position": "homemaker",
526
- "boss": "Michael Friedrich",
527
- "country": "BF",
528
- "salary": "99546548",
529
- "active": ""
530
- },
531
- {
532
- "id": "13",
533
- "name": "Lynetta Luck",
534
- "position": "salesman",
535
- "boss": "Marcus Gilmore",
536
- "country": "WS",
537
- "salary": "94975799",
538
- "active": ""
539
- },
540
- {
541
- "id": "14",
542
- "name": "Janett Risley",
543
- "position": "writer",
544
- "boss": "Cory Pendergast",
545
- "country": "KH",
546
- "salary": "49500795",
547
- "active": ""
548
- },
549
- {
550
- "id": "15",
551
- "name": "Travis Smit",
552
- "position": "administrator",
553
- "boss": "Haydee Raymond",
554
- "country": "AO",
555
- "salary": "51575813",
556
- "active": ""
557
- },
558
- {
559
- "id": "16",
560
- "name": "Tyler Sprowl",
561
- "position": "homemaker",
562
- "boss": "Jamie Caffey",
563
- "country": "IM",
564
- "salary": "85151161",
565
- "active": ""
566
- },
567
- {
568
- "id": "17",
569
- "name": "Myong Sprowl",
570
- "position": "executive",
571
- "boss": "Michelle Correa",
572
- "country": "MH",
573
- "salary": "23779206",
574
- "active": ""
575
- },
576
- {
577
- "id": "18",
578
- "name": "Jetta Porras",
579
- "position": "healthcare",
580
- "boss": "Rolf Seal",
581
- "country": "IS",
582
- "salary": "23479152",
583
- "active": ""
584
- },
585
- {
586
- "id": "19",
587
- "name": "Roman Verde",
588
- "position": "homemaker",
589
- "boss": "Maisha Risley",
590
- "country": "PW",
591
- "salary": "34753281",
592
- "active": ""
593
- },
594
- {
595
- "id": "20",
596
- "name": "Jocelyn Woodrum",
597
- "position": "retired",
598
- "boss": "Jocelyn Turner",
599
- "country": "IT",
600
- "salary": "76111640",
601
- "active": ""
602
- },
603
- {
604
- "id": "21",
605
- "name": "Haley Milligan",
606
- "position": "engineer",
607
- "boss": "Leanne Kelsey",
608
- "country": "CI",
609
- "salary": "24025146",
610
- "active": ""
611
- },
612
- {
613
- "id": "22",
614
- "name": "Michelle Remus",
615
- "position": "marketing",
616
- "boss": "Hannah Shelly",
617
- "country": "TO",
618
- "salary": "37489703",
619
- "active": ""
620
- },
621
- {
622
- "id": "23",
623
- "name": "Raisa Stine",
624
- "position": "executive",
625
- "boss": "Madeleine Schaefer",
626
- "country": "NF",
627
- "salary": "23994337",
628
- "active": ""
629
- },
630
- {
631
- "id": "24",
632
- "name": "Chloe Murphy",
633
- "position": "administrator",
634
- "boss": "Yuri Jensen",
635
- "country": "BY",
636
- "salary": "84069432",
637
- "active": ""
638
- },
639
- {
640
- "id": "25",
641
- "name": "Anton Keesee",
642
- "position": "entertainment",
643
- "boss": "Erik White",
644
- "country": "KG",
645
- "salary": "14717709",
646
- "active": ""
647
- },
648
- {
649
- "id": "26",
650
- "name": "Marcus White",
651
- "position": "lawyer",
652
- "boss": "Brian Webster",
653
- "country": "PM",
654
- "salary": "42483566",
655
- "active": ""
656
- },
657
- {
658
- "id": "27",
659
- "name": "Emma Risley",
660
- "position": "scientist",
661
- "boss": "Benito Neal",
662
- "country": "MU",
663
- "salary": "71770120",
664
- "active": ""
665
- },
666
- {
667
- "id": "28",
668
- "name": "Madelyn Young",
669
- "position": "librarian",
670
- "boss": "Katelin Neal",
671
- "country": "DJ",
672
- "salary": "22874272",
673
- "active": ""
674
- },
675
- {
676
- "id": "29",
677
- "name": "Rosanne Seabury",
678
- "position": "executive",
679
- "boss": "Lyn Seal",
680
- "country": "IM",
681
- "salary": "28549671",
682
- "active": ""
683
- },
684
- {
685
- "id": "30",
686
- "name": "Jamie Wallis",
687
- "position": "engineer",
688
- "boss": "Emma Stine",
689
- "country": "CI",
690
- "salary": "84926028",
691
- "active": ""
692
- },
693
- {
694
- "id": "31",
695
- "name": "Aiden Porras",
696
- "position": "lawyer",
697
- "boss": "Madelyn Tindel",
698
- "country": "SV",
699
- "salary": "41520114",
700
- "active": ""
701
- },
702
- {
703
- "id": "32",
704
- "name": "Edward Brandt",
705
- "position": "none",
706
- "boss": "Vernon Hundt",
707
- "country": "DK",
708
- "salary": "31745819",
709
- "active": ""
710
- },
711
- {
712
- "id": "33",
713
- "name": "Olivia Hyder",
714
- "position": "healthcare",
715
- "boss": "Rosie Verde",
716
- "country": "SB",
717
- "salary": "37678594",
718
- "active": ""
719
- },
720
- {
721
- "id": "34",
722
- "name": "Drew Shelly",
723
- "position": "salesman",
724
- "boss": "Neida Jensen",
725
- "country": "TG",
726
- "salary": "61121100",
727
- "active": ""
728
- },
729
- {
730
- "id": "35",
731
- "name": "Dannielle Seal",
732
- "position": "doctor",
733
- "boss": "Kathy Hottle",
734
- "country": "SY",
735
- "salary": "82644368",
736
- "active": ""
737
- },
738
- {
739
- "id": "36",
740
- "name": "Rosanne Cadena",
741
- "position": "technician",
742
- "boss": "Shea Finn",
743
- "country": "PT",
744
- "salary": "45376514",
745
- "active": ""
746
- },
747
- {
748
- "id": "37",
749
- "name": "Mitch Cappel",
750
- "position": "lawyer",
751
- "boss": "Alexis Chapman",
752
- "country": "TZ",
753
- "salary": "41155781",
754
- "active": ""
755
- },
756
- {
757
- "id": "38",
758
- "name": "Dori Hyder",
759
- "position": "none",
760
- "boss": "Cyrus Seabury",
761
- "country": "CW",
762
- "salary": "27191629",
763
- "active": ""
764
- },
765
- {
766
- "id": "39",
767
- "name": "Vaughn Cappel",
768
- "position": "technician",
769
- "boss": "Rosie Coolidge",
770
- "country": "MZ",
771
- "salary": "45983934",
772
- "active": ""
773
- },
774
- {
775
- "id": "40",
776
- "name": "Jenna Sprowl",
777
- "position": "librarian",
778
- "boss": "Lyle Fennell",
779
- "country": "TT",
780
- "salary": "58481585",
781
- "active": ""
782
- },
783
- {
784
- "id": "41",
785
- "name": "Alexis Zobel",
786
- "position": "retired",
787
- "boss": "Rufus Finn",
788
- "country": "PN",
789
- "salary": "15400775",
790
- "active": ""
791
- },
792
- {
793
- "id": "42",
794
- "name": "Cedric Porras",
795
- "position": "artist",
796
- "boss": "Rolf Murphy",
797
- "country": "RS",
798
- "salary": "16065943",
799
- "active": ""
800
- },
801
- {
802
- "id": "43",
803
- "name": "Rikki Pace",
804
- "position": "engineer",
805
- "boss": "Cory Paschall",
806
- "country": "KN",
807
- "salary": "49718818",
808
- "active": ""
809
- },
810
- {
811
- "id": "44",
812
- "name": "Florance Charley",
813
- "position": "technician",
814
- "boss": "Grace Wallis",
815
- "country": "GP",
816
- "salary": "97061132",
817
- "active": ""
818
- },
819
- {
820
- "id": "45",
821
- "name": "Russell White",
822
- "position": "librarian",
823
- "boss": "Lorelei Connor",
824
- "country": "US",
825
- "salary": "56641009",
826
- "active": ""
827
- },
828
- {
829
- "id": "46",
830
- "name": "Richelle Rhymer",
831
- "position": "technician",
832
- "boss": "Lorelei Drolet",
833
- "country": "VN",
834
- "salary": "75411808",
835
- "active": ""
836
- },
837
- {
838
- "id": "47",
839
- "name": "Rickey Smit",
840
- "position": "marketing",
841
- "boss": "Myong Goudy",
842
- "country": "GW",
843
- "salary": "81323199",
844
- "active": ""
845
- },
846
- {
847
- "id": "48",
848
- "name": "Florance Kelsey",
849
- "position": "entertainment",
850
- "boss": "Richelle Winter",
851
- "country": "KE",
852
- "salary": "29974825",
853
- "active": ""
854
- },
855
- {
856
- "id": "49",
857
- "name": "Selma Hundt",
858
- "position": "programmer",
859
- "boss": "Neida Dampier",
860
- "country": "BQ",
861
- "salary": "86240926",
862
- "active": ""
863
- },
864
- {
865
- "id": "50",
866
- "name": "Leanne Wallis",
867
- "position": "executive",
868
- "boss": "Stephen Rohloff",
869
- "country": "IR",
870
- "salary": "96997913",
871
- "active": ""
872
- },
873
- {
874
- "id": "51",
875
- "name": "Travis Shelly",
876
- "position": "marketing",
877
- "boss": "Cyrus Gilmore",
878
- "country": "HM",
879
- "salary": "81203603",
880
- "active": ""
881
- },
882
- {
883
- "id": "52",
884
- "name": "Darrell Sprowl",
885
- "position": "student",
886
- "boss": "Alexa Pace",
887
- "country": "LK",
888
- "salary": "75687115",
889
- "active": ""
890
- },
891
- {
892
- "id": "53",
893
- "name": "Jocelyn Neal",
894
- "position": "salesman",
895
- "boss": "Francis Freeman",
896
- "country": "BE",
897
- "salary": "77621422",
898
- "active": ""
899
- },
900
- {
901
- "id": "54",
902
- "name": "Heath Muldoon",
903
- "position": "homemaker",
904
- "boss": "Benito Dunham",
905
- "country": "TH",
906
- "salary": "56334272",
907
- "active": ""
908
- },
909
- {
910
- "id": "55",
911
- "name": "Olivia Friedrich",
912
- "position": "none",
913
- "boss": "Madelyn Muldoon",
914
- "country": "AT",
915
- "salary": "67948838",
916
- "active": ""
917
- },
918
- {
919
- "id": "56",
920
- "name": "Elaine Pullman",
921
- "position": "entertainment",
922
- "boss": "Rico Hollis",
923
- "country": "AT",
924
- "salary": "57206220",
925
- "active": ""
926
- },
927
- {
928
- "id": "57",
929
- "name": "Dori Carter",
930
- "position": "salesman",
931
- "boss": "Raylene Carroll",
932
- "country": "PN",
933
- "salary": "76258404",
934
- "active": ""
935
- },
936
- {
937
- "id": "58",
938
- "name": "Raymond Brier",
939
- "position": "lawyer",
940
- "boss": "Jetta Sager",
941
- "country": "ET",
942
- "salary": "18565278",
943
- "active": ""
944
- },
945
- {
946
- "id": "59",
947
- "name": "Erik Castleman",
948
- "position": "executive",
949
- "boss": "Cedric Sprowl",
950
- "country": "YT",
951
- "salary": "85714433",
952
- "active": ""
953
- },
954
- {
955
- "id": "60",
956
- "name": "Rufus Connor",
957
- "position": "entertainment",
958
- "boss": "Leanne Starck",
959
- "country": "PF",
960
- "salary": "41463130",
961
- "active": ""
962
- },
963
- {
964
- "id": "61",
965
- "name": "Brian Gilmore",
966
- "position": "marketing",
967
- "boss": "Liza Paquette",
968
- "country": "IE",
969
- "salary": "77617172",
970
- "active": ""
971
- },
972
- {
973
- "id": "62",
974
- "name": "Joslyn Karst",
975
- "position": "lawyer",
976
- "boss": "Rikki Pleiman",
977
- "country": "SH",
978
- "salary": "27823404",
979
- "active": ""
980
- },
981
- {
982
- "id": "63",
983
- "name": "Rufus Durrett",
984
- "position": "executive",
985
- "boss": "Grace Bickers",
986
- "country": "TO",
987
- "salary": "83689564",
988
- "active": ""
989
- },
990
- {
991
- "id": "64",
992
- "name": "Max Garling",
993
- "position": "librarian",
994
- "boss": "Darrell Rohloff",
995
- "country": "AI",
996
- "salary": "80645441",
997
- "active": ""
998
- },
999
- {
1000
- "id": "65",
1001
- "name": "Dannielle Verde",
1002
- "position": "homemaker",
1003
- "boss": "Eleanore Starck",
1004
- "country": "UM",
1005
- "salary": "27653609",
1006
- "active": ""
1007
- },
1008
- {
1009
- "id": "66",
1010
- "name": "Haley Drolet",
1011
- "position": "retired",
1012
- "boss": "Alejandro Jensen",
1013
- "country": "CM",
1014
- "salary": "89387566",
1015
- "active": ""
1016
- },
1017
- {
1018
- "id": "67",
1019
- "name": "Kathy Castleman",
1020
- "position": "writer",
1021
- "boss": "Haydee Durrett",
1022
- "country": "AU",
1023
- "salary": "94289788",
1024
- "active": ""
1025
- },
1026
- {
1027
- "id": "68",
1028
- "name": "Juliana Garling",
1029
- "position": "marketing",
1030
- "boss": "Liza Winter",
1031
- "country": "CO",
1032
- "salary": "19561846",
1033
- "active": ""
1034
- },
1035
- {
1036
- "id": "69",
1037
- "name": "Richelle Mercer",
1038
- "position": "librarian",
1039
- "boss": "Rosie Hyder",
1040
- "country": "NF",
1041
- "salary": "98196892",
1042
- "active": ""
1043
- },
1044
- {
1045
- "id": "70",
1046
- "name": "Max Kilmer",
1047
- "position": "doctor",
1048
- "boss": "Jamie Keesee",
1049
- "country": "IE",
1050
- "salary": "86699305",
1051
- "active": ""
1052
- },
1053
- {
1054
- "id": "71",
1055
- "name": "Rikki Tindel",
1056
- "position": "none",
1057
- "boss": "Dori Pullman",
1058
- "country": "PM",
1059
- "salary": "45372915",
1060
- "active": ""
1061
- },
1062
- {
1063
- "id": "72",
1064
- "name": "Raisa Paschall",
1065
- "position": "librarian",
1066
- "boss": "Miles Karst",
1067
- "country": "FO",
1068
- "salary": "69766489",
1069
- "active": ""
1070
- },
1071
- {
1072
- "id": "73",
1073
- "name": "Rickey Grieve",
1074
- "position": "entertainment",
1075
- "boss": "Selma Kelsey",
1076
- "country": "KW",
1077
- "salary": "44494172",
1078
- "active": ""
1079
- },
1080
- {
1081
- "id": "74",
1082
- "name": "Cedric Paschall",
1083
- "position": "technician",
1084
- "boss": "Aiden Starck",
1085
- "country": "FM",
1086
- "salary": "59821055",
1087
- "active": ""
1088
- },
1089
- {
1090
- "id": "75",
1091
- "name": "Jenette Pendergast",
1092
- "position": "scientist",
1093
- "boss": "Layla Kelsey",
1094
- "country": "BH",
1095
- "salary": "93150480",
1096
- "active": ""
1097
- },
1098
- {
1099
- "id": "76",
1100
- "name": "Cedric Turner",
1101
- "position": "artist",
1102
- "boss": "Cyrus Krumm",
1103
- "country": "LI",
1104
- "salary": "41349678",
1105
- "active": ""
1106
- },
1107
- {
1108
- "id": "77",
1109
- "name": "Francis Fennell",
1110
- "position": "marketing",
1111
- "boss": "Janett Helland",
1112
- "country": "BA",
1113
- "salary": "54586861",
1114
- "active": ""
1115
- },
1116
- {
1117
- "id": "78",
1118
- "name": "Myong Young",
1119
- "position": "executive",
1120
- "boss": "Miles Hancock",
1121
- "country": "TV",
1122
- "salary": "22831276",
1123
- "active": ""
1124
- },
1125
- {
1126
- "id": "79",
1127
- "name": "Victoria Sager",
1128
- "position": "entertainment",
1129
- "boss": "Anton Young",
1130
- "country": "JP",
1131
- "salary": "75865206",
1132
- "active": ""
1133
- },
1134
- {
1135
- "id": "80",
1136
- "name": "Kurt Muldoon",
1137
- "position": "other",
1138
- "boss": "Cedric Cumbie",
1139
- "country": "RO",
1140
- "salary": "17822240",
1141
- "active": ""
1142
- },
1143
- {
1144
- "id": "81",
1145
- "name": "Cedric Kelsey",
1146
- "position": "marketing",
1147
- "boss": "Susana Furlough",
1148
- "country": "FI",
1149
- "salary": "41687100",
1150
- "active": ""
1151
- },
1152
- {
1153
- "id": "82",
1154
- "name": "Alexa Kelsey",
1155
- "position": "retired",
1156
- "boss": "Edward Winter",
1157
- "country": "SO",
1158
- "salary": "20322635",
1159
- "active": ""
1160
- },
1161
- {
1162
- "id": "83",
1163
- "name": "Jamie Lenihan",
1164
- "position": "technician",
1165
- "boss": "Brian Paquette",
1166
- "country": "FO",
1167
- "salary": "39467420",
1168
- "active": ""
1169
- },
1170
- {
1171
- "id": "84",
1172
- "name": "Lorelei Gilmore",
1173
- "position": "marketing",
1174
- "boss": "Dori Muldoon",
1175
- "country": "DZ",
1176
- "salary": "84928092",
1177
- "active": ""
1178
- },
1179
- {
1180
- "id": "85",
1181
- "name": "Kurt Raymond",
1182
- "position": "none",
1183
- "boss": "Roselyn Paschall",
1184
- "country": "GE",
1185
- "salary": "96990334",
1186
- "active": ""
1187
- },
1188
- {
1189
- "id": "86",
1190
- "name": "Rufus Pace",
1191
- "position": "engineer",
1192
- "boss": "Juliana Fennell",
1193
- "country": "ZW",
1194
- "salary": "82790570",
1195
- "active": ""
1196
- },
1197
- {
1198
- "id": "87",
1199
- "name": "Adam Castleman",
1200
- "position": "other",
1201
- "boss": "Aiden Risley",
1202
- "country": "SA",
1203
- "salary": "75468997",
1204
- "active": ""
1205
- },
1206
- {
1207
- "id": "88",
1208
- "name": "Shea Kelsey",
1209
- "position": "engineer",
1210
- "boss": "Jason Mullens",
1211
- "country": "BA",
1212
- "salary": "73631034",
1213
- "active": ""
1214
- },
1215
- {
1216
- "id": "89",
1217
- "name": "Ian Leath",
1218
- "position": "writer",
1219
- "boss": "Haydee Rohloff",
1220
- "country": "MX",
1221
- "salary": "75869169",
1222
- "active": ""
1223
- },
1224
- {
1225
- "id": "90",
1226
- "name": "Cory Krumm",
1227
- "position": "salesman",
1228
- "boss": "Erik Gilmore",
1229
- "country": "HU",
1230
- "salary": "80148971",
1231
- "active": ""
1232
- },
1233
- {
1234
- "id": "91",
1235
- "name": "Selma Young",
1236
- "position": "lawyer",
1237
- "boss": "Florance Pendergast",
1238
- "country": "BF",
1239
- "salary": "92907235",
1240
- "active": ""
1241
- },
1242
- {
1243
- "id": "92",
1244
- "name": "Drew Pendergast",
1245
- "position": "librarian",
1246
- "boss": "Drew Bourquin",
1247
- "country": "MS",
1248
- "salary": "97693441",
1249
- "active": ""
1250
- },
1251
- {
1252
- "id": "93",
1253
- "name": "Rosanne Wallis",
1254
- "position": "healthcare",
1255
- "boss": "Michael Seal",
1256
- "country": "GP",
1257
- "salary": "48485546",
1258
- "active": ""
1259
- },
1260
- {
1261
- "id": "94",
1262
- "name": "Cecilia Caffey",
1263
- "position": "administrator",
1264
- "boss": "Isabelle Latshaw",
1265
- "country": "SL",
1266
- "salary": "46940291",
1267
- "active": ""
1268
- },
1269
- {
1270
- "id": "95",
1271
- "name": "Cecilia Zobel",
1272
- "position": "doctor",
1273
- "boss": "Dannielle Pace",
1274
- "country": "HR",
1275
- "salary": "88108960",
1276
- "active": ""
1277
- },
1278
- {
1279
- "id": "96",
1280
- "name": "Susana Higgins",
1281
- "position": "retired",
1282
- "boss": "Olivia Karst",
1283
- "country": "TW",
1284
- "salary": "80472236",
1285
- "active": ""
1286
- },
1287
- {
1288
- "id": "97",
1289
- "name": "Rufus Zobel",
1290
- "position": "librarian",
1291
- "boss": "Stephen Shelly",
1292
- "country": "MA",
1293
- "salary": "74275483",
1294
- "active": ""
1295
- },
1296
- {
1297
- "id": "98",
1298
- "name": "Rikki Risley",
1299
- "position": "homemaker",
1300
- "boss": "Chloe Muldoon",
1301
- "country": "DK",
1302
- "salary": "65405515",
1303
- "active": ""
1304
- },
1305
- {
1306
- "id": "99",
1307
- "name": "Cyrus Remus",
1308
- "position": "administrator",
1309
- "boss": "Rosanne Rikard",
1310
- "country": "MV",
1311
- "salary": "78219811",
1312
- "active": ""
1313
- }
1314
- ]
1315
- }