simple-table-core 4.0.0 → 4.0.2

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 (654) hide show
  1. package/dist/cjs/index.js +1 -1
  2. package/dist/{cjs/src/consts → consts}/column-constraints.d.ts +58 -58
  3. package/dist/{cjs/src/consts → consts}/general-consts.d.ts +32 -32
  4. package/dist/{cjs/src/core → core}/SimpleTableVanilla.d.ts +370 -369
  5. package/dist/{src/core → core}/api/TableAPIImpl.d.ts +78 -78
  6. package/dist/{cjs/src/core → core}/dom/DOMManager.d.ts +52 -52
  7. package/dist/{cjs/src/core → core}/initialization/TableInitializer.d.ts +34 -34
  8. package/dist/{cjs/src/core → core}/rendering/RenderOrchestrator.d.ts +172 -172
  9. package/dist/{src/core → core}/rendering/SectionRenderer.d.ts +119 -119
  10. package/dist/{cjs/src/core → core}/rendering/TableRenderer.d.ts +120 -120
  11. package/dist/{src/hooks → hooks}/ariaAnnouncements.d.ts +37 -37
  12. package/dist/{src/hooks → hooks}/contentHeight.d.ts +29 -29
  13. package/dist/{cjs/src/hooks → hooks}/expandedDepths.d.ts +69 -69
  14. package/dist/{cjs/src/hooks → hooks}/handleOutsideClick.d.ts +50 -50
  15. package/dist/{cjs/src/hooks → hooks}/previousValue.d.ts +30 -30
  16. package/dist/{src/hooks → hooks}/scrollbarVisibility.d.ts +65 -65
  17. package/dist/{src/hooks → hooks}/scrollbarWidth.d.ts +52 -52
  18. package/dist/{src/hooks → hooks}/useAggregatedRows.d.ts +14 -14
  19. package/dist/{src/hooks → hooks}/useQuickFilter.d.ts +14 -14
  20. package/dist/{src/hooks → hooks}/windowResize.d.ts +31 -31
  21. package/dist/{cjs/src/icons → icons}/AngleDownIcon.d.ts +1 -1
  22. package/dist/{cjs/src/icons → icons}/AngleLeftIcon.d.ts +1 -1
  23. package/dist/{cjs/src/icons → icons}/AngleRightIcon.d.ts +1 -1
  24. package/dist/{cjs/src/icons → icons}/AngleUpIcon.d.ts +1 -1
  25. package/dist/{cjs/src/icons → icons}/AscIcon.d.ts +1 -1
  26. package/dist/{cjs/src/icons → icons}/CheckIcon.d.ts +1 -1
  27. package/dist/{cjs/src/icons → icons}/DescIcon.d.ts +1 -1
  28. package/dist/{cjs/src/icons → icons}/DragIcon.d.ts +1 -1
  29. package/dist/{cjs/src/icons → icons}/FilterIcon.d.ts +1 -1
  30. package/dist/{cjs/src/icons → icons}/SelectIcon.d.ts +1 -1
  31. package/dist/{src/icons → icons}/index.d.ts +14 -14
  32. package/dist/{cjs/src/index.d.ts → index.d.ts} +56 -58
  33. package/dist/index.es.js +1 -1
  34. package/dist/{cjs/src/managers → managers}/AnimationCoordinator.d.ts +356 -356
  35. package/dist/{cjs/src/managers → managers}/AutoScaleManager.d.ts +33 -33
  36. package/dist/{src/managers → managers}/ColumnManager.d.ts +42 -42
  37. package/dist/{cjs/src/managers → managers}/DimensionManager.d.ts +84 -84
  38. package/dist/{src/managers → managers}/DragHandlerManager.d.ts +44 -44
  39. package/dist/{src/managers → managers}/FilterManager.d.ts +36 -36
  40. package/dist/{src/managers → managers}/PivotManager.d.ts +35 -35
  41. package/dist/{cjs/src/managers → managers}/RowManager.d.ts +56 -56
  42. package/dist/{src/managers → managers}/RowSelectionManager.d.ts +72 -72
  43. package/dist/{cjs/src/managers → managers}/ScrollManager.d.ts +38 -38
  44. package/dist/{src/managers → managers}/SectionScrollController.d.ts +74 -74
  45. package/dist/{src/managers → managers}/SelectionManager/SelectionManager.d.ts +251 -251
  46. package/dist/{src/managers → managers}/SelectionManager/index.d.ts +2 -2
  47. package/dist/{src/managers → managers}/SelectionManager/keyboardUtils.d.ts +7 -7
  48. package/dist/{cjs/src/managers → managers}/SelectionManager/mouseUtils.d.ts +16 -16
  49. package/dist/{src/managers → managers}/SelectionManager/selectionRangeUtils.d.ts +7 -7
  50. package/dist/{src/managers → managers}/SelectionManager/types.d.ts +28 -28
  51. package/dist/{src/managers → managers}/SortManager.d.ts +42 -42
  52. package/dist/{cjs/src/managers → managers}/TableManager.d.ts +72 -72
  53. package/dist/{src/types → types}/AggregationTypes.d.ts +8 -8
  54. package/dist/{cjs/src/types → types}/AnimationsConfig.d.ts +16 -16
  55. package/dist/{src/types → types}/BoundingBox.d.ts +11 -11
  56. package/dist/{cjs/src/types → types}/Cell.d.ts +7 -7
  57. package/dist/{cjs/src/types → types}/CellChangeProps.d.ts +9 -9
  58. package/dist/{cjs/src/types → types}/CellClickProps.d.ts +11 -11
  59. package/dist/{src/types → types}/CellRendererProps.d.ts +32 -32
  60. package/dist/{cjs/src/types → types}/CellValue.d.ts +2 -2
  61. package/dist/{src/types → types}/ColumnEditorConfig.d.ts +42 -42
  62. package/dist/{src/types → types}/ColumnEditorCustomRendererProps.d.ts +14 -14
  63. package/dist/{src/types → types}/ColumnEditorRowRendererProps.d.ts +39 -39
  64. package/dist/{src/types → types}/ColumnVisibilityTypes.d.ts +4 -4
  65. package/dist/{src/types → types}/CustomTheme.d.ts +28 -28
  66. package/dist/{src/types → types}/DragHandlerProps.d.ts +14 -14
  67. package/dist/{src/types → types}/EnumOption.d.ts +5 -5
  68. package/dist/{cjs/src/types → types}/FilterTypes.d.ts +31 -31
  69. package/dist/{src/types → types}/FlattenedHeader.d.ts +10 -10
  70. package/dist/{cjs/src/types → types}/FooterPosition.d.ts +3 -3
  71. package/dist/{src/types → types}/FooterRendererProps.d.ts +17 -17
  72. package/dist/{cjs/src/types → types}/GenerateRowIdParams.d.ts +11 -11
  73. package/dist/{cjs/src/types → types}/GetRowId.d.ts +16 -16
  74. package/dist/{cjs/src/types → types}/HandleResizeStartProps.d.ts +25 -25
  75. package/dist/{cjs/src/types → types}/HeaderDropdownProps.d.ts +14 -14
  76. package/dist/{src/types → types}/HeaderObject.d.ts +152 -133
  77. package/dist/{cjs/src/types → types}/HeaderRendererProps.d.ts +17 -17
  78. package/dist/{src/types → types}/IconsConfig.d.ts +19 -19
  79. package/dist/{cjs/src/types → types}/OnNextPage.d.ts +2 -2
  80. package/dist/{cjs/src/types → types}/OnRowGroupExpandProps.d.ts +16 -16
  81. package/dist/{cjs/src/types → types}/OnSortProps.d.ts +3 -3
  82. package/dist/{cjs/src/types → types}/PanelSection.d.ts +1 -1
  83. package/dist/{cjs/src/types → types}/Pinned.d.ts +1 -1
  84. package/dist/{src/types → types}/PinnedSectionsState.d.ts +6 -6
  85. package/dist/{cjs/src/types → types}/PivotTypes.d.ts +37 -37
  86. package/dist/{cjs/src/types → types}/QuickFilterTypes.d.ts +21 -21
  87. package/dist/{cjs/src/types → types}/Row.d.ts +3 -3
  88. package/dist/{cjs/src/types → types}/RowButton.d.ts +6 -6
  89. package/dist/{cjs/src/types → types}/RowId.d.ts +1 -1
  90. package/dist/{cjs/src/types → types}/RowSelectionChangeProps.d.ts +7 -7
  91. package/dist/{src/types → types}/RowSelectionMode.d.ts +8 -8
  92. package/dist/{cjs/src/types → types}/RowState.d.ts +12 -12
  93. package/dist/{cjs/src/types → types}/RowStateRendererProps.d.ts +18 -18
  94. package/dist/{src/types → types}/SharedTableProps.d.ts +24 -24
  95. package/dist/{cjs/src/types → types}/SimpleTableConfig.d.ts +129 -124
  96. package/dist/{cjs/src/types → types}/SimpleTableProps.d.ts +173 -125
  97. package/dist/{cjs/src/types → types}/SortColumn.d.ts +8 -8
  98. package/dist/{cjs/src/types → types}/TableAPI.d.ts +85 -82
  99. package/dist/{cjs/src/types → types}/TableBodyProps.d.ts +20 -20
  100. package/dist/{cjs/src/types → types}/TableHeaderProps.d.ts +17 -17
  101. package/dist/{cjs/src/types → types}/TableHeaderSectionProps.d.ts +19 -19
  102. package/dist/{src/types → types}/TableRow.d.ts +39 -39
  103. package/dist/{src/types → types}/TableRowProps.d.ts +29 -29
  104. package/dist/{cjs/src/types → types}/Theme.d.ts +2 -2
  105. package/dist/{src/types → types}/UpdateCellProps.d.ts +8 -8
  106. package/dist/{cjs/src/utils → utils}/accordionAnimation.d.ts +25 -25
  107. package/dist/{src/utils → utils}/aggregationUtils.d.ts +7 -7
  108. package/dist/{src/utils → utils}/ariaRowOwnership.d.ts +37 -37
  109. package/dist/{src/utils → utils}/asRows.d.ts +7 -7
  110. package/dist/{src/utils → utils}/bodyCell/cellLiveRef.d.ts +9 -9
  111. package/dist/{cjs/src/utils → utils}/bodyCell/content.d.ts +5 -5
  112. package/dist/{cjs/src/utils → utils}/bodyCell/editing.d.ts +4 -4
  113. package/dist/{src/utils → utils}/bodyCell/editors/booleanDropdown.d.ts +2 -2
  114. package/dist/{src/utils → utils}/bodyCell/editors/datePicker.d.ts +2 -2
  115. package/dist/{src/utils → utils}/bodyCell/editors/dropdown.d.ts +18 -18
  116. package/dist/{cjs/src/utils → utils}/bodyCell/editors/enumDropdown.d.ts +2 -2
  117. package/dist/{cjs/src/utils → utils}/bodyCell/eventTracking.d.ts +3 -3
  118. package/dist/{cjs/src/utils → utils}/bodyCell/expansion.d.ts +12 -12
  119. package/dist/{src/utils → utils}/bodyCell/selection.d.ts +7 -7
  120. package/dist/{cjs/src/utils → utils}/bodyCell/styling.d.ts +11 -11
  121. package/dist/{src/utils → utils}/bodyCell/types.d.ts +170 -170
  122. package/dist/{src/utils → utils}/bodyCellRenderer.d.ts +6 -6
  123. package/dist/{src/utils → utils}/cellClipboardUtils.d.ts +25 -25
  124. package/dist/{cjs/src/utils → utils}/cellScrollUtils.d.ts +10 -10
  125. package/dist/{cjs/src/utils → utils}/cellUtils.d.ts +18 -18
  126. package/dist/{cjs/src/utils → utils}/charts/createBarChart.d.ts +20 -20
  127. package/dist/{cjs/src/utils → utils}/charts/createLineAreaChart.d.ts +25 -25
  128. package/dist/{src/utils → utils}/collapseUtils.d.ts +31 -31
  129. package/dist/{src/utils → utils}/columnEditor/columnEditorUtils.d.ts +27 -27
  130. package/dist/{src/utils → utils}/columnEditor/createCheckbox.d.ts +21 -21
  131. package/dist/{src/utils → utils}/columnEditor/createColumnEditor.d.ts +26 -26
  132. package/dist/{cjs/src/utils → utils}/columnEditor/createColumnEditorPopout.d.ts +23 -23
  133. package/dist/{src/utils → utils}/columnEditor/createColumnEditorRow.d.ts +41 -41
  134. package/dist/{cjs/src/utils → utils}/columnIndicesUtils.d.ts +15 -15
  135. package/dist/{src/utils → utils}/columnVirtualizationUtils.d.ts +128 -128
  136. package/dist/{cjs/src/utils → utils}/csvExportUtils.d.ts +14 -14
  137. package/dist/{cjs/src/utils → utils}/dateUtils.d.ts +18 -18
  138. package/dist/{src/utils → utils}/externalScroll.d.ts +58 -58
  139. package/dist/{cjs/src/utils → utils}/filterUtils.d.ts +5 -5
  140. package/dist/{cjs/src/utils → utils}/filters/createBooleanFilter.d.ts +15 -15
  141. package/dist/{cjs/src/utils → utils}/filters/createCustomSelect.d.ts +20 -20
  142. package/dist/{cjs/src/utils → utils}/filters/createDateFilter.d.ts +15 -15
  143. package/dist/{cjs/src/utils → utils}/filters/createDatePicker.d.ts +10 -10
  144. package/dist/{cjs/src/utils → utils}/filters/createDropdown.d.ts +33 -33
  145. package/dist/{cjs/src/utils → utils}/filters/createEnumFilter.d.ts +15 -15
  146. package/dist/{cjs/src/utils → utils}/filters/createFilterActions.d.ts +12 -12
  147. package/dist/{src/utils → utils}/filters/createFilterDropdown.d.ts +15 -15
  148. package/dist/{cjs/src/utils → utils}/filters/createFilterInput.d.ts +16 -16
  149. package/dist/{src/utils → utils}/filters/createNumberFilter.d.ts +15 -15
  150. package/dist/{cjs/src/utils → utils}/filters/createStringFilter.d.ts +15 -15
  151. package/dist/{cjs/src/utils → utils}/footer/createTableFooter.d.ts +21 -21
  152. package/dist/{cjs/src/utils → utils}/formatters.d.ts +3 -3
  153. package/dist/{cjs/src/utils → utils}/generalUtils.d.ts +4 -4
  154. package/dist/{src/utils → utils}/headerCell/collapsing.d.ts +6 -6
  155. package/dist/{cjs/src/utils → utils}/headerCell/dragging.d.ts +5 -5
  156. package/dist/{src/utils → utils}/headerCell/editing.d.ts +4 -4
  157. package/dist/{src/utils → utils}/headerCell/eventTracking.d.ts +28 -28
  158. package/dist/{src/utils → utils}/headerCell/filtering.d.ts +3 -3
  159. package/dist/{src/utils → utils}/headerCell/resizing.d.ts +3 -3
  160. package/dist/{src/utils → utils}/headerCell/selection.d.ts +10 -10
  161. package/dist/{src/utils → utils}/headerCell/sorting.d.ts +3 -3
  162. package/dist/{cjs/src/utils → utils}/headerCell/styling.d.ts +7 -7
  163. package/dist/{src/utils → utils}/headerCell/types.d.ts +110 -110
  164. package/dist/{cjs/src/utils → utils}/headerCellRenderer.d.ts +4 -4
  165. package/dist/{cjs/src/utils → utils}/headerUtils.d.ts +41 -41
  166. package/dist/{src/utils → utils}/headerWidthUtils.d.ts +121 -121
  167. package/dist/{src/utils → utils}/horizontalScrollbarRenderer.d.ts +27 -27
  168. package/dist/{cjs/src/utils → utils}/infiniteScrollUtils.d.ts +145 -145
  169. package/dist/utils/loadingPlaceholderUtils.d.ts +11 -0
  170. package/dist/{src/utils → utils}/nestedGridRowRenderer.d.ts +50 -50
  171. package/dist/utils/normalizeConfig.d.ts +62 -0
  172. package/dist/{cjs/src/utils → utils}/pinnedColumnUtils.d.ts +29 -29
  173. package/dist/{cjs/src/utils → utils}/pivot/pivotRows.d.ts +16 -16
  174. package/dist/{src/utils → utils}/propSyncEqual.d.ts +60 -60
  175. package/dist/{cjs/src/utils → utils}/quickFilterUtils.d.ts +14 -14
  176. package/dist/{src/utils → utils}/resizeUtils/autoExpandResize.d.ts +32 -32
  177. package/dist/{cjs/src/utils → utils}/resizeUtils/compensation.d.ts +17 -17
  178. package/dist/{src/utils → utils}/resizeUtils/domUpdates.d.ts +15 -15
  179. package/dist/{cjs/src/utils → utils}/resizeUtils/index.d.ts +26 -26
  180. package/dist/{src/utils → utils}/resizeUtils/maxWidth.d.ts +9 -9
  181. package/dist/{cjs/src/utils → utils}/resizeUtils/parentHeaderResize.d.ts +11 -11
  182. package/dist/{cjs/src/utils → utils}/resizeUtils/sectionWidths.d.ts +36 -36
  183. package/dist/{src/utils → utils}/rowFlattening.d.ts +30 -30
  184. package/dist/{cjs/src/utils → utils}/rowProcessing.d.ts +65 -65
  185. package/dist/{cjs/src/utils → utils}/rowSelectionUtils.d.ts +62 -62
  186. package/dist/{src/utils → utils}/rowSeparatorRenderer.d.ts +16 -16
  187. package/dist/{cjs/src/utils → utils}/rowUtils.d.ts +187 -187
  188. package/dist/{cjs/src/utils → utils}/sortUtils.d.ts +8 -8
  189. package/dist/{cjs/src/utils → utils}/stateRowRenderer.d.ts +15 -15
  190. package/dist/{src/utils → utils}/stickyParentsRenderer.d.ts +53 -53
  191. package/package.json +12 -6
  192. package/styles.css.d.ts +1 -0
  193. package/dist/cjs/src/core/api/TableAPIImpl.d.ts +0 -78
  194. package/dist/cjs/src/core/rendering/SectionRenderer.d.ts +0 -119
  195. package/dist/cjs/src/hooks/ariaAnnouncements.d.ts +0 -37
  196. package/dist/cjs/src/hooks/contentHeight.d.ts +0 -29
  197. package/dist/cjs/src/hooks/scrollbarVisibility.d.ts +0 -65
  198. package/dist/cjs/src/hooks/scrollbarWidth.d.ts +0 -52
  199. package/dist/cjs/src/hooks/useAggregatedRows.d.ts +0 -14
  200. package/dist/cjs/src/hooks/useQuickFilter.d.ts +0 -14
  201. package/dist/cjs/src/hooks/windowResize.d.ts +0 -31
  202. package/dist/cjs/src/icons/index.d.ts +0 -14
  203. package/dist/cjs/src/managers/ColumnManager.d.ts +0 -42
  204. package/dist/cjs/src/managers/DragHandlerManager.d.ts +0 -44
  205. package/dist/cjs/src/managers/FilterManager.d.ts +0 -36
  206. package/dist/cjs/src/managers/PivotManager.d.ts +0 -35
  207. package/dist/cjs/src/managers/RowSelectionManager.d.ts +0 -72
  208. package/dist/cjs/src/managers/SectionScrollController.d.ts +0 -74
  209. package/dist/cjs/src/managers/SelectionManager/SelectionManager.d.ts +0 -251
  210. package/dist/cjs/src/managers/SelectionManager/index.d.ts +0 -2
  211. package/dist/cjs/src/managers/SelectionManager/keyboardUtils.d.ts +0 -7
  212. package/dist/cjs/src/managers/SelectionManager/selectionRangeUtils.d.ts +0 -7
  213. package/dist/cjs/src/managers/SelectionManager/types.d.ts +0 -28
  214. package/dist/cjs/src/managers/SortManager.d.ts +0 -42
  215. package/dist/cjs/src/types/AggregationTypes.d.ts +0 -8
  216. package/dist/cjs/src/types/BoundingBox.d.ts +0 -11
  217. package/dist/cjs/src/types/CellRendererProps.d.ts +0 -32
  218. package/dist/cjs/src/types/ColumnEditorConfig.d.ts +0 -42
  219. package/dist/cjs/src/types/ColumnEditorCustomRendererProps.d.ts +0 -14
  220. package/dist/cjs/src/types/ColumnEditorRowRendererProps.d.ts +0 -39
  221. package/dist/cjs/src/types/ColumnVisibilityTypes.d.ts +0 -4
  222. package/dist/cjs/src/types/CustomTheme.d.ts +0 -28
  223. package/dist/cjs/src/types/DragHandlerProps.d.ts +0 -14
  224. package/dist/cjs/src/types/EnumOption.d.ts +0 -5
  225. package/dist/cjs/src/types/FlattenedHeader.d.ts +0 -10
  226. package/dist/cjs/src/types/FooterRendererProps.d.ts +0 -17
  227. package/dist/cjs/src/types/HeaderObject.d.ts +0 -133
  228. package/dist/cjs/src/types/IconsConfig.d.ts +0 -19
  229. package/dist/cjs/src/types/PinnedSectionsState.d.ts +0 -6
  230. package/dist/cjs/src/types/RowSelectionMode.d.ts +0 -8
  231. package/dist/cjs/src/types/SelectionType.d.ts +0 -7
  232. package/dist/cjs/src/types/SharedTableProps.d.ts +0 -24
  233. package/dist/cjs/src/types/TableRow.d.ts +0 -39
  234. package/dist/cjs/src/types/TableRowProps.d.ts +0 -29
  235. package/dist/cjs/src/types/UpdateCellProps.d.ts +0 -8
  236. package/dist/cjs/src/utils/aggregationUtils.d.ts +0 -7
  237. package/dist/cjs/src/utils/ariaRowOwnership.d.ts +0 -37
  238. package/dist/cjs/src/utils/asRows.d.ts +0 -7
  239. package/dist/cjs/src/utils/bodyCell/cellLiveRef.d.ts +0 -9
  240. package/dist/cjs/src/utils/bodyCell/editors/booleanDropdown.d.ts +0 -2
  241. package/dist/cjs/src/utils/bodyCell/editors/datePicker.d.ts +0 -2
  242. package/dist/cjs/src/utils/bodyCell/editors/dropdown.d.ts +0 -18
  243. package/dist/cjs/src/utils/bodyCell/selection.d.ts +0 -7
  244. package/dist/cjs/src/utils/bodyCell/types.d.ts +0 -170
  245. package/dist/cjs/src/utils/bodyCellRenderer.d.ts +0 -6
  246. package/dist/cjs/src/utils/cellClipboardUtils.d.ts +0 -25
  247. package/dist/cjs/src/utils/collapseUtils.d.ts +0 -31
  248. package/dist/cjs/src/utils/columnEditor/columnEditorUtils.d.ts +0 -27
  249. package/dist/cjs/src/utils/columnEditor/createCheckbox.d.ts +0 -21
  250. package/dist/cjs/src/utils/columnEditor/createColumnEditor.d.ts +0 -26
  251. package/dist/cjs/src/utils/columnEditor/createColumnEditorRow.d.ts +0 -41
  252. package/dist/cjs/src/utils/columnVirtualizationUtils.d.ts +0 -128
  253. package/dist/cjs/src/utils/externalScroll.d.ts +0 -58
  254. package/dist/cjs/src/utils/filters/createFilterDropdown.d.ts +0 -15
  255. package/dist/cjs/src/utils/filters/createNumberFilter.d.ts +0 -15
  256. package/dist/cjs/src/utils/headerCell/collapsing.d.ts +0 -6
  257. package/dist/cjs/src/utils/headerCell/editing.d.ts +0 -4
  258. package/dist/cjs/src/utils/headerCell/eventTracking.d.ts +0 -28
  259. package/dist/cjs/src/utils/headerCell/filtering.d.ts +0 -3
  260. package/dist/cjs/src/utils/headerCell/resizing.d.ts +0 -3
  261. package/dist/cjs/src/utils/headerCell/selection.d.ts +0 -10
  262. package/dist/cjs/src/utils/headerCell/sorting.d.ts +0 -3
  263. package/dist/cjs/src/utils/headerCell/types.d.ts +0 -110
  264. package/dist/cjs/src/utils/headerWidthUtils.d.ts +0 -121
  265. package/dist/cjs/src/utils/horizontalScrollbarRenderer.d.ts +0 -27
  266. package/dist/cjs/src/utils/nestedGridRowRenderer.d.ts +0 -50
  267. package/dist/cjs/src/utils/propSyncEqual.d.ts +0 -60
  268. package/dist/cjs/src/utils/resizeUtils/autoExpandResize.d.ts +0 -32
  269. package/dist/cjs/src/utils/resizeUtils/domUpdates.d.ts +0 -15
  270. package/dist/cjs/src/utils/resizeUtils/maxWidth.d.ts +0 -9
  271. package/dist/cjs/src/utils/rowFlattening.d.ts +0 -30
  272. package/dist/cjs/src/utils/rowSeparatorRenderer.d.ts +0 -16
  273. package/dist/cjs/src/utils/stickyParentsRenderer.d.ts +0 -53
  274. package/dist/cjs/stories/data/aggregate-data.d.ts +0 -5
  275. package/dist/cjs/stories/data/athlete-data.d.ts +0 -3
  276. package/dist/cjs/stories/data/retail-data.d.ts +0 -3
  277. package/dist/cjs/stories/data/saas-data.d.ts +0 -6
  278. package/dist/cjs/stories/data/space-data.d.ts +0 -3
  279. package/dist/cjs/stories/docs/Examples.stories.d.ts +0 -18
  280. package/dist/cjs/stories/docs/Features.stories.d.ts +0 -54
  281. package/dist/cjs/stories/docs/GettingStarted.stories.d.ts +0 -7
  282. package/dist/cjs/stories/docs/storyArgs.d.ts +0 -155
  283. package/dist/cjs/stories/examples/AdvancedSortingExample.d.ts +0 -6
  284. package/dist/cjs/stories/examples/AggregateExample.d.ts +0 -7
  285. package/dist/cjs/stories/examples/AlignmentExample.d.ts +0 -10
  286. package/dist/cjs/stories/examples/AutoExpandColumnsExample.d.ts +0 -7
  287. package/dist/cjs/stories/examples/BasicExample.d.ts +0 -12
  288. package/dist/cjs/stories/examples/BasicRowGrouping.d.ts +0 -11
  289. package/dist/cjs/stories/examples/CSVExportFormattingExample.d.ts +0 -12
  290. package/dist/cjs/stories/examples/CSVExportSingleRowChildrenExample.d.ts +0 -6
  291. package/dist/cjs/stories/examples/CellHighlighting.d.ts +0 -7
  292. package/dist/cjs/stories/examples/CellRenderer.d.ts +0 -7
  293. package/dist/cjs/stories/examples/ChartsExample.d.ts +0 -13
  294. package/dist/cjs/stories/examples/ClayExample.d.ts +0 -14
  295. package/dist/cjs/stories/examples/ClipboardFormattingExample.d.ts +0 -12
  296. package/dist/cjs/stories/examples/CollapsibleColumnsExample.d.ts +0 -13
  297. package/dist/cjs/stories/examples/ColumnVisibilityAPIExample.d.ts +0 -7
  298. package/dist/cjs/stories/examples/ColumnWidthChangeExample.d.ts +0 -6
  299. package/dist/cjs/stories/examples/CustomHeaderRenderingExample.d.ts +0 -2
  300. package/dist/cjs/stories/examples/DynamicHeadersExample.d.ts +0 -5
  301. package/dist/cjs/stories/examples/DynamicNestedTableExample.d.ts +0 -7
  302. package/dist/cjs/stories/examples/DynamicRowLoadingExample.d.ts +0 -5
  303. package/dist/cjs/stories/examples/DynamicRowLoadingWithExternalSortExample.d.ts +0 -6
  304. package/dist/cjs/stories/examples/EditableCells.d.ts +0 -8
  305. package/dist/cjs/stories/examples/ExpansionControlExample.d.ts +0 -6
  306. package/dist/cjs/stories/examples/ExternalFilterExample.d.ts +0 -5
  307. package/dist/cjs/stories/examples/ExternalSortExample.d.ts +0 -6
  308. package/dist/cjs/stories/examples/HeaderInclusionExample.d.ts +0 -5
  309. package/dist/cjs/stories/examples/HiddenColumnsExample.d.ts +0 -9
  310. package/dist/cjs/stories/examples/InfiniteScroll.d.ts +0 -5
  311. package/dist/cjs/stories/examples/LiveUpdates.d.ts +0 -5
  312. package/dist/cjs/stories/examples/LoadingStateExample.d.ts +0 -2
  313. package/dist/cjs/stories/examples/NestedAccessorExample.d.ts +0 -8
  314. package/dist/cjs/stories/examples/NestedGridExample.d.ts +0 -5
  315. package/dist/cjs/stories/examples/Pagination.d.ts +0 -12
  316. package/dist/cjs/stories/examples/PaginationAPIExample.d.ts +0 -8
  317. package/dist/cjs/stories/examples/PivotExample.d.ts +0 -16
  318. package/dist/cjs/stories/examples/ProgrammaticFilterExample.d.ts +0 -5
  319. package/dist/cjs/stories/examples/ProgrammaticSortExample.d.ts +0 -5
  320. package/dist/cjs/stories/examples/QuickFilterExample.d.ts +0 -5
  321. package/dist/cjs/stories/examples/RadioStationsExample.d.ts +0 -3
  322. package/dist/cjs/stories/examples/RowButtonsExample.d.ts +0 -14
  323. package/dist/cjs/stories/examples/RowHeightExample.d.ts +0 -8
  324. package/dist/cjs/stories/examples/RowSelectionExample.d.ts +0 -11
  325. package/dist/cjs/stories/examples/SelectableCells.d.ts +0 -14
  326. package/dist/cjs/stories/examples/ServerSidePaginationExample.d.ts +0 -2
  327. package/dist/cjs/stories/examples/Theming.d.ts +0 -12
  328. package/dist/cjs/stories/examples/TooltipExample.d.ts +0 -8
  329. package/dist/cjs/stories/examples/WindowInfiniteScroll.d.ts +0 -3
  330. package/dist/cjs/stories/examples/billing-example/BillingExample.d.ts +0 -13
  331. package/dist/cjs/stories/examples/billing-example/billing-headers.d.ts +0 -5
  332. package/dist/cjs/stories/examples/crypto/CryptoExample.d.ts +0 -14
  333. package/dist/cjs/stories/examples/crypto/crypto-data.d.ts +0 -30
  334. package/dist/cjs/stories/examples/crypto/crypto-headers.d.ts +0 -5
  335. package/dist/cjs/stories/examples/custom-theme/CustomThemeDemo.d.ts +0 -2
  336. package/dist/cjs/stories/examples/filter-example/FilterExample.d.ts +0 -9
  337. package/dist/cjs/stories/examples/filter-example/filter-headers.d.ts +0 -5
  338. package/dist/cjs/stories/examples/finance-example/FinancialExample.d.ts +0 -8
  339. package/dist/cjs/stories/examples/finance-example/finance-headers.d.ts +0 -5
  340. package/dist/cjs/stories/examples/infrastructure/InfrastructureExample.d.ts +0 -9
  341. package/dist/cjs/stories/examples/infrastructure/infrastructure-data.d.ts +0 -5
  342. package/dist/cjs/stories/examples/infrastructure/infrastructure-headers.d.ts +0 -5
  343. package/dist/cjs/stories/examples/leads/LeadsExample.d.ts +0 -8
  344. package/dist/cjs/stories/examples/leads/leads-data.d.ts +0 -5
  345. package/dist/cjs/stories/examples/leads/leads-headers.d.ts +0 -6
  346. package/dist/cjs/stories/examples/manufacturing/ManufacturingExample.d.ts +0 -10
  347. package/dist/cjs/stories/examples/manufacturing/manufacturing-headers.d.ts +0 -5
  348. package/dist/cjs/stories/examples/music/MusicExample.d.ts +0 -13
  349. package/dist/cjs/stories/examples/music/MusicWindowScrollExample.d.ts +0 -5
  350. package/dist/cjs/stories/examples/music/music-headers.d.ts +0 -5
  351. package/dist/cjs/stories/examples/music/music-window.data.d.ts +0 -47
  352. package/dist/cjs/stories/examples/pinned-columns/PinnedColumns.d.ts +0 -13
  353. package/dist/cjs/stories/examples/row-grouping/RowGrouping.d.ts +0 -8
  354. package/dist/cjs/stories/examples/sales-example/SalesExample.d.ts +0 -14
  355. package/dist/cjs/stories/examples/sales-example/sales-headers.d.ts +0 -6
  356. package/dist/cjs/stories/tests/01-BasicStructureTests.stories.d.ts +0 -119
  357. package/dist/cjs/stories/tests/02-ColumnSortingTests.stories.d.ts +0 -114
  358. package/dist/cjs/stories/tests/03-ColumnFilteringTests.stories.d.ts +0 -86
  359. package/dist/cjs/stories/tests/04-PaginationTests.stories.d.ts +0 -94
  360. package/dist/cjs/stories/tests/05-RowGroupingTests.stories.d.ts +0 -204
  361. package/dist/cjs/stories/tests/06-CellEditingTests.stories.d.ts +0 -61
  362. package/dist/cjs/stories/tests/07-RowSelectionTests.stories.d.ts +0 -101
  363. package/dist/cjs/stories/tests/08-ColumnWidthTests.stories.d.ts +0 -99
  364. package/dist/cjs/stories/tests/09-ColumnAlignmentTests.stories.d.ts +0 -61
  365. package/dist/cjs/stories/tests/10-ColumnPinningTests.stories.d.ts +0 -115
  366. package/dist/cjs/stories/tests/11-ColumnReorderingTests.stories.d.ts +0 -122
  367. package/dist/cjs/stories/tests/12-CellSelectionTests.stories.d.ts +0 -212
  368. package/dist/cjs/stories/tests/13-ColumnResizeTests.stories.d.ts +0 -101
  369. package/dist/cjs/stories/tests/14-LiveUpdatesTests.stories.d.ts +0 -28
  370. package/dist/cjs/stories/tests/15-ColumnVisibilityTests.stories.d.ts +0 -143
  371. package/dist/cjs/stories/tests/16-CsvExportTests.stories.d.ts +0 -133
  372. package/dist/cjs/stories/tests/17-NestedTablesTests.stories.d.ts +0 -105
  373. package/dist/cjs/stories/tests/18-QuickFilterTests.stories.d.ts +0 -120
  374. package/dist/cjs/stories/tests/19-AccessibilityTests.stories.d.ts +0 -39
  375. package/dist/cjs/stories/tests/20-CollapsibleColumnsTests.stories.d.ts +0 -104
  376. package/dist/cjs/stories/tests/21-ColumnSelectionTests.stories.d.ts +0 -31
  377. package/dist/cjs/stories/tests/22-LoadingStateTests.stories.d.ts +0 -87
  378. package/dist/cjs/stories/tests/23-EmptyStateTests.stories.d.ts +0 -39
  379. package/dist/cjs/stories/tests/24-FooterRendererTests.stories.d.ts +0 -63
  380. package/dist/cjs/stories/tests/25-HeaderRendererTests.stories.d.ts +0 -58
  381. package/dist/cjs/stories/tests/26-CellRendererTests.stories.d.ts +0 -55
  382. package/dist/cjs/stories/tests/27-ValueFormatterTests.stories.d.ts +0 -53
  383. package/dist/cjs/stories/tests/28-CellClickTests.stories.d.ts +0 -23
  384. package/dist/cjs/stories/tests/29-TooltipsTests.stories.d.ts +0 -31
  385. package/dist/cjs/stories/tests/30-AggregateFunctionsTests.stories.d.ts +0 -63
  386. package/dist/cjs/stories/tests/31-ChartColumnsTests.stories.d.ts +0 -54
  387. package/dist/cjs/stories/tests/32-ThemesTests.stories.d.ts +0 -104
  388. package/dist/cjs/stories/tests/33-CustomThemeTests.stories.d.ts +0 -150
  389. package/dist/cjs/stories/tests/34-CustomIconsTests.stories.d.ts +0 -63
  390. package/dist/cjs/stories/tests/35-HideHeaderFooterTests.stories.d.ts +0 -31
  391. package/dist/cjs/stories/tests/36-InfiniteScrollTests.stories.d.ts +0 -23
  392. package/dist/cjs/stories/tests/37-TableRefMethodsTests.stories.d.ts +0 -160
  393. package/dist/cjs/stories/tests/38-NestedHeadersTests.stories.d.ts +0 -23
  394. package/dist/cjs/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +0 -398
  395. package/dist/cjs/stories/tests/40-MaxHeightScrollTests.stories.d.ts +0 -37
  396. package/dist/cjs/stories/tests/41-CellAnimationsTests.stories.d.ts +0 -237
  397. package/dist/cjs/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +0 -251
  398. package/dist/cjs/stories/tests/43-CollapseExpandAnimationsTests.stories.d.ts +0 -63
  399. package/dist/cjs/stories/tests/44-ExternalScrollTests.stories.d.ts +0 -53
  400. package/dist/cjs/stories/tests/45-AriaSemanticsTests.stories.d.ts +0 -83
  401. package/dist/cjs/stories/tests/45-PivotTests.stories.d.ts +0 -8
  402. package/dist/cjs/stories/tests/46-AutoSizeColumnsTests.stories.d.ts +0 -370
  403. package/dist/cjs/stories/tests/47-DeferredHeadersTests.stories.d.ts +0 -23
  404. package/dist/cjs/stories/tests/48-ExternalScrollLateParentTests.stories.d.ts +0 -45
  405. package/dist/cjs/stories/tests/49-AutoWidthAutoExpandTests.stories.d.ts +0 -151
  406. package/dist/cjs/stories/tests/50-ContainerResizePerformanceTests.stories.d.ts +0 -56
  407. package/dist/cjs/stories/tests/51-RowGroupReExpandTests.stories.d.ts +0 -78
  408. package/dist/cjs/stories/tests/testUtils.d.ts +0 -38
  409. package/dist/cjs/stories/utils.d.ts +0 -42
  410. package/dist/cjs/stories/vanillaStoryConfig.d.ts +0 -156
  411. package/dist/src/consts/column-constraints.d.ts +0 -58
  412. package/dist/src/consts/general-consts.d.ts +0 -32
  413. package/dist/src/core/SimpleTableVanilla.d.ts +0 -369
  414. package/dist/src/core/dom/DOMManager.d.ts +0 -52
  415. package/dist/src/core/initialization/TableInitializer.d.ts +0 -34
  416. package/dist/src/core/rendering/RenderOrchestrator.d.ts +0 -172
  417. package/dist/src/core/rendering/TableRenderer.d.ts +0 -120
  418. package/dist/src/hooks/expandedDepths.d.ts +0 -69
  419. package/dist/src/hooks/handleOutsideClick.d.ts +0 -50
  420. package/dist/src/hooks/previousValue.d.ts +0 -30
  421. package/dist/src/icons/AngleDownIcon.d.ts +0 -1
  422. package/dist/src/icons/AngleLeftIcon.d.ts +0 -1
  423. package/dist/src/icons/AngleRightIcon.d.ts +0 -1
  424. package/dist/src/icons/AngleUpIcon.d.ts +0 -1
  425. package/dist/src/icons/AscIcon.d.ts +0 -1
  426. package/dist/src/icons/CheckIcon.d.ts +0 -1
  427. package/dist/src/icons/DescIcon.d.ts +0 -1
  428. package/dist/src/icons/DragIcon.d.ts +0 -1
  429. package/dist/src/icons/FilterIcon.d.ts +0 -1
  430. package/dist/src/icons/SelectIcon.d.ts +0 -1
  431. package/dist/src/index.d.ts +0 -58
  432. package/dist/src/managers/AnimationCoordinator.d.ts +0 -356
  433. package/dist/src/managers/AutoScaleManager.d.ts +0 -33
  434. package/dist/src/managers/DimensionManager.d.ts +0 -84
  435. package/dist/src/managers/RowManager.d.ts +0 -56
  436. package/dist/src/managers/ScrollManager.d.ts +0 -38
  437. package/dist/src/managers/SelectionManager/mouseUtils.d.ts +0 -16
  438. package/dist/src/managers/TableManager.d.ts +0 -72
  439. package/dist/src/types/AnimationsConfig.d.ts +0 -16
  440. package/dist/src/types/Cell.d.ts +0 -7
  441. package/dist/src/types/CellChangeProps.d.ts +0 -9
  442. package/dist/src/types/CellClickProps.d.ts +0 -11
  443. package/dist/src/types/CellValue.d.ts +0 -2
  444. package/dist/src/types/FilterTypes.d.ts +0 -31
  445. package/dist/src/types/FooterPosition.d.ts +0 -3
  446. package/dist/src/types/GenerateRowIdParams.d.ts +0 -11
  447. package/dist/src/types/GetRowId.d.ts +0 -16
  448. package/dist/src/types/HandleResizeStartProps.d.ts +0 -25
  449. package/dist/src/types/HeaderDropdownProps.d.ts +0 -14
  450. package/dist/src/types/HeaderRendererProps.d.ts +0 -17
  451. package/dist/src/types/OnNextPage.d.ts +0 -2
  452. package/dist/src/types/OnRowGroupExpandProps.d.ts +0 -16
  453. package/dist/src/types/OnSortProps.d.ts +0 -3
  454. package/dist/src/types/PanelSection.d.ts +0 -1
  455. package/dist/src/types/Pinned.d.ts +0 -1
  456. package/dist/src/types/PivotTypes.d.ts +0 -37
  457. package/dist/src/types/QuickFilterTypes.d.ts +0 -21
  458. package/dist/src/types/Row.d.ts +0 -3
  459. package/dist/src/types/RowButton.d.ts +0 -6
  460. package/dist/src/types/RowId.d.ts +0 -1
  461. package/dist/src/types/RowSelectionChangeProps.d.ts +0 -7
  462. package/dist/src/types/RowState.d.ts +0 -12
  463. package/dist/src/types/RowStateRendererProps.d.ts +0 -18
  464. package/dist/src/types/SelectionType.d.ts +0 -7
  465. package/dist/src/types/SimpleTableConfig.d.ts +0 -124
  466. package/dist/src/types/SimpleTableProps.d.ts +0 -125
  467. package/dist/src/types/SortColumn.d.ts +0 -8
  468. package/dist/src/types/TableAPI.d.ts +0 -82
  469. package/dist/src/types/TableBodyProps.d.ts +0 -20
  470. package/dist/src/types/TableHeaderProps.d.ts +0 -17
  471. package/dist/src/types/TableHeaderSectionProps.d.ts +0 -19
  472. package/dist/src/types/Theme.d.ts +0 -2
  473. package/dist/src/utils/accordionAnimation.d.ts +0 -25
  474. package/dist/src/utils/bodyCell/content.d.ts +0 -5
  475. package/dist/src/utils/bodyCell/editing.d.ts +0 -4
  476. package/dist/src/utils/bodyCell/editors/enumDropdown.d.ts +0 -2
  477. package/dist/src/utils/bodyCell/eventTracking.d.ts +0 -3
  478. package/dist/src/utils/bodyCell/expansion.d.ts +0 -12
  479. package/dist/src/utils/bodyCell/styling.d.ts +0 -11
  480. package/dist/src/utils/cellScrollUtils.d.ts +0 -10
  481. package/dist/src/utils/cellUtils.d.ts +0 -18
  482. package/dist/src/utils/charts/createBarChart.d.ts +0 -20
  483. package/dist/src/utils/charts/createLineAreaChart.d.ts +0 -25
  484. package/dist/src/utils/columnEditor/createColumnEditorPopout.d.ts +0 -23
  485. package/dist/src/utils/columnIndicesUtils.d.ts +0 -15
  486. package/dist/src/utils/csvExportUtils.d.ts +0 -14
  487. package/dist/src/utils/dateUtils.d.ts +0 -18
  488. package/dist/src/utils/filterUtils.d.ts +0 -5
  489. package/dist/src/utils/filters/createBooleanFilter.d.ts +0 -15
  490. package/dist/src/utils/filters/createCustomSelect.d.ts +0 -20
  491. package/dist/src/utils/filters/createDateFilter.d.ts +0 -15
  492. package/dist/src/utils/filters/createDatePicker.d.ts +0 -10
  493. package/dist/src/utils/filters/createDropdown.d.ts +0 -33
  494. package/dist/src/utils/filters/createEnumFilter.d.ts +0 -15
  495. package/dist/src/utils/filters/createFilterActions.d.ts +0 -12
  496. package/dist/src/utils/filters/createFilterInput.d.ts +0 -16
  497. package/dist/src/utils/filters/createStringFilter.d.ts +0 -15
  498. package/dist/src/utils/footer/createTableFooter.d.ts +0 -21
  499. package/dist/src/utils/formatters.d.ts +0 -3
  500. package/dist/src/utils/generalUtils.d.ts +0 -4
  501. package/dist/src/utils/headerCell/dragging.d.ts +0 -5
  502. package/dist/src/utils/headerCell/styling.d.ts +0 -7
  503. package/dist/src/utils/headerCellRenderer.d.ts +0 -4
  504. package/dist/src/utils/headerUtils.d.ts +0 -41
  505. package/dist/src/utils/infiniteScrollUtils.d.ts +0 -145
  506. package/dist/src/utils/pinnedColumnUtils.d.ts +0 -29
  507. package/dist/src/utils/pivot/pivotRows.d.ts +0 -16
  508. package/dist/src/utils/quickFilterUtils.d.ts +0 -14
  509. package/dist/src/utils/resizeUtils/compensation.d.ts +0 -17
  510. package/dist/src/utils/resizeUtils/index.d.ts +0 -26
  511. package/dist/src/utils/resizeUtils/parentHeaderResize.d.ts +0 -11
  512. package/dist/src/utils/resizeUtils/sectionWidths.d.ts +0 -36
  513. package/dist/src/utils/rowProcessing.d.ts +0 -65
  514. package/dist/src/utils/rowSelectionUtils.d.ts +0 -62
  515. package/dist/src/utils/rowUtils.d.ts +0 -187
  516. package/dist/src/utils/sortUtils.d.ts +0 -8
  517. package/dist/src/utils/stateRowRenderer.d.ts +0 -15
  518. package/dist/stories/data/aggregate-data.d.ts +0 -5
  519. package/dist/stories/data/athlete-data.d.ts +0 -3
  520. package/dist/stories/data/retail-data.d.ts +0 -3
  521. package/dist/stories/data/saas-data.d.ts +0 -6
  522. package/dist/stories/data/space-data.d.ts +0 -3
  523. package/dist/stories/docs/Examples.stories.d.ts +0 -18
  524. package/dist/stories/docs/Features.stories.d.ts +0 -54
  525. package/dist/stories/docs/GettingStarted.stories.d.ts +0 -7
  526. package/dist/stories/docs/storyArgs.d.ts +0 -155
  527. package/dist/stories/examples/AdvancedSortingExample.d.ts +0 -6
  528. package/dist/stories/examples/AggregateExample.d.ts +0 -7
  529. package/dist/stories/examples/AlignmentExample.d.ts +0 -10
  530. package/dist/stories/examples/AutoExpandColumnsExample.d.ts +0 -7
  531. package/dist/stories/examples/BasicExample.d.ts +0 -12
  532. package/dist/stories/examples/BasicRowGrouping.d.ts +0 -11
  533. package/dist/stories/examples/CSVExportFormattingExample.d.ts +0 -12
  534. package/dist/stories/examples/CSVExportSingleRowChildrenExample.d.ts +0 -6
  535. package/dist/stories/examples/CellHighlighting.d.ts +0 -7
  536. package/dist/stories/examples/CellRenderer.d.ts +0 -7
  537. package/dist/stories/examples/ChartsExample.d.ts +0 -13
  538. package/dist/stories/examples/ClayExample.d.ts +0 -14
  539. package/dist/stories/examples/ClipboardFormattingExample.d.ts +0 -12
  540. package/dist/stories/examples/CollapsibleColumnsExample.d.ts +0 -13
  541. package/dist/stories/examples/ColumnVisibilityAPIExample.d.ts +0 -7
  542. package/dist/stories/examples/ColumnWidthChangeExample.d.ts +0 -6
  543. package/dist/stories/examples/CustomHeaderRenderingExample.d.ts +0 -2
  544. package/dist/stories/examples/DynamicHeadersExample.d.ts +0 -5
  545. package/dist/stories/examples/DynamicNestedTableExample.d.ts +0 -7
  546. package/dist/stories/examples/DynamicRowLoadingExample.d.ts +0 -5
  547. package/dist/stories/examples/DynamicRowLoadingWithExternalSortExample.d.ts +0 -6
  548. package/dist/stories/examples/EditableCells.d.ts +0 -8
  549. package/dist/stories/examples/ExpansionControlExample.d.ts +0 -6
  550. package/dist/stories/examples/ExternalFilterExample.d.ts +0 -5
  551. package/dist/stories/examples/ExternalSortExample.d.ts +0 -6
  552. package/dist/stories/examples/HeaderInclusionExample.d.ts +0 -5
  553. package/dist/stories/examples/HiddenColumnsExample.d.ts +0 -9
  554. package/dist/stories/examples/InfiniteScroll.d.ts +0 -5
  555. package/dist/stories/examples/LiveUpdates.d.ts +0 -5
  556. package/dist/stories/examples/LoadingStateExample.d.ts +0 -2
  557. package/dist/stories/examples/NestedAccessorExample.d.ts +0 -8
  558. package/dist/stories/examples/NestedGridExample.d.ts +0 -5
  559. package/dist/stories/examples/Pagination.d.ts +0 -12
  560. package/dist/stories/examples/PaginationAPIExample.d.ts +0 -8
  561. package/dist/stories/examples/PivotExample.d.ts +0 -16
  562. package/dist/stories/examples/ProgrammaticFilterExample.d.ts +0 -5
  563. package/dist/stories/examples/ProgrammaticSortExample.d.ts +0 -5
  564. package/dist/stories/examples/QuickFilterExample.d.ts +0 -5
  565. package/dist/stories/examples/RadioStationsExample.d.ts +0 -3
  566. package/dist/stories/examples/RowButtonsExample.d.ts +0 -14
  567. package/dist/stories/examples/RowHeightExample.d.ts +0 -8
  568. package/dist/stories/examples/RowSelectionExample.d.ts +0 -11
  569. package/dist/stories/examples/SelectableCells.d.ts +0 -14
  570. package/dist/stories/examples/ServerSidePaginationExample.d.ts +0 -2
  571. package/dist/stories/examples/Theming.d.ts +0 -12
  572. package/dist/stories/examples/TooltipExample.d.ts +0 -8
  573. package/dist/stories/examples/WindowInfiniteScroll.d.ts +0 -3
  574. package/dist/stories/examples/billing-example/BillingExample.d.ts +0 -13
  575. package/dist/stories/examples/billing-example/billing-headers.d.ts +0 -5
  576. package/dist/stories/examples/crypto/CryptoExample.d.ts +0 -14
  577. package/dist/stories/examples/crypto/crypto-data.d.ts +0 -30
  578. package/dist/stories/examples/crypto/crypto-headers.d.ts +0 -5
  579. package/dist/stories/examples/custom-theme/CustomThemeDemo.d.ts +0 -2
  580. package/dist/stories/examples/filter-example/FilterExample.d.ts +0 -9
  581. package/dist/stories/examples/filter-example/filter-headers.d.ts +0 -5
  582. package/dist/stories/examples/finance-example/FinancialExample.d.ts +0 -8
  583. package/dist/stories/examples/finance-example/finance-headers.d.ts +0 -5
  584. package/dist/stories/examples/infrastructure/InfrastructureExample.d.ts +0 -9
  585. package/dist/stories/examples/infrastructure/infrastructure-data.d.ts +0 -5
  586. package/dist/stories/examples/infrastructure/infrastructure-headers.d.ts +0 -5
  587. package/dist/stories/examples/leads/LeadsExample.d.ts +0 -8
  588. package/dist/stories/examples/leads/leads-data.d.ts +0 -5
  589. package/dist/stories/examples/leads/leads-headers.d.ts +0 -6
  590. package/dist/stories/examples/manufacturing/ManufacturingExample.d.ts +0 -10
  591. package/dist/stories/examples/manufacturing/manufacturing-headers.d.ts +0 -5
  592. package/dist/stories/examples/music/MusicExample.d.ts +0 -13
  593. package/dist/stories/examples/music/MusicWindowScrollExample.d.ts +0 -5
  594. package/dist/stories/examples/music/music-headers.d.ts +0 -5
  595. package/dist/stories/examples/music/music-window.data.d.ts +0 -47
  596. package/dist/stories/examples/pinned-columns/PinnedColumns.d.ts +0 -13
  597. package/dist/stories/examples/row-grouping/RowGrouping.d.ts +0 -8
  598. package/dist/stories/examples/sales-example/SalesExample.d.ts +0 -14
  599. package/dist/stories/examples/sales-example/sales-headers.d.ts +0 -6
  600. package/dist/stories/tests/01-BasicStructureTests.stories.d.ts +0 -119
  601. package/dist/stories/tests/02-ColumnSortingTests.stories.d.ts +0 -114
  602. package/dist/stories/tests/03-ColumnFilteringTests.stories.d.ts +0 -86
  603. package/dist/stories/tests/04-PaginationTests.stories.d.ts +0 -94
  604. package/dist/stories/tests/05-RowGroupingTests.stories.d.ts +0 -204
  605. package/dist/stories/tests/06-CellEditingTests.stories.d.ts +0 -61
  606. package/dist/stories/tests/07-RowSelectionTests.stories.d.ts +0 -101
  607. package/dist/stories/tests/08-ColumnWidthTests.stories.d.ts +0 -99
  608. package/dist/stories/tests/09-ColumnAlignmentTests.stories.d.ts +0 -61
  609. package/dist/stories/tests/10-ColumnPinningTests.stories.d.ts +0 -115
  610. package/dist/stories/tests/11-ColumnReorderingTests.stories.d.ts +0 -122
  611. package/dist/stories/tests/12-CellSelectionTests.stories.d.ts +0 -212
  612. package/dist/stories/tests/13-ColumnResizeTests.stories.d.ts +0 -101
  613. package/dist/stories/tests/14-LiveUpdatesTests.stories.d.ts +0 -28
  614. package/dist/stories/tests/15-ColumnVisibilityTests.stories.d.ts +0 -143
  615. package/dist/stories/tests/16-CsvExportTests.stories.d.ts +0 -133
  616. package/dist/stories/tests/17-NestedTablesTests.stories.d.ts +0 -105
  617. package/dist/stories/tests/18-QuickFilterTests.stories.d.ts +0 -120
  618. package/dist/stories/tests/19-AccessibilityTests.stories.d.ts +0 -39
  619. package/dist/stories/tests/20-CollapsibleColumnsTests.stories.d.ts +0 -104
  620. package/dist/stories/tests/21-ColumnSelectionTests.stories.d.ts +0 -31
  621. package/dist/stories/tests/22-LoadingStateTests.stories.d.ts +0 -87
  622. package/dist/stories/tests/23-EmptyStateTests.stories.d.ts +0 -39
  623. package/dist/stories/tests/24-FooterRendererTests.stories.d.ts +0 -63
  624. package/dist/stories/tests/25-HeaderRendererTests.stories.d.ts +0 -58
  625. package/dist/stories/tests/26-CellRendererTests.stories.d.ts +0 -55
  626. package/dist/stories/tests/27-ValueFormatterTests.stories.d.ts +0 -53
  627. package/dist/stories/tests/28-CellClickTests.stories.d.ts +0 -23
  628. package/dist/stories/tests/29-TooltipsTests.stories.d.ts +0 -31
  629. package/dist/stories/tests/30-AggregateFunctionsTests.stories.d.ts +0 -63
  630. package/dist/stories/tests/31-ChartColumnsTests.stories.d.ts +0 -54
  631. package/dist/stories/tests/32-ThemesTests.stories.d.ts +0 -104
  632. package/dist/stories/tests/33-CustomThemeTests.stories.d.ts +0 -150
  633. package/dist/stories/tests/34-CustomIconsTests.stories.d.ts +0 -63
  634. package/dist/stories/tests/35-HideHeaderFooterTests.stories.d.ts +0 -31
  635. package/dist/stories/tests/36-InfiniteScrollTests.stories.d.ts +0 -23
  636. package/dist/stories/tests/37-TableRefMethodsTests.stories.d.ts +0 -160
  637. package/dist/stories/tests/38-NestedHeadersTests.stories.d.ts +0 -23
  638. package/dist/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +0 -398
  639. package/dist/stories/tests/40-MaxHeightScrollTests.stories.d.ts +0 -37
  640. package/dist/stories/tests/41-CellAnimationsTests.stories.d.ts +0 -237
  641. package/dist/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +0 -251
  642. package/dist/stories/tests/43-CollapseExpandAnimationsTests.stories.d.ts +0 -63
  643. package/dist/stories/tests/44-ExternalScrollTests.stories.d.ts +0 -53
  644. package/dist/stories/tests/45-AriaSemanticsTests.stories.d.ts +0 -83
  645. package/dist/stories/tests/45-PivotTests.stories.d.ts +0 -8
  646. package/dist/stories/tests/46-AutoSizeColumnsTests.stories.d.ts +0 -370
  647. package/dist/stories/tests/47-DeferredHeadersTests.stories.d.ts +0 -23
  648. package/dist/stories/tests/48-ExternalScrollLateParentTests.stories.d.ts +0 -45
  649. package/dist/stories/tests/49-AutoWidthAutoExpandTests.stories.d.ts +0 -151
  650. package/dist/stories/tests/50-ContainerResizePerformanceTests.stories.d.ts +0 -56
  651. package/dist/stories/tests/51-RowGroupReExpandTests.stories.d.ts +0 -78
  652. package/dist/stories/tests/testUtils.d.ts +0 -38
  653. package/dist/stories/utils.d.ts +0 -42
  654. package/dist/stories/vanillaStoryConfig.d.ts +0 -156
@@ -1,39 +1,39 @@
1
- import Row from "./Row";
2
- import RowState from "./RowState";
3
- import HeaderObject, { Accessor } from "./HeaderObject";
4
- type TableRow = {
5
- depth: number;
6
- displayPosition: number;
7
- groupingKey?: string;
8
- isLastGroupRow: boolean;
9
- position: number;
10
- row: Row;
11
- rowId: (string | number)[];
12
- /**
13
- * Position-independent identity for the row, used as the basis for the
14
- * cell DOM `id`, the animation coordinator's snapshot key, and **expand /
15
- * collapse / row-loading state maps** ({@link expandStateKey}).
16
- *
17
- * Sort/filter reorder leaves this unchanged while positional `rowId` changes,
18
- * so nested rows stay expanded after sort when this is supplied (via `getRowId`
19
- * or WeakMap-backed fallback identities).
20
- */
21
- stableRowKey?: string;
22
- rowPath?: (string | number)[];
23
- rowIndexPath?: number[];
24
- stateIndicator?: {
25
- parentRowId: string | number;
26
- parentRow: Row;
27
- state: RowState;
28
- };
29
- isLoadingSkeleton?: boolean;
30
- nestedTable?: {
31
- parentRow: Row;
32
- expandableHeader: HeaderObject;
33
- childAccessor: Accessor;
34
- calculatedHeight: number;
35
- };
36
- absoluteRowIndex: number;
37
- parentIndices?: number[];
38
- };
39
- export default TableRow;
1
+ import Row from "./Row";
2
+ import RowState from "./RowState";
3
+ import HeaderObject, { Accessor } from "./HeaderObject";
4
+ type TableRow = {
5
+ depth: number;
6
+ displayPosition: number;
7
+ groupingKey?: string;
8
+ isLastGroupRow: boolean;
9
+ position: number;
10
+ row: Row;
11
+ rowId: (string | number)[];
12
+ /**
13
+ * Position-independent identity for the row, used as the basis for the
14
+ * cell DOM `id`, the animation coordinator's snapshot key, and **expand /
15
+ * collapse / row-loading state maps** ({@link expandStateKey}).
16
+ *
17
+ * Sort/filter reorder leaves this unchanged while positional `rowId` changes,
18
+ * so nested rows stay expanded after sort when this is supplied (via `getRowId`
19
+ * or WeakMap-backed fallback identities).
20
+ */
21
+ stableRowKey?: string;
22
+ rowPath?: (string | number)[];
23
+ rowIndexPath?: number[];
24
+ stateIndicator?: {
25
+ parentRowId: string | number;
26
+ parentRow: Row;
27
+ state: RowState;
28
+ };
29
+ isLoadingSkeleton?: boolean;
30
+ nestedTable?: {
31
+ parentRow: Row;
32
+ expandableHeader: HeaderObject;
33
+ childAccessor: Accessor;
34
+ calculatedHeight: number;
35
+ };
36
+ absoluteRowIndex: number;
37
+ parentIndices?: number[];
38
+ };
39
+ export default TableRow;
@@ -1,29 +1,29 @@
1
- import CellChangeProps from "./CellChangeProps";
2
- import HeaderObject from "./HeaderObject";
3
- import Row from "./Row";
4
- import Cell from "./Cell";
5
- type TableRowProps = {
6
- currentRows: Row[];
7
- draggedHeaderRef: {
8
- current: HeaderObject | null;
9
- };
10
- getBorderClass: (rowIndex: number, columnIndex: number) => string;
11
- handleMouseDown: (props: Cell) => void;
12
- handleMouseOver: (rowIndex: number, columnIndex: number) => void;
13
- headers: HeaderObject[];
14
- hoveredHeaderRef: {
15
- current: HeaderObject | null;
16
- };
17
- isSelected: (rowIndex: number, columnIndex: number) => boolean;
18
- isInitialFocusedCell: (rowIndex: number, columnIndex: number) => boolean;
19
- onCellEdit?: (props: CellChangeProps) => void;
20
- onTableHeaderDragEnd: (newHeaders: HeaderObject[]) => void;
21
- onToggleGroup: (rowId: number) => void;
22
- row: Row;
23
- rowIndex: number;
24
- shouldPaginate: boolean;
25
- tableRef: {
26
- current: HTMLDivElement | null;
27
- };
28
- };
29
- export default TableRowProps;
1
+ import CellChangeProps from "./CellChangeProps";
2
+ import HeaderObject from "./HeaderObject";
3
+ import Row from "./Row";
4
+ import Cell from "./Cell";
5
+ type TableRowProps = {
6
+ currentRows: Row[];
7
+ draggedHeaderRef: {
8
+ current: HeaderObject | null;
9
+ };
10
+ getBorderClass: (rowIndex: number, columnIndex: number) => string;
11
+ handleMouseDown: (props: Cell) => void;
12
+ handleMouseOver: (rowIndex: number, columnIndex: number) => void;
13
+ headers: HeaderObject[];
14
+ hoveredHeaderRef: {
15
+ current: HeaderObject | null;
16
+ };
17
+ isSelected: (rowIndex: number, columnIndex: number) => boolean;
18
+ isInitialFocusedCell: (rowIndex: number, columnIndex: number) => boolean;
19
+ onCellEdit?: (props: CellChangeProps) => void;
20
+ onTableHeaderDragEnd: (newHeaders: HeaderObject[]) => void;
21
+ onToggleGroup: (rowId: number) => void;
22
+ row: Row;
23
+ rowIndex: number;
24
+ shouldPaginate: boolean;
25
+ tableRef: {
26
+ current: HTMLDivElement | null;
27
+ };
28
+ };
29
+ export default TableRowProps;
@@ -1,2 +1,2 @@
1
- type Theme = "light" | "dark" | "neutral" | "custom" | "modern-light" | "modern-dark";
2
- export default Theme;
1
+ type Theme = "light" | "dark" | "neutral" | "custom" | "modern-light" | "modern-dark";
2
+ export default Theme;
@@ -1,8 +1,8 @@
1
- import { CellValue } from "..";
2
- import { Accessor } from "./HeaderObject";
3
- type UpdateDataProps = {
4
- accessor: Accessor;
5
- rowIndex: number;
6
- newValue: CellValue;
7
- };
8
- export default UpdateDataProps;
1
+ import { CellValue } from "..";
2
+ import { Accessor } from "./HeaderObject";
3
+ type UpdateDataProps = {
4
+ accessor: Accessor;
5
+ rowIndex: number;
6
+ newValue: CellValue;
7
+ };
8
+ export default UpdateDataProps;
@@ -1,25 +1,25 @@
1
- /**
2
- * Active axis for the in-flight accordion animation. Set on the render
3
- * context for one render after a collapse/expand toggle so cell renderers
4
- * know which dimension to fold/unfold.
5
- *
6
- * - `"vertical"` — row group expand/collapse: incoming cells start at
7
- * `height: 0` and CSS-transition to `rowHeight`.
8
- * - `"horizontal"` — nested column expand/collapse: incoming cells start at
9
- * `width: 0` and CSS-transition to their final width.
10
- * - `null` — no accordion animation in progress (sort, reorder,
11
- * scroll, etc.).
12
- */
13
- export type AccordionAxis = "vertical" | "horizontal" | null;
14
- /** CSS class applied to the table root during the animation window. */
15
- export declare const ACCORDION_ANIMATION_CLASS = "st-accordion-animating";
16
- /** Custom property names consumed by the accordion CSS transitions. */
17
- export declare const ACCORDION_DURATION_VAR = "--st-accordion-duration";
18
- export declare const ACCORDION_EASING_VAR = "--st-accordion-easing";
19
- /** Window after which the accordion CSS class is removed (ms past duration). */
20
- export declare const ACCORDION_CLEANUP_BUFFER_MS = 80;
21
- /**
22
- * Detect `prefers-reduced-motion: reduce`. Returns `false` outside the
23
- * browser (SSR) so the call site doesn't have to guard.
24
- */
25
- export declare const accordionPrefersReducedMotion: () => boolean;
1
+ /**
2
+ * Active axis for the in-flight accordion animation. Set on the render
3
+ * context for one render after a collapse/expand toggle so cell renderers
4
+ * know which dimension to fold/unfold.
5
+ *
6
+ * - `"vertical"` — row group expand/collapse: incoming cells start at
7
+ * `height: 0` and CSS-transition to `rowHeight`.
8
+ * - `"horizontal"` — nested column expand/collapse: incoming cells start at
9
+ * `width: 0` and CSS-transition to their final width.
10
+ * - `null` — no accordion animation in progress (sort, reorder,
11
+ * scroll, etc.).
12
+ */
13
+ export type AccordionAxis = "vertical" | "horizontal" | null;
14
+ /** CSS class applied to the table root during the animation window. */
15
+ export declare const ACCORDION_ANIMATION_CLASS = "st-accordion-animating";
16
+ /** Custom property names consumed by the accordion CSS transitions. */
17
+ export declare const ACCORDION_DURATION_VAR = "--st-accordion-duration";
18
+ export declare const ACCORDION_EASING_VAR = "--st-accordion-easing";
19
+ /** Window after which the accordion CSS class is removed (ms past duration). */
20
+ export declare const ACCORDION_CLEANUP_BUFFER_MS = 80;
21
+ /**
22
+ * Detect `prefers-reduced-motion: reduce`. Returns `false` outside the
23
+ * browser (SSR) so the call site doesn't have to guard.
24
+ */
25
+ export declare const accordionPrefersReducedMotion: () => boolean;
@@ -1,7 +1,7 @@
1
- import type CellValue from "../types/CellValue";
2
- import type { AggregationConfig } from "../types/AggregationTypes";
3
- /**
4
- * Aggregate a flat list of cell values using the given AggregationConfig.
5
- * Shared by row-grouping rollups and matrix pivot.
6
- */
7
- export declare const aggregateValues: (allValues: CellValue[], config: AggregationConfig) => number | string | undefined;
1
+ import type CellValue from "../types/CellValue";
2
+ import type { AggregationConfig } from "../types/AggregationTypes";
3
+ /**
4
+ * Aggregate a flat list of cell values using the given AggregationConfig.
5
+ * Shared by row-grouping rollups and matrix pivot.
6
+ */
7
+ export declare const aggregateValues: (allValues: CellValue[], config: AggregationConfig) => number | string | undefined;
@@ -1,37 +1,37 @@
1
- /**
2
- * ARIA row layer.
3
- *
4
- * The table renders cells as absolutely-positioned, virtualized, FLIP-animated
5
- * elements. The ARIA `grid` pattern, however, requires the hierarchy
6
- * `grid → rowgroup → row → gridcell/columnheader`; a flat list of cells under
7
- * the section (rowgroup) makes validators (axe) report the cells as disallowed
8
- * children of the rowgroup and as missing their required `row` parent.
9
- *
10
- * `aria-owns` does NOT solve this: axe (and the ARIA tree) still treat a cell
11
- * as a child of its DOM parent, so the cell remains an invalid rowgroup child.
12
- * The cells must therefore be real DOM descendants of a `role="row"` element.
13
- *
14
- * To get that hierarchy without disturbing the carefully-tuned positioning and
15
- * animation machinery, the row element uses `display: contents`: it generates
16
- * no box, establishes no containing block, and takes part in no layout, so its
17
- * absolutely-positioned cell children are laid out exactly as if they were
18
- * still direct children of the section. It is still present in the
19
- * accessibility tree (axe's screen-reader visibility check only looks at
20
- * `display:none` / `visibility` / `content-visibility` / `aria-hidden`, never
21
- * at box size), so it provides the required `row` layer for free.
22
- */
23
- /**
24
- * Return the `role="row"` element for `rowKey` inside `container`, creating it
25
- * (as a zero-box `display: contents` element) on first use. Refreshes
26
- * `aria-rowindex` when it changes. New cells should be appended to the returned
27
- * element so they become DOM descendants of a row.
28
- */
29
- export declare const getOrCreateRowElement: (container: HTMLElement, rowKey: string, ariaRowIndex: number) => HTMLElement;
30
- /**
31
- * Remove row elements that no longer contain any cells. Retained animation
32
- * "ghost" cells keep their row alive until they finish and remove themselves,
33
- * so we prune purely on emptiness rather than on a live-row set.
34
- */
35
- export declare const reconcileRowElements: (container: HTMLElement) => void;
36
- /** Remove every row element tracked for `container`. */
37
- export declare const cleanupAriaRows: (container: HTMLElement) => void;
1
+ /**
2
+ * ARIA row layer.
3
+ *
4
+ * The table renders cells as absolutely-positioned, virtualized, FLIP-animated
5
+ * elements. The ARIA `grid` pattern, however, requires the hierarchy
6
+ * `grid → rowgroup → row → gridcell/columnheader`; a flat list of cells under
7
+ * the section (rowgroup) makes validators (axe) report the cells as disallowed
8
+ * children of the rowgroup and as missing their required `row` parent.
9
+ *
10
+ * `aria-owns` does NOT solve this: axe (and the ARIA tree) still treat a cell
11
+ * as a child of its DOM parent, so the cell remains an invalid rowgroup child.
12
+ * The cells must therefore be real DOM descendants of a `role="row"` element.
13
+ *
14
+ * To get that hierarchy without disturbing the carefully-tuned positioning and
15
+ * animation machinery, the row element uses `display: contents`: it generates
16
+ * no box, establishes no containing block, and takes part in no layout, so its
17
+ * absolutely-positioned cell children are laid out exactly as if they were
18
+ * still direct children of the section. It is still present in the
19
+ * accessibility tree (axe's screen-reader visibility check only looks at
20
+ * `display:none` / `visibility` / `content-visibility` / `aria-hidden`, never
21
+ * at box size), so it provides the required `row` layer for free.
22
+ */
23
+ /**
24
+ * Return the `role="row"` element for `rowKey` inside `container`, creating it
25
+ * (as a zero-box `display: contents` element) on first use. Refreshes
26
+ * `aria-rowindex` when it changes. New cells should be appended to the returned
27
+ * element so they become DOM descendants of a row.
28
+ */
29
+ export declare const getOrCreateRowElement: (container: HTMLElement, rowKey: string, ariaRowIndex: number) => HTMLElement;
30
+ /**
31
+ * Remove row elements that no longer contain any cells. Retained animation
32
+ * "ghost" cells keep their row alive until they finish and remove themselves,
33
+ * so we prune purely on emptiness rather than on a live-row set.
34
+ */
35
+ export declare const reconcileRowElements: (container: HTMLElement) => void;
36
+ /** Remove every row element tracked for `container`. */
37
+ export declare const cleanupAriaRows: (container: HTMLElement) => void;
@@ -1,7 +1,7 @@
1
- import type Row from "../types/Row";
2
- /**
3
- * Structural typing bridge: domain row interfaces often do not assign to {@link Row}[]
4
- * because `Row` uses an index signature. Use when passing typed data to `rows` and
5
- * similar APIs.
6
- */
7
- export declare function asRows<T>(rows: readonly T[]): Row[];
1
+ import type Row from "../types/Row";
2
+ /**
3
+ * Structural typing bridge: domain row interfaces often do not assign to {@link Row}[]
4
+ * because `Row` uses an index signature. Use when passing typed data to `rows` and
5
+ * similar APIs.
6
+ */
7
+ export declare function asRows<T>(rows: readonly T[]): Row[];
@@ -1,9 +1,9 @@
1
- import type Row from "../../types/Row";
2
- import type TableRow from "../../types/TableRow";
3
- import { CellRenderContext } from "./types";
4
- export interface CellLiveRef {
5
- row: Row;
6
- tableRow: TableRow;
7
- context: CellRenderContext;
8
- }
9
- export declare const cellLiveRefMap: WeakMap<HTMLElement, CellLiveRef>;
1
+ import type Row from "../../types/Row";
2
+ import type TableRow from "../../types/TableRow";
3
+ import { CellRenderContext } from "./types";
4
+ export interface CellLiveRef {
5
+ row: Row;
6
+ tableRow: TableRow;
7
+ context: CellRenderContext;
8
+ }
9
+ export declare const cellLiveRefMap: WeakMap<HTMLElement, CellLiveRef>;
@@ -1,5 +1,5 @@
1
- import HeaderObject from "../../types/HeaderObject";
2
- import CellValue from "../../types/CellValue";
3
- import { AbsoluteBodyCell, CellRenderContext } from "./types";
4
- export declare const formatCellContent: (content: CellValue, header: HeaderObject, colIndex: number, row: any, rowIndex: number) => string | null;
5
- export declare const createCellContent: (cell: AbsoluteBodyCell, context: CellRenderContext, contentSpan: HTMLElement) => void;
1
+ import HeaderObject from "../../types/HeaderObject";
2
+ import CellValue from "../../types/CellValue";
3
+ import { AbsoluteBodyCell, CellRenderContext } from "./types";
4
+ export declare const formatCellContent: (content: CellValue, header: HeaderObject, colIndex: number, row: any, rowIndex: number) => string | null;
5
+ export declare const createCellContent: (cell: AbsoluteBodyCell, context: CellRenderContext, contentSpan: HTMLElement) => void;
@@ -1,4 +1,4 @@
1
- import CellValue from "../../types/CellValue";
2
- import { AbsoluteBodyCell, CellRenderContext } from "./types";
3
- export declare const createEditableInput: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: CellValue, onComplete: () => void) => HTMLElement;
4
- export declare const createEditor: (cell: AbsoluteBodyCell, context: CellRenderContext, onComplete: () => void) => HTMLElement | null;
1
+ import CellValue from "../../types/CellValue";
2
+ import { AbsoluteBodyCell, CellRenderContext } from "./types";
3
+ export declare const createEditableInput: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: CellValue, onComplete: () => void) => HTMLElement;
4
+ export declare const createEditor: (cell: AbsoluteBodyCell, context: CellRenderContext, onComplete: () => void) => HTMLElement | null;
@@ -1,2 +1,2 @@
1
- import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
- export declare const createBooleanDropdown: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: boolean, onComplete: () => void) => HTMLElement;
1
+ import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
+ export declare const createBooleanDropdown: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: boolean, onComplete: () => void) => HTMLElement;
@@ -1,2 +1,2 @@
1
- import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
- export declare const createDatePicker: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: any, onComplete: () => void) => HTMLElement;
1
+ import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
+ export declare const createDatePicker: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: any, onComplete: () => void) => HTMLElement;
@@ -1,18 +1,18 @@
1
- export interface DropdownOptions {
2
- width?: number;
3
- maxHeight?: number;
4
- overflow?: "auto" | "hidden" | "visible";
5
- positioning?: "fixed" | "absolute";
6
- onClose: () => void;
7
- }
8
- export interface DropdownPosition {
9
- top?: number;
10
- bottom?: number;
11
- left?: number;
12
- right?: number;
13
- }
14
- export declare const calculateDropdownPosition: (triggerElement: HTMLElement, dropdownElement: HTMLElement, options: DropdownOptions) => {
15
- position: DropdownPosition;
16
- placement: string;
17
- };
18
- export declare const createDropdown: (triggerElement: HTMLElement, content: HTMLElement | DocumentFragment, options: DropdownOptions) => HTMLElement;
1
+ export interface DropdownOptions {
2
+ width?: number;
3
+ maxHeight?: number;
4
+ overflow?: "auto" | "hidden" | "visible";
5
+ positioning?: "fixed" | "absolute";
6
+ onClose: () => void;
7
+ }
8
+ export interface DropdownPosition {
9
+ top?: number;
10
+ bottom?: number;
11
+ left?: number;
12
+ right?: number;
13
+ }
14
+ export declare const calculateDropdownPosition: (triggerElement: HTMLElement, dropdownElement: HTMLElement, options: DropdownOptions) => {
15
+ position: DropdownPosition;
16
+ placement: string;
17
+ };
18
+ export declare const createDropdown: (triggerElement: HTMLElement, content: HTMLElement | DocumentFragment, options: DropdownOptions) => HTMLElement;
@@ -1,2 +1,2 @@
1
- import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
- export declare const createEnumDropdown: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: string, onComplete: () => void) => HTMLElement;
1
+ import { AbsoluteBodyCell, CellRenderContext } from "../types";
2
+ export declare const createEnumDropdown: (cell: AbsoluteBodyCell, context: CellRenderContext, currentValue: string, onComplete: () => void) => HTMLElement;
@@ -1,3 +1,3 @@
1
- export declare const addTrackedEventListener: (element: HTMLElement, event: string, handler: EventListener, options?: AddEventListenerOptions) => void;
2
- export declare const getRenderedCells: (container: HTMLElement) => Map<string, HTMLElement>;
3
- export declare const cleanupBodyCellRendering: (container?: HTMLElement, onHostDiscard?: ((host: HTMLElement) => void) | undefined) => void;
1
+ export declare const addTrackedEventListener: (element: HTMLElement, event: string, handler: EventListener, options?: AddEventListenerOptions) => void;
2
+ export declare const getRenderedCells: (container: HTMLElement) => Map<string, HTMLElement>;
3
+ export declare const cleanupBodyCellRendering: (container?: HTMLElement, onHostDiscard?: (host: HTMLElement) => void) => void;
@@ -1,12 +1,12 @@
1
- import { AbsoluteBodyCell, CellRenderContext } from "./types";
2
- export declare const createExpandIcon: (cell: AbsoluteBodyCell, context: CellRenderContext, isExpanded: boolean) => HTMLElement;
3
- export type UpdateExpandIconStateOptions = {
4
- /** aria-label when the group is expanded (chevron shows collapse action). */
5
- ariaLabelWhenExpanded?: string;
6
- /** aria-label when the group is collapsed (chevron shows expand action). */
7
- ariaLabelWhenCollapsed?: string;
8
- /** When true, sets aria-expanded to match isExpanded after the toggle. */
9
- syncAriaExpanded?: boolean;
10
- };
11
- /** Update expand/collapse icon direction on an existing cell (e.g. after expand state changes for nested grids). */
12
- export declare const updateExpandIconState: (cellElement: HTMLElement, isExpanded: boolean, options?: UpdateExpandIconStateOptions) => void;
1
+ import { AbsoluteBodyCell, CellRenderContext } from "./types";
2
+ export declare const createExpandIcon: (cell: AbsoluteBodyCell, context: CellRenderContext, isExpanded: boolean) => HTMLElement;
3
+ export type UpdateExpandIconStateOptions = {
4
+ /** aria-label when the group is expanded (chevron shows collapse action). */
5
+ ariaLabelWhenExpanded?: string;
6
+ /** aria-label when the group is collapsed (chevron shows expand action). */
7
+ ariaLabelWhenCollapsed?: string;
8
+ /** When true, sets aria-expanded to match isExpanded after the toggle. */
9
+ syncAriaExpanded?: boolean;
10
+ };
11
+ /** Update expand/collapse icon direction on an existing cell (e.g. after expand state changes for nested grids). */
12
+ export declare const updateExpandIconState: (cellElement: HTMLElement, isExpanded: boolean, options?: UpdateExpandIconStateOptions) => void;
@@ -1,7 +1,7 @@
1
- import { AbsoluteBodyCell, CellRenderContext } from "./types";
2
- /**
3
- * Creates the row selection checkbox using the shared createCheckbox (same as popout and header).
4
- */
5
- export declare const createSelectionCheckbox: (cell: AbsoluteBodyCell, context: CellRenderContext, isChecked: boolean) => HTMLElement;
6
- export declare const createRowNumber: (displayRowNumber: number) => HTMLElement;
7
- export declare const createRowButtons: (cell: AbsoluteBodyCell, context: CellRenderContext) => HTMLElement | null;
1
+ import { AbsoluteBodyCell, CellRenderContext } from "./types";
2
+ /**
3
+ * Creates the row selection checkbox using the shared createCheckbox (same as popout and header).
4
+ */
5
+ export declare const createSelectionCheckbox: (cell: AbsoluteBodyCell, context: CellRenderContext, isChecked: boolean) => HTMLElement;
6
+ export declare const createRowNumber: (displayRowNumber: number) => HTMLElement;
7
+ export declare const createRowButtons: (cell: AbsoluteBodyCell, context: CellRenderContext) => HTMLElement | null;
@@ -1,11 +1,11 @@
1
- import { AbsoluteBodyCell, CellRegistryEntry, CellRenderContext } from "./types";
2
- import { CellLiveRef, cellLiveRefMap } from "./cellLiveRef";
3
- export { cellLiveRefMap };
4
- export type { CellLiveRef };
5
- /** Drop the content memo so the next `updateBodyCellElement` rebuilds. */
6
- export declare const invalidateBodyCellContentMemo: (cellElement: HTMLElement) => void;
7
- export declare const untrackCellByRow: (rowId: string, cellElement: HTMLElement) => void;
8
- export declare const unregisterCellFromRegistry: (cellElement: HTMLElement, cellRegistry?: Map<string, CellRegistryEntry>) => void;
9
- export declare const createBodyCellElement: (cell: AbsoluteBodyCell, context: CellRenderContext) => HTMLElement;
10
- export declare const updateBodyCellPosition: (cellElement: HTMLElement, cell: AbsoluteBodyCell) => void;
11
- export declare const updateBodyCellElement: (cellElement: HTMLElement, cell: AbsoluteBodyCell, context: CellRenderContext) => void;
1
+ import { AbsoluteBodyCell, CellRegistryEntry, CellRenderContext } from "./types";
2
+ import { CellLiveRef, cellLiveRefMap } from "./cellLiveRef";
3
+ export { cellLiveRefMap };
4
+ export type { CellLiveRef };
5
+ /** Drop the content memo so the next `updateBodyCellElement` rebuilds. */
6
+ export declare const invalidateBodyCellContentMemo: (cellElement: HTMLElement) => void;
7
+ export declare const untrackCellByRow: (rowId: string, cellElement: HTMLElement) => void;
8
+ export declare const unregisterCellFromRegistry: (cellElement: HTMLElement, cellRegistry?: Map<string, CellRegistryEntry>) => void;
9
+ export declare const createBodyCellElement: (cell: AbsoluteBodyCell, context: CellRenderContext) => HTMLElement;
10
+ export declare const updateBodyCellPosition: (cellElement: HTMLElement, cell: AbsoluteBodyCell) => void;
11
+ export declare const updateBodyCellElement: (cellElement: HTMLElement, cell: AbsoluteBodyCell, context: CellRenderContext) => void;