@fluentui/react-table 9.2.12 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (557) hide show
  1. package/CHANGELOG.json +193 -1
  2. package/CHANGELOG.md +51 -2
  3. package/dist/index.d.ts +15 -1
  4. package/lib/DataGrid.js +0 -1
  5. package/lib/DataGrid.js.map +1 -1
  6. package/lib/DataGridBody.js +0 -1
  7. package/lib/DataGridBody.js.map +1 -1
  8. package/lib/DataGridCell.js +0 -1
  9. package/lib/DataGridCell.js.map +1 -1
  10. package/lib/DataGridHeader.js +0 -1
  11. package/lib/DataGridHeader.js.map +1 -1
  12. package/lib/DataGridHeaderCell.js +0 -1
  13. package/lib/DataGridHeaderCell.js.map +1 -1
  14. package/lib/DataGridRow.js +0 -1
  15. package/lib/DataGridRow.js.map +1 -1
  16. package/lib/DataGridSelectionCell.js +0 -1
  17. package/lib/DataGridSelectionCell.js.map +1 -1
  18. package/lib/Table.js +0 -1
  19. package/lib/Table.js.map +1 -1
  20. package/lib/TableBody.js +0 -1
  21. package/lib/TableBody.js.map +1 -1
  22. package/lib/TableCell.js +0 -1
  23. package/lib/TableCell.js.map +1 -1
  24. package/lib/TableCellActions.js +0 -1
  25. package/lib/TableCellActions.js.map +1 -1
  26. package/lib/TableCellLayout.js +0 -1
  27. package/lib/TableCellLayout.js.map +1 -1
  28. package/lib/TableCellPrimaryLayout.js +0 -1
  29. package/lib/TableCellPrimaryLayout.js.map +1 -1
  30. package/lib/TableHeader.js +0 -1
  31. package/lib/TableHeader.js.map +1 -1
  32. package/lib/TableHeaderCell.js +0 -1
  33. package/lib/TableHeaderCell.js.map +1 -1
  34. package/lib/TableResizeHandle.js +0 -1
  35. package/lib/TableResizeHandle.js.map +1 -1
  36. package/lib/TableRow.js +0 -1
  37. package/lib/TableRow.js.map +1 -1
  38. package/lib/TableSelectionCell.js +0 -1
  39. package/lib/TableSelectionCell.js.map +1 -1
  40. package/lib/components/DataGrid/DataGrid.js +5 -7
  41. package/lib/components/DataGrid/DataGrid.js.map +1 -1
  42. package/lib/components/DataGrid/DataGrid.types.js +0 -1
  43. package/lib/components/DataGrid/DataGrid.types.js.map +1 -1
  44. package/lib/components/DataGrid/index.js +0 -1
  45. package/lib/components/DataGrid/index.js.map +1 -1
  46. package/lib/components/DataGrid/renderDataGrid.js +4 -6
  47. package/lib/components/DataGrid/renderDataGrid.js.map +1 -1
  48. package/lib/components/DataGrid/useDataGrid.js +72 -89
  49. package/lib/components/DataGrid/useDataGrid.js.map +1 -1
  50. package/lib/components/DataGrid/useDataGridContextValues.js +12 -13
  51. package/lib/components/DataGrid/useDataGridContextValues.js.map +1 -1
  52. package/lib/components/DataGrid/useDataGridStyles.styles.js.map +1 -1
  53. package/lib/components/DataGridBody/DataGridBody.js +5 -7
  54. package/lib/components/DataGridBody/DataGridBody.js.map +1 -1
  55. package/lib/components/DataGridBody/DataGridBody.types.js +0 -1
  56. package/lib/components/DataGridBody/DataGridBody.types.js.map +1 -1
  57. package/lib/components/DataGridBody/index.js +0 -1
  58. package/lib/components/DataGridBody/index.js.map +1 -1
  59. package/lib/components/DataGridBody/renderDataGridBody.js +7 -12
  60. package/lib/components/DataGridBody/renderDataGridBody.js.map +1 -1
  61. package/lib/components/DataGridBody/useDataGridBody.js +15 -19
  62. package/lib/components/DataGridBody/useDataGridBody.js.map +1 -1
  63. package/lib/components/DataGridBody/useDataGridBodyStyles.styles.js.map +1 -1
  64. package/lib/components/DataGridCell/DataGridCell.js +5 -7
  65. package/lib/components/DataGridCell/DataGridCell.js.map +1 -1
  66. package/lib/components/DataGridCell/DataGridCell.types.js +1 -2
  67. package/lib/components/DataGridCell/DataGridCell.types.js.map +1 -1
  68. package/lib/components/DataGridCell/index.js +0 -1
  69. package/lib/components/DataGridCell/index.js.map +1 -1
  70. package/lib/components/DataGridCell/renderDataGridCell.js +2 -4
  71. package/lib/components/DataGridCell/renderDataGridCell.js.map +1 -1
  72. package/lib/components/DataGridCell/useDataGridCell.js +18 -14
  73. package/lib/components/DataGridCell/useDataGridCell.js.map +1 -1
  74. package/lib/components/DataGridCell/useDataGridCellStyles.styles.js.map +1 -1
  75. package/lib/components/DataGridHeader/DataGridHeader.js +5 -7
  76. package/lib/components/DataGridHeader/DataGridHeader.js.map +1 -1
  77. package/lib/components/DataGridHeader/DataGridHeader.types.js +1 -2
  78. package/lib/components/DataGridHeader/DataGridHeader.types.js.map +1 -1
  79. package/lib/components/DataGridHeader/index.js +0 -1
  80. package/lib/components/DataGridHeader/index.js.map +1 -1
  81. package/lib/components/DataGridHeader/renderDataGridHeader.js +2 -4
  82. package/lib/components/DataGridHeader/renderDataGridHeader.js.map +1 -1
  83. package/lib/components/DataGridHeader/useDataGridHeader.js +5 -7
  84. package/lib/components/DataGridHeader/useDataGridHeader.js.map +1 -1
  85. package/lib/components/DataGridHeader/useDataGridHeaderStyles.styles.js.map +1 -1
  86. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.js +5 -7
  87. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.js.map +1 -1
  88. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.types.js +1 -2
  89. package/lib/components/DataGridHeaderCell/DataGridHeaderCell.types.js.map +1 -1
  90. package/lib/components/DataGridHeaderCell/index.js +0 -1
  91. package/lib/components/DataGridHeaderCell/index.js.map +1 -1
  92. package/lib/components/DataGridHeaderCell/renderDataGridHeaderCell.js +2 -4
  93. package/lib/components/DataGridHeaderCell/renderDataGridHeaderCell.js.map +1 -1
  94. package/lib/components/DataGridHeaderCell/useDataGridHeaderCell.js +23 -26
  95. package/lib/components/DataGridHeaderCell/useDataGridHeaderCell.js.map +1 -1
  96. package/lib/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.js.map +1 -1
  97. package/lib/components/DataGridRow/DataGridRow.js +5 -7
  98. package/lib/components/DataGridRow/DataGridRow.js.map +1 -1
  99. package/lib/components/DataGridRow/DataGridRow.types.js +0 -1
  100. package/lib/components/DataGridRow/DataGridRow.types.js.map +1 -1
  101. package/lib/components/DataGridRow/index.js +0 -1
  102. package/lib/components/DataGridRow/index.js.map +1 -1
  103. package/lib/components/DataGridRow/renderDataGridRow.js +7 -12
  104. package/lib/components/DataGridRow/renderDataGridRow.js.map +1 -1
  105. package/lib/components/DataGridRow/useDataGridRow.js +54 -56
  106. package/lib/components/DataGridRow/useDataGridRow.js.map +1 -1
  107. package/lib/components/DataGridRow/useDataGridRowStyles.styles.js.map +1 -1
  108. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.js +5 -7
  109. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.js.map +1 -1
  110. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.types.js +1 -2
  111. package/lib/components/DataGridSelectionCell/DataGridSelectionCell.types.js.map +1 -1
  112. package/lib/components/DataGridSelectionCell/index.js +0 -1
  113. package/lib/components/DataGridSelectionCell/index.js.map +1 -1
  114. package/lib/components/DataGridSelectionCell/renderDataGridSelectionCell.js +2 -4
  115. package/lib/components/DataGridSelectionCell/renderDataGridSelectionCell.js.map +1 -1
  116. package/lib/components/DataGridSelectionCell/useDataGridSelectionCell.js +31 -33
  117. package/lib/components/DataGridSelectionCell/useDataGridSelectionCell.js.map +1 -1
  118. package/lib/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.js.map +1 -1
  119. package/lib/components/Table/Table.js +5 -7
  120. package/lib/components/Table/Table.js.map +1 -1
  121. package/lib/components/Table/Table.types.js +1 -2
  122. package/lib/components/Table/Table.types.js.map +1 -1
  123. package/lib/components/Table/index.js +0 -1
  124. package/lib/components/Table/index.js.map +1 -1
  125. package/lib/components/Table/renderTable.js +6 -11
  126. package/lib/components/Table/renderTable.js.map +1 -1
  127. package/lib/components/Table/useTable.js +17 -19
  128. package/lib/components/Table/useTable.js.map +1 -1
  129. package/lib/components/Table/useTableContextValues.js +13 -14
  130. package/lib/components/Table/useTableContextValues.js.map +1 -1
  131. package/lib/components/Table/useTableStyles.styles.js.map +1 -1
  132. package/lib/components/TableBody/TableBody.js +5 -7
  133. package/lib/components/TableBody/TableBody.js.map +1 -1
  134. package/lib/components/TableBody/TableBody.types.js +1 -2
  135. package/lib/components/TableBody/TableBody.types.js.map +1 -1
  136. package/lib/components/TableBody/index.js +0 -1
  137. package/lib/components/TableBody/index.js.map +1 -1
  138. package/lib/components/TableBody/renderTableBody.js +4 -9
  139. package/lib/components/TableBody/renderTableBody.js.map +1 -1
  140. package/lib/components/TableBody/useTableBody.js +15 -19
  141. package/lib/components/TableBody/useTableBody.js.map +1 -1
  142. package/lib/components/TableBody/useTableBodyStyles.styles.js.map +1 -1
  143. package/lib/components/TableCell/TableCell.js +5 -7
  144. package/lib/components/TableCell/TableCell.js.map +1 -1
  145. package/lib/components/TableCell/TableCell.types.js +1 -2
  146. package/lib/components/TableCell/TableCell.types.js.map +1 -1
  147. package/lib/components/TableCell/index.js +0 -1
  148. package/lib/components/TableCell/index.js.map +1 -1
  149. package/lib/components/TableCell/renderTableCell.js +4 -9
  150. package/lib/components/TableCell/renderTableCell.js.map +1 -1
  151. package/lib/components/TableCell/useTableCell.js +16 -21
  152. package/lib/components/TableCell/useTableCell.js.map +1 -1
  153. package/lib/components/TableCell/useTableCellStyles.styles.js.map +1 -1
  154. package/lib/components/TableCellActions/TableCellActions.js +5 -7
  155. package/lib/components/TableCellActions/TableCellActions.js.map +1 -1
  156. package/lib/components/TableCellActions/TableCellActions.types.js +1 -2
  157. package/lib/components/TableCellActions/TableCellActions.types.js.map +1 -1
  158. package/lib/components/TableCellActions/index.js +0 -1
  159. package/lib/components/TableCellActions/index.js.map +1 -1
  160. package/lib/components/TableCellActions/renderTableCellActions.js +4 -9
  161. package/lib/components/TableCellActions/renderTableCellActions.js.map +1 -1
  162. package/lib/components/TableCellActions/useTableCellActions.js +12 -14
  163. package/lib/components/TableCellActions/useTableCellActions.js.map +1 -1
  164. package/lib/components/TableCellActions/useTableCellActionsStyles.styles.js.map +1 -1
  165. package/lib/components/TableCellLayout/TableCellLayout.js +5 -7
  166. package/lib/components/TableCellLayout/TableCellLayout.js.map +1 -1
  167. package/lib/components/TableCellLayout/TableCellLayout.types.js +1 -2
  168. package/lib/components/TableCellLayout/TableCellLayout.types.js.map +1 -1
  169. package/lib/components/TableCellLayout/index.js +0 -1
  170. package/lib/components/TableCellLayout/index.js.map +1 -1
  171. package/lib/components/TableCellLayout/renderTableCellLayout.js +6 -11
  172. package/lib/components/TableCellLayout/renderTableCellLayout.js.map +1 -1
  173. package/lib/components/TableCellLayout/useTableCellLayout.js +30 -34
  174. package/lib/components/TableCellLayout/useTableCellLayout.js.map +1 -1
  175. package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js +9 -10
  176. package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -1
  177. package/lib/components/TableCellLayout/useTableCellLayoutStyles.styles.js.map +1 -1
  178. package/lib/components/TableHeader/TableHeader.js +5 -7
  179. package/lib/components/TableHeader/TableHeader.js.map +1 -1
  180. package/lib/components/TableHeader/TableHeader.types.js +1 -2
  181. package/lib/components/TableHeader/TableHeader.types.js.map +1 -1
  182. package/lib/components/TableHeader/index.js +0 -1
  183. package/lib/components/TableHeader/index.js.map +1 -1
  184. package/lib/components/TableHeader/renderTableHeader.js +6 -11
  185. package/lib/components/TableHeader/renderTableHeader.js.map +1 -1
  186. package/lib/components/TableHeader/useTableHeader.js +15 -19
  187. package/lib/components/TableHeader/useTableHeader.js.map +1 -1
  188. package/lib/components/TableHeader/useTableHeaderStyles.styles.js.map +1 -1
  189. package/lib/components/TableHeaderCell/TableHeaderCell.js +5 -7
  190. package/lib/components/TableHeaderCell/TableHeaderCell.js.map +1 -1
  191. package/lib/components/TableHeaderCell/TableHeaderCell.types.js +1 -2
  192. package/lib/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -1
  193. package/lib/components/TableHeaderCell/index.js +0 -1
  194. package/lib/components/TableHeaderCell/index.js.map +1 -1
  195. package/lib/components/TableHeaderCell/renderTableHeaderCell.js +4 -9
  196. package/lib/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -1
  197. package/lib/components/TableHeaderCell/useTableHeaderCell.js +45 -52
  198. package/lib/components/TableHeaderCell/useTableHeaderCell.js.map +1 -1
  199. package/lib/components/TableHeaderCell/useTableHeaderCellStyles.styles.js +11 -2
  200. package/lib/components/TableHeaderCell/useTableHeaderCellStyles.styles.js.map +1 -1
  201. package/lib/components/TableResizeHandle/TableResizeHandle.js +5 -7
  202. package/lib/components/TableResizeHandle/TableResizeHandle.js.map +1 -1
  203. package/lib/components/TableResizeHandle/TableResizeHandle.types.js +1 -2
  204. package/lib/components/TableResizeHandle/TableResizeHandle.types.js.map +1 -1
  205. package/lib/components/TableResizeHandle/index.js +0 -1
  206. package/lib/components/TableResizeHandle/index.js.map +1 -1
  207. package/lib/components/TableResizeHandle/renderTableResizeHandle.js +4 -9
  208. package/lib/components/TableResizeHandle/renderTableResizeHandle.js.map +1 -1
  209. package/lib/components/TableResizeHandle/useTableResizeHandle.js +16 -18
  210. package/lib/components/TableResizeHandle/useTableResizeHandle.js.map +1 -1
  211. package/lib/components/TableResizeHandle/useTableResizeHandleStyles.styles.js.map +1 -1
  212. package/lib/components/TableRow/TableRow.js +5 -7
  213. package/lib/components/TableRow/TableRow.js.map +1 -1
  214. package/lib/components/TableRow/TableRow.types.js +1 -2
  215. package/lib/components/TableRow/TableRow.types.js.map +1 -1
  216. package/lib/components/TableRow/index.js +0 -1
  217. package/lib/components/TableRow/index.js.map +1 -1
  218. package/lib/components/TableRow/renderTableRow.js +4 -9
  219. package/lib/components/TableRow/renderTableRow.js.map +1 -1
  220. package/lib/components/TableRow/useTableRow.js +22 -27
  221. package/lib/components/TableRow/useTableRow.js.map +1 -1
  222. package/lib/components/TableRow/useTableRowStyles.styles.js +6 -8
  223. package/lib/components/TableRow/useTableRowStyles.styles.js.map +1 -1
  224. package/lib/components/TableSelectionCell/TableSelectionCell.js +5 -7
  225. package/lib/components/TableSelectionCell/TableSelectionCell.js.map +1 -1
  226. package/lib/components/TableSelectionCell/TableSelectionCell.types.js +1 -2
  227. package/lib/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -1
  228. package/lib/components/TableSelectionCell/index.js +0 -1
  229. package/lib/components/TableSelectionCell/index.js.map +1 -1
  230. package/lib/components/TableSelectionCell/renderTableSelectionCell.js +4 -9
  231. package/lib/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -1
  232. package/lib/components/TableSelectionCell/useTableSelectionCell.js +32 -41
  233. package/lib/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
  234. package/lib/components/TableSelectionCell/useTableSelectionCellStyles.styles.js.map +1 -1
  235. package/lib/contexts/columnIdContext.js +2 -3
  236. package/lib/contexts/columnIdContext.js.map +1 -1
  237. package/lib/contexts/dataGridContext.js +7 -8
  238. package/lib/contexts/dataGridContext.js.map +1 -1
  239. package/lib/contexts/rowIdContext.js +2 -3
  240. package/lib/contexts/rowIdContext.js.map +1 -1
  241. package/lib/contexts/tableContext.js +5 -6
  242. package/lib/contexts/tableContext.js.map +1 -1
  243. package/lib/contexts/tableHeaderContext.js +2 -3
  244. package/lib/contexts/tableHeaderContext.js.map +1 -1
  245. package/lib/hooks/createColumn.js +21 -28
  246. package/lib/hooks/createColumn.js.map +1 -1
  247. package/lib/hooks/index.js +0 -1
  248. package/lib/hooks/index.js.map +1 -1
  249. package/lib/hooks/selectionManager.js +71 -68
  250. package/lib/hooks/selectionManager.js.map +1 -1
  251. package/lib/hooks/types.js +0 -1
  252. package/lib/hooks/types.js.map +1 -1
  253. package/lib/hooks/useKeyboardResizing.js +96 -87
  254. package/lib/hooks/useKeyboardResizing.js.map +1 -1
  255. package/lib/hooks/useMeasureElement.js +42 -40
  256. package/lib/hooks/useMeasureElement.js.map +1 -1
  257. package/lib/hooks/useTableColumnResizeMouseHandler.js +64 -61
  258. package/lib/hooks/useTableColumnResizeMouseHandler.js.map +1 -1
  259. package/lib/hooks/useTableColumnResizeState.js +100 -105
  260. package/lib/hooks/useTableColumnResizeState.js.map +1 -1
  261. package/lib/hooks/useTableColumnSizing.js +74 -74
  262. package/lib/hooks/useTableColumnSizing.js.map +1 -1
  263. package/lib/hooks/useTableFeatures.js +30 -35
  264. package/lib/hooks/useTableFeatures.js.map +1 -1
  265. package/lib/hooks/useTableSelection.js +64 -66
  266. package/lib/hooks/useTableSelection.js.map +1 -1
  267. package/lib/hooks/useTableSort.js +68 -76
  268. package/lib/hooks/useTableSort.js.map +1 -1
  269. package/lib/index.js +1 -2
  270. package/lib/index.js.map +1 -1
  271. package/lib/utils/columnResizeUtils.js +104 -108
  272. package/lib/utils/columnResizeUtils.js.map +1 -1
  273. package/lib-commonjs/DataGrid.js +0 -3
  274. package/lib-commonjs/DataGrid.js.map +1 -1
  275. package/lib-commonjs/DataGridBody.js +0 -3
  276. package/lib-commonjs/DataGridBody.js.map +1 -1
  277. package/lib-commonjs/DataGridCell.js +0 -3
  278. package/lib-commonjs/DataGridCell.js.map +1 -1
  279. package/lib-commonjs/DataGridHeader.js +0 -3
  280. package/lib-commonjs/DataGridHeader.js.map +1 -1
  281. package/lib-commonjs/DataGridHeaderCell.js +0 -3
  282. package/lib-commonjs/DataGridHeaderCell.js.map +1 -1
  283. package/lib-commonjs/DataGridRow.js +0 -3
  284. package/lib-commonjs/DataGridRow.js.map +1 -1
  285. package/lib-commonjs/DataGridSelectionCell.js +0 -3
  286. package/lib-commonjs/DataGridSelectionCell.js.map +1 -1
  287. package/lib-commonjs/Table.js +0 -3
  288. package/lib-commonjs/Table.js.map +1 -1
  289. package/lib-commonjs/TableBody.js +0 -3
  290. package/lib-commonjs/TableBody.js.map +1 -1
  291. package/lib-commonjs/TableCell.js +0 -3
  292. package/lib-commonjs/TableCell.js.map +1 -1
  293. package/lib-commonjs/TableCellActions.js +0 -3
  294. package/lib-commonjs/TableCellActions.js.map +1 -1
  295. package/lib-commonjs/TableCellLayout.js +0 -3
  296. package/lib-commonjs/TableCellLayout.js.map +1 -1
  297. package/lib-commonjs/TableCellPrimaryLayout.js +0 -3
  298. package/lib-commonjs/TableCellPrimaryLayout.js.map +1 -1
  299. package/lib-commonjs/TableHeader.js +0 -3
  300. package/lib-commonjs/TableHeader.js.map +1 -1
  301. package/lib-commonjs/TableHeaderCell.js +0 -3
  302. package/lib-commonjs/TableHeaderCell.js.map +1 -1
  303. package/lib-commonjs/TableResizeHandle.js +0 -3
  304. package/lib-commonjs/TableResizeHandle.js.map +1 -1
  305. package/lib-commonjs/TableRow.js +0 -3
  306. package/lib-commonjs/TableRow.js.map +1 -1
  307. package/lib-commonjs/TableSelectionCell.js +0 -3
  308. package/lib-commonjs/TableSelectionCell.js.map +1 -1
  309. package/lib-commonjs/components/DataGrid/DataGrid.js +1 -3
  310. package/lib-commonjs/components/DataGrid/DataGrid.js.map +1 -1
  311. package/lib-commonjs/components/DataGrid/DataGrid.types.js +0 -3
  312. package/lib-commonjs/components/DataGrid/DataGrid.types.js.map +1 -1
  313. package/lib-commonjs/components/DataGrid/index.js +0 -3
  314. package/lib-commonjs/components/DataGrid/index.js.map +1 -1
  315. package/lib-commonjs/components/DataGrid/renderDataGrid.js +1 -3
  316. package/lib-commonjs/components/DataGrid/renderDataGrid.js.map +1 -1
  317. package/lib-commonjs/components/DataGrid/useDataGrid.js +4 -5
  318. package/lib-commonjs/components/DataGrid/useDataGrid.js.map +1 -1
  319. package/lib-commonjs/components/DataGrid/useDataGridContextValues.js +1 -3
  320. package/lib-commonjs/components/DataGrid/useDataGridContextValues.js.map +1 -1
  321. package/lib-commonjs/components/DataGrid/useDataGridStyles.styles.js +0 -2
  322. package/lib-commonjs/components/DataGrid/useDataGridStyles.styles.js.map +1 -1
  323. package/lib-commonjs/components/DataGridBody/DataGridBody.js +1 -3
  324. package/lib-commonjs/components/DataGridBody/DataGridBody.js.map +1 -1
  325. package/lib-commonjs/components/DataGridBody/DataGridBody.types.js +0 -3
  326. package/lib-commonjs/components/DataGridBody/DataGridBody.types.js.map +1 -1
  327. package/lib-commonjs/components/DataGridBody/index.js +0 -3
  328. package/lib-commonjs/components/DataGridBody/index.js.map +1 -1
  329. package/lib-commonjs/components/DataGridBody/renderDataGridBody.js +1 -3
  330. package/lib-commonjs/components/DataGridBody/renderDataGridBody.js.map +1 -1
  331. package/lib-commonjs/components/DataGridBody/useDataGridBody.js +1 -3
  332. package/lib-commonjs/components/DataGridBody/useDataGridBody.js.map +1 -1
  333. package/lib-commonjs/components/DataGridBody/useDataGridBodyStyles.styles.js +0 -2
  334. package/lib-commonjs/components/DataGridBody/useDataGridBodyStyles.styles.js.map +1 -1
  335. package/lib-commonjs/components/DataGridCell/DataGridCell.js +1 -3
  336. package/lib-commonjs/components/DataGridCell/DataGridCell.js.map +1 -1
  337. package/lib-commonjs/components/DataGridCell/DataGridCell.types.js +0 -3
  338. package/lib-commonjs/components/DataGridCell/DataGridCell.types.js.map +1 -1
  339. package/lib-commonjs/components/DataGridCell/index.js +0 -3
  340. package/lib-commonjs/components/DataGridCell/index.js.map +1 -1
  341. package/lib-commonjs/components/DataGridCell/renderDataGridCell.js +1 -3
  342. package/lib-commonjs/components/DataGridCell/renderDataGridCell.js.map +1 -1
  343. package/lib-commonjs/components/DataGridCell/useDataGridCell.js +7 -3
  344. package/lib-commonjs/components/DataGridCell/useDataGridCell.js.map +1 -1
  345. package/lib-commonjs/components/DataGridCell/useDataGridCellStyles.styles.js +0 -2
  346. package/lib-commonjs/components/DataGridCell/useDataGridCellStyles.styles.js.map +1 -1
  347. package/lib-commonjs/components/DataGridHeader/DataGridHeader.js +1 -3
  348. package/lib-commonjs/components/DataGridHeader/DataGridHeader.js.map +1 -1
  349. package/lib-commonjs/components/DataGridHeader/DataGridHeader.types.js +0 -3
  350. package/lib-commonjs/components/DataGridHeader/DataGridHeader.types.js.map +1 -1
  351. package/lib-commonjs/components/DataGridHeader/index.js +0 -3
  352. package/lib-commonjs/components/DataGridHeader/index.js.map +1 -1
  353. package/lib-commonjs/components/DataGridHeader/renderDataGridHeader.js +1 -3
  354. package/lib-commonjs/components/DataGridHeader/renderDataGridHeader.js.map +1 -1
  355. package/lib-commonjs/components/DataGridHeader/useDataGridHeader.js +1 -3
  356. package/lib-commonjs/components/DataGridHeader/useDataGridHeader.js.map +1 -1
  357. package/lib-commonjs/components/DataGridHeader/useDataGridHeaderStyles.styles.js +0 -2
  358. package/lib-commonjs/components/DataGridHeader/useDataGridHeaderStyles.styles.js.map +1 -1
  359. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.js +1 -3
  360. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.js.map +1 -1
  361. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.types.js +0 -3
  362. package/lib-commonjs/components/DataGridHeaderCell/DataGridHeaderCell.types.js.map +1 -1
  363. package/lib-commonjs/components/DataGridHeaderCell/index.js +0 -3
  364. package/lib-commonjs/components/DataGridHeaderCell/index.js.map +1 -1
  365. package/lib-commonjs/components/DataGridHeaderCell/renderDataGridHeaderCell.js +1 -3
  366. package/lib-commonjs/components/DataGridHeaderCell/renderDataGridHeaderCell.js.map +1 -1
  367. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCell.js +2 -3
  368. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCell.js.map +1 -1
  369. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.js +0 -2
  370. package/lib-commonjs/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.js.map +1 -1
  371. package/lib-commonjs/components/DataGridRow/DataGridRow.js +1 -3
  372. package/lib-commonjs/components/DataGridRow/DataGridRow.js.map +1 -1
  373. package/lib-commonjs/components/DataGridRow/DataGridRow.types.js +0 -3
  374. package/lib-commonjs/components/DataGridRow/DataGridRow.types.js.map +1 -1
  375. package/lib-commonjs/components/DataGridRow/index.js +0 -3
  376. package/lib-commonjs/components/DataGridRow/index.js.map +1 -1
  377. package/lib-commonjs/components/DataGridRow/renderDataGridRow.js +1 -3
  378. package/lib-commonjs/components/DataGridRow/renderDataGridRow.js.map +1 -1
  379. package/lib-commonjs/components/DataGridRow/useDataGridRow.js +1 -3
  380. package/lib-commonjs/components/DataGridRow/useDataGridRow.js.map +1 -1
  381. package/lib-commonjs/components/DataGridRow/useDataGridRowStyles.styles.js +0 -2
  382. package/lib-commonjs/components/DataGridRow/useDataGridRowStyles.styles.js.map +1 -1
  383. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.js +1 -3
  384. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.js.map +1 -1
  385. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.types.js +0 -3
  386. package/lib-commonjs/components/DataGridSelectionCell/DataGridSelectionCell.types.js.map +1 -1
  387. package/lib-commonjs/components/DataGridSelectionCell/index.js +0 -3
  388. package/lib-commonjs/components/DataGridSelectionCell/index.js.map +1 -1
  389. package/lib-commonjs/components/DataGridSelectionCell/renderDataGridSelectionCell.js +1 -3
  390. package/lib-commonjs/components/DataGridSelectionCell/renderDataGridSelectionCell.js.map +1 -1
  391. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCell.js +1 -3
  392. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCell.js.map +1 -1
  393. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.js +0 -2
  394. package/lib-commonjs/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.js.map +1 -1
  395. package/lib-commonjs/components/Table/Table.js +1 -3
  396. package/lib-commonjs/components/Table/Table.js.map +1 -1
  397. package/lib-commonjs/components/Table/Table.types.js +0 -3
  398. package/lib-commonjs/components/Table/Table.types.js.map +1 -1
  399. package/lib-commonjs/components/Table/index.js +0 -3
  400. package/lib-commonjs/components/Table/index.js.map +1 -1
  401. package/lib-commonjs/components/Table/renderTable.js +1 -3
  402. package/lib-commonjs/components/Table/renderTable.js.map +1 -1
  403. package/lib-commonjs/components/Table/useTable.js +1 -3
  404. package/lib-commonjs/components/Table/useTable.js.map +1 -1
  405. package/lib-commonjs/components/Table/useTableContextValues.js +1 -3
  406. package/lib-commonjs/components/Table/useTableContextValues.js.map +1 -1
  407. package/lib-commonjs/components/Table/useTableStyles.styles.js +0 -2
  408. package/lib-commonjs/components/Table/useTableStyles.styles.js.map +1 -1
  409. package/lib-commonjs/components/TableBody/TableBody.js +1 -3
  410. package/lib-commonjs/components/TableBody/TableBody.js.map +1 -1
  411. package/lib-commonjs/components/TableBody/TableBody.types.js +0 -3
  412. package/lib-commonjs/components/TableBody/TableBody.types.js.map +1 -1
  413. package/lib-commonjs/components/TableBody/index.js +0 -3
  414. package/lib-commonjs/components/TableBody/index.js.map +1 -1
  415. package/lib-commonjs/components/TableBody/renderTableBody.js +1 -3
  416. package/lib-commonjs/components/TableBody/renderTableBody.js.map +1 -1
  417. package/lib-commonjs/components/TableBody/useTableBody.js +1 -3
  418. package/lib-commonjs/components/TableBody/useTableBody.js.map +1 -1
  419. package/lib-commonjs/components/TableBody/useTableBodyStyles.styles.js +0 -2
  420. package/lib-commonjs/components/TableBody/useTableBodyStyles.styles.js.map +1 -1
  421. package/lib-commonjs/components/TableCell/TableCell.js +1 -3
  422. package/lib-commonjs/components/TableCell/TableCell.js.map +1 -1
  423. package/lib-commonjs/components/TableCell/TableCell.types.js +0 -3
  424. package/lib-commonjs/components/TableCell/TableCell.types.js.map +1 -1
  425. package/lib-commonjs/components/TableCell/index.js +0 -3
  426. package/lib-commonjs/components/TableCell/index.js.map +1 -1
  427. package/lib-commonjs/components/TableCell/renderTableCell.js +1 -3
  428. package/lib-commonjs/components/TableCell/renderTableCell.js.map +1 -1
  429. package/lib-commonjs/components/TableCell/useTableCell.js +1 -3
  430. package/lib-commonjs/components/TableCell/useTableCell.js.map +1 -1
  431. package/lib-commonjs/components/TableCell/useTableCellStyles.styles.js +0 -2
  432. package/lib-commonjs/components/TableCell/useTableCellStyles.styles.js.map +1 -1
  433. package/lib-commonjs/components/TableCellActions/TableCellActions.js +1 -3
  434. package/lib-commonjs/components/TableCellActions/TableCellActions.js.map +1 -1
  435. package/lib-commonjs/components/TableCellActions/TableCellActions.types.js +0 -3
  436. package/lib-commonjs/components/TableCellActions/TableCellActions.types.js.map +1 -1
  437. package/lib-commonjs/components/TableCellActions/index.js +0 -3
  438. package/lib-commonjs/components/TableCellActions/index.js.map +1 -1
  439. package/lib-commonjs/components/TableCellActions/renderTableCellActions.js +1 -3
  440. package/lib-commonjs/components/TableCellActions/renderTableCellActions.js.map +1 -1
  441. package/lib-commonjs/components/TableCellActions/useTableCellActions.js +1 -3
  442. package/lib-commonjs/components/TableCellActions/useTableCellActions.js.map +1 -1
  443. package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.styles.js +0 -2
  444. package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.styles.js.map +1 -1
  445. package/lib-commonjs/components/TableCellLayout/TableCellLayout.js +1 -3
  446. package/lib-commonjs/components/TableCellLayout/TableCellLayout.js.map +1 -1
  447. package/lib-commonjs/components/TableCellLayout/TableCellLayout.types.js +0 -3
  448. package/lib-commonjs/components/TableCellLayout/TableCellLayout.types.js.map +1 -1
  449. package/lib-commonjs/components/TableCellLayout/index.js +0 -3
  450. package/lib-commonjs/components/TableCellLayout/index.js.map +1 -1
  451. package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js +1 -3
  452. package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js.map +1 -1
  453. package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js +1 -3
  454. package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js.map +1 -1
  455. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js +1 -3
  456. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -1
  457. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.styles.js +0 -2
  458. package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.styles.js.map +1 -1
  459. package/lib-commonjs/components/TableHeader/TableHeader.js +1 -3
  460. package/lib-commonjs/components/TableHeader/TableHeader.js.map +1 -1
  461. package/lib-commonjs/components/TableHeader/TableHeader.types.js +0 -3
  462. package/lib-commonjs/components/TableHeader/TableHeader.types.js.map +1 -1
  463. package/lib-commonjs/components/TableHeader/index.js +0 -3
  464. package/lib-commonjs/components/TableHeader/index.js.map +1 -1
  465. package/lib-commonjs/components/TableHeader/renderTableHeader.js +1 -3
  466. package/lib-commonjs/components/TableHeader/renderTableHeader.js.map +1 -1
  467. package/lib-commonjs/components/TableHeader/useTableHeader.js +1 -3
  468. package/lib-commonjs/components/TableHeader/useTableHeader.js.map +1 -1
  469. package/lib-commonjs/components/TableHeader/useTableHeaderStyles.styles.js +0 -2
  470. package/lib-commonjs/components/TableHeader/useTableHeaderStyles.styles.js.map +1 -1
  471. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js +1 -3
  472. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js.map +1 -1
  473. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.types.js +0 -3
  474. package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -1
  475. package/lib-commonjs/components/TableHeaderCell/index.js +0 -3
  476. package/lib-commonjs/components/TableHeaderCell/index.js.map +1 -1
  477. package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js +1 -3
  478. package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -1
  479. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js +6 -10
  480. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js.map +1 -1
  481. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.styles.js +29 -3
  482. package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.styles.js.map +1 -1
  483. package/lib-commonjs/components/TableResizeHandle/TableResizeHandle.js +1 -3
  484. package/lib-commonjs/components/TableResizeHandle/TableResizeHandle.js.map +1 -1
  485. package/lib-commonjs/components/TableResizeHandle/TableResizeHandle.types.js +0 -3
  486. package/lib-commonjs/components/TableResizeHandle/TableResizeHandle.types.js.map +1 -1
  487. package/lib-commonjs/components/TableResizeHandle/index.js +0 -3
  488. package/lib-commonjs/components/TableResizeHandle/index.js.map +1 -1
  489. package/lib-commonjs/components/TableResizeHandle/renderTableResizeHandle.js +1 -3
  490. package/lib-commonjs/components/TableResizeHandle/renderTableResizeHandle.js.map +1 -1
  491. package/lib-commonjs/components/TableResizeHandle/useTableResizeHandle.js +1 -3
  492. package/lib-commonjs/components/TableResizeHandle/useTableResizeHandle.js.map +1 -1
  493. package/lib-commonjs/components/TableResizeHandle/useTableResizeHandleStyles.styles.js +0 -2
  494. package/lib-commonjs/components/TableResizeHandle/useTableResizeHandleStyles.styles.js.map +1 -1
  495. package/lib-commonjs/components/TableRow/TableRow.js +1 -3
  496. package/lib-commonjs/components/TableRow/TableRow.js.map +1 -1
  497. package/lib-commonjs/components/TableRow/TableRow.types.js +0 -3
  498. package/lib-commonjs/components/TableRow/TableRow.types.js.map +1 -1
  499. package/lib-commonjs/components/TableRow/index.js +0 -3
  500. package/lib-commonjs/components/TableRow/index.js.map +1 -1
  501. package/lib-commonjs/components/TableRow/renderTableRow.js +1 -3
  502. package/lib-commonjs/components/TableRow/renderTableRow.js.map +1 -1
  503. package/lib-commonjs/components/TableRow/useTableRow.js +1 -3
  504. package/lib-commonjs/components/TableRow/useTableRow.js.map +1 -1
  505. package/lib-commonjs/components/TableRow/useTableRowStyles.styles.js +12 -13
  506. package/lib-commonjs/components/TableRow/useTableRowStyles.styles.js.map +1 -1
  507. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js +1 -3
  508. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js.map +1 -1
  509. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.types.js +0 -3
  510. package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -1
  511. package/lib-commonjs/components/TableSelectionCell/index.js +0 -3
  512. package/lib-commonjs/components/TableSelectionCell/index.js.map +1 -1
  513. package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js +1 -3
  514. package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -1
  515. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js +1 -3
  516. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
  517. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.styles.js +0 -2
  518. package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.styles.js.map +1 -1
  519. package/lib-commonjs/contexts/columnIdContext.js +1 -3
  520. package/lib-commonjs/contexts/columnIdContext.js.map +1 -1
  521. package/lib-commonjs/contexts/dataGridContext.js +2 -4
  522. package/lib-commonjs/contexts/dataGridContext.js.map +1 -1
  523. package/lib-commonjs/contexts/rowIdContext.js +1 -3
  524. package/lib-commonjs/contexts/rowIdContext.js.map +1 -1
  525. package/lib-commonjs/contexts/tableContext.js +1 -3
  526. package/lib-commonjs/contexts/tableContext.js.map +1 -1
  527. package/lib-commonjs/contexts/tableHeaderContext.js +1 -3
  528. package/lib-commonjs/contexts/tableHeaderContext.js.map +1 -1
  529. package/lib-commonjs/hooks/createColumn.js +1 -3
  530. package/lib-commonjs/hooks/createColumn.js.map +1 -1
  531. package/lib-commonjs/hooks/index.js +0 -3
  532. package/lib-commonjs/hooks/index.js.map +1 -1
  533. package/lib-commonjs/hooks/selectionManager.js +1 -3
  534. package/lib-commonjs/hooks/selectionManager.js.map +1 -1
  535. package/lib-commonjs/hooks/types.js +0 -3
  536. package/lib-commonjs/hooks/types.js.map +1 -1
  537. package/lib-commonjs/hooks/useKeyboardResizing.js +17 -18
  538. package/lib-commonjs/hooks/useKeyboardResizing.js.map +1 -1
  539. package/lib-commonjs/hooks/useMeasureElement.js +1 -3
  540. package/lib-commonjs/hooks/useMeasureElement.js.map +1 -1
  541. package/lib-commonjs/hooks/useTableColumnResizeMouseHandler.js +1 -3
  542. package/lib-commonjs/hooks/useTableColumnResizeMouseHandler.js.map +1 -1
  543. package/lib-commonjs/hooks/useTableColumnResizeState.js +1 -3
  544. package/lib-commonjs/hooks/useTableColumnResizeState.js.map +1 -1
  545. package/lib-commonjs/hooks/useTableColumnSizing.js +10 -7
  546. package/lib-commonjs/hooks/useTableColumnSizing.js.map +1 -1
  547. package/lib-commonjs/hooks/useTableFeatures.js +1 -3
  548. package/lib-commonjs/hooks/useTableFeatures.js.map +1 -1
  549. package/lib-commonjs/hooks/useTableSelection.js +2 -4
  550. package/lib-commonjs/hooks/useTableSelection.js.map +1 -1
  551. package/lib-commonjs/hooks/useTableSort.js +1 -3
  552. package/lib-commonjs/hooks/useTableSort.js.map +1 -1
  553. package/lib-commonjs/index.js +1 -3
  554. package/lib-commonjs/index.js.map +1 -1
  555. package/lib-commonjs/utils/columnResizeUtils.js +1 -3
  556. package/lib-commonjs/utils/columnResizeUtils.js.map +1 -1
  557. package/package.json +16 -14
@@ -11,8 +11,8 @@ const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
11
11
  const _reactUtilities = require("@fluentui/react-utilities");
12
12
  const _reactTabster = require("@fluentui/react-tabster");
13
13
  const _reactIcons = require("@fluentui/react-icons");
14
- const _tableContext = require("../../contexts/tableContext");
15
14
  const _reactAria = require("@fluentui/react-aria");
15
+ const _tableContext = require("../../contexts/tableContext");
16
16
  const sortIcons = {
17
17
  ascending: /*#__PURE__*/ _react.createElement(_reactIcons.ArrowUpRegular, {
18
18
  fontSize: 12
@@ -29,7 +29,7 @@ const useTableHeaderCell_unstable = (props, ref)=>{
29
29
  return {
30
30
  components: {
31
31
  root: rootComponent,
32
- button: 'button',
32
+ button: 'div',
33
33
  sortIcon: 'span',
34
34
  aside: 'span'
35
35
  },
@@ -49,11 +49,9 @@ const useTableHeaderCell_unstable = (props, ref)=>{
49
49
  button: (0, _reactAria.useARIAButtonShorthand)(props.button, {
50
50
  required: true,
51
51
  defaultProps: {
52
- role: 'presentation',
53
- tabIndex: -1,
54
- type: 'button',
55
- ...sortable && {
56
- role: undefined,
52
+ as: 'div',
53
+ ...!sortable && {
54
+ role: 'presentation',
57
55
  tabIndex: undefined
58
56
  }
59
57
  }
@@ -61,6 +59,4 @@ const useTableHeaderCell_unstable = (props, ref)=>{
61
59
  sortable,
62
60
  noNativeElements
63
61
  };
64
- }; //# sourceMappingURL=useTableHeaderCell.js.map
65
-
66
- //# sourceMappingURL=useTableHeaderCell.js.map
62
+ };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableHeaderCell/useTableHeaderCell.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, resolveShorthand, useMergedRefs } from '@fluentui/react-utilities';\nimport { useFocusWithin } from '@fluentui/react-tabster';\nimport { ArrowUpRegular, ArrowDownRegular } from '@fluentui/react-icons';\nimport { useTableContext } from '../../contexts/tableContext';\nimport { useARIAButtonShorthand } from '@fluentui/react-aria';\nconst sortIcons = {\n ascending: /*#__PURE__*/React.createElement(ArrowUpRegular, {\n fontSize: 12\n }),\n descending: /*#__PURE__*/React.createElement(ArrowDownRegular, {\n fontSize: 12\n })\n};\n/**\n * Create the state required to render TableHeaderCell.\n *\n * The returned state can be modified with hooks such as useTableHeaderCellStyles_unstable,\n * before being passed to renderTableHeaderCell_unstable.\n *\n * @param props - props from this instance of TableHeaderCell\n * @param ref - reference to root HTMLElement of TableHeaderCell\n */\nexport const useTableHeaderCell_unstable = (props, ref) => {\n const {\n noNativeElements,\n sortable\n } = useTableContext();\n var _props_as;\n const rootComponent = ((_props_as = props.as) !== null && _props_as !== void 0 ? _props_as : noNativeElements) ? 'div' : 'th';\n var _props_sortDirection;\n return {\n components: {\n root: rootComponent,\n button: 'button',\n sortIcon: 'span',\n aside: 'span'\n },\n root: getNativeElementProps(rootComponent, {\n ref: useMergedRefs(ref, useFocusWithin()),\n role: rootComponent === 'div' ? 'columnheader' : undefined,\n 'aria-sort': sortable ? (_props_sortDirection = props.sortDirection) !== null && _props_sortDirection !== void 0 ? _props_sortDirection : 'none' : undefined,\n ...props\n }),\n aside: resolveShorthand(props.aside),\n sortIcon: resolveShorthand(props.sortIcon, {\n required: !!props.sortDirection,\n defaultProps: {\n children: props.sortDirection ? sortIcons[props.sortDirection] : undefined\n }\n }),\n button: useARIAButtonShorthand(props.button, {\n required: true,\n defaultProps: {\n role: 'presentation',\n tabIndex: -1,\n type: 'button',\n ...(sortable && {\n role: undefined,\n tabIndex: undefined\n })\n }\n }),\n sortable,\n noNativeElements\n };\n};\n//# sourceMappingURL=useTableHeaderCell.js.map"],"names":["useTableHeaderCell_unstable","sortIcons","ascending","React","createElement","ArrowUpRegular","fontSize","descending","ArrowDownRegular","props","ref","noNativeElements","sortable","useTableContext","_props_as","rootComponent","as","_props_sortDirection","components","root","button","sortIcon","aside","getNativeElementProps","useMergedRefs","useFocusWithin","role","undefined","sortDirection","resolveShorthand","required","defaultProps","children","useARIAButtonShorthand","tabIndex","type"],"mappings":";;;;+BAuBaA;;aAAAA;;;6DAvBU;gCACgD;8BACxC;4BACkB;8BACjB;2BACO;AACvC,MAAMC,YAAY;IAChBC,WAAW,WAAW,GAAEC,OAAMC,aAAa,CAACC,0BAAc,EAAE;QAC1DC,UAAU;IACZ;IACAC,YAAY,WAAW,GAAEJ,OAAMC,aAAa,CAACI,4BAAgB,EAAE;QAC7DF,UAAU;IACZ;AACF;AAUO,MAAMN,8BAA8B,CAACS,OAAOC,MAAQ;IACzD,MAAM,EACJC,iBAAgB,EAChBC,SAAQ,EACT,GAAGC,IAAAA,6BAAe;IACnB,IAAIC;IACJ,MAAMC,gBAAgB,AAAC,CAAA,AAACD,CAAAA,YAAYL,MAAMO,EAAE,AAAD,MAAO,IAAI,IAAIF,cAAc,KAAK,IAAIA,YAAYH,gBAAgB,AAAD,IAAK,QAAQ,IAAI;IAC7H,IAAIM;IACJ,OAAO;QACLC,YAAY;YACVC,MAAMJ;YACNK,QAAQ;YACRC,UAAU;YACVC,OAAO;QACT;QACAH,MAAMI,IAAAA,qCAAqB,EAACR,eAAe;YACzCL,KAAKc,IAAAA,6BAAa,EAACd,KAAKe,IAAAA,4BAAc;YACtCC,MAAMX,kBAAkB,QAAQ,iBAAiBY,SAAS;YAC1D,aAAaf,WAAW,AAACK,CAAAA,uBAAuBR,MAAMmB,aAAa,AAAD,MAAO,IAAI,IAAIX,yBAAyB,KAAK,IAAIA,uBAAuB,MAAM,GAAGU,SAAS;YAC5J,GAAGlB,KAAK;QACV;QACAa,OAAOO,IAAAA,gCAAgB,EAACpB,MAAMa,KAAK;QACnCD,UAAUQ,IAAAA,gCAAgB,EAACpB,MAAMY,QAAQ,EAAE;YACzCS,UAAU,CAAC,CAACrB,MAAMmB,aAAa;YAC/BG,cAAc;gBACZC,UAAUvB,MAAMmB,aAAa,GAAG3B,SAAS,CAACQ,MAAMmB,aAAa,CAAC,GAAGD,SAAS;YAC5E;QACF;QACAP,QAAQa,IAAAA,iCAAsB,EAACxB,MAAMW,MAAM,EAAE;YAC3CU,UAAU,IAAI;YACdC,cAAc;gBACZL,MAAM;gBACNQ,UAAU,CAAC;gBACXC,MAAM;gBACN,GAAIvB,YAAY;oBACdc,MAAMC;oBACNO,UAAUP;gBACZ,CAAC;YACH;QACF;QACAf;QACAD;IACF;AACF,GACA,8CAA8C"}
1
+ {"version":3,"sources":["useTableHeaderCell.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, resolveShorthand, useMergedRefs } from '@fluentui/react-utilities';\nimport { useFocusWithin } from '@fluentui/react-tabster';\nimport { ArrowUpRegular, ArrowDownRegular } from '@fluentui/react-icons';\nimport { useARIAButtonShorthand } from '@fluentui/react-aria';\nimport { useTableContext } from '../../contexts/tableContext';\nconst sortIcons = {\n ascending: /*#__PURE__*/ React.createElement(ArrowUpRegular, {\n fontSize: 12\n }),\n descending: /*#__PURE__*/ React.createElement(ArrowDownRegular, {\n fontSize: 12\n })\n};\n/**\n * Create the state required to render TableHeaderCell.\n *\n * The returned state can be modified with hooks such as useTableHeaderCellStyles_unstable,\n * before being passed to renderTableHeaderCell_unstable.\n *\n * @param props - props from this instance of TableHeaderCell\n * @param ref - reference to root HTMLElement of TableHeaderCell\n */ export const useTableHeaderCell_unstable = (props, ref)=>{\n const { noNativeElements , sortable } = useTableContext();\n var _props_as;\n const rootComponent = ((_props_as = props.as) !== null && _props_as !== void 0 ? _props_as : noNativeElements) ? 'div' : 'th';\n var _props_sortDirection;\n return {\n components: {\n root: rootComponent,\n button: 'div',\n sortIcon: 'span',\n aside: 'span'\n },\n root: getNativeElementProps(rootComponent, {\n ref: useMergedRefs(ref, useFocusWithin()),\n role: rootComponent === 'div' ? 'columnheader' : undefined,\n 'aria-sort': sortable ? (_props_sortDirection = props.sortDirection) !== null && _props_sortDirection !== void 0 ? _props_sortDirection : 'none' : undefined,\n ...props\n }),\n aside: resolveShorthand(props.aside),\n sortIcon: resolveShorthand(props.sortIcon, {\n required: !!props.sortDirection,\n defaultProps: {\n children: props.sortDirection ? sortIcons[props.sortDirection] : undefined\n }\n }),\n button: useARIAButtonShorthand(props.button, {\n required: true,\n defaultProps: {\n as: 'div',\n ...!sortable && {\n role: 'presentation',\n tabIndex: undefined\n }\n }\n }),\n sortable,\n noNativeElements\n };\n};\n"],"names":["useTableHeaderCell_unstable","sortIcons","ascending","React","createElement","ArrowUpRegular","fontSize","descending","ArrowDownRegular","props","ref","noNativeElements","sortable","useTableContext","_props_as","rootComponent","as","_props_sortDirection","components","root","button","sortIcon","aside","getNativeElementProps","useMergedRefs","useFocusWithin","role","undefined","sortDirection","resolveShorthand","required","defaultProps","children","useARIAButtonShorthand","tabIndex"],"mappings":";;;;+BAsBiBA;;aAAAA;;;6DAtBM;gCACgD;8BACxC;4BACkB;2BACV;8BACP;AAChC,MAAMC,YAAY;IACdC,WAAW,WAAW,GAAGC,OAAMC,aAAa,CAACC,0BAAc,EAAE;QACzDC,UAAU;IACd;IACAC,YAAY,WAAW,GAAGJ,OAAMC,aAAa,CAACI,4BAAgB,EAAE;QAC5DF,UAAU;IACd;AACJ;AASW,MAAMN,8BAA8B,CAACS,OAAOC,MAAM;IACzD,MAAM,EAAEC,iBAAgB,EAAGC,SAAQ,EAAG,GAAGC,IAAAA,6BAAe;IACxD,IAAIC;IACJ,MAAMC,gBAAgB,AAAC,CAAA,AAACD,CAAAA,YAAYL,MAAMO,EAAE,AAAD,MAAO,IAAI,IAAIF,cAAc,KAAK,IAAIA,YAAYH,gBAAgB,AAAD,IAAK,QAAQ,IAAI;IAC7H,IAAIM;IACJ,OAAO;QACHC,YAAY;YACRC,MAAMJ;YACNK,QAAQ;YACRC,UAAU;YACVC,OAAO;QACX;QACAH,MAAMI,IAAAA,qCAAqB,EAACR,eAAe;YACvCL,KAAKc,IAAAA,6BAAa,EAACd,KAAKe,IAAAA,4BAAc;YACtCC,MAAMX,kBAAkB,QAAQ,iBAAiBY,SAAS;YAC1D,aAAaf,WAAW,AAACK,CAAAA,uBAAuBR,MAAMmB,aAAa,AAAD,MAAO,IAAI,IAAIX,yBAAyB,KAAK,IAAIA,uBAAuB,MAAM,GAAGU,SAAS;YAC5J,GAAGlB,KAAK;QACZ;QACAa,OAAOO,IAAAA,gCAAgB,EAACpB,MAAMa,KAAK;QACnCD,UAAUQ,IAAAA,gCAAgB,EAACpB,MAAMY,QAAQ,EAAE;YACvCS,UAAU,CAAC,CAACrB,MAAMmB,aAAa;YAC/BG,cAAc;gBACVC,UAAUvB,MAAMmB,aAAa,GAAG3B,SAAS,CAACQ,MAAMmB,aAAa,CAAC,GAAGD,SAAS;YAC9E;QACJ;QACAP,QAAQa,IAAAA,iCAAsB,EAACxB,MAAMW,MAAM,EAAE;YACzCU,UAAU,IAAI;YACdC,cAAc;gBACVf,IAAI;gBACJ,GAAG,CAACJ,YAAY;oBACZc,MAAM;oBACNQ,UAAUP;gBACd,CAAC;YACL;QACJ;QACAf;QACAD;IACJ;AACJ"}
@@ -53,6 +53,7 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
53
53
  * Styles for the root slot
54
54
  */ const useStyles = /*#__PURE__*/ (0, _react["__styles"])({
55
55
  root: {
56
+ Bhrd7zp: "figsok6",
56
57
  z8tnut: "f1nbblvp",
57
58
  z189sj: [
58
59
  "f1vdfbxk",
@@ -82,7 +83,26 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
82
83
  "f1uha7eq",
83
84
  "f145mzao"
84
85
  ],
85
- qhf8xq: "f10pi13n"
86
+ qhf8xq: "f10pi13n",
87
+ Ba2hzls: [
88
+ "f1bwmy6q",
89
+ "f156ixcz"
90
+ ],
91
+ Bhwr9k8: [
92
+ "f156ixcz",
93
+ "f1bwmy6q"
94
+ ],
95
+ Bb54w5r: [
96
+ "fsy9rq9",
97
+ "fl6c5zn"
98
+ ],
99
+ bgd754: [
100
+ "fl6c5zn",
101
+ "fsy9rq9"
102
+ ],
103
+ Boazqr3: "f1tpyba1",
104
+ Blqj7q0: "f1pnds93",
105
+ xlw1ys: "fa5446a"
86
106
  },
87
107
  rootInteractive: {
88
108
  Jwef8y: "f1t94bn6",
@@ -146,6 +166,7 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
146
166
  resizeHandle: {}
147
167
  }, {
148
168
  d: [
169
+ ".figsok6{font-weight:var(--fontWeightRegular);}",
149
170
  ".f1nbblvp{padding-top:0px;}",
150
171
  ".f1vdfbxk{padding-right:var(--spacingHorizontalS);}",
151
172
  ".f1f5gg8d{padding-left:var(--spacingHorizontalS);}",
@@ -158,6 +179,13 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
158
179
  ".f145mzao[data-fui-focus-within]:focus-within{border-top-right-radius:var(--borderRadiusMedium);}",
159
180
  ".f1uha7eq[data-fui-focus-within]:focus-within{border-top-left-radius:var(--borderRadiusMedium);}",
160
181
  ".f10pi13n{position:relative;}",
182
+ ".f1bwmy6q[data-keyboard-resizing]{border-bottom-right-radius:var(--borderRadiusMedium);}",
183
+ ".f156ixcz[data-keyboard-resizing]{border-bottom-left-radius:var(--borderRadiusMedium);}",
184
+ ".fsy9rq9[data-keyboard-resizing]{border-top-right-radius:var(--borderRadiusMedium);}",
185
+ ".fl6c5zn[data-keyboard-resizing]{border-top-left-radius:var(--borderRadiusMedium);}",
186
+ ".f1tpyba1[data-keyboard-resizing]{outline-width:var(--strokeWidthThick);}",
187
+ ".f1pnds93[data-keyboard-resizing]{outline-style:solid;}",
188
+ ".fa5446a[data-keyboard-resizing]{outline-color:var(--colorStrokeFocus2);}",
161
189
  ".fq6nmtn{resize:horizontal;}",
162
190
  ".f1e4lqlz{box-sizing:content-box;}",
163
191
  ".f1u2r49w{background-color:inherit;}",
@@ -214,5 +242,3 @@ const useTableHeaderCellStyles_unstable = (state)=>{
214
242
  }
215
243
  return state;
216
244
  }; //# sourceMappingURL=useTableHeaderCellStyles.styles.js.map
217
-
218
- //# sourceMappingURL=useTableHeaderCellStyles.styles.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableHeaderCell/useTableHeaderCellStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nexport const tableHeaderCellClassName = 'fui-TableHeaderCell';\nexport const tableHeaderCellClassNames = {\n root: 'fui-TableHeaderCell',\n button: 'fui-TableHeaderCell__button',\n sortIcon: 'fui-TableHeaderCell__sortIcon',\n aside: 'fui-TableHeaderCell__aside'\n};\nconst useTableLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f15pt5es\",\n ha4doy: \"fmrv4ls\"\n }\n}, {\n d: [\".f15pt5es{display:table-cell;}\", \".fmrv4ls{vertical-align:middle;}\"]\n});\nconst useFlexLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n Bh6795r: \"fqerorx\",\n Bnnss6s: \"f1neuvcm\",\n xawz: \"fkjuxzh\",\n Bf4jedk: \"f10tiqix\"\n }\n}, {\n d: [\".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}\", \".f1neuvcm{-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;}\", \".fkjuxzh{-webkit-flex-basis:0px;-ms-flex-preferred-size:0px;flex-basis:0px;}\", \".f10tiqix{min-width:0px;}\"]\n});\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n z8tnut: \"f1nbblvp\",\n z189sj: [\"f1vdfbxk\", \"f1f5gg8d\"],\n Byoj8tv: \"f1ov4xf1\",\n uwmqm3: [\"f1f5gg8d\", \"f1vdfbxk\"],\n B3nxjsc: \"fhix6mv\",\n Bmvh20x: \"fha7anx\",\n robkg1: \"f1fmzww4\",\n pehzd3: [\"fs9qmxf\", \"f187m4uq\"],\n B8osjzx: [\"f187m4uq\", \"fs9qmxf\"],\n u7xebq: [\"f145mzao\", \"f1uha7eq\"],\n Blsv9te: [\"f1uha7eq\", \"f145mzao\"],\n qhf8xq: \"f10pi13n\"\n },\n rootInteractive: {\n Jwef8y: \"f1t94bn6\",\n ecr2s2: \"f1wfn5kd\"\n },\n resetButton: {\n B3rzk8w: \"fq6nmtn\",\n B7ck84d: \"f1e4lqlz\",\n De3pzq: \"f1u2r49w\",\n sj55zd: \"f1ym3bx4\",\n Bahqtrf: \"f1mo0ibp\",\n Be2twd7: \"fjoy568\",\n Bg96gwp: \"fytdu2e\",\n B68tc82: \"f1mtd64y\",\n Bmxbyg5: \"f1y7q3j9\",\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n icvyot: \"f1ern45e\",\n vrafjx: [\"f1n71otn\", \"f1deefiw\"],\n oivjwe: \"f1h8hb77\",\n wvpqe5: [\"f1deefiw\", \"f1n71otn\"],\n Bv0vk6g: \"f37px4s\",\n fsow6f: \"fgusgyc\"\n },\n button: {\n qhf8xq: \"f10pi13n\",\n a9b677: \"fly5x3f\",\n mc9l5x: \"f22iagw\",\n Bh6795r: \"fqerorx\",\n Bqenvij: \"f1l02sjl\",\n Bt984gj: \"f122n59\",\n i8kkvl: \"f1ufnopg\",\n Belr9w4: \"f14sijuj\",\n sshi5w: \"f1nxs5xn\",\n Bnnss6s: \"f1neuvcm\",\n xawz: \"fkjuxzh\",\n oeaueh: \"f1s6fcnf\"\n },\n sortable: {\n Bceei9c: \"f1k6fduh\"\n },\n sortIcon: {\n mc9l5x: \"f22iagw\",\n Bt984gj: \"f122n59\",\n z8tnut: \"fclwglc\"\n },\n resizeHandle: {}\n}, {\n d: [\".f1nbblvp{padding-top:0px;}\", \".f1vdfbxk{padding-right:var(--spacingHorizontalS);}\", \".f1f5gg8d{padding-left:var(--spacingHorizontalS);}\", \".f1ov4xf1{padding-bottom:0px;}\", \".fhix6mv[data-fui-focus-within]:focus-within{outline-width:2px;}\", \".fha7anx[data-fui-focus-within]:focus-within{outline-style:solid;}\", \".f1fmzww4[data-fui-focus-within]:focus-within{outline-color:var(--colorStrokeFocus2);}\", \".fs9qmxf[data-fui-focus-within]:focus-within{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f187m4uq[data-fui-focus-within]:focus-within{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".f145mzao[data-fui-focus-within]:focus-within{border-top-right-radius:var(--borderRadiusMedium);}\", \".f1uha7eq[data-fui-focus-within]:focus-within{border-top-left-radius:var(--borderRadiusMedium);}\", \".f10pi13n{position:relative;}\", \".fq6nmtn{resize:horizontal;}\", \".f1e4lqlz{box-sizing:content-box;}\", \".f1u2r49w{background-color:inherit;}\", \".f1ym3bx4{color:inherit;}\", \".f1mo0ibp{font-family:inherit;}\", \".fjoy568{font-size:inherit;}\", \".fytdu2e{line-height:normal;}\", \".f1mtd64y{overflow-x:visible;}\", \".f1y7q3j9{overflow-y:visible;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f1ern45e{border-top-style:none;}\", \".f1n71otn{border-right-style:none;}\", \".f1deefiw{border-left-style:none;}\", \".f1h8hb77{border-bottom-style:none;}\", \".f37px4s{-webkit-appearance:button;}\", \".fgusgyc{text-align:unset;}\", \".fly5x3f{width:100%;}\", \".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}\", \".f1l02sjl{height:100%;}\", \".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\", \".f1ufnopg{-webkit-column-gap:var(--spacingHorizontalXS);column-gap:var(--spacingHorizontalXS);}\", \".f14sijuj{row-gap:var(--spacingHorizontalXS);}\", \".f1nxs5xn{min-height:32px;}\", \".f1neuvcm{-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;}\", \".fkjuxzh{-webkit-flex-basis:0px;-ms-flex-preferred-size:0px;flex-basis:0px;}\", \".f1s6fcnf{outline-style:none;}\", \".f1k6fduh{cursor:pointer;}\", \".fclwglc{padding-top:var(--spacingVerticalXXS);}\"],\n h: [\".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}\"],\n a: [\".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}\"]\n});\n/**\n * Apply styling to the TableHeaderCell slots based on the state\n */\nexport const useTableHeaderCellStyles_unstable = state => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles()\n };\n state.root.className = mergeClasses(tableHeaderCellClassNames.root, styles.root, state.sortable && styles.rootInteractive, state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.root.className);\n state.button.className = mergeClasses(tableHeaderCellClassNames.button, styles.resetButton, styles.button, state.sortable && styles.sortable, state.button.className);\n if (state.sortIcon) {\n state.sortIcon.className = mergeClasses(tableHeaderCellClassNames.sortIcon, styles.sortIcon, state.sortIcon.className);\n }\n if (state.aside) {\n state.aside.className = mergeClasses(tableHeaderCellClassNames.aside, styles.resizeHandle, state.aside.className);\n }\n return state;\n};\n//# sourceMappingURL=useTableHeaderCellStyles.styles.js.map"],"names":["tableHeaderCellClassName","tableHeaderCellClassNames","useTableHeaderCellStyles_unstable","root","button","sortIcon","aside","useTableLayoutStyles","__styles","mc9l5x","ha4doy","d","useFlexLayoutStyles","Bh6795r","Bnnss6s","xawz","Bf4jedk","useStyles","z8tnut","z189sj","Byoj8tv","uwmqm3","B3nxjsc","Bmvh20x","robkg1","pehzd3","B8osjzx","u7xebq","Blsv9te","qhf8xq","rootInteractive","Jwef8y","ecr2s2","resetButton","B3rzk8w","B7ck84d","De3pzq","sj55zd","Bahqtrf","Be2twd7","Bg96gwp","B68tc82","Bmxbyg5","icvyot","vrafjx","oivjwe","wvpqe5","Bv0vk6g","fsow6f","a9b677","Bqenvij","Bt984gj","i8kkvl","Belr9w4","sshi5w","oeaueh","sortable","Bceei9c","resizeHandle","h","a","state","styles","layoutStyles","table","flex","className","mergeClasses","noNativeElements"],"mappings":"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"}
1
+ {"version":3,"sources":["useTableHeaderCellStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nimport { KeyboardResizingCurrentColumnDataAttribute } from '../../hooks/useTableColumnSizing';\nexport const tableHeaderCellClassName = 'fui-TableHeaderCell';\nexport const tableHeaderCellClassNames = {\n root: 'fui-TableHeaderCell',\n button: 'fui-TableHeaderCell__button',\n sortIcon: 'fui-TableHeaderCell__sortIcon',\n aside: 'fui-TableHeaderCell__aside'\n};\nconst useTableLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f15pt5es\",\n ha4doy: \"fmrv4ls\"\n }\n}, {\n d: [\".f15pt5es{display:table-cell;}\", \".fmrv4ls{vertical-align:middle;}\"]\n});\nconst useFlexLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n Bh6795r: \"fqerorx\",\n Bnnss6s: \"f1neuvcm\",\n xawz: \"fkjuxzh\",\n Bf4jedk: \"f10tiqix\"\n }\n}, {\n d: [\".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}\", \".f1neuvcm{-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;}\", \".fkjuxzh{-webkit-flex-basis:0px;-ms-flex-preferred-size:0px;flex-basis:0px;}\", \".f10tiqix{min-width:0px;}\"]\n});\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n Bhrd7zp: \"figsok6\",\n z8tnut: \"f1nbblvp\",\n z189sj: [\"f1vdfbxk\", \"f1f5gg8d\"],\n Byoj8tv: \"f1ov4xf1\",\n uwmqm3: [\"f1f5gg8d\", \"f1vdfbxk\"],\n B3nxjsc: \"fhix6mv\",\n Bmvh20x: \"fha7anx\",\n robkg1: \"f1fmzww4\",\n pehzd3: [\"fs9qmxf\", \"f187m4uq\"],\n B8osjzx: [\"f187m4uq\", \"fs9qmxf\"],\n u7xebq: [\"f145mzao\", \"f1uha7eq\"],\n Blsv9te: [\"f1uha7eq\", \"f145mzao\"],\n qhf8xq: \"f10pi13n\",\n Ba2hzls: [\"f1bwmy6q\", \"f156ixcz\"],\n Bhwr9k8: [\"f156ixcz\", \"f1bwmy6q\"],\n Bb54w5r: [\"fsy9rq9\", \"fl6c5zn\"],\n bgd754: [\"fl6c5zn\", \"fsy9rq9\"],\n Boazqr3: \"f1tpyba1\",\n Blqj7q0: \"f1pnds93\",\n xlw1ys: \"fa5446a\"\n },\n rootInteractive: {\n Jwef8y: \"f1t94bn6\",\n ecr2s2: \"f1wfn5kd\"\n },\n resetButton: {\n B3rzk8w: \"fq6nmtn\",\n B7ck84d: \"f1e4lqlz\",\n De3pzq: \"f1u2r49w\",\n sj55zd: \"f1ym3bx4\",\n Bahqtrf: \"f1mo0ibp\",\n Be2twd7: \"fjoy568\",\n Bg96gwp: \"fytdu2e\",\n B68tc82: \"f1mtd64y\",\n Bmxbyg5: \"f1y7q3j9\",\n z8tnut: \"f1g0x7ka\",\n z189sj: [\"fhxju0i\", \"f1cnd47f\"],\n Byoj8tv: \"f1qch9an\",\n uwmqm3: [\"f1cnd47f\", \"fhxju0i\"],\n icvyot: \"f1ern45e\",\n vrafjx: [\"f1n71otn\", \"f1deefiw\"],\n oivjwe: \"f1h8hb77\",\n wvpqe5: [\"f1deefiw\", \"f1n71otn\"],\n Bv0vk6g: \"f37px4s\",\n fsow6f: \"fgusgyc\"\n },\n button: {\n qhf8xq: \"f10pi13n\",\n a9b677: \"fly5x3f\",\n mc9l5x: \"f22iagw\",\n Bh6795r: \"fqerorx\",\n Bqenvij: \"f1l02sjl\",\n Bt984gj: \"f122n59\",\n i8kkvl: \"f1ufnopg\",\n Belr9w4: \"f14sijuj\",\n sshi5w: \"f1nxs5xn\",\n Bnnss6s: \"f1neuvcm\",\n xawz: \"fkjuxzh\",\n oeaueh: \"f1s6fcnf\"\n },\n sortable: {\n Bceei9c: \"f1k6fduh\"\n },\n sortIcon: {\n mc9l5x: \"f22iagw\",\n Bt984gj: \"f122n59\",\n z8tnut: \"fclwglc\"\n },\n resizeHandle: {}\n}, {\n d: [\".figsok6{font-weight:var(--fontWeightRegular);}\", \".f1nbblvp{padding-top:0px;}\", \".f1vdfbxk{padding-right:var(--spacingHorizontalS);}\", \".f1f5gg8d{padding-left:var(--spacingHorizontalS);}\", \".f1ov4xf1{padding-bottom:0px;}\", \".fhix6mv[data-fui-focus-within]:focus-within{outline-width:2px;}\", \".fha7anx[data-fui-focus-within]:focus-within{outline-style:solid;}\", \".f1fmzww4[data-fui-focus-within]:focus-within{outline-color:var(--colorStrokeFocus2);}\", \".fs9qmxf[data-fui-focus-within]:focus-within{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f187m4uq[data-fui-focus-within]:focus-within{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".f145mzao[data-fui-focus-within]:focus-within{border-top-right-radius:var(--borderRadiusMedium);}\", \".f1uha7eq[data-fui-focus-within]:focus-within{border-top-left-radius:var(--borderRadiusMedium);}\", \".f10pi13n{position:relative;}\", \".f1bwmy6q[data-keyboard-resizing]{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f156ixcz[data-keyboard-resizing]{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".fsy9rq9[data-keyboard-resizing]{border-top-right-radius:var(--borderRadiusMedium);}\", \".fl6c5zn[data-keyboard-resizing]{border-top-left-radius:var(--borderRadiusMedium);}\", \".f1tpyba1[data-keyboard-resizing]{outline-width:var(--strokeWidthThick);}\", \".f1pnds93[data-keyboard-resizing]{outline-style:solid;}\", \".fa5446a[data-keyboard-resizing]{outline-color:var(--colorStrokeFocus2);}\", \".fq6nmtn{resize:horizontal;}\", \".f1e4lqlz{box-sizing:content-box;}\", \".f1u2r49w{background-color:inherit;}\", \".f1ym3bx4{color:inherit;}\", \".f1mo0ibp{font-family:inherit;}\", \".fjoy568{font-size:inherit;}\", \".fytdu2e{line-height:normal;}\", \".f1mtd64y{overflow-x:visible;}\", \".f1y7q3j9{overflow-y:visible;}\", \".f1g0x7ka{padding-top:0;}\", \".fhxju0i{padding-right:0;}\", \".f1cnd47f{padding-left:0;}\", \".f1qch9an{padding-bottom:0;}\", \".f1ern45e{border-top-style:none;}\", \".f1n71otn{border-right-style:none;}\", \".f1deefiw{border-left-style:none;}\", \".f1h8hb77{border-bottom-style:none;}\", \".f37px4s{-webkit-appearance:button;}\", \".fgusgyc{text-align:unset;}\", \".fly5x3f{width:100%;}\", \".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}\", \".f1l02sjl{height:100%;}\", \".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\", \".f1ufnopg{-webkit-column-gap:var(--spacingHorizontalXS);column-gap:var(--spacingHorizontalXS);}\", \".f14sijuj{row-gap:var(--spacingHorizontalXS);}\", \".f1nxs5xn{min-height:32px;}\", \".f1neuvcm{-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1;}\", \".fkjuxzh{-webkit-flex-basis:0px;-ms-flex-preferred-size:0px;flex-basis:0px;}\", \".f1s6fcnf{outline-style:none;}\", \".f1k6fduh{cursor:pointer;}\", \".fclwglc{padding-top:var(--spacingVerticalXXS);}\"],\n h: [\".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}\"],\n a: [\".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}\"]\n});\n/**\n * Apply styling to the TableHeaderCell slots based on the state\n */\nexport const useTableHeaderCellStyles_unstable = state => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles()\n };\n state.root.className = mergeClasses(tableHeaderCellClassNames.root, styles.root, state.sortable && styles.rootInteractive, state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.root.className);\n state.button.className = mergeClasses(tableHeaderCellClassNames.button, styles.resetButton, styles.button, state.sortable && styles.sortable, state.button.className);\n if (state.sortIcon) {\n state.sortIcon.className = mergeClasses(tableHeaderCellClassNames.sortIcon, styles.sortIcon, state.sortIcon.className);\n }\n if (state.aside) {\n state.aside.className = mergeClasses(tableHeaderCellClassNames.aside, styles.resizeHandle, state.aside.className);\n }\n return state;\n};\n//# sourceMappingURL=useTableHeaderCellStyles.styles.js.map"],"names":["tableHeaderCellClassName","tableHeaderCellClassNames","useTableHeaderCellStyles_unstable","root","button","sortIcon","aside","useTableLayoutStyles","__styles","mc9l5x","ha4doy","d","useFlexLayoutStyles","Bh6795r","Bnnss6s","xawz","Bf4jedk","useStyles","Bhrd7zp","z8tnut","z189sj","Byoj8tv","uwmqm3","B3nxjsc","Bmvh20x","robkg1","pehzd3","B8osjzx","u7xebq","Blsv9te","qhf8xq","Ba2hzls","Bhwr9k8","Bb54w5r","bgd754","Boazqr3","Blqj7q0","xlw1ys","rootInteractive","Jwef8y","ecr2s2","resetButton","B3rzk8w","B7ck84d","De3pzq","sj55zd","Bahqtrf","Be2twd7","Bg96gwp","B68tc82","Bmxbyg5","icvyot","vrafjx","oivjwe","wvpqe5","Bv0vk6g","fsow6f","a9b677","Bqenvij","Bt984gj","i8kkvl","Belr9w4","sshi5w","oeaueh","sortable","Bceei9c","resizeHandle","h","a","state","styles","layoutStyles","table","flex","className","mergeClasses","noNativeElements"],"mappings":";;;;;;;;;;;IAIaA,wBAAwB,MAAxBA;IACAC,yBAAyB,MAAzBA;IA2GAC,iCAAiC,MAAjCA;;uBAhHsC;AAI5C,MAAMF,2BAA2B;AACjC,MAAMC,4BAA4B;IACvCE,MAAM;IACNC,QAAQ;IACRC,UAAU;IACVC,OAAO;AACT;AACA,MAAMC,uBAAuB,WAAW,GAAEC,IAAAA,kBAAQ,EAAC;IACjDL,MAAM;QACJM,QAAQ;QACRC,QAAQ;IACV;AACF,GAAG;IACDC,GAAG;QAAC;QAAkC;KAAmC;AAC3E;AACA,MAAMC,sBAAsB,WAAW,GAAEJ,IAAAA,kBAAQ,EAAC;IAChDL,MAAM;QACJM,QAAQ;QACRI,SAAS;QACTC,SAAS;QACTC,MAAM;QACNC,SAAS;IACX;AACF,GAAG;IACDL,GAAG;QAAC;QAAwF;QAAqF;QAAuE;QAAgF;KAA4B;AACtW;AACA;;CAEC,GACD,MAAMM,YAAY,WAAW,GAAET,IAAAA,kBAAQ,EAAC;IACtCL,MAAM;QACJe,SAAS;QACTC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;QACTC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAW;QAC/BC,SAAS;YAAC;YAAY;SAAU;QAChCC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;YAAC;YAAY;SAAW;QACjCC,QAAQ;QACRC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAY;SAAW;QACjCC,SAAS;YAAC;YAAW;SAAU;QAC/BC,QAAQ;YAAC;YAAW;SAAU;QAC9BC,SAAS;QACTC,SAAS;QACTC,QAAQ;IACV;IACAC,iBAAiB;QACfC,QAAQ;QACRC,QAAQ;IACV;IACAC,aAAa;QACXC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,QAAQ;QACRC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACT/B,QAAQ;QACRC,QAAQ;YAAC;YAAW;SAAW;QAC/BC,SAAS;QACTC,QAAQ;YAAC;YAAY;SAAU;QAC/B6B,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;QACTC,QAAQ;IACV;IACApD,QAAQ;QACN0B,QAAQ;QACR2B,QAAQ;QACRhD,QAAQ;QACRI,SAAS;QACT6C,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;QACRhD,SAAS;QACTC,MAAM;QACNgD,QAAQ;IACV;IACAC,UAAU;QACRC,SAAS;IACX;IACA5D,UAAU;QACRI,QAAQ;QACRkD,SAAS;QACTxC,QAAQ;IACV;IACA+C,cAAc,CAAC;AACjB,GAAG;IACDvD,GAAG;QAAC;QAAmD;QAA+B;QAAuD;QAAsD;QAAkC;QAAoE;QAAsE;QAA0F;QAAuG;QAAuG;QAAqG;QAAoG;QAAiC;QAA4F;QAA2F;QAAwF;QAAuF;QAA6E;QAA2D;QAA6E;QAAgC;QAAsC;QAAwC;QAA6B;QAAmC;QAAgC;QAAiC;QAAkC;QAAkC;QAA6B;QAA8B;QAA8B;QAAgC;QAAqC;QAAuC;QAAsC;QAAwC;QAAwC;QAA+B;QAAyB;QAAwF;QAAqF;QAA2B;QAA2G;QAAmG;QAAkD;QAA+B;QAAuE;QAAgF;QAAkC;QAA8B;KAAmD;IACn1FwD,GAAG;QAAC;KAAuE;IAC3EC,GAAG;QAAC;KAA0E;AAChF;AAIO,MAAMlE,oCAAoCmE,CAAAA,QAAS;IACxD,MAAMC,SAASrD;IACf,MAAMsD,eAAe;QACnBC,OAAOjE;QACPkE,MAAM7D;IACR;IACAyD,MAAMlE,IAAI,CAACuE,SAAS,GAAGC,IAAAA,mBAAY,EAAC1E,0BAA0BE,IAAI,EAAEmE,OAAOnE,IAAI,EAAEkE,MAAML,QAAQ,IAAIM,OAAOhC,eAAe,EAAE+B,MAAMO,gBAAgB,GAAGL,aAAaE,IAAI,CAACtE,IAAI,GAAGoE,aAAaC,KAAK,CAACrE,IAAI,EAAEkE,MAAMlE,IAAI,CAACuE,SAAS;IAC1NL,MAAMjE,MAAM,CAACsE,SAAS,GAAGC,IAAAA,mBAAY,EAAC1E,0BAA0BG,MAAM,EAAEkE,OAAO7B,WAAW,EAAE6B,OAAOlE,MAAM,EAAEiE,MAAML,QAAQ,IAAIM,OAAON,QAAQ,EAAEK,MAAMjE,MAAM,CAACsE,SAAS;IACpK,IAAIL,MAAMhE,QAAQ,EAAE;QAClBgE,MAAMhE,QAAQ,CAACqE,SAAS,GAAGC,IAAAA,mBAAY,EAAC1E,0BAA0BI,QAAQ,EAAEiE,OAAOjE,QAAQ,EAAEgE,MAAMhE,QAAQ,CAACqE,SAAS;IACvH,CAAC;IACD,IAAIL,MAAM/D,KAAK,EAAE;QACf+D,MAAM/D,KAAK,CAACoE,SAAS,GAAGC,IAAAA,mBAAY,EAAC1E,0BAA0BK,KAAK,EAAEgE,OAAOJ,YAAY,EAAEG,MAAM/D,KAAK,CAACoE,SAAS;IAClH,CAAC;IACD,OAAOL;AACT,GACA,2DAA2D"}
@@ -18,6 +18,4 @@ const TableResizeHandle = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
18
18
  (0, _reactSharedContexts.useCustomStyleHook_unstable)('useTableResizeHandleStyles_unstable')(state);
19
19
  return (0, _renderTableResizeHandle.renderTableResizeHandle_unstable)(state);
20
20
  });
21
- TableResizeHandle.displayName = 'TableResizeHandle'; //# sourceMappingURL=TableResizeHandle.js.map
22
-
23
- //# sourceMappingURL=TableResizeHandle.js.map
21
+ TableResizeHandle.displayName = 'TableResizeHandle';
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/TableResizeHandle.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableResizeHandle_unstable } from './useTableResizeHandle';\nimport { renderTableResizeHandle_unstable } from './renderTableResizeHandle';\nimport { useTableResizeHandleStyles_unstable } from './useTableResizeHandleStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableResizeHandle component - TODO: add more docs\n */\nexport const TableResizeHandle = /*#__PURE__*/React.forwardRef((props, ref) => {\n const state = useTableResizeHandle_unstable(props, ref);\n useTableResizeHandleStyles_unstable(state);\n useCustomStyleHook_unstable('useTableResizeHandleStyles_unstable')(state);\n return renderTableResizeHandle_unstable(state);\n});\nTableResizeHandle.displayName = 'TableResizeHandle';\n//# sourceMappingURL=TableResizeHandle.js.map"],"names":["TableResizeHandle","React","forwardRef","props","ref","state","useTableResizeHandle_unstable","useTableResizeHandleStyles_unstable","useCustomStyleHook_unstable","renderTableResizeHandle_unstable","displayName"],"mappings":";;;;+BAQaA;;aAAAA;;;6DARU;sCACuB;yCACG;kDACG;qCACR;AAIrC,MAAMA,oBAAoB,WAAW,GAAEC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAQ;IAC7E,MAAMC,QAAQC,IAAAA,mDAA6B,EAACH,OAAOC;IACnDG,IAAAA,qEAAmC,EAACF;IACpCG,IAAAA,gDAA2B,EAAC,uCAAuCH;IACnE,OAAOI,IAAAA,yDAAgC,EAACJ;AAC1C;AACAL,kBAAkBU,WAAW,GAAG,qBAChC,6CAA6C"}
1
+ {"version":3,"sources":["TableResizeHandle.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableResizeHandle_unstable } from './useTableResizeHandle';\nimport { renderTableResizeHandle_unstable } from './renderTableResizeHandle';\nimport { useTableResizeHandleStyles_unstable } from './useTableResizeHandleStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableResizeHandle component - TODO: add more docs\n */ export const TableResizeHandle = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useTableResizeHandle_unstable(props, ref);\n useTableResizeHandleStyles_unstable(state);\n useCustomStyleHook_unstable('useTableResizeHandleStyles_unstable')(state);\n return renderTableResizeHandle_unstable(state);\n});\nTableResizeHandle.displayName = 'TableResizeHandle';\n"],"names":["TableResizeHandle","React","forwardRef","props","ref","state","useTableResizeHandle_unstable","useTableResizeHandleStyles_unstable","useCustomStyleHook_unstable","renderTableResizeHandle_unstable","displayName"],"mappings":";;;;+BAOiBA;;aAAAA;;;6DAPM;sCACuB;yCACG;kDACG;qCACR;AAGjC,MAAMA,oBAAoB,WAAW,GAAGC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAM;IAC9E,MAAMC,QAAQC,IAAAA,mDAA6B,EAACH,OAAOC;IACnDG,IAAAA,qEAAmC,EAACF;IACpCG,IAAAA,gDAA2B,EAAC,uCAAuCH;IACnE,OAAOI,IAAAA,yDAAgC,EAACJ;AAC5C;AACAL,kBAAkBU,WAAW,GAAG"}
@@ -2,6 +2,3 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- //# sourceMappingURL=TableResizeHandle.types.js.map
6
-
7
- //# sourceMappingURL=TableResizeHandle.types.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/TableResizeHandle.types.js"],"sourcesContent":["export {};\n//# sourceMappingURL=TableResizeHandle.types.js.map"],"names":[],"mappings":";;;;CACA,mDAAmD"}
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
@@ -8,6 +8,3 @@ _exportStar(require("./TableResizeHandle.types"), exports);
8
8
  _exportStar(require("./renderTableResizeHandle"), exports);
9
9
  _exportStar(require("./useTableResizeHandle"), exports);
10
10
  _exportStar(require("./useTableResizeHandleStyles.styles"), exports);
11
- //# sourceMappingURL=index.js.map
12
-
13
- //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/index.js"],"sourcesContent":["export * from './TableResizeHandle';\nexport * from './TableResizeHandle.types';\nexport * from './renderTableResizeHandle';\nexport * from './useTableResizeHandle';\nexport * from './useTableResizeHandleStyles.styles';\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA;CACd,iCAAiC"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export * from './TableResizeHandle';\nexport * from './TableResizeHandle.types';\nexport * from './renderTableResizeHandle';\nexport * from './useTableResizeHandle';\nexport * from './useTableResizeHandleStyles.styles';\n"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA"}
@@ -11,6 +11,4 @@ const _reactUtilities = require("@fluentui/react-utilities");
11
11
  const renderTableResizeHandle_unstable = (state)=>{
12
12
  const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
13
13
  return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root);
14
- }; //# sourceMappingURL=renderTableResizeHandle.js.map
15
-
16
- //# sourceMappingURL=renderTableResizeHandle.js.map
14
+ };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/renderTableResizeHandle.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of TableResizeHandle\n */\nexport const renderTableResizeHandle_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(slots.root, slotProps.root);\n};\n//# sourceMappingURL=renderTableResizeHandle.js.map"],"names":["renderTableResizeHandle_unstable","state","slots","slotProps","getSlotsNext","createElement","root"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAKrCA;;aAAAA;;iCALqE;gCACrD;AAItB,MAAMA,mCAAmCC,CAAAA,QAAS;IACvD,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACH;IACjB,OAAO,WAAW,GAAEI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI;AAC9D,GACA,mDAAmD"}
1
+ {"version":3,"sources":["renderTableResizeHandle.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */ import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of TableResizeHandle\n */ export const renderTableResizeHandle_unstable = (state)=>{\n const { slots , slotProps } = getSlotsNext(state);\n return /*#__PURE__*/ createElement(slots.root, slotProps.root);\n};\n"],"names":["renderTableResizeHandle_unstable","state","slots","slotProps","getSlotsNext","createElement","root"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAIjCA;;aAAAA;;iCAJkE;gCACtD;AAGlB,MAAMA,mCAAmC,CAACC,QAAQ;IACzD,MAAM,EAAEC,MAAK,EAAGC,UAAS,EAAG,GAAGC,IAAAA,4BAAY,EAACH;IAC5C,OAAO,WAAW,GAAGI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI;AACjE"}
@@ -25,6 +25,4 @@ const useTableResizeHandle_unstable = (props, ref)=>{
25
25
  onClick
26
26
  })
27
27
  };
28
- }; //# sourceMappingURL=useTableResizeHandle.js.map
29
-
30
- //# sourceMappingURL=useTableResizeHandle.js.map
28
+ };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/useTableResizeHandle.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, useEventCallback } from '@fluentui/react-utilities';\n/**\n * Create the state required to render TableResizeHandle.\n *\n * The returned state can be modified with hooks such as useTableResizeHandleStyles_unstable,\n * before being passed to renderTableResizeHandle_unstable.\n *\n * @param props - props from this instance of TableResizeHandle\n * @param ref - reference to root HTMLElement of TableResizeHandle\n */\nexport const useTableResizeHandle_unstable = (props, ref) => {\n const onClick = useEventCallback(event => {\n var _props_onClick;\n (_props_onClick = props.onClick) === null || _props_onClick === void 0 ? void 0 : _props_onClick.call(props, event);\n event.stopPropagation();\n });\n return {\n components: {\n root: 'div'\n },\n root: getNativeElementProps('div', {\n ref,\n ...props,\n onClick\n })\n };\n};\n//# sourceMappingURL=useTableResizeHandle.js.map"],"names":["useTableResizeHandle_unstable","props","ref","onClick","useEventCallback","event","_props_onClick","call","stopPropagation","components","root","getNativeElementProps"],"mappings":";;;;+BAWaA;;aAAAA;;;6DAXU;gCACiC;AAUjD,MAAMA,gCAAgC,CAACC,OAAOC,MAAQ;IAC3D,MAAMC,UAAUC,IAAAA,gCAAgB,EAACC,CAAAA,QAAS;QACxC,IAAIC;QACHA,CAAAA,iBAAiBL,MAAME,OAAO,AAAD,MAAO,IAAI,IAAIG,mBAAmB,KAAK,IAAI,KAAK,IAAIA,eAAeC,IAAI,CAACN,OAAOI,MAAM;QACnHA,MAAMG,eAAe;IACvB;IACA,OAAO;QACLC,YAAY;YACVC,MAAM;QACR;QACAA,MAAMC,IAAAA,qCAAqB,EAAC,OAAO;YACjCT;YACA,GAAGD,KAAK;YACRE;QACF;IACF;AACF,GACA,gDAAgD"}
1
+ {"version":3,"sources":["useTableResizeHandle.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, useEventCallback } from '@fluentui/react-utilities';\n/**\n * Create the state required to render TableResizeHandle.\n *\n * The returned state can be modified with hooks such as useTableResizeHandleStyles_unstable,\n * before being passed to renderTableResizeHandle_unstable.\n *\n * @param props - props from this instance of TableResizeHandle\n * @param ref - reference to root HTMLElement of TableResizeHandle\n */ export const useTableResizeHandle_unstable = (props, ref)=>{\n const onClick = useEventCallback((event)=>{\n var _props_onClick;\n (_props_onClick = props.onClick) === null || _props_onClick === void 0 ? void 0 : _props_onClick.call(props, event);\n event.stopPropagation();\n });\n return {\n components: {\n root: 'div'\n },\n root: getNativeElementProps('div', {\n ref,\n ...props,\n onClick\n })\n };\n};\n"],"names":["useTableResizeHandle_unstable","props","ref","onClick","useEventCallback","event","_props_onClick","call","stopPropagation","components","root","getNativeElementProps"],"mappings":";;;;+BAUiBA;;aAAAA;;;6DAVM;gCACiC;AAS7C,MAAMA,gCAAgC,CAACC,OAAOC,MAAM;IAC3D,MAAMC,UAAUC,IAAAA,gCAAgB,EAAC,CAACC,QAAQ;QACtC,IAAIC;QACHA,CAAAA,iBAAiBL,MAAME,OAAO,AAAD,MAAO,IAAI,IAAIG,mBAAmB,KAAK,IAAI,KAAK,IAAIA,eAAeC,IAAI,CAACN,OAAOI,MAAM;QACnHA,MAAMG,eAAe;IACzB;IACA,OAAO;QACHC,YAAY;YACRC,MAAM;QACV;QACAA,MAAMC,IAAAA,qCAAqB,EAAC,OAAO;YAC/BT;YACA,GAAGD,KAAK;YACRE;QACJ;IACJ;AACJ"}
@@ -92,5 +92,3 @@ const useTableResizeHandleStyles_unstable = (state)=>{
92
92
  state.root.className = (0, _react.mergeClasses)(tableResizeHandleClassNames.root, styles.root, state.root.className);
93
93
  return state;
94
94
  }; //# sourceMappingURL=useTableResizeHandleStyles.styles.js.map
95
-
96
- //# sourceMappingURL=useTableResizeHandleStyles.styles.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableResizeHandle/useTableResizeHandleStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nexport const tableResizeHandleClassNames = {\n root: 'fui-TableResizeHandle'\n};\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n qhf8xq: \"f1euv43f\",\n j35jbq: [\"f1e31b4d\", \"f1vgc2s3\"],\n Bhzewxz: \"f15twtuk\",\n B5kzvoi: \"f1yab3r1\",\n a9b677: \"fjw5fx7\",\n B6of3ja: \"f1hu3pq6\",\n t21cq0: [\"fn2i5td\", \"f1eybr6b\"],\n jrapky: \"f19f4twv\",\n Frg6f3: [\"f1eybr6b\", \"fn2i5td\"],\n Bceei9c: \"fc3en1c\",\n abs64n: \"fk73vx1\",\n Bmy1vo4: \"f13u1uyl\",\n B3o57yi: \"fezquic\",\n Bj3rh1h: \"f19g0ac\",\n B7zu5sd: \"f15pjodv\",\n Bs6t6z0: \"ftgrb5f\",\n Fdvyjd: \"f2df6js\",\n Biobvvw: \"fshsryb\",\n Hdbjpj: \"f11ef69\",\n jc51t6: [\"f12lb1dx\", \"f13tbxeo\"],\n u6d25: \"fu4ulse\",\n Bj55yzk: \"fw2wsqs\",\n Bkbwdz4: \"f1swzn7y\"\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f1e31b4d{right:0;}\", \".f1vgc2s3{left:0;}\", \".f15twtuk{top:0;}\", \".f1yab3r1{bottom:0;}\", \".fjw5fx7{width:16px;}\", \".f1hu3pq6{margin-top:0;}\", \".fn2i5td{margin-right:-8px;}\", \".f1eybr6b{margin-left:-8px;}\", \".f19f4twv{margin-bottom:0;}\", \".fc3en1c{cursor:col-resize;}\", \".fk73vx1{opacity:0;}\", \".f13u1uyl{transition-property:opacity;}\", \".fezquic{transition-duration:.2s;}\", \".f19g0ac{z-index:1;}\", \".ftgrb5f:after{content:\\\" \\\";}\", \".f2df6js:after{display:block;}\", \".fshsryb:after{width:1px;}\", \".f11ef69:after{position:absolute;}\", \".f12lb1dx:after{left:50%;}\", \".f13tbxeo:after{right:50%;}\", \".fu4ulse:after{top:0;}\", \".fw2wsqs:after{bottom:0;}\", \".f1swzn7y:after{background-color:var(--colorNeutralStroke1);}\"],\n h: [\".f15pjodv:hover{opacity:1;}\"]\n});\n/**\n * Apply styling to the TableResizeHandle slots based on the state\n */\nexport const useTableResizeHandleStyles_unstable = state => {\n const styles = useStyles();\n state.root.className = mergeClasses(tableResizeHandleClassNames.root, styles.root, state.root.className);\n return state;\n};\n//# sourceMappingURL=useTableResizeHandleStyles.styles.js.map"],"names":["tableResizeHandleClassNames","useTableResizeHandleStyles_unstable","root","useStyles","__styles","qhf8xq","j35jbq","Bhzewxz","B5kzvoi","a9b677","B6of3ja","t21cq0","jrapky","Frg6f3","Bceei9c","abs64n","Bmy1vo4","B3o57yi","Bj3rh1h","B7zu5sd","Bs6t6z0","Fdvyjd","Biobvvw","Hdbjpj","jc51t6","u6d25","Bj55yzk","Bkbwdz4","d","h","state","styles","className","mergeClasses"],"mappings":";;;;;;;;;;;IAEaA,2BAA2B,MAA3BA;IAuCAC,mCAAmC,MAAnCA;;uBAzCsC;AAE5C,MAAMD,8BAA8B;IACzCE,MAAM;AACR;AACA;;CAEC,GACD,MAAMC,YAAY,WAAW,GAAEC,IAAAA,kBAAQ,EAAC;IACtCF,MAAM;QACJG,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;YAAC;YAAW;SAAW;QAC/BC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAU;QAC/BC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,OAAO;QACPC,SAAS;QACTC,SAAS;IACX;AACF,GAAG;IACDC,GAAG;QAAC;QAAiC;QAAuB;QAAsB;QAAqB;QAAwB;QAAyB;QAA4B;QAAgC;QAAgC;QAA+B;QAAgC;QAAwB;QAA2C;QAAsC;QAAwB;QAAkC;QAAkC;QAA8B;QAAsC;QAA8B;QAA+B;QAA0B;QAA6B;KAAgE;IAChvBC,GAAG;QAAC;KAA8B;AACpC;AAIO,MAAM5B,sCAAsC6B,CAAAA,QAAS;IAC1D,MAAMC,SAAS5B;IACf2B,MAAM5B,IAAI,CAAC8B,SAAS,GAAGC,IAAAA,mBAAY,EAACjC,4BAA4BE,IAAI,EAAE6B,OAAO7B,IAAI,EAAE4B,MAAM5B,IAAI,CAAC8B,SAAS;IACvG,OAAOF;AACT,GACA,6DAA6D"}
1
+ {"version":3,"sources":["useTableResizeHandleStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nexport const tableResizeHandleClassNames = {\n root: 'fui-TableResizeHandle'\n};\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n qhf8xq: \"f1euv43f\",\n j35jbq: [\"f1e31b4d\", \"f1vgc2s3\"],\n Bhzewxz: \"f15twtuk\",\n B5kzvoi: \"f1yab3r1\",\n a9b677: \"fjw5fx7\",\n B6of3ja: \"f1hu3pq6\",\n t21cq0: [\"fn2i5td\", \"f1eybr6b\"],\n jrapky: \"f19f4twv\",\n Frg6f3: [\"f1eybr6b\", \"fn2i5td\"],\n Bceei9c: \"fc3en1c\",\n abs64n: \"fk73vx1\",\n Bmy1vo4: \"f13u1uyl\",\n B3o57yi: \"fezquic\",\n Bj3rh1h: \"f19g0ac\",\n B7zu5sd: \"f15pjodv\",\n Bs6t6z0: \"ftgrb5f\",\n Fdvyjd: \"f2df6js\",\n Biobvvw: \"fshsryb\",\n Hdbjpj: \"f11ef69\",\n jc51t6: [\"f12lb1dx\", \"f13tbxeo\"],\n u6d25: \"fu4ulse\",\n Bj55yzk: \"fw2wsqs\",\n Bkbwdz4: \"f1swzn7y\"\n }\n}, {\n d: [\".f1euv43f{position:absolute;}\", \".f1e31b4d{right:0;}\", \".f1vgc2s3{left:0;}\", \".f15twtuk{top:0;}\", \".f1yab3r1{bottom:0;}\", \".fjw5fx7{width:16px;}\", \".f1hu3pq6{margin-top:0;}\", \".fn2i5td{margin-right:-8px;}\", \".f1eybr6b{margin-left:-8px;}\", \".f19f4twv{margin-bottom:0;}\", \".fc3en1c{cursor:col-resize;}\", \".fk73vx1{opacity:0;}\", \".f13u1uyl{transition-property:opacity;}\", \".fezquic{transition-duration:.2s;}\", \".f19g0ac{z-index:1;}\", \".ftgrb5f:after{content:\\\" \\\";}\", \".f2df6js:after{display:block;}\", \".fshsryb:after{width:1px;}\", \".f11ef69:after{position:absolute;}\", \".f12lb1dx:after{left:50%;}\", \".f13tbxeo:after{right:50%;}\", \".fu4ulse:after{top:0;}\", \".fw2wsqs:after{bottom:0;}\", \".f1swzn7y:after{background-color:var(--colorNeutralStroke1);}\"],\n h: [\".f15pjodv:hover{opacity:1;}\"]\n});\n/**\n * Apply styling to the TableResizeHandle slots based on the state\n */\nexport const useTableResizeHandleStyles_unstable = state => {\n const styles = useStyles();\n state.root.className = mergeClasses(tableResizeHandleClassNames.root, styles.root, state.root.className);\n return state;\n};\n//# sourceMappingURL=useTableResizeHandleStyles.styles.js.map"],"names":["tableResizeHandleClassNames","useTableResizeHandleStyles_unstable","root","useStyles","__styles","qhf8xq","j35jbq","Bhzewxz","B5kzvoi","a9b677","B6of3ja","t21cq0","jrapky","Frg6f3","Bceei9c","abs64n","Bmy1vo4","B3o57yi","Bj3rh1h","B7zu5sd","Bs6t6z0","Fdvyjd","Biobvvw","Hdbjpj","jc51t6","u6d25","Bj55yzk","Bkbwdz4","d","h","state","styles","className","mergeClasses"],"mappings":";;;;;;;;;;;IAEaA,2BAA2B,MAA3BA;IAuCAC,mCAAmC,MAAnCA;;uBAzCsC;AAE5C,MAAMD,8BAA8B;IACzCE,MAAM;AACR;AACA;;CAEC,GACD,MAAMC,YAAY,WAAW,GAAEC,IAAAA,kBAAQ,EAAC;IACtCF,MAAM;QACJG,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;YAAC;YAAW;SAAW;QAC/BC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAU;QAC/BC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,SAAS;QACTC,QAAQ;QACRC,SAAS;QACTC,QAAQ;QACRC,QAAQ;YAAC;YAAY;SAAW;QAChCC,OAAO;QACPC,SAAS;QACTC,SAAS;IACX;AACF,GAAG;IACDC,GAAG;QAAC;QAAiC;QAAuB;QAAsB;QAAqB;QAAwB;QAAyB;QAA4B;QAAgC;QAAgC;QAA+B;QAAgC;QAAwB;QAA2C;QAAsC;QAAwB;QAAkC;QAAkC;QAA8B;QAAsC;QAA8B;QAA+B;QAA0B;QAA6B;KAAgE;IAChvBC,GAAG;QAAC;KAA8B;AACpC;AAIO,MAAM5B,sCAAsC6B,CAAAA,QAAS;IAC1D,MAAMC,SAAS5B;IACf2B,MAAM5B,IAAI,CAAC8B,SAAS,GAAGC,IAAAA,mBAAY,EAACjC,4BAA4BE,IAAI,EAAE6B,OAAO7B,IAAI,EAAE4B,MAAM5B,IAAI,CAAC8B,SAAS;IACvG,OAAOF;AACT,GACA,6DAA6D"}
@@ -18,6 +18,4 @@ const TableRow = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
18
18
  (0, _reactSharedContexts.useCustomStyleHook_unstable)('useTableRowStyles_unstable')(state);
19
19
  return (0, _renderTableRow.renderTableRow_unstable)(state);
20
20
  });
21
- TableRow.displayName = 'TableRow'; //# sourceMappingURL=TableRow.js.map
22
-
23
- //# sourceMappingURL=TableRow.js.map
21
+ TableRow.displayName = 'TableRow';
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/TableRow.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableRow_unstable } from './useTableRow';\nimport { renderTableRow_unstable } from './renderTableRow';\nimport { useTableRowStyles_unstable } from './useTableRowStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableRow component\n */\nexport const TableRow = /*#__PURE__*/React.forwardRef((props, ref) => {\n const state = useTableRow_unstable(props, ref);\n useTableRowStyles_unstable(state);\n useCustomStyleHook_unstable('useTableRowStyles_unstable')(state);\n return renderTableRow_unstable(state);\n});\nTableRow.displayName = 'TableRow';\n//# sourceMappingURL=TableRow.js.map"],"names":["TableRow","React","forwardRef","props","ref","state","useTableRow_unstable","useTableRowStyles_unstable","useCustomStyleHook_unstable","renderTableRow_unstable","displayName"],"mappings":";;;;+BAQaA;;aAAAA;;;6DARU;6BACc;gCACG;yCACG;qCACC;AAIrC,MAAMA,WAAW,WAAW,GAAEC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAQ;IACpE,MAAMC,QAAQC,IAAAA,iCAAoB,EAACH,OAAOC;IAC1CG,IAAAA,mDAA0B,EAACF;IAC3BG,IAAAA,gDAA2B,EAAC,8BAA8BH;IAC1D,OAAOI,IAAAA,uCAAuB,EAACJ;AACjC;AACAL,SAASU,WAAW,GAAG,YACvB,oCAAoC"}
1
+ {"version":3,"sources":["TableRow.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableRow_unstable } from './useTableRow';\nimport { renderTableRow_unstable } from './renderTableRow';\nimport { useTableRowStyles_unstable } from './useTableRowStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableRow component\n */ export const TableRow = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useTableRow_unstable(props, ref);\n useTableRowStyles_unstable(state);\n useCustomStyleHook_unstable('useTableRowStyles_unstable')(state);\n return renderTableRow_unstable(state);\n});\nTableRow.displayName = 'TableRow';\n"],"names":["TableRow","React","forwardRef","props","ref","state","useTableRow_unstable","useTableRowStyles_unstable","useCustomStyleHook_unstable","renderTableRow_unstable","displayName"],"mappings":";;;;+BAOiBA;;aAAAA;;;6DAPM;6BACc;gCACG;yCACG;qCACC;AAGjC,MAAMA,WAAW,WAAW,GAAGC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAM;IACrE,MAAMC,QAAQC,IAAAA,iCAAoB,EAACH,OAAOC;IAC1CG,IAAAA,mDAA0B,EAACF;IAC3BG,IAAAA,gDAA2B,EAAC,8BAA8BH;IAC1D,OAAOI,IAAAA,uCAAuB,EAACJ;AACnC;AACAL,SAASU,WAAW,GAAG"}
@@ -2,6 +2,3 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- //# sourceMappingURL=TableRow.types.js.map
6
-
7
- //# sourceMappingURL=TableRow.types.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/TableRow.types.js"],"sourcesContent":["export {};\n//# sourceMappingURL=TableRow.types.js.map"],"names":[],"mappings":";;;;CACA,0CAA0C"}
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
@@ -8,6 +8,3 @@ _exportStar(require("./TableRow.types"), exports);
8
8
  _exportStar(require("./renderTableRow"), exports);
9
9
  _exportStar(require("./useTableRow"), exports);
10
10
  _exportStar(require("./useTableRowStyles.styles"), exports);
11
- //# sourceMappingURL=index.js.map
12
-
13
- //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/index.js"],"sourcesContent":["export * from './TableRow';\nexport * from './TableRow.types';\nexport * from './renderTableRow';\nexport * from './useTableRow';\nexport * from './useTableRowStyles.styles';\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA;CACd,iCAAiC"}
1
+ {"version":3,"sources":["index.js"],"sourcesContent":["export * from './TableRow';\nexport * from './TableRow.types';\nexport * from './renderTableRow';\nexport * from './useTableRow';\nexport * from './useTableRowStyles.styles';\n"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA"}
@@ -11,6 +11,4 @@ const _reactUtilities = require("@fluentui/react-utilities");
11
11
  const renderTableRow_unstable = (state)=>{
12
12
  const { slots , slotProps } = (0, _reactUtilities.getSlotsNext)(state);
13
13
  return /*#__PURE__*/ (0, _reactJsxRuntime.createElement)(slots.root, slotProps.root);
14
- }; //# sourceMappingURL=renderTableRow.js.map
15
-
16
- //# sourceMappingURL=renderTableRow.js.map
14
+ };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/renderTableRow.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of TableRow\n */\nexport const renderTableRow_unstable = state => {\n const {\n slots,\n slotProps\n } = getSlotsNext(state);\n return /*#__PURE__*/createElement(slots.root, slotProps.root);\n};\n//# sourceMappingURL=renderTableRow.js.map"],"names":["renderTableRow_unstable","state","slots","slotProps","getSlotsNext","createElement","root"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAKrCA;;aAAAA;;iCALqE;gCACrD;AAItB,MAAMA,0BAA0BC,CAAAA,QAAS;IAC9C,MAAM,EACJC,MAAK,EACLC,UAAS,EACV,GAAGC,IAAAA,4BAAY,EAACH;IACjB,OAAO,WAAW,GAAEI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI;AAC9D,GACA,0CAA0C"}
1
+ {"version":3,"sources":["renderTableRow.js"],"sourcesContent":["/** @jsxRuntime classic */ /** @jsx createElement */ import { createElement } from '@fluentui/react-jsx-runtime';\nimport { getSlotsNext } from '@fluentui/react-utilities';\n/**\n * Render the final JSX of TableRow\n */ export const renderTableRow_unstable = (state)=>{\n const { slots , slotProps } = getSlotsNext(state);\n return /*#__PURE__*/ createElement(slots.root, slotProps.root);\n};\n"],"names":["renderTableRow_unstable","state","slots","slotProps","getSlotsNext","createElement","root"],"mappings":"AAAA,wBAAwB,GAAG,uBAAuB;;;;+BAIjCA;;aAAAA;;iCAJkE;gCACtD;AAGlB,MAAMA,0BAA0B,CAACC,QAAQ;IAChD,MAAM,EAAEC,MAAK,EAAGC,UAAS,EAAG,GAAGC,IAAAA,4BAAY,EAACH;IAC5C,OAAO,WAAW,GAAGI,IAAAA,8BAAa,EAACH,MAAMI,IAAI,EAAEH,UAAUG,IAAI;AACjE"}
@@ -34,6 +34,4 @@ const useTableRow_unstable = (props, ref)=>{
34
34
  appearance: (_props_appearance = props.appearance) !== null && _props_appearance !== void 0 ? _props_appearance : 'none',
35
35
  isHeaderRow
36
36
  };
37
- }; //# sourceMappingURL=useTableRow.js.map
38
-
39
- //# sourceMappingURL=useTableRow.js.map
37
+ };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/useTableRow.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, useMergedRefs } from '@fluentui/react-utilities';\nimport { useFocusVisible, useFocusWithin } from '@fluentui/react-tabster';\nimport { useTableContext } from '../../contexts/tableContext';\nimport { useIsInTableHeader } from '../../contexts/tableHeaderContext';\n/**\n * Create the state required to render TableRow.\n *\n * The returned state can be modified with hooks such as useTableRowStyles_unstable,\n * before being passed to renderTableRow_unstable.\n *\n * @param props - props from this instance of TableRow\n * @param ref - reference to root HTMLElement of TableRow\n */\nexport const useTableRow_unstable = (props, ref) => {\n const {\n noNativeElements,\n size\n } = useTableContext();\n var _props_as;\n const rootComponent = ((_props_as = props.as) !== null && _props_as !== void 0 ? _props_as : noNativeElements) ? 'div' : 'tr';\n const focusVisibleRef = useFocusVisible();\n const focusWithinRef = useFocusWithin();\n const isHeaderRow = useIsInTableHeader();\n var _props_appearance;\n return {\n components: {\n root: rootComponent\n },\n root: getNativeElementProps(rootComponent, {\n ref: useMergedRefs(ref, focusVisibleRef, focusWithinRef),\n role: rootComponent === 'div' ? 'row' : undefined,\n ...props\n }),\n size,\n noNativeElements,\n appearance: (_props_appearance = props.appearance) !== null && _props_appearance !== void 0 ? _props_appearance : 'none',\n isHeaderRow\n };\n};\n//# sourceMappingURL=useTableRow.js.map"],"names":["useTableRow_unstable","props","ref","noNativeElements","size","useTableContext","_props_as","rootComponent","as","focusVisibleRef","useFocusVisible","focusWithinRef","useFocusWithin","isHeaderRow","useIsInTableHeader","_props_appearance","components","root","getNativeElementProps","useMergedRefs","role","undefined","appearance"],"mappings":";;;;+BAcaA;;aAAAA;;;6DAdU;gCAC8B;8BACL;8BAChB;oCACG;AAU5B,MAAMA,uBAAuB,CAACC,OAAOC,MAAQ;IAClD,MAAM,EACJC,iBAAgB,EAChBC,KAAI,EACL,GAAGC,IAAAA,6BAAe;IACnB,IAAIC;IACJ,MAAMC,gBAAgB,AAAC,CAAA,AAACD,CAAAA,YAAYL,MAAMO,EAAE,AAAD,MAAO,IAAI,IAAIF,cAAc,KAAK,IAAIA,YAAYH,gBAAgB,AAAD,IAAK,QAAQ,IAAI;IAC7H,MAAMM,kBAAkBC,IAAAA,6BAAe;IACvC,MAAMC,iBAAiBC,IAAAA,4BAAc;IACrC,MAAMC,cAAcC,IAAAA,sCAAkB;IACtC,IAAIC;IACJ,OAAO;QACLC,YAAY;YACVC,MAAMV;QACR;QACAU,MAAMC,IAAAA,qCAAqB,EAACX,eAAe;YACzCL,KAAKiB,IAAAA,6BAAa,EAACjB,KAAKO,iBAAiBE;YACzCS,MAAMb,kBAAkB,QAAQ,QAAQc,SAAS;YACjD,GAAGpB,KAAK;QACV;QACAG;QACAD;QACAmB,YAAY,AAACP,CAAAA,oBAAoBd,MAAMqB,UAAU,AAAD,MAAO,IAAI,IAAIP,sBAAsB,KAAK,IAAIA,oBAAoB,MAAM;QACxHF;IACF;AACF,GACA,uCAAuC"}
1
+ {"version":3,"sources":["useTableRow.js"],"sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, useMergedRefs } from '@fluentui/react-utilities';\nimport { useFocusVisible, useFocusWithin } from '@fluentui/react-tabster';\nimport { useTableContext } from '../../contexts/tableContext';\nimport { useIsInTableHeader } from '../../contexts/tableHeaderContext';\n/**\n * Create the state required to render TableRow.\n *\n * The returned state can be modified with hooks such as useTableRowStyles_unstable,\n * before being passed to renderTableRow_unstable.\n *\n * @param props - props from this instance of TableRow\n * @param ref - reference to root HTMLElement of TableRow\n */ export const useTableRow_unstable = (props, ref)=>{\n const { noNativeElements , size } = useTableContext();\n var _props_as;\n const rootComponent = ((_props_as = props.as) !== null && _props_as !== void 0 ? _props_as : noNativeElements) ? 'div' : 'tr';\n const focusVisibleRef = useFocusVisible();\n const focusWithinRef = useFocusWithin();\n const isHeaderRow = useIsInTableHeader();\n var _props_appearance;\n return {\n components: {\n root: rootComponent\n },\n root: getNativeElementProps(rootComponent, {\n ref: useMergedRefs(ref, focusVisibleRef, focusWithinRef),\n role: rootComponent === 'div' ? 'row' : undefined,\n ...props\n }),\n size,\n noNativeElements,\n appearance: (_props_appearance = props.appearance) !== null && _props_appearance !== void 0 ? _props_appearance : 'none',\n isHeaderRow\n };\n};\n"],"names":["useTableRow_unstable","props","ref","noNativeElements","size","useTableContext","_props_as","rootComponent","as","focusVisibleRef","useFocusVisible","focusWithinRef","useFocusWithin","isHeaderRow","useIsInTableHeader","_props_appearance","components","root","getNativeElementProps","useMergedRefs","role","undefined","appearance"],"mappings":";;;;+BAaiBA;;aAAAA;;;6DAbM;gCAC8B;8BACL;8BAChB;oCACG;AASxB,MAAMA,uBAAuB,CAACC,OAAOC,MAAM;IAClD,MAAM,EAAEC,iBAAgB,EAAGC,KAAI,EAAG,GAAGC,IAAAA,6BAAe;IACpD,IAAIC;IACJ,MAAMC,gBAAgB,AAAC,CAAA,AAACD,CAAAA,YAAYL,MAAMO,EAAE,AAAD,MAAO,IAAI,IAAIF,cAAc,KAAK,IAAIA,YAAYH,gBAAgB,AAAD,IAAK,QAAQ,IAAI;IAC7H,MAAMM,kBAAkBC,IAAAA,6BAAe;IACvC,MAAMC,iBAAiBC,IAAAA,4BAAc;IACrC,MAAMC,cAAcC,IAAAA,sCAAkB;IACtC,IAAIC;IACJ,OAAO;QACHC,YAAY;YACRC,MAAMV;QACV;QACAU,MAAMC,IAAAA,qCAAqB,EAACX,eAAe;YACvCL,KAAKiB,IAAAA,6BAAa,EAACjB,KAAKO,iBAAiBE;YACzCS,MAAMb,kBAAkB,QAAQ,QAAQc,SAAS;YACjD,GAAGpB,KAAK;QACZ;QACAG;QACAD;QACAmB,YAAY,AAACP,CAAAA,oBAAoBd,MAAMqB,UAAU,AAAD,MAAO,IAAI,IAAIP,sBAAsB,KAAK,IAAIA,oBAAoB,MAAM;QACxHF;IACJ;AACJ"}
@@ -94,18 +94,16 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
94
94
  },
95
95
  brand: {
96
96
  De3pzq: "f16xkysk",
97
- sj55zd: "f1cgsbmv",
98
- g2u3we: "frmsihh",
97
+ g2u3we: "f1bh3yvw",
99
98
  h3c5rm: [
100
- "frttxa5",
101
- "f11o2r7f"
99
+ "fmi79ni",
100
+ "f11fozsx"
102
101
  ],
103
- B9xav0g: "fem5et0",
102
+ B9xav0g: "fnzw4c6",
104
103
  zhjwy3: [
105
- "f11o2r7f",
106
- "frttxa5"
104
+ "f11fozsx",
105
+ "fmi79ni"
107
106
  ],
108
- Jwef8y: "f121v1wq",
109
107
  ecr2s2: "ftepret",
110
108
  gwxt9v: "fqlf3fd",
111
109
  v3aym: [
@@ -240,12 +238,16 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
240
238
  ".frpde29{border-bottom-color:var(--colorNeutralStroke2);}",
241
239
  ".fy9rknc{font-size:var(--fontSizeBase200);}",
242
240
  ".f16xkysk{background-color:var(--colorBrandBackground2);}",
241
+ ".f1bh3yvw{border-top-color:var(--colorTransparentStrokeInteractive);}",
242
+ ".fmi79ni{border-right-color:var(--colorTransparentStrokeInteractive);}",
243
+ ".f11fozsx{border-left-color:var(--colorTransparentStrokeInteractive);}",
244
+ ".fnzw4c6{border-bottom-color:var(--colorTransparentStrokeInteractive);}",
245
+ ".fq5gl1p{background-color:var(--colorSubtleBackgroundSelected);}",
243
246
  ".f1cgsbmv{color:var(--colorNeutralForeground1Hover);}",
244
247
  ".frmsihh{border-top-color:var(--colorNeutralStrokeOnBrand);}",
245
248
  ".frttxa5{border-right-color:var(--colorNeutralStrokeOnBrand);}",
246
249
  ".f11o2r7f{border-left-color:var(--colorNeutralStrokeOnBrand);}",
247
- ".fem5et0{border-bottom-color:var(--colorNeutralStrokeOnBrand);}",
248
- ".fq5gl1p{background-color:var(--colorSubtleBackgroundSelected);}"
250
+ ".fem5et0{border-bottom-color:var(--colorNeutralStrokeOnBrand);}"
249
251
  ],
250
252
  a: [
251
253
  ".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}",
@@ -260,7 +262,6 @@ const useFlexLayoutStyles = /*#__PURE__*/ (0, _react["__styles"])({
260
262
  ".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}",
261
263
  ".f1uorfem:hover .fui-TableCellActions{opacity:1;}",
262
264
  ".fw60kww:hover .fui-TableSelectionCell{opacity:1;}",
263
- ".f121v1wq:hover{background-color:var(--colorBrandBackground2);}",
264
265
  ".f1uqaxdt:hover{background-color:var(--colorSubtleBackgroundSelected);}"
265
266
  ],
266
267
  m: [
@@ -491,5 +492,3 @@ const useTableRowStyles_unstable = (state)=>{
491
492
  state.root.className = (0, _react.mergeClasses)(tableRowClassNames.root, styles.root, !state.isHeaderRow && styles.rootInteractive, styles[state.size], state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, styles[state.appearance], state.appearance === 'none' && !state.isHeaderRow && styles.noAppearanceFocusWithin, state.root.className);
492
493
  return state;
493
494
  }; //# sourceMappingURL=useTableRowStyles.styles.js.map
494
-
495
- //# sourceMappingURL=useTableRowStyles.styles.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableRow/useTableRowStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { tableCellActionsClassNames } from '../TableCellActions/useTableCellActionsStyles.styles';\nimport { tableSelectionCellClassNames } from '../TableSelectionCell/useTableSelectionCellStyles.styles';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nexport const tableRowClassName = 'fui-TableRow';\nexport const tableRowClassNames = {\n root: tableRowClassName\n};\nconst useTableLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f1u0rzck\"\n }\n}, {\n d: [\".f1u0rzck{display:table-row;}\"]\n});\nconst useFlexLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n Bt984gj: \"f122n59\"\n }\n}, {\n d: [\".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\"]\n});\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n sj55zd: \"f19n0e5\",\n B7ck84d: \"f1ewtqcl\",\n Bconypa: \"f1jazu75\",\n B6guboy: \"f1xeqee6\",\n Bn4voq9: \"fz36nt7\",\n g9k6zt: \"f9znhxp\",\n Bfpq7zp: \"fqrak0z\",\n kdpuga: [\"f1o2ludy\", \"f1kjnpwc\"],\n Bw81rd7: [\"f1kjnpwc\", \"f1o2ludy\"],\n B6xbmo0: [\"fxmnebo\", \"f1witrsb\"],\n dm238s: [\"f1witrsb\", \"fxmnebo\"]\n },\n noAppearanceFocusWithin: {\n Bm5rygw: \"f13cic75\"\n },\n rootInteractive: {\n ecr2s2: \"f1wfn5kd\",\n lj723h: \"f1g4hkjv\",\n B43xm9u: \"f15ngxrw\",\n i921ia: \"fjbbrdp\",\n Jwef8y: \"f1t94bn6\",\n Bi91k9c: \"feu1g3u\",\n Bpt6rm4: \"f1uorfem\",\n ff6mpl: \"fw60kww\"\n },\n medium: {\n Bn0qgzm: \"f1vxd6vx\",\n oivjwe: \"fg706s2\",\n B9xav0g: \"frpde29\"\n },\n small: {\n Bn0qgzm: \"f1vxd6vx\",\n oivjwe: \"fg706s2\",\n B9xav0g: \"frpde29\"\n },\n \"extra-small\": {\n Be2twd7: \"fy9rknc\"\n },\n brand: {\n De3pzq: \"f16xkysk\",\n sj55zd: \"f1cgsbmv\",\n g2u3we: \"frmsihh\",\n h3c5rm: [\"frttxa5\", \"f11o2r7f\"],\n B9xav0g: \"fem5et0\",\n zhjwy3: [\"f11o2r7f\", \"frttxa5\"],\n Jwef8y: \"f121v1wq\",\n ecr2s2: \"ftepret\",\n gwxt9v: \"fqlf3fd\",\n v3aym: [\"f9dpb3h\", \"fw2muls\"],\n Bc736ss: \"f1yat0gj\",\n Bk6ri7n: [\"fw2muls\", \"f9dpb3h\"],\n Bk5ld8o: \"f7nae3y\",\n c4eypz: [\"fkbere7\", \"fa97sf3\"],\n felo30: \"fmtyzcc\",\n Eshu5l: [\"fa97sf3\", \"fkbere7\"],\n Bjwas2f: \"fb6zhgp\",\n Bn1d65q: [\"fyowp6c\", \"fz08sq8\"],\n Bxeuatn: \"f9dii88\",\n n51gp8: [\"fz08sq8\", \"fyowp6c\"],\n Beo2b4z: [\"f1afxoft\", \"flqq2yx\"],\n h6lo6r: [\"flqq2yx\", \"f1afxoft\"],\n Btyw6ap: [\"f1b5xrmd\", \"f1831rx6\"],\n w1pwid: [\"f1831rx6\", \"f1b5xrmd\"],\n Brwvgy3: \"fd94n53\",\n yadkgm: \"f1e0wld5\"\n },\n neutral: {\n gwxt9v: \"fqlf3fd\",\n v3aym: [\"f9dpb3h\", \"fw2muls\"],\n Bc736ss: \"f1yat0gj\",\n Bk6ri7n: [\"fw2muls\", \"f9dpb3h\"],\n Bk5ld8o: \"f7nae3y\",\n c4eypz: [\"fkbere7\", \"fa97sf3\"],\n felo30: \"fmtyzcc\",\n Eshu5l: [\"fa97sf3\", \"fkbere7\"],\n Bjwas2f: \"fb6zhgp\",\n Bn1d65q: [\"fyowp6c\", \"fz08sq8\"],\n Bxeuatn: \"f9dii88\",\n n51gp8: [\"fz08sq8\", \"fyowp6c\"],\n Beo2b4z: [\"f1afxoft\", \"flqq2yx\"],\n h6lo6r: [\"flqq2yx\", \"f1afxoft\"],\n Btyw6ap: [\"f1b5xrmd\", \"f1831rx6\"],\n w1pwid: [\"f1831rx6\", \"f1b5xrmd\"],\n Brwvgy3: \"fd94n53\",\n yadkgm: \"f1e0wld5\",\n De3pzq: \"fq5gl1p\",\n sj55zd: \"f1cgsbmv\",\n Jwef8y: \"f1uqaxdt\",\n ecr2s2: \"fa9o754\",\n g2u3we: \"frmsihh\",\n h3c5rm: [\"frttxa5\", \"f11o2r7f\"],\n B9xav0g: \"fem5et0\",\n zhjwy3: [\"f11o2r7f\", \"frttxa5\"]\n },\n none: {}\n}, {\n d: [\".f19n0e5{color:var(--colorNeutralForeground1);}\", \".f1ewtqcl{box-sizing:border-box;}\", \".f1jazu75[data-fui-focus-within]:focus-within .fui-TableSelectionCell{opacity:1;}\", \".f1xeqee6[data-fui-focus-within]:focus-within .fui-TableCellActions{opacity:1;}\", \".fz36nt7[data-fui-focus-visible]{outline-width:2px;}\", \".f9znhxp[data-fui-focus-visible]{outline-style:solid;}\", \".fqrak0z[data-fui-focus-visible]{outline-color:var(--colorStrokeFocus2);}\", \".f1o2ludy[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f1kjnpwc[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".fxmnebo[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusMedium);}\", \".f1witrsb[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusMedium);}\", \".f13cic75[data-fui-focus-within]:focus-within{background-color:var(--colorSubtleBackgroundHover);}\", \".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}\", \".fg706s2{border-bottom-style:solid;}\", \".frpde29{border-bottom-color:var(--colorNeutralStroke2);}\", \".fy9rknc{font-size:var(--fontSizeBase200);}\", \".f16xkysk{background-color:var(--colorBrandBackground2);}\", \".f1cgsbmv{color:var(--colorNeutralForeground1Hover);}\", \".frmsihh{border-top-color:var(--colorNeutralStrokeOnBrand);}\", \".frttxa5{border-right-color:var(--colorNeutralStrokeOnBrand);}\", \".f11o2r7f{border-left-color:var(--colorNeutralStrokeOnBrand);}\", \".fem5et0{border-bottom-color:var(--colorNeutralStrokeOnBrand);}\", \".fq5gl1p{background-color:var(--colorSubtleBackgroundSelected);}\"],\n a: [\".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}\", \".f1g4hkjv:active{color:var(--colorNeutralForeground1Pressed);}\", \".f15ngxrw:active .fui-TableCellActions{opacity:1;}\", \".fjbbrdp:active .fui-TableSelectionCell{opacity:1;}\", \".ftepret:active{background-color:var(--colorBrandBackgroundInvertedSelected);}\", \".fa9o754:active{background-color:var(--colorSubtleBackgroundSelected);}\"],\n h: [\".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}\", \".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}\", \".f1uorfem:hover .fui-TableCellActions{opacity:1;}\", \".fw60kww:hover .fui-TableSelectionCell{opacity:1;}\", \".f121v1wq:hover{background-color:var(--colorBrandBackground2);}\", \".f1uqaxdt:hover{background-color:var(--colorSubtleBackgroundSelected);}\"],\n m: [[\"@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}\", {\n m: \"(forced-colors: active)\"\n }]]\n});\n/**\n * Apply styling to the TableRow slots based on the state\n */\nexport const useTableRowStyles_unstable = state => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles()\n };\n state.root.className = mergeClasses(tableRowClassNames.root, styles.root, !state.isHeaderRow && styles.rootInteractive, styles[state.size], state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, styles[state.appearance], state.appearance === 'none' && !state.isHeaderRow && styles.noAppearanceFocusWithin, state.root.className);\n return state;\n};\n//# sourceMappingURL=useTableRowStyles.styles.js.map"],"names":["tableRowClassName","tableRowClassNames","useTableRowStyles_unstable","root","useTableLayoutStyles","__styles","mc9l5x","d","useFlexLayoutStyles","Bt984gj","useStyles","sj55zd","B7ck84d","Bconypa","B6guboy","Bn4voq9","g9k6zt","Bfpq7zp","kdpuga","Bw81rd7","B6xbmo0","dm238s","noAppearanceFocusWithin","Bm5rygw","rootInteractive","ecr2s2","lj723h","B43xm9u","i921ia","Jwef8y","Bi91k9c","Bpt6rm4","ff6mpl","medium","Bn0qgzm","oivjwe","B9xav0g","small","Be2twd7","brand","De3pzq","g2u3we","h3c5rm","zhjwy3","gwxt9v","v3aym","Bc736ss","Bk6ri7n","Bk5ld8o","c4eypz","felo30","Eshu5l","Bjwas2f","Bn1d65q","Bxeuatn","n51gp8","Beo2b4z","h6lo6r","Btyw6ap","w1pwid","Brwvgy3","yadkgm","neutral","none","a","h","m","state","styles","layoutStyles","table","flex","className","mergeClasses","isHeaderRow","size","noNativeElements","appearance"],"mappings":"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"}
1
+ {"version":3,"sources":["useTableRowStyles.styles.js"],"sourcesContent":["import { __styles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { tableCellActionsClassNames } from '../TableCellActions/useTableCellActionsStyles.styles';\nimport { tableSelectionCellClassNames } from '../TableSelectionCell/useTableSelectionCellStyles.styles';\nimport { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';\nexport const tableRowClassName = 'fui-TableRow';\nexport const tableRowClassNames = {\n root: tableRowClassName\n};\nconst useTableLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f1u0rzck\"\n }\n}, {\n d: [\".f1u0rzck{display:table-row;}\"]\n});\nconst useFlexLayoutStyles = /*#__PURE__*/__styles({\n root: {\n mc9l5x: \"f22iagw\",\n Bt984gj: \"f122n59\"\n }\n}, {\n d: [\".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}\", \".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}\"]\n});\n/**\n * Styles for the root slot\n */\nconst useStyles = /*#__PURE__*/__styles({\n root: {\n sj55zd: \"f19n0e5\",\n B7ck84d: \"f1ewtqcl\",\n Bconypa: \"f1jazu75\",\n B6guboy: \"f1xeqee6\",\n Bn4voq9: \"fz36nt7\",\n g9k6zt: \"f9znhxp\",\n Bfpq7zp: \"fqrak0z\",\n kdpuga: [\"f1o2ludy\", \"f1kjnpwc\"],\n Bw81rd7: [\"f1kjnpwc\", \"f1o2ludy\"],\n B6xbmo0: [\"fxmnebo\", \"f1witrsb\"],\n dm238s: [\"f1witrsb\", \"fxmnebo\"]\n },\n noAppearanceFocusWithin: {\n Bm5rygw: \"f13cic75\"\n },\n rootInteractive: {\n ecr2s2: \"f1wfn5kd\",\n lj723h: \"f1g4hkjv\",\n B43xm9u: \"f15ngxrw\",\n i921ia: \"fjbbrdp\",\n Jwef8y: \"f1t94bn6\",\n Bi91k9c: \"feu1g3u\",\n Bpt6rm4: \"f1uorfem\",\n ff6mpl: \"fw60kww\"\n },\n medium: {\n Bn0qgzm: \"f1vxd6vx\",\n oivjwe: \"fg706s2\",\n B9xav0g: \"frpde29\"\n },\n small: {\n Bn0qgzm: \"f1vxd6vx\",\n oivjwe: \"fg706s2\",\n B9xav0g: \"frpde29\"\n },\n \"extra-small\": {\n Be2twd7: \"fy9rknc\"\n },\n brand: {\n De3pzq: \"f16xkysk\",\n g2u3we: \"f1bh3yvw\",\n h3c5rm: [\"fmi79ni\", \"f11fozsx\"],\n B9xav0g: \"fnzw4c6\",\n zhjwy3: [\"f11fozsx\", \"fmi79ni\"],\n ecr2s2: \"ftepret\",\n gwxt9v: \"fqlf3fd\",\n v3aym: [\"f9dpb3h\", \"fw2muls\"],\n Bc736ss: \"f1yat0gj\",\n Bk6ri7n: [\"fw2muls\", \"f9dpb3h\"],\n Bk5ld8o: \"f7nae3y\",\n c4eypz: [\"fkbere7\", \"fa97sf3\"],\n felo30: \"fmtyzcc\",\n Eshu5l: [\"fa97sf3\", \"fkbere7\"],\n Bjwas2f: \"fb6zhgp\",\n Bn1d65q: [\"fyowp6c\", \"fz08sq8\"],\n Bxeuatn: \"f9dii88\",\n n51gp8: [\"fz08sq8\", \"fyowp6c\"],\n Beo2b4z: [\"f1afxoft\", \"flqq2yx\"],\n h6lo6r: [\"flqq2yx\", \"f1afxoft\"],\n Btyw6ap: [\"f1b5xrmd\", \"f1831rx6\"],\n w1pwid: [\"f1831rx6\", \"f1b5xrmd\"],\n Brwvgy3: \"fd94n53\",\n yadkgm: \"f1e0wld5\"\n },\n neutral: {\n gwxt9v: \"fqlf3fd\",\n v3aym: [\"f9dpb3h\", \"fw2muls\"],\n Bc736ss: \"f1yat0gj\",\n Bk6ri7n: [\"fw2muls\", \"f9dpb3h\"],\n Bk5ld8o: \"f7nae3y\",\n c4eypz: [\"fkbere7\", \"fa97sf3\"],\n felo30: \"fmtyzcc\",\n Eshu5l: [\"fa97sf3\", \"fkbere7\"],\n Bjwas2f: \"fb6zhgp\",\n Bn1d65q: [\"fyowp6c\", \"fz08sq8\"],\n Bxeuatn: \"f9dii88\",\n n51gp8: [\"fz08sq8\", \"fyowp6c\"],\n Beo2b4z: [\"f1afxoft\", \"flqq2yx\"],\n h6lo6r: [\"flqq2yx\", \"f1afxoft\"],\n Btyw6ap: [\"f1b5xrmd\", \"f1831rx6\"],\n w1pwid: [\"f1831rx6\", \"f1b5xrmd\"],\n Brwvgy3: \"fd94n53\",\n yadkgm: \"f1e0wld5\",\n De3pzq: \"fq5gl1p\",\n sj55zd: \"f1cgsbmv\",\n Jwef8y: \"f1uqaxdt\",\n ecr2s2: \"fa9o754\",\n g2u3we: \"frmsihh\",\n h3c5rm: [\"frttxa5\", \"f11o2r7f\"],\n B9xav0g: \"fem5et0\",\n zhjwy3: [\"f11o2r7f\", \"frttxa5\"]\n },\n none: {}\n}, {\n d: [\".f19n0e5{color:var(--colorNeutralForeground1);}\", \".f1ewtqcl{box-sizing:border-box;}\", \".f1jazu75[data-fui-focus-within]:focus-within .fui-TableSelectionCell{opacity:1;}\", \".f1xeqee6[data-fui-focus-within]:focus-within .fui-TableCellActions{opacity:1;}\", \".fz36nt7[data-fui-focus-visible]{outline-width:2px;}\", \".f9znhxp[data-fui-focus-visible]{outline-style:solid;}\", \".fqrak0z[data-fui-focus-visible]{outline-color:var(--colorStrokeFocus2);}\", \".f1o2ludy[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusMedium);}\", \".f1kjnpwc[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusMedium);}\", \".fxmnebo[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusMedium);}\", \".f1witrsb[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusMedium);}\", \".f13cic75[data-fui-focus-within]:focus-within{background-color:var(--colorSubtleBackgroundHover);}\", \".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}\", \".fg706s2{border-bottom-style:solid;}\", \".frpde29{border-bottom-color:var(--colorNeutralStroke2);}\", \".fy9rknc{font-size:var(--fontSizeBase200);}\", \".f16xkysk{background-color:var(--colorBrandBackground2);}\", \".f1bh3yvw{border-top-color:var(--colorTransparentStrokeInteractive);}\", \".fmi79ni{border-right-color:var(--colorTransparentStrokeInteractive);}\", \".f11fozsx{border-left-color:var(--colorTransparentStrokeInteractive);}\", \".fnzw4c6{border-bottom-color:var(--colorTransparentStrokeInteractive);}\", \".fq5gl1p{background-color:var(--colorSubtleBackgroundSelected);}\", \".f1cgsbmv{color:var(--colorNeutralForeground1Hover);}\", \".frmsihh{border-top-color:var(--colorNeutralStrokeOnBrand);}\", \".frttxa5{border-right-color:var(--colorNeutralStrokeOnBrand);}\", \".f11o2r7f{border-left-color:var(--colorNeutralStrokeOnBrand);}\", \".fem5et0{border-bottom-color:var(--colorNeutralStrokeOnBrand);}\"],\n a: [\".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}\", \".f1g4hkjv:active{color:var(--colorNeutralForeground1Pressed);}\", \".f15ngxrw:active .fui-TableCellActions{opacity:1;}\", \".fjbbrdp:active .fui-TableSelectionCell{opacity:1;}\", \".ftepret:active{background-color:var(--colorBrandBackgroundInvertedSelected);}\", \".fa9o754:active{background-color:var(--colorSubtleBackgroundSelected);}\"],\n h: [\".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}\", \".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}\", \".f1uorfem:hover .fui-TableCellActions{opacity:1;}\", \".fw60kww:hover .fui-TableSelectionCell{opacity:1;}\", \".f1uqaxdt:hover{background-color:var(--colorSubtleBackgroundSelected);}\"],\n m: [[\"@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}\", {\n m: \"(forced-colors: active)\"\n }], [\"@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}\", {\n m: \"(forced-colors: active)\"\n }]]\n});\n/**\n * Apply styling to the TableRow slots based on the state\n */\nexport const useTableRowStyles_unstable = state => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles()\n };\n state.root.className = mergeClasses(tableRowClassNames.root, styles.root, !state.isHeaderRow && styles.rootInteractive, styles[state.size], state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, styles[state.appearance], state.appearance === 'none' && !state.isHeaderRow && styles.noAppearanceFocusWithin, state.root.className);\n return state;\n};\n//# sourceMappingURL=useTableRowStyles.styles.js.map"],"names":["tableRowClassName","tableRowClassNames","useTableRowStyles_unstable","root","useTableLayoutStyles","__styles","mc9l5x","d","useFlexLayoutStyles","Bt984gj","useStyles","sj55zd","B7ck84d","Bconypa","B6guboy","Bn4voq9","g9k6zt","Bfpq7zp","kdpuga","Bw81rd7","B6xbmo0","dm238s","noAppearanceFocusWithin","Bm5rygw","rootInteractive","ecr2s2","lj723h","B43xm9u","i921ia","Jwef8y","Bi91k9c","Bpt6rm4","ff6mpl","medium","Bn0qgzm","oivjwe","B9xav0g","small","Be2twd7","brand","De3pzq","g2u3we","h3c5rm","zhjwy3","gwxt9v","v3aym","Bc736ss","Bk6ri7n","Bk5ld8o","c4eypz","felo30","Eshu5l","Bjwas2f","Bn1d65q","Bxeuatn","n51gp8","Beo2b4z","h6lo6r","Btyw6ap","w1pwid","Brwvgy3","yadkgm","neutral","none","a","h","m","state","styles","layoutStyles","table","flex","className","mergeClasses","isHeaderRow","size","noNativeElements","appearance"],"mappings":"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"}
@@ -18,6 +18,4 @@ const TableSelectionCell = /*#__PURE__*/ _react.forwardRef((props, ref)=>{
18
18
  (0, _reactSharedContexts.useCustomStyleHook_unstable)('useTableSelectionCellStyles_unstable')(state);
19
19
  return (0, _renderTableSelectionCell.renderTableSelectionCell_unstable)(state);
20
20
  });
21
- TableSelectionCell.displayName = 'TableSelectionCell'; //# sourceMappingURL=TableSelectionCell.js.map
22
-
23
- //# sourceMappingURL=TableSelectionCell.js.map
21
+ TableSelectionCell.displayName = 'TableSelectionCell';
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../lib/components/TableSelectionCell/TableSelectionCell.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableSelectionCell_unstable } from './useTableSelectionCell';\nimport { renderTableSelectionCell_unstable } from './renderTableSelectionCell';\nimport { useTableSelectionCellStyles_unstable } from './useTableSelectionCellStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableSelectionCell component\n */\nexport const TableSelectionCell = /*#__PURE__*/React.forwardRef((props, ref) => {\n const state = useTableSelectionCell_unstable(props, ref);\n useTableSelectionCellStyles_unstable(state);\n useCustomStyleHook_unstable('useTableSelectionCellStyles_unstable')(state);\n return renderTableSelectionCell_unstable(state);\n});\nTableSelectionCell.displayName = 'TableSelectionCell';\n//# sourceMappingURL=TableSelectionCell.js.map"],"names":["TableSelectionCell","React","forwardRef","props","ref","state","useTableSelectionCell_unstable","useTableSelectionCellStyles_unstable","useCustomStyleHook_unstable","renderTableSelectionCell_unstable","displayName"],"mappings":";;;;+BAQaA;;aAAAA;;;6DARU;uCACwB;0CACG;mDACG;qCACT;AAIrC,MAAMA,qBAAqB,WAAW,GAAEC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAQ;IAC9E,MAAMC,QAAQC,IAAAA,qDAA8B,EAACH,OAAOC;IACpDG,IAAAA,uEAAoC,EAACF;IACrCG,IAAAA,gDAA2B,EAAC,wCAAwCH;IACpE,OAAOI,IAAAA,2DAAiC,EAACJ;AAC3C;AACAL,mBAAmBU,WAAW,GAAG,sBACjC,8CAA8C"}
1
+ {"version":3,"sources":["TableSelectionCell.js"],"sourcesContent":["import * as React from 'react';\nimport { useTableSelectionCell_unstable } from './useTableSelectionCell';\nimport { renderTableSelectionCell_unstable } from './renderTableSelectionCell';\nimport { useTableSelectionCellStyles_unstable } from './useTableSelectionCellStyles.styles';\nimport { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';\n/**\n * TableSelectionCell component\n */ export const TableSelectionCell = /*#__PURE__*/ React.forwardRef((props, ref)=>{\n const state = useTableSelectionCell_unstable(props, ref);\n useTableSelectionCellStyles_unstable(state);\n useCustomStyleHook_unstable('useTableSelectionCellStyles_unstable')(state);\n return renderTableSelectionCell_unstable(state);\n});\nTableSelectionCell.displayName = 'TableSelectionCell';\n"],"names":["TableSelectionCell","React","forwardRef","props","ref","state","useTableSelectionCell_unstable","useTableSelectionCellStyles_unstable","useCustomStyleHook_unstable","renderTableSelectionCell_unstable","displayName"],"mappings":";;;;+BAOiBA;;aAAAA;;;6DAPM;uCACwB;0CACG;mDACG;qCACT;AAGjC,MAAMA,qBAAqB,WAAW,GAAGC,OAAMC,UAAU,CAAC,CAACC,OAAOC,MAAM;IAC/E,MAAMC,QAAQC,IAAAA,qDAA8B,EAACH,OAAOC;IACpDG,IAAAA,uEAAoC,EAACF;IACrCG,IAAAA,gDAA2B,EAAC,wCAAwCH;IACpE,OAAOI,IAAAA,2DAAiC,EAACJ;AAC7C;AACAL,mBAAmBU,WAAW,GAAG"}
@@ -2,6 +2,3 @@
2
2
  Object.defineProperty(exports, "__esModule", {
3
3
  value: true
4
4
  });
5
- //# sourceMappingURL=TableSelectionCell.types.js.map
6
-
7
- //# sourceMappingURL=TableSelectionCell.types.js.map