@fluentui/react-table 9.0.0-alpha.2 → 9.0.0-alpha.20

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 (508) hide show
  1. package/CHANGELOG.json +1071 -1
  2. package/CHANGELOG.md +280 -2
  3. package/dist/index.d.ts +551 -113
  4. package/lib/DataGrid.js +2 -0
  5. package/lib/DataGrid.js.map +1 -0
  6. package/lib/DataGridBody.js +2 -0
  7. package/lib/DataGridBody.js.map +1 -0
  8. package/lib/DataGridCell.js +2 -0
  9. package/lib/DataGridCell.js.map +1 -0
  10. package/lib/DataGridHeader.js +2 -0
  11. package/lib/DataGridHeader.js.map +1 -0
  12. package/lib/DataGridHeaderCell.js +2 -0
  13. package/lib/DataGridHeaderCell.js.map +1 -0
  14. package/lib/DataGridRow.js +2 -0
  15. package/lib/DataGridRow.js.map +1 -0
  16. package/lib/DataGridSelectionCell.js +2 -0
  17. package/lib/DataGridSelectionCell.js.map +1 -0
  18. package/lib/Table.js.map +1 -1
  19. package/lib/TableBody.js.map +1 -1
  20. package/lib/TableCell.js.map +1 -1
  21. package/lib/TableCellActions.js.map +1 -1
  22. package/lib/TableCellLayout.js.map +1 -1
  23. package/lib/TableCellPrimaryLayout.js.map +1 -1
  24. package/lib/TableHeader.js.map +1 -1
  25. package/lib/TableHeaderCell.js.map +1 -1
  26. package/lib/TableRow.js.map +1 -1
  27. package/lib/TableSelectionCell.js.map +1 -1
  28. package/lib/components/DataGrid/DataGrid.js +15 -0
  29. package/lib/components/DataGrid/DataGrid.js.map +1 -0
  30. package/lib/components/DataGrid/DataGrid.types.js +2 -0
  31. package/lib/components/DataGrid/DataGrid.types.js.map +1 -0
  32. package/lib/components/DataGrid/index.js +6 -0
  33. package/lib/components/DataGrid/index.js.map +1 -0
  34. package/lib/components/DataGrid/renderDataGrid.js +12 -0
  35. package/lib/components/DataGrid/renderDataGrid.js.map +1 -0
  36. package/lib/components/DataGrid/useDataGrid.js +63 -0
  37. package/lib/components/DataGrid/useDataGrid.js.map +1 -0
  38. package/lib/components/DataGrid/useDataGridContextValues.js +15 -0
  39. package/lib/components/DataGrid/useDataGridContextValues.js.map +1 -0
  40. package/lib/components/DataGrid/useDataGridStyles.js +14 -0
  41. package/lib/components/DataGrid/useDataGridStyles.js.map +1 -0
  42. package/lib/components/DataGridBody/DataGridBody.js +14 -0
  43. package/lib/components/DataGridBody/DataGridBody.js.map +1 -0
  44. package/lib/components/DataGridBody/DataGridBody.types.js +2 -0
  45. package/lib/components/DataGridBody/DataGridBody.types.js.map +1 -0
  46. package/lib/components/DataGridBody/index.js +6 -0
  47. package/lib/components/DataGridBody/index.js.map +1 -0
  48. package/lib/components/DataGridBody/renderDataGridBody.js +19 -0
  49. package/lib/components/DataGridBody/renderDataGridBody.js.map +1 -0
  50. package/lib/components/DataGridBody/useDataGridBody.js +31 -0
  51. package/lib/components/DataGridBody/useDataGridBody.js.map +1 -0
  52. package/lib/components/DataGridBody/useDataGridBodyStyles.js +14 -0
  53. package/lib/components/DataGridBody/useDataGridBodyStyles.js.map +1 -0
  54. package/lib/components/DataGridCell/DataGridCell.js +14 -0
  55. package/lib/components/DataGridCell/DataGridCell.js.map +1 -0
  56. package/lib/components/DataGridCell/DataGridCell.types.js +2 -0
  57. package/lib/components/DataGridCell/DataGridCell.types.js.map +1 -0
  58. package/lib/components/DataGridCell/index.js +6 -0
  59. package/lib/components/DataGridCell/index.js.map +1 -0
  60. package/lib/components/DataGridCell/renderDataGridCell.js +8 -0
  61. package/lib/components/DataGridCell/renderDataGridCell.js.map +1 -0
  62. package/lib/components/DataGridCell/useDataGridCell.js +21 -0
  63. package/lib/components/DataGridCell/useDataGridCell.js.map +1 -0
  64. package/lib/components/DataGridCell/useDataGridCellStyles.js +14 -0
  65. package/lib/components/DataGridCell/useDataGridCellStyles.js.map +1 -0
  66. package/lib/components/DataGridHeader/DataGridHeader.js +14 -0
  67. package/lib/components/DataGridHeader/DataGridHeader.js.map +1 -0
  68. package/lib/components/DataGridHeader/DataGridHeader.types.js +2 -0
  69. package/lib/components/DataGridHeader/DataGridHeader.types.js.map +1 -0
  70. package/lib/components/DataGridHeader/index.js +6 -0
  71. package/lib/components/DataGridHeader/index.js.map +1 -0
  72. package/lib/components/DataGridHeader/renderDataGridHeader.js +8 -0
  73. package/lib/components/DataGridHeader/renderDataGridHeader.js.map +1 -0
  74. package/lib/components/DataGridHeader/useDataGridHeader.js +17 -0
  75. package/lib/components/DataGridHeader/useDataGridHeader.js.map +1 -0
  76. package/lib/components/DataGridHeader/useDataGridHeaderStyles.js +14 -0
  77. package/lib/components/DataGridHeader/useDataGridHeaderStyles.js.map +1 -0
  78. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.js +14 -0
  79. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.js.map +1 -0
  80. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.types.js +2 -0
  81. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.types.js.map +1 -0
  82. package/lib/components/DataGridHeaderCell/index.js +6 -0
  83. package/lib/components/DataGridHeaderCell/index.js.map +1 -0
  84. package/lib/components/DataGridHeaderCell/renderDataGridHeaderCell.js +8 -0
  85. package/lib/components/DataGridHeaderCell/renderDataGridHeaderCell.js.map +1 -0
  86. package/lib/components/DataGridHeaderCell/useDataGridHeaderCell.js +37 -0
  87. package/lib/components/DataGridHeaderCell/useDataGridHeaderCell.js.map +1 -0
  88. package/lib/components/DataGridHeaderCell/useDataGridHeaderCellStyles.js +22 -0
  89. package/lib/components/DataGridHeaderCell/useDataGridHeaderCellStyles.js.map +1 -0
  90. package/lib/components/DataGridRow/DataGridRow.js +14 -0
  91. package/lib/components/DataGridRow/DataGridRow.js.map +1 -0
  92. package/lib/components/DataGridRow/DataGridRow.types.js +2 -0
  93. package/lib/components/DataGridRow/DataGridRow.types.js.map +1 -0
  94. package/lib/components/DataGridRow/index.js +6 -0
  95. package/lib/components/DataGridRow/index.js.map +1 -0
  96. package/lib/components/DataGridRow/renderDataGridRow.js +21 -0
  97. package/lib/components/DataGridRow/renderDataGridRow.js.map +1 -0
  98. package/lib/components/DataGridRow/useDataGridRow.js +70 -0
  99. package/lib/components/DataGridRow/useDataGridRow.js.map +1 -0
  100. package/lib/components/DataGridRow/useDataGridRowStyles.js +18 -0
  101. package/lib/components/DataGridRow/useDataGridRowStyles.js.map +1 -0
  102. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.js +14 -0
  103. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.js.map +1 -0
  104. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.types.js +2 -0
  105. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.types.js.map +1 -0
  106. package/lib/components/DataGridSelectionCell/index.js +6 -0
  107. package/lib/components/DataGridSelectionCell/index.js.map +1 -0
  108. package/lib/components/DataGridSelectionCell/renderDataGridSelectionCell.js +8 -0
  109. package/lib/components/DataGridSelectionCell/renderDataGridSelectionCell.js.map +1 -0
  110. package/lib/components/DataGridSelectionCell/useDataGridSelectionCell.js +47 -0
  111. package/lib/components/DataGridSelectionCell/useDataGridSelectionCell.js.map +1 -0
  112. package/lib/components/DataGridSelectionCell/useDataGridSelectionCellStyles.js +22 -0
  113. package/lib/components/DataGridSelectionCell/useDataGridSelectionCellStyles.js.map +1 -0
  114. package/lib/components/Table/Table.js +1 -2
  115. package/lib/components/Table/Table.js.map +1 -1
  116. package/lib/components/Table/Table.types.js.map +1 -1
  117. package/lib/components/Table/index.js.map +1 -1
  118. package/lib/components/Table/renderTable.js +2 -2
  119. package/lib/components/Table/renderTable.js.map +1 -1
  120. package/lib/components/Table/useTable.js +0 -2
  121. package/lib/components/Table/useTable.js.map +1 -1
  122. package/lib/components/Table/useTableContextValues.js.map +1 -1
  123. package/lib/components/Table/useTableStyles.js +26 -11
  124. package/lib/components/Table/useTableStyles.js.map +1 -1
  125. package/lib/components/TableBody/TableBody.js +1 -2
  126. package/lib/components/TableBody/TableBody.js.map +1 -1
  127. package/lib/components/TableBody/TableBody.types.js.map +1 -1
  128. package/lib/components/TableBody/index.js.map +1 -1
  129. package/lib/components/TableBody/renderTableBody.js +3 -4
  130. package/lib/components/TableBody/renderTableBody.js.map +1 -1
  131. package/lib/components/TableBody/useTableBody.js +2 -3
  132. package/lib/components/TableBody/useTableBody.js.map +1 -1
  133. package/lib/components/TableBody/useTableBodyStyles.js +16 -9
  134. package/lib/components/TableBody/useTableBodyStyles.js.map +1 -1
  135. package/lib/components/TableCell/TableCell.js +1 -2
  136. package/lib/components/TableCell/TableCell.js.map +1 -1
  137. package/lib/components/TableCell/TableCell.types.js.map +1 -1
  138. package/lib/components/TableCell/index.js.map +1 -1
  139. package/lib/components/TableCell/renderTableCell.js +2 -2
  140. package/lib/components/TableCell/renderTableCell.js.map +1 -1
  141. package/lib/components/TableCell/useTableCell.js +5 -4
  142. package/lib/components/TableCell/useTableCell.js.map +1 -1
  143. package/lib/components/TableCell/useTableCellStyles.js +58 -13
  144. package/lib/components/TableCell/useTableCellStyles.js.map +1 -1
  145. package/lib/components/TableCellActions/TableCellActions.js +1 -2
  146. package/lib/components/TableCellActions/TableCellActions.js.map +1 -1
  147. package/lib/components/TableCellActions/TableCellActions.types.js.map +1 -1
  148. package/lib/components/TableCellActions/index.js.map +1 -1
  149. package/lib/components/TableCellActions/renderTableCellActions.js +3 -4
  150. package/lib/components/TableCellActions/renderTableCellActions.js.map +1 -1
  151. package/lib/components/TableCellActions/useTableCellActions.js +5 -5
  152. package/lib/components/TableCellActions/useTableCellActions.js.map +1 -1
  153. package/lib/components/TableCellActions/useTableCellActionsStyles.js +12 -20
  154. package/lib/components/TableCellActions/useTableCellActionsStyles.js.map +1 -1
  155. package/lib/components/TableCellLayout/TableCellLayout.js +3 -3
  156. package/lib/components/TableCellLayout/TableCellLayout.js.map +1 -1
  157. package/lib/components/TableCellLayout/TableCellLayout.types.js.map +1 -1
  158. package/lib/components/TableCellLayout/index.js.map +1 -1
  159. package/lib/components/TableCellLayout/renderTableCellLayout.js +14 -7
  160. package/lib/components/TableCellLayout/renderTableCellLayout.js.map +1 -1
  161. package/lib/components/TableCellLayout/useTableCellLayout.js +14 -4
  162. package/lib/components/TableCellLayout/useTableCellLayout.js.map +1 -1
  163. package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js +13 -0
  164. package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -0
  165. package/lib/components/TableCellLayout/useTableCellLayoutStyles.js +41 -35
  166. package/lib/components/TableCellLayout/useTableCellLayoutStyles.js.map +1 -1
  167. package/lib/components/TableHeader/TableHeader.js +1 -2
  168. package/lib/components/TableHeader/TableHeader.js.map +1 -1
  169. package/lib/components/TableHeader/TableHeader.types.js.map +1 -1
  170. package/lib/components/TableHeader/index.js.map +1 -1
  171. package/lib/components/TableHeader/renderTableHeader.js +6 -3
  172. package/lib/components/TableHeader/renderTableHeader.js.map +1 -1
  173. package/lib/components/TableHeader/useTableHeader.js +3 -11
  174. package/lib/components/TableHeader/useTableHeader.js.map +1 -1
  175. package/lib/components/TableHeader/useTableHeaderStyles.js +16 -9
  176. package/lib/components/TableHeader/useTableHeaderStyles.js.map +1 -1
  177. package/lib/components/TableHeaderCell/TableHeaderCell.js +1 -2
  178. package/lib/components/TableHeaderCell/TableHeaderCell.js.map +1 -1
  179. package/lib/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -1
  180. package/lib/components/TableHeaderCell/index.js.map +1 -1
  181. package/lib/components/TableHeaderCell/renderTableHeaderCell.js +6 -4
  182. package/lib/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -1
  183. package/lib/components/TableHeaderCell/useTableHeaderCell.js +13 -9
  184. package/lib/components/TableHeaderCell/useTableHeaderCell.js.map +1 -1
  185. package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js +83 -50
  186. package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -1
  187. package/lib/components/TableRow/TableRow.js +1 -2
  188. package/lib/components/TableRow/TableRow.js.map +1 -1
  189. package/lib/components/TableRow/TableRow.types.js.map +1 -1
  190. package/lib/components/TableRow/index.js.map +1 -1
  191. package/lib/components/TableRow/renderTableRow.js +3 -4
  192. package/lib/components/TableRow/renderTableRow.js.map +1 -1
  193. package/lib/components/TableRow/useTableRow.js +12 -6
  194. package/lib/components/TableRow/useTableRow.js.map +1 -1
  195. package/lib/components/TableRow/useTableRowStyles.js +196 -28
  196. package/lib/components/TableRow/useTableRowStyles.js.map +1 -1
  197. package/lib/components/TableSelectionCell/TableSelectionCell.js +1 -2
  198. package/lib/components/TableSelectionCell/TableSelectionCell.js.map +1 -1
  199. package/lib/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -1
  200. package/lib/components/TableSelectionCell/index.js.map +1 -1
  201. package/lib/components/TableSelectionCell/renderTableSelectionCell.js +6 -4
  202. package/lib/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -1
  203. package/lib/components/TableSelectionCell/useTableSelectionCell.js +25 -12
  204. package/lib/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
  205. package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js +59 -27
  206. package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -1
  207. package/lib/contexts/columnIdContext.js +9 -0
  208. package/lib/contexts/columnIdContext.js.map +1 -0
  209. package/lib/contexts/dataGridContext.js +13 -0
  210. package/lib/contexts/dataGridContext.js.map +1 -0
  211. package/lib/contexts/rowIdContext.js +9 -0
  212. package/lib/contexts/rowIdContext.js.map +1 -0
  213. package/lib/contexts/tableContext.js +0 -1
  214. package/lib/contexts/tableContext.js.map +1 -1
  215. package/lib/contexts/tableHeaderContext.js +6 -0
  216. package/lib/contexts/tableHeaderContext.js.map +1 -0
  217. package/lib/hooks/createColumn.js +35 -0
  218. package/lib/hooks/createColumn.js.map +1 -0
  219. package/lib/hooks/index.js +4 -1
  220. package/lib/hooks/index.js.map +1 -1
  221. package/lib/hooks/selectionManager.js +16 -32
  222. package/lib/hooks/selectionManager.js.map +1 -1
  223. package/lib/hooks/types.js.map +1 -1
  224. package/lib/hooks/useTableFeatures.js +35 -0
  225. package/lib/hooks/useTableFeatures.js.map +1 -0
  226. package/lib/hooks/useTableSelection.js +74 -0
  227. package/lib/hooks/useTableSelection.js.map +1 -0
  228. package/lib/hooks/useTableSort.js +85 -0
  229. package/lib/hooks/useTableSort.js.map +1 -0
  230. package/lib/index.js +9 -1
  231. package/lib/index.js.map +1 -1
  232. package/lib-commonjs/DataGrid.js +8 -0
  233. package/lib-commonjs/DataGrid.js.map +1 -0
  234. package/lib-commonjs/DataGridBody.js +8 -0
  235. package/lib-commonjs/DataGridBody.js.map +1 -0
  236. package/lib-commonjs/DataGridCell.js +8 -0
  237. package/lib-commonjs/DataGridCell.js.map +1 -0
  238. package/lib-commonjs/DataGridHeader.js +8 -0
  239. package/lib-commonjs/DataGridHeader.js.map +1 -0
  240. package/lib-commonjs/DataGridHeaderCell.js +8 -0
  241. package/lib-commonjs/DataGridHeaderCell.js.map +1 -0
  242. package/lib-commonjs/DataGridRow.js +8 -0
  243. package/lib-commonjs/DataGridRow.js.map +1 -0
  244. package/lib-commonjs/DataGridSelectionCell.js +8 -0
  245. package/lib-commonjs/DataGridSelectionCell.js.map +1 -0
  246. package/lib-commonjs/Table.js +0 -2
  247. package/lib-commonjs/Table.js.map +1 -1
  248. package/lib-commonjs/TableBody.js +0 -2
  249. package/lib-commonjs/TableBody.js.map +1 -1
  250. package/lib-commonjs/TableCell.js +0 -2
  251. package/lib-commonjs/TableCell.js.map +1 -1
  252. package/lib-commonjs/TableCellActions.js +0 -2
  253. package/lib-commonjs/TableCellActions.js.map +1 -1
  254. package/lib-commonjs/TableCellLayout.js +0 -2
  255. package/lib-commonjs/TableCellLayout.js.map +1 -1
  256. package/lib-commonjs/TableCellPrimaryLayout.js +0 -2
  257. package/lib-commonjs/TableCellPrimaryLayout.js.map +1 -1
  258. package/lib-commonjs/TableHeader.js +0 -2
  259. package/lib-commonjs/TableHeader.js.map +1 -1
  260. package/lib-commonjs/TableHeaderCell.js +0 -2
  261. package/lib-commonjs/TableHeaderCell.js.map +1 -1
  262. package/lib-commonjs/TableRow.js +0 -2
  263. package/lib-commonjs/TableRow.js.map +1 -1
  264. package/lib-commonjs/TableSelectionCell.js +0 -2
  265. package/lib-commonjs/TableSelectionCell.js.map +1 -1
  266. package/lib-commonjs/components/DataGrid/DataGrid.js +21 -0
  267. package/lib-commonjs/components/DataGrid/DataGrid.js.map +1 -0
  268. package/lib-commonjs/components/DataGrid/DataGrid.types.js +6 -0
  269. package/lib-commonjs/components/DataGrid/DataGrid.types.js.map +1 -0
  270. package/lib-commonjs/components/DataGrid/index.js +12 -0
  271. package/lib-commonjs/components/DataGrid/index.js.map +1 -0
  272. package/lib-commonjs/components/DataGrid/renderDataGrid.js +19 -0
  273. package/lib-commonjs/components/DataGrid/renderDataGrid.js.map +1 -0
  274. package/lib-commonjs/components/DataGrid/useDataGrid.js +70 -0
  275. package/lib-commonjs/components/DataGrid/useDataGrid.js.map +1 -0
  276. package/lib-commonjs/components/DataGrid/useDataGridContextValues.js +22 -0
  277. package/lib-commonjs/components/DataGrid/useDataGridContextValues.js.map +1 -0
  278. package/lib-commonjs/components/DataGrid/useDataGridStyles.js +21 -0
  279. package/lib-commonjs/components/DataGrid/useDataGridStyles.js.map +1 -0
  280. package/lib-commonjs/components/DataGridBody/DataGridBody.js +20 -0
  281. package/lib-commonjs/components/DataGridBody/DataGridBody.js.map +1 -0
  282. package/lib-commonjs/components/DataGridBody/DataGridBody.types.js +6 -0
  283. package/lib-commonjs/components/DataGridBody/DataGridBody.types.js.map +1 -0
  284. package/lib-commonjs/components/DataGridBody/index.js +12 -0
  285. package/lib-commonjs/components/DataGridBody/index.js.map +1 -0
  286. package/lib-commonjs/components/DataGridBody/renderDataGridBody.js +26 -0
  287. package/lib-commonjs/components/DataGridBody/renderDataGridBody.js.map +1 -0
  288. package/lib-commonjs/components/DataGridBody/useDataGridBody.js +38 -0
  289. package/lib-commonjs/components/DataGridBody/useDataGridBody.js.map +1 -0
  290. package/lib-commonjs/components/DataGridBody/useDataGridBodyStyles.js +21 -0
  291. package/lib-commonjs/components/DataGridBody/useDataGridBodyStyles.js.map +1 -0
  292. package/lib-commonjs/components/DataGridCell/DataGridCell.js +20 -0
  293. package/lib-commonjs/components/DataGridCell/DataGridCell.js.map +1 -0
  294. package/lib-commonjs/components/DataGridCell/DataGridCell.types.js +6 -0
  295. package/lib-commonjs/components/DataGridCell/DataGridCell.types.js.map +1 -0
  296. package/lib-commonjs/components/DataGridCell/index.js +12 -0
  297. package/lib-commonjs/components/DataGridCell/index.js.map +1 -0
  298. package/lib-commonjs/components/DataGridCell/renderDataGridCell.js +15 -0
  299. package/lib-commonjs/components/DataGridCell/renderDataGridCell.js.map +1 -0
  300. package/lib-commonjs/components/DataGridCell/useDataGridCell.js +28 -0
  301. package/lib-commonjs/components/DataGridCell/useDataGridCell.js.map +1 -0
  302. package/lib-commonjs/components/DataGridCell/useDataGridCellStyles.js +21 -0
  303. package/lib-commonjs/components/DataGridCell/useDataGridCellStyles.js.map +1 -0
  304. package/lib-commonjs/components/DataGridHeader/DataGridHeader.js +20 -0
  305. package/lib-commonjs/components/DataGridHeader/DataGridHeader.js.map +1 -0
  306. package/lib-commonjs/components/DataGridHeader/DataGridHeader.types.js +6 -0
  307. package/lib-commonjs/components/DataGridHeader/DataGridHeader.types.js.map +1 -0
  308. package/lib-commonjs/components/DataGridHeader/index.js +12 -0
  309. package/lib-commonjs/components/DataGridHeader/index.js.map +1 -0
  310. package/lib-commonjs/components/DataGridHeader/renderDataGridHeader.js +15 -0
  311. package/lib-commonjs/components/DataGridHeader/renderDataGridHeader.js.map +1 -0
  312. package/lib-commonjs/components/DataGridHeader/useDataGridHeader.js +24 -0
  313. package/lib-commonjs/components/DataGridHeader/useDataGridHeader.js.map +1 -0
  314. package/lib-commonjs/components/DataGridHeader/useDataGridHeaderStyles.js +21 -0
  315. package/lib-commonjs/components/DataGridHeader/useDataGridHeaderStyles.js.map +1 -0
  316. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.js +20 -0
  317. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.js.map +1 -0
  318. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.types.js +6 -0
  319. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.types.js.map +1 -0
  320. package/lib-commonjs/components/DataGridHeaderCell/index.js +12 -0
  321. package/lib-commonjs/components/DataGridHeaderCell/index.js.map +1 -0
  322. package/lib-commonjs/components/DataGridHeaderCell/renderDataGridHeaderCell.js +15 -0
  323. package/lib-commonjs/components/DataGridHeaderCell/renderDataGridHeaderCell.js.map +1 -0
  324. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCell.js +44 -0
  325. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCell.js.map +1 -0
  326. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCellStyles.js +29 -0
  327. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCellStyles.js.map +1 -0
  328. package/lib-commonjs/components/DataGridRow/DataGridRow.js +20 -0
  329. package/lib-commonjs/components/DataGridRow/DataGridRow.js.map +1 -0
  330. package/lib-commonjs/components/DataGridRow/DataGridRow.types.js +6 -0
  331. package/lib-commonjs/components/DataGridRow/DataGridRow.types.js.map +1 -0
  332. package/lib-commonjs/components/DataGridRow/index.js +12 -0
  333. package/lib-commonjs/components/DataGridRow/index.js.map +1 -0
  334. package/lib-commonjs/components/DataGridRow/renderDataGridRow.js +28 -0
  335. package/lib-commonjs/components/DataGridRow/renderDataGridRow.js.map +1 -0
  336. package/lib-commonjs/components/DataGridRow/useDataGridRow.js +77 -0
  337. package/lib-commonjs/components/DataGridRow/useDataGridRow.js.map +1 -0
  338. package/lib-commonjs/components/DataGridRow/useDataGridRowStyles.js +25 -0
  339. package/lib-commonjs/components/DataGridRow/useDataGridRowStyles.js.map +1 -0
  340. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.js +20 -0
  341. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.js.map +1 -0
  342. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.types.js +6 -0
  343. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.types.js.map +1 -0
  344. package/lib-commonjs/components/DataGridSelectionCell/index.js +12 -0
  345. package/lib-commonjs/components/DataGridSelectionCell/index.js.map +1 -0
  346. package/lib-commonjs/components/DataGridSelectionCell/renderDataGridSelectionCell.js +15 -0
  347. package/lib-commonjs/components/DataGridSelectionCell/renderDataGridSelectionCell.js.map +1 -0
  348. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCell.js +54 -0
  349. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCell.js.map +1 -0
  350. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCellStyles.js +29 -0
  351. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCellStyles.js.map +1 -0
  352. package/lib-commonjs/components/Table/Table.js +1 -8
  353. package/lib-commonjs/components/Table/Table.js.map +1 -1
  354. package/lib-commonjs/components/Table/Table.types.js.map +1 -1
  355. package/lib-commonjs/components/Table/index.js +0 -6
  356. package/lib-commonjs/components/Table/index.js.map +1 -1
  357. package/lib-commonjs/components/Table/renderTable.js +2 -7
  358. package/lib-commonjs/components/Table/renderTable.js.map +1 -1
  359. package/lib-commonjs/components/Table/useTable.js +0 -5
  360. package/lib-commonjs/components/Table/useTable.js.map +1 -1
  361. package/lib-commonjs/components/Table/useTableContextValues.js +0 -3
  362. package/lib-commonjs/components/Table/useTableContextValues.js.map +1 -1
  363. package/lib-commonjs/components/Table/useTableStyles.js +26 -15
  364. package/lib-commonjs/components/Table/useTableStyles.js.map +1 -1
  365. package/lib-commonjs/components/TableBody/TableBody.js +1 -7
  366. package/lib-commonjs/components/TableBody/TableBody.js.map +1 -1
  367. package/lib-commonjs/components/TableBody/TableBody.types.js.map +1 -1
  368. package/lib-commonjs/components/TableBody/index.js +0 -6
  369. package/lib-commonjs/components/TableBody/index.js.map +1 -1
  370. package/lib-commonjs/components/TableBody/renderTableBody.js +3 -8
  371. package/lib-commonjs/components/TableBody/renderTableBody.js.map +1 -1
  372. package/lib-commonjs/components/TableBody/useTableBody.js +2 -7
  373. package/lib-commonjs/components/TableBody/useTableBody.js.map +1 -1
  374. package/lib-commonjs/components/TableBody/useTableBodyStyles.js +16 -11
  375. package/lib-commonjs/components/TableBody/useTableBodyStyles.js.map +1 -1
  376. package/lib-commonjs/components/TableCell/TableCell.js +1 -7
  377. package/lib-commonjs/components/TableCell/TableCell.js.map +1 -1
  378. package/lib-commonjs/components/TableCell/TableCell.types.js.map +1 -1
  379. package/lib-commonjs/components/TableCell/index.js +0 -6
  380. package/lib-commonjs/components/TableCell/index.js.map +1 -1
  381. package/lib-commonjs/components/TableCell/renderTableCell.js +2 -6
  382. package/lib-commonjs/components/TableCell/renderTableCell.js.map +1 -1
  383. package/lib-commonjs/components/TableCell/useTableCell.js +5 -8
  384. package/lib-commonjs/components/TableCell/useTableCell.js.map +1 -1
  385. package/lib-commonjs/components/TableCell/useTableCellStyles.js +58 -17
  386. package/lib-commonjs/components/TableCell/useTableCellStyles.js.map +1 -1
  387. package/lib-commonjs/components/TableCellActions/TableCellActions.js +1 -7
  388. package/lib-commonjs/components/TableCellActions/TableCellActions.js.map +1 -1
  389. package/lib-commonjs/components/TableCellActions/TableCellActions.types.js.map +1 -1
  390. package/lib-commonjs/components/TableCellActions/index.js +0 -6
  391. package/lib-commonjs/components/TableCellActions/index.js.map +1 -1
  392. package/lib-commonjs/components/TableCellActions/renderTableCellActions.js +3 -8
  393. package/lib-commonjs/components/TableCellActions/renderTableCellActions.js.map +1 -1
  394. package/lib-commonjs/components/TableCellActions/useTableCellActions.js +4 -8
  395. package/lib-commonjs/components/TableCellActions/useTableCellActions.js.map +1 -1
  396. package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.js +12 -25
  397. package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.js.map +1 -1
  398. package/lib-commonjs/components/TableCellLayout/TableCellLayout.js +3 -8
  399. package/lib-commonjs/components/TableCellLayout/TableCellLayout.js.map +1 -1
  400. package/lib-commonjs/components/TableCellLayout/TableCellLayout.types.js.map +1 -1
  401. package/lib-commonjs/components/TableCellLayout/index.js +0 -6
  402. package/lib-commonjs/components/TableCellLayout/index.js.map +1 -1
  403. package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js +14 -11
  404. package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js.map +1 -1
  405. package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js +14 -7
  406. package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js.map +1 -1
  407. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js +20 -0
  408. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -0
  409. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.js +41 -39
  410. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.js.map +1 -1
  411. package/lib-commonjs/components/TableHeader/TableHeader.js +1 -7
  412. package/lib-commonjs/components/TableHeader/TableHeader.js.map +1 -1
  413. package/lib-commonjs/components/TableHeader/TableHeader.types.js.map +1 -1
  414. package/lib-commonjs/components/TableHeader/index.js +0 -6
  415. package/lib-commonjs/components/TableHeader/index.js.map +1 -1
  416. package/lib-commonjs/components/TableHeader/renderTableHeader.js +6 -7
  417. package/lib-commonjs/components/TableHeader/renderTableHeader.js.map +1 -1
  418. package/lib-commonjs/components/TableHeader/useTableHeader.js +3 -16
  419. package/lib-commonjs/components/TableHeader/useTableHeader.js.map +1 -1
  420. package/lib-commonjs/components/TableHeader/useTableHeaderStyles.js +16 -12
  421. package/lib-commonjs/components/TableHeader/useTableHeaderStyles.js.map +1 -1
  422. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js +1 -7
  423. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js.map +1 -1
  424. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -1
  425. package/lib-commonjs/components/TableHeaderCell/index.js +0 -6
  426. package/lib-commonjs/components/TableHeaderCell/index.js.map +1 -1
  427. package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js +6 -8
  428. package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -1
  429. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js +12 -15
  430. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js.map +1 -1
  431. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js +83 -54
  432. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -1
  433. package/lib-commonjs/components/TableRow/TableRow.js +1 -7
  434. package/lib-commonjs/components/TableRow/TableRow.js.map +1 -1
  435. package/lib-commonjs/components/TableRow/TableRow.types.js.map +1 -1
  436. package/lib-commonjs/components/TableRow/index.js +0 -6
  437. package/lib-commonjs/components/TableRow/index.js.map +1 -1
  438. package/lib-commonjs/components/TableRow/renderTableRow.js +3 -8
  439. package/lib-commonjs/components/TableRow/renderTableRow.js.map +1 -1
  440. package/lib-commonjs/components/TableRow/useTableRow.js +11 -9
  441. package/lib-commonjs/components/TableRow/useTableRow.js.map +1 -1
  442. package/lib-commonjs/components/TableRow/useTableRowStyles.js +196 -33
  443. package/lib-commonjs/components/TableRow/useTableRowStyles.js.map +1 -1
  444. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js +1 -7
  445. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js.map +1 -1
  446. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -1
  447. package/lib-commonjs/components/TableSelectionCell/index.js +0 -6
  448. package/lib-commonjs/components/TableSelectionCell/index.js.map +1 -1
  449. package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js +6 -8
  450. package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -1
  451. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js +24 -18
  452. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
  453. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js +59 -30
  454. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -1
  455. package/lib-commonjs/contexts/columnIdContext.js +16 -0
  456. package/lib-commonjs/contexts/columnIdContext.js.map +1 -0
  457. package/lib-commonjs/contexts/dataGridContext.js +20 -0
  458. package/lib-commonjs/contexts/dataGridContext.js.map +1 -0
  459. package/lib-commonjs/contexts/rowIdContext.js +16 -0
  460. package/lib-commonjs/contexts/rowIdContext.js.map +1 -0
  461. package/lib-commonjs/contexts/tableContext.js +0 -5
  462. package/lib-commonjs/contexts/tableContext.js.map +1 -1
  463. package/lib-commonjs/contexts/tableHeaderContext.js +13 -0
  464. package/lib-commonjs/contexts/tableHeaderContext.js.map +1 -0
  465. package/lib-commonjs/hooks/createColumn.js +42 -0
  466. package/lib-commonjs/hooks/createColumn.js.map +1 -0
  467. package/lib-commonjs/hooks/index.js +4 -4
  468. package/lib-commonjs/hooks/index.js.map +1 -1
  469. package/lib-commonjs/hooks/selectionManager.js +16 -34
  470. package/lib-commonjs/hooks/selectionManager.js.map +1 -1
  471. package/lib-commonjs/hooks/types.js.map +1 -1
  472. package/lib-commonjs/hooks/useTableFeatures.js +42 -0
  473. package/lib-commonjs/hooks/useTableFeatures.js.map +1 -0
  474. package/lib-commonjs/hooks/useTableSelection.js +82 -0
  475. package/lib-commonjs/hooks/useTableSelection.js.map +1 -0
  476. package/lib-commonjs/hooks/useTableSort.js +93 -0
  477. package/lib-commonjs/hooks/useTableSort.js.map +1 -0
  478. package/lib-commonjs/index.js +252 -26
  479. package/lib-commonjs/index.js.map +1 -1
  480. package/package.json +30 -17
  481. package/lib/hooks/useSelection.js +0 -47
  482. package/lib/hooks/useSelection.js.map +0 -1
  483. package/lib/hooks/useSort.js +0 -72
  484. package/lib/hooks/useSort.js.map +0 -1
  485. package/lib/hooks/useTable.js +0 -87
  486. package/lib/hooks/useTable.js.map +0 -1
  487. package/lib/navigationModes/cell.js +0 -250
  488. package/lib/navigationModes/cell.js.map +0 -1
  489. package/lib/navigationModes/composite.js +0 -208
  490. package/lib/navigationModes/composite.js.map +0 -1
  491. package/lib/navigationModes/index.js +0 -3
  492. package/lib/navigationModes/index.js.map +0 -1
  493. package/lib/navigationModes/useNavigationMode.js +0 -42
  494. package/lib/navigationModes/useNavigationMode.js.map +0 -1
  495. package/lib-commonjs/hooks/useSelection.js +0 -59
  496. package/lib-commonjs/hooks/useSelection.js.map +0 -1
  497. package/lib-commonjs/hooks/useSort.js +0 -82
  498. package/lib-commonjs/hooks/useSort.js.map +0 -1
  499. package/lib-commonjs/hooks/useTable.js +0 -99
  500. package/lib-commonjs/hooks/useTable.js.map +0 -1
  501. package/lib-commonjs/navigationModes/cell.js +0 -259
  502. package/lib-commonjs/navigationModes/cell.js.map +0 -1
  503. package/lib-commonjs/navigationModes/composite.js +0 -217
  504. package/lib-commonjs/navigationModes/composite.js.map +0 -1
  505. package/lib-commonjs/navigationModes/index.js +0 -16
  506. package/lib-commonjs/navigationModes/index.js.map +0 -1
  507. package/lib-commonjs/navigationModes/useNavigationMode.js +0 -55
  508. package/lib-commonjs/navigationModes/useNavigationMode.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1077 @@
2
2
  "name": "@fluentui/react-table",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 15 Sep 2022 09:44:47 GMT",
5
+ "date": "Tue, 17 Jan 2023 12:22:15 GMT",
6
+ "tag": "@fluentui/react-table_v9.0.0-alpha.20",
7
+ "version": "9.0.0-alpha.20",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "lingfangao@hotmail.com",
12
+ "package": "@fluentui/react-table",
13
+ "commit": "0d265cf542add3b4895e3ba764bbb22be7843f45",
14
+ "comment": "BREAKING: API naming changes"
15
+ },
16
+ {
17
+ "author": "lingfangao@hotmail.com",
18
+ "package": "@fluentui/react-table",
19
+ "commit": "08ccb46dd03a8871c1234008a5a543cd53f579a9",
20
+ "comment": "BREAKING(DataGrid): render functions need to by typed"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-table",
25
+ "comment": "Bump @fluentui/react-avatar to v9.2.14",
26
+ "commit": "08ccb46dd03a8871c1234008a5a543cd53f579a9"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "date": "Mon, 16 Jan 2023 08:38:48 GMT",
33
+ "tag": "@fluentui/react-table_v9.0.0-alpha.19",
34
+ "version": "9.0.0-alpha.19",
35
+ "comments": {
36
+ "prerelease": [
37
+ {
38
+ "author": "lingfangao@hotmail.com",
39
+ "package": "@fluentui/react-table",
40
+ "commit": "10942a5764b9f4c599c279fa7da32d6ca1ac501c",
41
+ "comment": "feat: Export RowIdProvider"
42
+ },
43
+ {
44
+ "author": "lingfangao@hotmail.com",
45
+ "package": "@fluentui/react-table",
46
+ "commit": "ac636e8e2f5448a58343f51ad72f9fc5351e4b8e",
47
+ "comment": "fix(TableSelectionCell): Radios should not change selection on focus"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "@fluentui/react-table",
52
+ "comment": "Bump @fluentui/react-avatar to v9.2.13",
53
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
54
+ },
55
+ {
56
+ "author": "beachball",
57
+ "package": "@fluentui/react-table",
58
+ "comment": "Bump @fluentui/react-checkbox to v9.0.20",
59
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
60
+ },
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-table",
64
+ "comment": "Bump @fluentui/react-radio to v9.0.18",
65
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-table",
70
+ "comment": "Bump @fluentui/react-tabster to v9.3.7",
71
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
72
+ }
73
+ ],
74
+ "none": [
75
+ {
76
+ "author": "martinhochel@microsoft.com",
77
+ "package": "@fluentui/react-table",
78
+ "commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
79
+ "comment": "chore: migrate to packaged scripts"
80
+ },
81
+ {
82
+ "author": "lingfangao@hotmail.com",
83
+ "package": "@fluentui/react-table",
84
+ "commit": "e3377c295d3dd11293b6a79b8014e80bce473a14",
85
+ "comment": "chore: Add bundle size fixtures for react-table"
86
+ }
87
+ ]
88
+ }
89
+ },
90
+ {
91
+ "date": "Mon, 09 Jan 2023 21:51:24 GMT",
92
+ "tag": "@fluentui/react-table_v9.0.0-alpha.18",
93
+ "version": "9.0.0-alpha.18",
94
+ "comments": {
95
+ "prerelease": [
96
+ {
97
+ "author": "beachball",
98
+ "package": "@fluentui/react-table",
99
+ "comment": "Bump @fluentui/react-checkbox to v9.0.19",
100
+ "commit": "fb5708446f369a57f48b87a0141d6a651acddbde"
101
+ }
102
+ ]
103
+ }
104
+ },
105
+ {
106
+ "date": "Mon, 09 Jan 2023 14:35:00 GMT",
107
+ "tag": "@fluentui/react-table_v9.0.0-alpha.17",
108
+ "version": "9.0.0-alpha.17",
109
+ "comments": {
110
+ "prerelease": [
111
+ {
112
+ "author": "olfedias@microsoft.com",
113
+ "package": "@fluentui/react-table",
114
+ "commit": "73bd103d70370326286daee55dad5c1c2b9861a7",
115
+ "comment": "fix: remove Event type in selectionManager"
116
+ },
117
+ {
118
+ "author": "lingfangao@hotmail.com",
119
+ "package": "@fluentui/react-table",
120
+ "commit": "2bde4a96454105f8943284b590b6174ccb1aea94",
121
+ "comment": "refactor: Cleanup unused code"
122
+ },
123
+ {
124
+ "author": "lingfangao@hotmail.com",
125
+ "package": "@fluentui/react-table",
126
+ "commit": "87fcaf175c6588438c7f8dc2c2de5a4af5f94d1a",
127
+ "comment": "BREAKING(TableCellLayout): `wrapper` slot renamed to `content`"
128
+ },
129
+ {
130
+ "author": "beachball",
131
+ "package": "@fluentui/react-table",
132
+ "comment": "Bump @fluentui/react-aria to v9.3.5",
133
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
134
+ },
135
+ {
136
+ "author": "beachball",
137
+ "package": "@fluentui/react-table",
138
+ "comment": "Bump @fluentui/react-avatar to v9.2.12",
139
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
140
+ },
141
+ {
142
+ "author": "beachball",
143
+ "package": "@fluentui/react-table",
144
+ "comment": "Bump @fluentui/react-checkbox to v9.0.18",
145
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
146
+ },
147
+ {
148
+ "author": "beachball",
149
+ "package": "@fluentui/react-table",
150
+ "comment": "Bump @fluentui/react-context-selector to v9.1.5",
151
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
152
+ },
153
+ {
154
+ "author": "beachball",
155
+ "package": "@fluentui/react-table",
156
+ "comment": "Bump @fluentui/react-radio to v9.0.17",
157
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
158
+ },
159
+ {
160
+ "author": "beachball",
161
+ "package": "@fluentui/react-table",
162
+ "comment": "Bump @fluentui/react-tabster to v9.3.6",
163
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
164
+ },
165
+ {
166
+ "author": "beachball",
167
+ "package": "@fluentui/react-table",
168
+ "comment": "Bump @fluentui/react-utilities to v9.4.0",
169
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
170
+ }
171
+ ],
172
+ "none": [
173
+ {
174
+ "author": "olfedias@microsoft.com",
175
+ "package": "@fluentui/react-table",
176
+ "commit": "bffa36e0a7824f1e54d73907912473692c40d70b",
177
+ "comment": "docs: fix typo in Table.types.ts"
178
+ },
179
+ {
180
+ "author": "lingfangao@hotmail.com",
181
+ "package": "@fluentui/react-table",
182
+ "commit": "f514d1ff53ea0b2a6e959b3d457f341d7f68575e",
183
+ "comment": "docs: Fix typos in react-table docs"
184
+ }
185
+ ]
186
+ }
187
+ },
188
+ {
189
+ "date": "Wed, 04 Jan 2023 01:40:32 GMT",
190
+ "tag": "@fluentui/react-table_v9.0.0-alpha.16",
191
+ "version": "9.0.0-alpha.16",
192
+ "comments": {
193
+ "prerelease": [
194
+ {
195
+ "author": "olfedias@microsoft.com",
196
+ "package": "@fluentui/react-table",
197
+ "commit": "2c38f1e4ae07b2b60df596efe11015a68f166dbf",
198
+ "comment": "chore: Update Griffel to latest version"
199
+ },
200
+ {
201
+ "author": "lingfangao@hotmail.com",
202
+ "package": "@fluentui/react-table",
203
+ "commit": "ee58fac0ac94e1456e9319150c4b456f186aba56",
204
+ "comment": "refactor: render function children called in component render function"
205
+ },
206
+ {
207
+ "author": "lingfangao@hotmail.com",
208
+ "package": "@fluentui/react-table",
209
+ "commit": "47d4b0bec3fb3aa815bde1fd7fb67ecf85c97b5a",
210
+ "comment": "fix: DataGridSelection cell should focus on input, not cell"
211
+ },
212
+ {
213
+ "author": "beachball",
214
+ "package": "@fluentui/react-table",
215
+ "comment": "Bump @fluentui/react-aria to v9.3.4",
216
+ "commit": "3e322d15529451be153e97298873253e21af4082"
217
+ },
218
+ {
219
+ "author": "beachball",
220
+ "package": "@fluentui/react-table",
221
+ "comment": "Bump @fluentui/react-avatar to v9.2.11",
222
+ "commit": "3e322d15529451be153e97298873253e21af4082"
223
+ },
224
+ {
225
+ "author": "beachball",
226
+ "package": "@fluentui/react-table",
227
+ "comment": "Bump @fluentui/react-checkbox to v9.0.17",
228
+ "commit": "3e322d15529451be153e97298873253e21af4082"
229
+ },
230
+ {
231
+ "author": "beachball",
232
+ "package": "@fluentui/react-table",
233
+ "comment": "Bump @fluentui/react-context-selector to v9.1.4",
234
+ "commit": "3e322d15529451be153e97298873253e21af4082"
235
+ },
236
+ {
237
+ "author": "beachball",
238
+ "package": "@fluentui/react-table",
239
+ "comment": "Bump @fluentui/react-radio to v9.0.16",
240
+ "commit": "3e322d15529451be153e97298873253e21af4082"
241
+ },
242
+ {
243
+ "author": "beachball",
244
+ "package": "@fluentui/react-table",
245
+ "comment": "Bump @fluentui/react-tabster to v9.3.5",
246
+ "commit": "3e322d15529451be153e97298873253e21af4082"
247
+ },
248
+ {
249
+ "author": "beachball",
250
+ "package": "@fluentui/react-table",
251
+ "comment": "Bump @fluentui/react-utilities to v9.3.1",
252
+ "commit": "3e322d15529451be153e97298873253e21af4082"
253
+ },
254
+ {
255
+ "author": "beachball",
256
+ "package": "@fluentui/react-table",
257
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19",
258
+ "commit": "3e322d15529451be153e97298873253e21af4082"
259
+ }
260
+ ],
261
+ "none": [
262
+ {
263
+ "author": "martinhochel@microsoft.com",
264
+ "package": "@fluentui/react-table",
265
+ "commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
266
+ "comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
267
+ },
268
+ {
269
+ "author": "martinhochel@microsoft.com",
270
+ "package": "@fluentui/react-table",
271
+ "commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
272
+ "comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
273
+ }
274
+ ]
275
+ }
276
+ },
277
+ {
278
+ "date": "Wed, 21 Dec 2022 10:20:33 GMT",
279
+ "tag": "@fluentui/react-table_v9.0.0-alpha.15",
280
+ "version": "9.0.0-alpha.15",
281
+ "comments": {
282
+ "prerelease": [
283
+ {
284
+ "author": "beachball",
285
+ "package": "@fluentui/react-table",
286
+ "comment": "Bump @fluentui/react-avatar to v9.2.10",
287
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
288
+ },
289
+ {
290
+ "author": "beachball",
291
+ "package": "@fluentui/react-table",
292
+ "comment": "Bump @fluentui/react-checkbox to v9.0.16",
293
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
294
+ },
295
+ {
296
+ "author": "beachball",
297
+ "package": "@fluentui/react-table",
298
+ "comment": "Bump @fluentui/react-radio to v9.0.15",
299
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
300
+ },
301
+ {
302
+ "author": "beachball",
303
+ "package": "@fluentui/react-table",
304
+ "comment": "Bump @fluentui/react-tabster to v9.3.4",
305
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
306
+ },
307
+ {
308
+ "author": "beachball",
309
+ "package": "@fluentui/react-table",
310
+ "comment": "Bump @fluentui/react-theme to v9.1.5",
311
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
312
+ }
313
+ ]
314
+ }
315
+ },
316
+ {
317
+ "date": "Tue, 20 Dec 2022 14:59:28 GMT",
318
+ "tag": "@fluentui/react-table_v9.0.0-alpha.14",
319
+ "version": "9.0.0-alpha.14",
320
+ "comments": {
321
+ "prerelease": [
322
+ {
323
+ "author": "lingfangao@hotmail.com",
324
+ "package": "@fluentui/react-table",
325
+ "commit": "76054827c6b9ccc7ad73a818952f2d636ffc9e6d",
326
+ "comment": "fix: Explicit focus outline for TableHeaderCell and TableSelectionCell"
327
+ },
328
+ {
329
+ "author": "lingfangao@hotmail.com",
330
+ "package": "@fluentui/react-table",
331
+ "commit": "67a7284ac5934475134ce72af3965f3f9a223636",
332
+ "comment": "fix(DataGridSelectionCell): should render `aria-selected` on the cell"
333
+ },
334
+ {
335
+ "author": "lingfangao@hotmail.com",
336
+ "package": "@fluentui/react-table",
337
+ "commit": "622bcbbe42920f53466bed4ad998b67daac3d6d3",
338
+ "comment": "fix: DataGrid supports keyboard navigation by default"
339
+ },
340
+ {
341
+ "author": "lingfangao@hotmail.com",
342
+ "package": "@fluentui/react-table",
343
+ "commit": "c847712d9293db7028bc01e9ba4204e055ebbfb7",
344
+ "comment": "feat: Add row focus as unstable feature due to a11y unknowns"
345
+ },
346
+ {
347
+ "author": "lingfangao@hotmail.com",
348
+ "package": "@fluentui/react-table",
349
+ "commit": "b1f470d42273869bc4e10fefff6f08b90640092d",
350
+ "comment": "fix(DataGridRow): `children` type should only be render function"
351
+ },
352
+ {
353
+ "author": "lingfangao@hotmail.com",
354
+ "package": "@fluentui/react-table",
355
+ "commit": "dc96e9c54ac445396cd5e74812fd2ac1acdd15eb",
356
+ "comment": "fix: DataGridRow should prevent default on spacebar"
357
+ },
358
+ {
359
+ "author": "lingfangao@hotmail.com",
360
+ "package": "@fluentui/react-table",
361
+ "commit": "b0aab3b9647e55a355e5e1c0d4e4cf7cc7955fdb",
362
+ "comment": "feat: DataGrid supports custom row Ids"
363
+ },
364
+ {
365
+ "author": "lingfangao@hotmail.com",
366
+ "package": "@fluentui/react-table",
367
+ "commit": "ac32a5c210e34916f6990ebe4449621344ba0839",
368
+ "comment": "fix(TableHeaderCell): should render `aria-sort=\"none\"` if not sorted"
369
+ },
370
+ {
371
+ "author": "beachball",
372
+ "package": "@fluentui/react-table",
373
+ "comment": "Bump @fluentui/react-aria to v9.3.3",
374
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
375
+ },
376
+ {
377
+ "author": "beachball",
378
+ "package": "@fluentui/react-table",
379
+ "comment": "Bump @fluentui/react-avatar to v9.2.9",
380
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
381
+ },
382
+ {
383
+ "author": "beachball",
384
+ "package": "@fluentui/react-table",
385
+ "comment": "Bump @fluentui/react-checkbox to v9.0.15",
386
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
387
+ },
388
+ {
389
+ "author": "beachball",
390
+ "package": "@fluentui/react-table",
391
+ "comment": "Bump @fluentui/react-context-selector to v9.1.3",
392
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
393
+ },
394
+ {
395
+ "author": "beachball",
396
+ "package": "@fluentui/react-table",
397
+ "comment": "Bump @fluentui/react-radio to v9.0.14",
398
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
399
+ },
400
+ {
401
+ "author": "beachball",
402
+ "package": "@fluentui/react-table",
403
+ "comment": "Bump @fluentui/react-tabster to v9.3.3",
404
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
405
+ },
406
+ {
407
+ "author": "beachball",
408
+ "package": "@fluentui/react-table",
409
+ "comment": "Bump @fluentui/react-theme to v9.1.4",
410
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
411
+ },
412
+ {
413
+ "author": "beachball",
414
+ "package": "@fluentui/react-table",
415
+ "comment": "Bump @fluentui/react-utilities to v9.3.0",
416
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
417
+ }
418
+ ],
419
+ "none": [
420
+ {
421
+ "author": "lingfangao@hotmail.com",
422
+ "package": "@fluentui/react-table",
423
+ "commit": "81c1239976fbf6dbc3c3c160462eac1b3ddfd0a8",
424
+ "comment": "docs: Table examples generally navigate with tab"
425
+ }
426
+ ]
427
+ }
428
+ },
429
+ {
430
+ "date": "Mon, 05 Dec 2022 18:29:31 GMT",
431
+ "tag": "@fluentui/react-table_v9.0.0-alpha.13",
432
+ "version": "9.0.0-alpha.13",
433
+ "comments": {
434
+ "prerelease": [
435
+ {
436
+ "author": "lingfangao@hotmail.com",
437
+ "package": "@fluentui/react-table",
438
+ "commit": "dfe430630188bb7e2fe2ddc15b5269fcfd1bf20b",
439
+ "comment": "fix: TableHeaderCell design fixes"
440
+ },
441
+ {
442
+ "author": "lingfangao@hotmail.com",
443
+ "package": "@fluentui/react-table",
444
+ "commit": "f64a67537afb35cb5007c16160d0a1deb656d875",
445
+ "comment": "BREAKING(useTable): `onSelectionChange` returns data object"
446
+ },
447
+ {
448
+ "author": "lingfangao@hotmail.com",
449
+ "package": "@fluentui/react-table",
450
+ "commit": "f7d7f82f6b3117ce163c6fee84b03c8774bed95f",
451
+ "comment": "docs: Update docstrings for props"
452
+ },
453
+ {
454
+ "author": "lingfangao@hotmail.com",
455
+ "package": "@fluentui/react-table",
456
+ "commit": "35de934c73603a2fc9416327ab1cf89283f76c5f",
457
+ "comment": "fix: Various design fixes to Table components"
458
+ },
459
+ {
460
+ "author": "lingfangao@hotmail.com",
461
+ "package": "@fluentui/react-table",
462
+ "commit": "6f450a1713c40d5429306ab1f6d76bc19e65c295",
463
+ "comment": "fix: Cell actions should have correct background when row focused within"
464
+ },
465
+ {
466
+ "author": "lingfangao@hotmail.com",
467
+ "package": "@fluentui/react-table",
468
+ "commit": "3ca7917d818ccde26b1dc172241f88a6e8f322b3",
469
+ "comment": "fix: Table row height is determined by cells"
470
+ },
471
+ {
472
+ "author": "lingfangao@hotmail.com",
473
+ "package": "@fluentui/react-table",
474
+ "commit": "f1a66a851248f1a2140cb387a62c19468afd3365",
475
+ "comment": "BREAKING: change `smaller` size to `extra-small`"
476
+ },
477
+ {
478
+ "author": "lingfangao@hotmail.com",
479
+ "package": "@fluentui/react-table",
480
+ "commit": "2d9a9f3147deea6d0c0a60747e1074faf47968c3",
481
+ "comment": "fix(TableCellLayout): Icon sizes in should match design spec"
482
+ },
483
+ {
484
+ "author": "lingfangao@hotmail.com",
485
+ "package": "@fluentui/react-table",
486
+ "commit": "31d2fa0e30649e991925fec10d49ac8fae2dc585",
487
+ "comment": "feat: `DataGrid` supports row sorting"
488
+ },
489
+ {
490
+ "author": "lingfangao@hotmail.com",
491
+ "package": "@fluentui/react-table",
492
+ "commit": "8811bf9bf2f5d2c6591ffdaa0a4024456f66bfbd",
493
+ "comment": "BREAKING: rename useTable->useTableFeatures, useSelection->useTableSelection, useSort->useTableSort"
494
+ },
495
+ {
496
+ "author": "lingfangao@hotmail.com",
497
+ "package": "@fluentui/react-table",
498
+ "commit": "6b90a6e90a71bb3ca36a6bc633d0d535ccb717e9",
499
+ "comment": "feat: DataGrid supports selection"
500
+ },
501
+ {
502
+ "author": "beachball",
503
+ "package": "@fluentui/react-table",
504
+ "comment": "Bump @fluentui/react-avatar to v9.2.8",
505
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
506
+ },
507
+ {
508
+ "author": "beachball",
509
+ "package": "@fluentui/react-table",
510
+ "comment": "Bump @fluentui/react-checkbox to v9.0.14",
511
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
512
+ },
513
+ {
514
+ "author": "beachball",
515
+ "package": "@fluentui/react-table",
516
+ "comment": "Bump @fluentui/react-radio to v9.0.13",
517
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
518
+ },
519
+ {
520
+ "author": "beachball",
521
+ "package": "@fluentui/react-table",
522
+ "comment": "Bump @fluentui/react-tabster to v9.3.2",
523
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
524
+ },
525
+ {
526
+ "author": "beachball",
527
+ "package": "@fluentui/react-table",
528
+ "comment": "Bump @fluentui/react-theme to v9.1.3",
529
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
530
+ }
531
+ ],
532
+ "none": [
533
+ {
534
+ "author": "lingfangao@hotmail.com",
535
+ "package": "@fluentui/react-table",
536
+ "commit": "8607e1bc8dbc03f9416f1c24d403f04ca91cd597",
537
+ "comment": "docs: Improve `DataGrid` docs"
538
+ }
539
+ ]
540
+ }
541
+ },
542
+ {
543
+ "date": "Thu, 17 Nov 2022 23:05:47 GMT",
544
+ "tag": "@fluentui/react-table_v9.0.0-alpha.12",
545
+ "version": "9.0.0-alpha.12",
546
+ "comments": {
547
+ "none": [
548
+ {
549
+ "author": "martinhochel@microsoft.com",
550
+ "package": "@fluentui/react-table",
551
+ "commit": "ea768501802d65d63ddc63fff3816fb6b5008ae4",
552
+ "comment": "chore: update package scaffold"
553
+ }
554
+ ],
555
+ "prerelease": [
556
+ {
557
+ "author": "lingfangao@hotmail.com",
558
+ "package": "@fluentui/react-table",
559
+ "commit": "aef719f25d85a8d83f3d6b44d61b75d55f805ee8",
560
+ "comment": "BREAKING: `sortable` prop no longer enables `TableHeader` navigation"
561
+ },
562
+ {
563
+ "author": "tigeroakes@microsoft.com",
564
+ "package": "@fluentui/react-table",
565
+ "commit": "2c004858da092ef9ae0aad2f96b313ec0102913d",
566
+ "comment": "fix: Match hover background colors between table row and cell actions"
567
+ },
568
+ {
569
+ "author": "lingfangao@hotmail.com",
570
+ "package": "@fluentui/react-table",
571
+ "commit": "b49ab600353c77e48b67cc23bcb422535cad1b83",
572
+ "comment": "BREAKING: Headless table callbacks require event"
573
+ },
574
+ {
575
+ "author": "beachball",
576
+ "package": "@fluentui/react-table",
577
+ "comment": "Bump @fluentui/react-aria to v9.3.2",
578
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
579
+ },
580
+ {
581
+ "author": "beachball",
582
+ "package": "@fluentui/react-table",
583
+ "comment": "Bump @fluentui/react-avatar to v9.2.7",
584
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
585
+ },
586
+ {
587
+ "author": "beachball",
588
+ "package": "@fluentui/react-table",
589
+ "comment": "Bump @fluentui/react-checkbox to v9.0.13",
590
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
591
+ },
592
+ {
593
+ "author": "beachball",
594
+ "package": "@fluentui/react-table",
595
+ "comment": "Bump @fluentui/react-context-selector to v9.1.2",
596
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
597
+ },
598
+ {
599
+ "author": "beachball",
600
+ "package": "@fluentui/react-table",
601
+ "comment": "Bump @fluentui/react-radio to v9.0.12",
602
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
603
+ },
604
+ {
605
+ "author": "beachball",
606
+ "package": "@fluentui/react-table",
607
+ "comment": "Bump @fluentui/react-tabster to v9.3.1",
608
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
609
+ },
610
+ {
611
+ "author": "beachball",
612
+ "package": "@fluentui/react-table",
613
+ "comment": "Bump @fluentui/react-utilities to v9.2.2",
614
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
615
+ }
616
+ ]
617
+ }
618
+ },
619
+ {
620
+ "date": "Fri, 11 Nov 2022 14:57:41 GMT",
621
+ "tag": "@fluentui/react-table_v9.0.0-alpha.11",
622
+ "version": "9.0.0-alpha.11",
623
+ "comments": {
624
+ "none": [
625
+ {
626
+ "author": "martinhochel@microsoft.com",
627
+ "package": "@fluentui/react-table",
628
+ "commit": "87859b052155ca206ef3540a2a9623803f6e2b93",
629
+ "comment": "test: replace deprecated module.parent with require.main within isConformance"
630
+ }
631
+ ],
632
+ "prerelease": [
633
+ {
634
+ "author": "lingfangao@hotmail.com",
635
+ "package": "@fluentui/react-table",
636
+ "commit": "48c85202ce3c230fdc83bde3ce494f952632b16f",
637
+ "comment": "feat: Implement child render function for DataGrid rows"
638
+ },
639
+ {
640
+ "author": "lingfangao@hotmail.com",
641
+ "package": "@fluentui/react-table",
642
+ "commit": "3088a39d2d18156388378ac9a629e48277347ae7",
643
+ "comment": "feat: Implement `focusMode` prop for DataGrid, apply role=\"grid\" correctly"
644
+ },
645
+ {
646
+ "author": "lingfangao@hotmail.com",
647
+ "package": "@fluentui/react-table",
648
+ "commit": "6645c490bdc0ae1147e46890bef10759934457d3",
649
+ "comment": "BREAKING: ColumnDefinition type is stricter, use createColumn to create column definition. Implments render function for DataGridRow."
650
+ },
651
+ {
652
+ "author": "beachball",
653
+ "package": "@fluentui/react-table",
654
+ "comment": "Bump @fluentui/react-aria to v9.3.1",
655
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
656
+ },
657
+ {
658
+ "author": "beachball",
659
+ "package": "@fluentui/react-table",
660
+ "comment": "Bump @fluentui/react-avatar to v9.2.6",
661
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
662
+ },
663
+ {
664
+ "author": "beachball",
665
+ "package": "@fluentui/react-table",
666
+ "comment": "Bump @fluentui/react-checkbox to v9.0.12",
667
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
668
+ },
669
+ {
670
+ "author": "beachball",
671
+ "package": "@fluentui/react-table",
672
+ "comment": "Bump @fluentui/react-context-selector to v9.1.1",
673
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
674
+ },
675
+ {
676
+ "author": "beachball",
677
+ "package": "@fluentui/react-table",
678
+ "comment": "Bump @fluentui/react-radio to v9.0.11",
679
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
680
+ },
681
+ {
682
+ "author": "beachball",
683
+ "package": "@fluentui/react-table",
684
+ "comment": "Bump @fluentui/react-tabster to v9.3.0",
685
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
686
+ },
687
+ {
688
+ "author": "beachball",
689
+ "package": "@fluentui/react-table",
690
+ "comment": "Bump @fluentui/react-theme to v9.1.2",
691
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
692
+ },
693
+ {
694
+ "author": "beachball",
695
+ "package": "@fluentui/react-table",
696
+ "comment": "Bump @fluentui/react-utilities to v9.2.1",
697
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
698
+ },
699
+ {
700
+ "author": "beachball",
701
+ "package": "@fluentui/react-table",
702
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.18",
703
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
704
+ }
705
+ ]
706
+ }
707
+ },
708
+ {
709
+ "date": "Wed, 02 Nov 2022 14:27:34 GMT",
710
+ "tag": "@fluentui/react-table_v9.0.0-alpha.10",
711
+ "version": "9.0.0-alpha.10",
712
+ "comments": {
713
+ "prerelease": [
714
+ {
715
+ "author": "lingfangao@hotmail.com",
716
+ "package": "@fluentui/react-table",
717
+ "commit": "072f0419c79f8bd672e5c251fdd4a08e5bf9d4e8",
718
+ "comment": "fix(useTable): sort should adapt to enhanced row types"
719
+ }
720
+ ]
721
+ }
722
+ },
723
+ {
724
+ "date": "Wed, 02 Nov 2022 11:58:02 GMT",
725
+ "tag": "@fluentui/react-table_v9.0.0-alpha.9",
726
+ "version": "9.0.0-alpha.9",
727
+ "comments": {
728
+ "none": [
729
+ {
730
+ "author": "lingfangao@hotmail.com",
731
+ "package": "@fluentui/react-table",
732
+ "commit": "870f51fc39736198871559d6e12ece5663b0525f",
733
+ "comment": "chore: Updates folder structure"
734
+ }
735
+ ],
736
+ "prerelease": [
737
+ {
738
+ "author": "olfedias@microsoft.com",
739
+ "package": "@fluentui/react-table",
740
+ "commit": "c619ba066f11a8654e95375314824ba6b81b003e",
741
+ "comment": "chore: Update Griffel to latest version"
742
+ },
743
+ {
744
+ "author": "lingfangao@hotmail.com",
745
+ "package": "@fluentui/react-table",
746
+ "commit": "acce21b88a9bbd59651661d87cc964ce2ff5ff28",
747
+ "comment": "feat: Initialize DataGrid components"
748
+ },
749
+ {
750
+ "author": "beachball",
751
+ "package": "@fluentui/react-table",
752
+ "comment": "Bump @fluentui/react-aria to v9.3.0",
753
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
754
+ },
755
+ {
756
+ "author": "beachball",
757
+ "package": "@fluentui/react-table",
758
+ "comment": "Bump @fluentui/react-avatar to v9.2.5",
759
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
760
+ },
761
+ {
762
+ "author": "beachball",
763
+ "package": "@fluentui/react-table",
764
+ "comment": "Bump @fluentui/react-checkbox to v9.0.11",
765
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
766
+ },
767
+ {
768
+ "author": "beachball",
769
+ "package": "@fluentui/react-table",
770
+ "comment": "Bump @fluentui/react-radio to v9.0.10",
771
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
772
+ },
773
+ {
774
+ "author": "beachball",
775
+ "package": "@fluentui/react-table",
776
+ "comment": "Bump @fluentui/react-tabster to v9.2.1",
777
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
778
+ },
779
+ {
780
+ "author": "beachball",
781
+ "package": "@fluentui/react-table",
782
+ "comment": "Bump @fluentui/react-utilities to v9.2.0",
783
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
784
+ },
785
+ {
786
+ "author": "beachball",
787
+ "package": "@fluentui/react-table",
788
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17",
789
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
790
+ }
791
+ ]
792
+ }
793
+ },
794
+ {
795
+ "date": "Tue, 25 Oct 2022 00:35:40 GMT",
796
+ "tag": "@fluentui/react-table_v9.0.0-alpha.8",
797
+ "version": "9.0.0-alpha.8",
798
+ "comments": {
799
+ "prerelease": [
800
+ {
801
+ "author": "beachball",
802
+ "package": "@fluentui/react-table",
803
+ "comment": "Bump @fluentui/react-avatar to v9.2.4",
804
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
805
+ },
806
+ {
807
+ "author": "beachball",
808
+ "package": "@fluentui/react-table",
809
+ "comment": "Bump @fluentui/react-checkbox to v9.0.10",
810
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
811
+ }
812
+ ]
813
+ }
814
+ },
815
+ {
816
+ "date": "Thu, 20 Oct 2022 08:39:49 GMT",
817
+ "tag": "@fluentui/react-table_v9.0.0-alpha.7",
818
+ "version": "9.0.0-alpha.7",
819
+ "comments": {
820
+ "prerelease": [
821
+ {
822
+ "author": "lingfangao@hotmail.com",
823
+ "package": "@fluentui/react-table",
824
+ "commit": "15b7b57ee484f8d500b3c7afb9aa46c17a9beaeb",
825
+ "comment": "fix: Row and header interactive styles are separate"
826
+ },
827
+ {
828
+ "author": "lingfangao@hotmail.com",
829
+ "package": "@fluentui/react-table",
830
+ "commit": "bd212e73e6a6e3c92495b793c6e682c24f27b6db",
831
+ "comment": "feat(TableSelectionCell): Use Radio component, adds subtle and hidden"
832
+ },
833
+ {
834
+ "author": "mgodbolt@microsoft.com",
835
+ "package": "@fluentui/react-table",
836
+ "commit": "17096b3137d9d3e7c7443ddc3ce0738b2910a334",
837
+ "comment": "chore: Bump peer deps to support React 18"
838
+ },
839
+ {
840
+ "author": "olfedias@microsoft.com",
841
+ "package": "@fluentui/react-table",
842
+ "commit": "06865dada128321804646582f564ee86d835d174",
843
+ "comment": "chore: Update Griffel to latest version"
844
+ },
845
+ {
846
+ "author": "lingfangao@hotmail.com",
847
+ "package": "@fluentui/react-table",
848
+ "commit": "66bf477e336a9248e138e31ee6e58d9672da8f8f",
849
+ "comment": "feat: Add `appearance` prop to `TableRow`"
850
+ },
851
+ {
852
+ "author": "beachball",
853
+ "package": "@fluentui/react-table",
854
+ "comment": "Bump @fluentui/react-aria to v9.2.3",
855
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
856
+ },
857
+ {
858
+ "author": "beachball",
859
+ "package": "@fluentui/react-table",
860
+ "comment": "Bump @fluentui/react-avatar to v9.2.3",
861
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
862
+ },
863
+ {
864
+ "author": "beachball",
865
+ "package": "@fluentui/react-table",
866
+ "comment": "Bump @fluentui/react-checkbox to v9.0.9",
867
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
868
+ },
869
+ {
870
+ "author": "beachball",
871
+ "package": "@fluentui/react-table",
872
+ "comment": "Bump @fluentui/react-radio to v9.0.9",
873
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
874
+ },
875
+ {
876
+ "author": "beachball",
877
+ "package": "@fluentui/react-table",
878
+ "comment": "Bump @fluentui/react-tabster to v9.2.0",
879
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
880
+ },
881
+ {
882
+ "author": "beachball",
883
+ "package": "@fluentui/react-table",
884
+ "comment": "Bump @fluentui/react-theme to v9.1.1",
885
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
886
+ },
887
+ {
888
+ "author": "beachball",
889
+ "package": "@fluentui/react-table",
890
+ "comment": "Bump @fluentui/react-utilities to v9.1.2",
891
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
892
+ },
893
+ {
894
+ "author": "beachball",
895
+ "package": "@fluentui/react-table",
896
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16",
897
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
898
+ }
899
+ ],
900
+ "none": [
901
+ {
902
+ "author": "lingfangao@hotmail.com",
903
+ "package": "@fluentui/react-table",
904
+ "commit": "5280dfeda349453f42b51ae49c9d128bc322c609",
905
+ "comment": "docs: Remove row navigation"
906
+ },
907
+ {
908
+ "author": "lingfangao@hotmail.com",
909
+ "package": "@fluentui/react-table",
910
+ "commit": "433209a6b5e8adb7619d3658c1606ec8adb02745",
911
+ "comment": "docs: Update keyboard navigation examples to use `useArrowNavigationGroup`"
912
+ }
913
+ ]
914
+ }
915
+ },
916
+ {
917
+ "date": "Thu, 13 Oct 2022 12:56:30 GMT",
918
+ "tag": "@fluentui/react-table_v9.0.0-alpha.6",
919
+ "version": "9.0.0-alpha.6",
920
+ "comments": {
921
+ "prerelease": [
922
+ {
923
+ "author": "beachball",
924
+ "package": "@fluentui/react-table",
925
+ "comment": "Bump @fluentui/react-avatar to v9.2.2",
926
+ "commit": "77301c97c0539b9ebf891642eb0a077d1aeae9a6"
927
+ }
928
+ ]
929
+ }
930
+ },
931
+ {
932
+ "date": "Thu, 13 Oct 2022 11:03:01 GMT",
933
+ "tag": "@fluentui/react-table_v9.0.0-alpha.5",
934
+ "version": "9.0.0-alpha.5",
935
+ "comments": {
936
+ "prerelease": [
937
+ {
938
+ "author": "olfedias@microsoft.com",
939
+ "package": "@fluentui/react-table",
940
+ "commit": "1a527d440e0497ef8046b3ce240492241e7a04ac",
941
+ "comment": "chore: Update Griffel to latest version"
942
+ },
943
+ {
944
+ "author": "lingfangao@hotmail.com",
945
+ "package": "@fluentui/react-table",
946
+ "commit": "33559052b672f787b021bd2fbc9826e88ce2a2de",
947
+ "comment": "BREAKING: refactor `useTable` to be composable"
948
+ },
949
+ {
950
+ "author": "beachball",
951
+ "package": "@fluentui/react-table",
952
+ "comment": "Bump @fluentui/react-aria to v9.2.2",
953
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
954
+ },
955
+ {
956
+ "author": "beachball",
957
+ "package": "@fluentui/react-table",
958
+ "comment": "Bump @fluentui/react-avatar to v9.2.1",
959
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
960
+ },
961
+ {
962
+ "author": "beachball",
963
+ "package": "@fluentui/react-table",
964
+ "comment": "Bump @fluentui/react-checkbox to v9.0.8",
965
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
966
+ },
967
+ {
968
+ "author": "beachball",
969
+ "package": "@fluentui/react-table",
970
+ "comment": "Bump @fluentui/react-tabster to v9.1.3",
971
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
972
+ },
973
+ {
974
+ "author": "beachball",
975
+ "package": "@fluentui/react-table",
976
+ "comment": "Bump @fluentui/react-utilities to v9.1.1",
977
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
978
+ },
979
+ {
980
+ "author": "beachball",
981
+ "package": "@fluentui/react-table",
982
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.15",
983
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
984
+ }
985
+ ]
986
+ }
987
+ },
988
+ {
989
+ "date": "Mon, 03 Oct 2022 22:24:41 GMT",
990
+ "tag": "@fluentui/react-table_v9.0.0-alpha.4",
991
+ "version": "9.0.0-alpha.4",
992
+ "comments": {
993
+ "prerelease": [
994
+ {
995
+ "author": "lingfangao@hotmail.com",
996
+ "package": "@fluentui/react-table",
997
+ "commit": "0bece748c51ef324f23ddce3e83f0f796bfced5f",
998
+ "comment": "feat: `noNativeElements` renders a flex layout"
999
+ },
1000
+ {
1001
+ "author": "lingfangao@hotmail.com",
1002
+ "package": "@fluentui/react-table",
1003
+ "commit": "9357de4af136dfb5e5ed37b68318024235aa4ba3",
1004
+ "comment": "feat: Use AvatarContext to override avatar size"
1005
+ },
1006
+ {
1007
+ "author": "beachball",
1008
+ "package": "@fluentui/react-table",
1009
+ "comment": "Bump @fluentui/react-aria to v9.2.1",
1010
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
1011
+ },
1012
+ {
1013
+ "author": "beachball",
1014
+ "package": "@fluentui/react-table",
1015
+ "comment": "Bump @fluentui/react-avatar to v9.2.0",
1016
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
1017
+ },
1018
+ {
1019
+ "author": "beachball",
1020
+ "package": "@fluentui/react-table",
1021
+ "comment": "Bump @fluentui/react-checkbox to v9.0.7",
1022
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
1023
+ },
1024
+ {
1025
+ "author": "beachball",
1026
+ "package": "@fluentui/react-table",
1027
+ "comment": "Bump @fluentui/react-tabster to v9.1.2",
1028
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
1029
+ }
1030
+ ],
1031
+ "none": [
1032
+ {
1033
+ "author": "lingfangao@hotmail.com",
1034
+ "package": "@fluentui/react-table",
1035
+ "commit": "cd88ecf2e2407c308c8364b9167440b9bac171f3",
1036
+ "comment": "chore: Migrate react-table to use new build"
1037
+ }
1038
+ ]
1039
+ }
1040
+ },
1041
+ {
1042
+ "date": "Tue, 20 Sep 2022 20:55:42 GMT",
1043
+ "tag": "@fluentui/react-table_v9.0.0-alpha.3",
1044
+ "version": "9.0.0-alpha.3",
1045
+ "comments": {
1046
+ "prerelease": [
1047
+ {
1048
+ "author": "lingfangao@hotmail.com",
1049
+ "package": "@fluentui/react-table",
1050
+ "commit": "30d0ecb1a37bd941f01be0bc4a673374c422752b",
1051
+ "comment": "feat: Adds `visible` prop to `TableCellActions`"
1052
+ },
1053
+ {
1054
+ "author": "lingfangao@hotmail.com",
1055
+ "package": "@fluentui/react-table",
1056
+ "commit": "cd9c220e8ca2c6ab0bc4b598801ce38eee21688f",
1057
+ "comment": "fix: `TableCellActions` displays correctly inside `TableHeaderCell`"
1058
+ },
1059
+ {
1060
+ "author": "beachball",
1061
+ "package": "@fluentui/react-table",
1062
+ "comment": "Bump @fluentui/react-checkbox to v9.0.6",
1063
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
1064
+ },
1065
+ {
1066
+ "author": "beachball",
1067
+ "package": "@fluentui/react-table",
1068
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14",
1069
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
1070
+ }
1071
+ ]
1072
+ }
1073
+ },
1074
+ {
1075
+ "date": "Thu, 15 Sep 2022 09:49:26 GMT",
6
1076
  "tag": "@fluentui/react-table_v9.0.0-alpha.2",
7
1077
  "version": "9.0.0-alpha.2",
8
1078
  "comments": {