@absreim/react-bootstrap-data-grid-pro 2.7.0 → 4.0.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 (201) hide show
  1. package/common/constants.d.ts +2 -0
  2. package/common/constants.js +2 -0
  3. package/common/editing/types.d.ts +7 -0
  4. package/{grid → common}/export/ExportForm.d.ts +1 -0
  5. package/{grid → common}/export/ExportForm.js +3 -3
  6. package/{grid → common}/filtering/DateFilterRow.d.ts +4 -4
  7. package/{grid → common}/filtering/DateFilterRow.js +1 -1
  8. package/common/filtering/FilterOptionsTable.d.ts +12 -0
  9. package/common/filtering/FilterOptionsTable.js +87 -0
  10. package/{grid → common}/filtering/FilterRow.d.ts +4 -4
  11. package/{grid → common}/filtering/FilterRow.js +1 -1
  12. package/{grid → common}/filtering/NumberFilterRow.d.ts +3 -3
  13. package/{grid → common}/filtering/NumberFilterRow.js +1 -1
  14. package/{grid → common}/filtering/StringFilterRow.d.ts +3 -3
  15. package/{grid → common}/filtering/StringFilterRow.js +1 -1
  16. package/{grid → common}/filtering/types.d.ts +6 -6
  17. package/common/filtering/useFilterFormState.d.ts +3 -0
  18. package/common/index.d.ts +11 -0
  19. package/common/index.js +11 -0
  20. package/{grid → common}/pagination/PageSelector.d.ts +1 -1
  21. package/{grid → common}/pagination/PageSizeSelector.d.ts +1 -1
  22. package/{grid → common}/pagination/Pagination.d.ts +1 -1
  23. package/{grid → common}/pagination/Pagination.js +6 -3
  24. package/{grid → common}/pagination/types.d.ts +3 -2
  25. package/{grid → common}/pipeline/useAugFormattedRows.d.ts +1 -1
  26. package/common/pipeline/useColNameToWidth.d.ts +3 -0
  27. package/common/pipeline/useColNameToWidth.js +7 -0
  28. package/{grid → common}/pipeline/useCombinedPipeline/index.d.ts +4 -4
  29. package/{grid → common}/pipeline/useCombinedPipeline/useCurrentPageRows.d.ts +3 -3
  30. package/{grid → common}/pipeline/useCombinedPipeline/useDisplayRows.d.ts +1 -1
  31. package/{grid → common}/pipeline/useCombinedPipeline/useDisplayRows.js +1 -2
  32. package/common/pipeline/useCombinedPipeline/useFilter.d.ts +4 -0
  33. package/common/pipeline/useCombinedPipeline/useFilterStateFromEditable.d.ts +4 -0
  34. package/{grid → common}/pipeline/useCombinedPipeline/useSortedRows.d.ts +2 -2
  35. package/{grid → common}/pipeline/useGridSelectionFns.d.ts +2 -2
  36. package/{grid → common}/sorting/types.d.ts +3 -3
  37. package/{grid/main/ColHeaderCell → common/sorting}/useSortHeaderStates.d.ts +2 -2
  38. package/{grid/main/ColHeaderCell → common/sorting}/useSortHeaderStates.js +4 -4
  39. package/common/styling/types.d.ts +21 -0
  40. package/{grid → common}/toolbar/ToolbarContainer.d.ts +2 -2
  41. package/{grid → common}/toolbar/ToolbarContainer.js +11 -7
  42. package/common/toolbar/types.d.ts +11 -0
  43. package/common/toolbar/useInterfaces.d.ts +3 -0
  44. package/common/toolbar/useInterfaces.js +15 -0
  45. package/{grid → common}/types.d.ts +24 -34
  46. package/common/util/index.d.ts +5 -0
  47. package/common/util/index.js +5 -0
  48. package/grid/constants.d.ts +2 -0
  49. package/grid/constants.js +2 -0
  50. package/grid/index.d.ts +3 -10
  51. package/grid/index.js +3 -10
  52. package/grid/{Grid.d.ts → main/Grid.d.ts} +0 -1
  53. package/grid/main/Grid.js +59 -0
  54. package/grid/main/GridBody.d.ts +4 -0
  55. package/grid/main/GridBody.js +13 -0
  56. package/grid/main/GridHeader.d.ts +4 -0
  57. package/grid/main/GridHeader.js +11 -0
  58. package/grid/main/getWidthStyles.d.ts +3 -0
  59. package/grid/main/getWidthStyles.js +6 -0
  60. package/grid/main/types.d.ts +32 -0
  61. package/grid.css +1 -0
  62. package/grid.scss +231 -0
  63. package/package.json +1 -1
  64. package/pro/index.d.ts +5 -0
  65. package/pro/index.js +5 -0
  66. package/table/InternalTable.d.ts +21 -0
  67. package/table/InternalTable.js +58 -0
  68. package/table/Table.d.ts +5 -0
  69. package/{grid/Grid.js → table/Table.js} +11 -18
  70. package/{grid → table}/editing/EditControlsCell.d.ts +5 -5
  71. package/table/editing/EditControlsCell.js +10 -0
  72. package/{grid → table}/editing/EditableRow.d.ts +8 -9
  73. package/{grid → table}/editing/EditableRow.js +3 -3
  74. package/table/index.d.ts +5 -0
  75. package/table/index.js +5 -0
  76. package/table/main/BodyRows.d.ts +22 -0
  77. package/table/main/BodyRows.js +27 -0
  78. package/{grid → table}/main/ColHeaderCell/index.js +3 -3
  79. package/{grid → table}/selection/SelectAllHeaderCell.d.ts +2 -2
  80. package/{grid → table}/selection/SelectAllHeaderCell.js +2 -4
  81. package/{grid → table}/selection/SelectionInput.d.ts +1 -1
  82. package/table/style.scss +3 -0
  83. package/table/styling/types.d.ts +41 -0
  84. package/table/styling/types.js +1 -0
  85. package/table/types.d.ts +19 -0
  86. package/table/types.js +1 -0
  87. package/{grid-pro → table-pro}/ColHeaderCellPro.js +4 -4
  88. package/table-pro/TablePro.d.ts +4 -0
  89. package/{grid-pro/GridPro.js → table-pro/TablePro.js} +10 -13
  90. package/{grid-pro → table-pro}/index.d.ts +2 -2
  91. package/{grid-pro → table-pro}/index.js +2 -2
  92. package/{grid-pro → table-pro}/reorder/ReorderHandleCell.js +1 -1
  93. package/{grid-pro → table-pro}/reorder/useKeyboardReorder.js +1 -1
  94. package/{grid-pro → table-pro}/resize/useResizeModel.d.ts +1 -1
  95. package/table-pro/style.scss +69 -0
  96. package/{grid-pro → table-pro}/types.d.ts +3 -3
  97. package/table-pro/types.js +1 -0
  98. package/table-pro.scss +1 -0
  99. package/grid/InternalGrid.d.ts +0 -23
  100. package/grid/InternalGrid.js +0 -56
  101. package/grid/editing/EditControlsCell.js +0 -18
  102. package/grid/editing/types.d.ts +0 -16
  103. package/grid/filtering/FilterOptionsTable.d.ts +0 -11
  104. package/grid/filtering/FilterOptionsTable.js +0 -81
  105. package/grid/filtering/useFilterFormState.d.ts +0 -3
  106. package/grid/main/BodyRows.d.ts +0 -22
  107. package/grid/main/BodyRows.js +0 -11
  108. package/grid/main/ToggleButton.d.ts +0 -9
  109. package/grid/main/ToggleButton.js +0 -13
  110. package/grid/pipeline/useCombinedPipeline/useFilter.d.ts +0 -4
  111. package/grid/pipeline/useCombinedPipeline/useFilterStateFromEditable.d.ts +0 -4
  112. package/grid/pipeline/useUnwrappedGridStyles.d.ts +0 -7
  113. package/grid/pipeline/useUnwrappedGridStyles.js +0 -15
  114. package/grid/styling/styleModelUnwrappers.d.ts +0 -4
  115. package/grid/styling/styleModelUnwrappers.js +0 -47
  116. package/grid/styling/types.d.ts +0 -62
  117. package/grid/toolbar/types.d.ts +0 -3
  118. package/grid/toolbar/useInterfaces.d.ts +0 -9
  119. package/grid/toolbar/useInterfaces.js +0 -11
  120. package/grid-pro/GridPro.d.ts +0 -4
  121. /package/{grid → common}/editing/inputStrsToRowData.d.ts +0 -0
  122. /package/{grid → common}/editing/inputStrsToRowData.js +0 -0
  123. /package/{grid-pro/reorder → common/editing}/types.js +0 -0
  124. /package/{grid → common}/export/types.d.ts +0 -0
  125. /package/{grid-pro/resize → common/export}/types.js +0 -0
  126. /package/{grid → common}/export/useExportFn.d.ts +0 -0
  127. /package/{grid → common}/export/useExportFn.js +0 -0
  128. /package/{grid → common}/filtering/types.js +0 -0
  129. /package/{grid → common}/filtering/useFilterFormState.js +0 -0
  130. /package/{grid → common}/pagination/PageSelector.js +0 -0
  131. /package/{grid → common}/pagination/PageSizeSelector.js +0 -0
  132. /package/{grid-pro → common/pagination}/types.js +0 -0
  133. /package/{grid → common}/pipeline/types.d.ts +0 -0
  134. /package/{grid-pro/util → common/pipeline}/types.js +0 -0
  135. /package/{grid → common}/pipeline/useAugFormattedRows.js +0 -0
  136. /package/{grid → common}/pipeline/useCombinedPipeline/index.js +0 -0
  137. /package/{grid → common}/pipeline/useCombinedPipeline/useCurrentPageRows.js +0 -0
  138. /package/{grid → common}/pipeline/useCombinedPipeline/useFilter.js +0 -0
  139. /package/{grid → common}/pipeline/useCombinedPipeline/useFilterStateFromEditable.js +0 -0
  140. /package/{grid → common}/pipeline/useCombinedPipeline/useFilterStateStore.d.ts +0 -0
  141. /package/{grid → common}/pipeline/useCombinedPipeline/useFilterStateStore.js +0 -0
  142. /package/{grid → common}/pipeline/useCombinedPipeline/useSortedRows.js +0 -0
  143. /package/{grid → common}/pipeline/useGetInputStrSubmitCallback.d.ts +0 -0
  144. /package/{grid → common}/pipeline/useGetInputStrSubmitCallback.js +0 -0
  145. /package/{grid → common}/pipeline/useGridSelectionFns.js +0 -0
  146. /package/{grid → common}/selection/types.d.ts +0 -0
  147. /package/{grid → common}/selection/types.js +0 -0
  148. /package/{grid → common}/sorting/arrowPlaceholder.d.ts +0 -0
  149. /package/{grid → common}/sorting/arrowPlaceholder.js +0 -0
  150. /package/{grid → common}/sorting/downArrow.d.ts +0 -0
  151. /package/{grid → common}/sorting/downArrow.js +0 -0
  152. /package/{grid → common}/sorting/sortOrderToAriaSort.d.ts +0 -0
  153. /package/{grid → common}/sorting/sortOrderToAriaSort.js +0 -0
  154. /package/{grid/editing → common/sorting}/types.js +0 -0
  155. /package/{grid → common}/sorting/upArrow.d.ts +0 -0
  156. /package/{grid → common}/sorting/upArrow.js +0 -0
  157. /package/{grid/export → common/styling}/types.js +0 -0
  158. /package/{grid → common}/toolbar/Toolbar.d.ts +0 -0
  159. /package/{grid → common}/toolbar/Toolbar.js +0 -0
  160. /package/{grid/pagination → common/toolbar}/types.js +0 -0
  161. /package/{grid/pipeline → common}/types.js +0 -0
  162. /package/{grid → common}/util/datetime.d.ts +0 -0
  163. /package/{grid → common}/util/datetime.js +0 -0
  164. /package/{grid → common}/util/getWidthStyle.d.ts +0 -0
  165. /package/{grid → common}/util/getWidthStyle.js +0 -0
  166. /package/{grid → common}/util/isSubset.d.ts +0 -0
  167. /package/{grid → common}/util/isSubset.js +0 -0
  168. /package/{grid → common}/util/trueModulo.d.ts +0 -0
  169. /package/{grid → common}/util/trueModulo.js +0 -0
  170. /package/{grid → common}/util/useControlledHover.d.ts +0 -0
  171. /package/{grid → common}/util/useControlledHover.js +0 -0
  172. /package/grid/{sorting → main}/types.js +0 -0
  173. /package/{grid → table}/main/ColHeaderCell/index.d.ts +0 -0
  174. /package/{grid → table}/selection/SelectionInput.js +0 -0
  175. /package/{grid-pro → table-pro}/ColHeaderCellPro.d.ts +0 -0
  176. /package/{grid-pro → table-pro}/assets/HorizontalGrip.d.ts +0 -0
  177. /package/{grid-pro → table-pro}/assets/HorizontalGrip.js +0 -0
  178. /package/{grid-pro → table-pro}/assets/VerticalGrip.d.ts +0 -0
  179. /package/{grid-pro → table-pro}/assets/VerticalGrip.js +0 -0
  180. /package/{grid-pro/util → table-pro/lib}/regDragCleanup.d.ts +0 -0
  181. /package/{grid-pro/util → table-pro/lib}/regDragCleanup.js +0 -0
  182. /package/{grid-pro/util → table-pro/lib}/types.d.ts +0 -0
  183. /package/{grid/styling → table-pro/lib}/types.js +0 -0
  184. /package/{grid-pro → table-pro}/reorder/ReorderHandleCell.d.ts +0 -0
  185. /package/{grid-pro → table-pro}/reorder/ReorderHeaderCell.d.ts +0 -0
  186. /package/{grid-pro → table-pro}/reorder/ReorderHeaderCell.js +0 -0
  187. /package/{grid-pro → table-pro}/reorder/types.d.ts +0 -0
  188. /package/{grid/toolbar → table-pro/reorder}/types.js +0 -0
  189. /package/{grid-pro → table-pro}/reorder/useKeyboardReorder.d.ts +0 -0
  190. /package/{grid-pro → table-pro}/reorder/useKeyboardReorderListener.d.ts +0 -0
  191. /package/{grid-pro → table-pro}/reorder/useKeyboardReorderListener.js +0 -0
  192. /package/{grid-pro → table-pro}/reorder/useReorderStyles.d.ts +0 -0
  193. /package/{grid-pro → table-pro}/reorder/useReorderStyles.js +0 -0
  194. /package/{grid-pro → table-pro}/resize/types.d.ts +0 -0
  195. /package/{grid → table-pro/resize}/types.js +0 -0
  196. /package/{grid-pro → table-pro}/resize/useResizeModel.js +0 -0
  197. /package/{grid-pro → table-pro}/util/index.d.ts +0 -0
  198. /package/{grid-pro → table-pro}/util/index.js +0 -0
  199. /package/{grid-pro → table-pro}/util/reorderRows.d.ts +0 -0
  200. /package/{grid-pro → table-pro}/util/reorderRows.js +0 -0
  201. /package/{style.css → table-pro.css} +0 -0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes