@fluentui/react-table 0.0.0-nightly-20221007-1237.1
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.
- package/CHANGELOG.json +354 -0
- package/CHANGELOG.md +104 -0
- package/LICENSE +15 -0
- package/README.md +5 -0
- package/Spec.md +63 -0
- package/dist/index.d.ts +647 -0
- package/lib/Table.js +2 -0
- package/lib/Table.js.map +1 -0
- package/lib/TableBody.js +2 -0
- package/lib/TableBody.js.map +1 -0
- package/lib/TableCell.js +2 -0
- package/lib/TableCell.js.map +1 -0
- package/lib/TableCellActions.js +2 -0
- package/lib/TableCellActions.js.map +1 -0
- package/lib/TableCellLayout.js +2 -0
- package/lib/TableCellLayout.js.map +1 -0
- package/lib/TableCellPrimaryLayout.js +2 -0
- package/lib/TableCellPrimaryLayout.js.map +1 -0
- package/lib/TableHeader.js +2 -0
- package/lib/TableHeader.js.map +1 -0
- package/lib/TableHeaderCell.js +2 -0
- package/lib/TableHeaderCell.js.map +1 -0
- package/lib/TableRow.js +2 -0
- package/lib/TableRow.js.map +1 -0
- package/lib/TableSelectionCell.js +2 -0
- package/lib/TableSelectionCell.js.map +1 -0
- package/lib/components/Table/Table.js +16 -0
- package/lib/components/Table/Table.js.map +1 -0
- package/lib/components/Table/Table.types.js +2 -0
- package/lib/components/Table/Table.types.js.map +1 -0
- package/lib/components/Table/index.js +6 -0
- package/lib/components/Table/index.js.map +1 -0
- package/lib/components/Table/renderTable.js +18 -0
- package/lib/components/Table/renderTable.js.map +1 -0
- package/lib/components/Table/useTable.js +30 -0
- package/lib/components/Table/useTable.js.map +1 -0
- package/lib/components/Table/useTableContextValues.js +17 -0
- package/lib/components/Table/useTableContextValues.js.map +1 -0
- package/lib/components/Table/useTableStyles.js +53 -0
- package/lib/components/Table/useTableStyles.js.map +1 -0
- package/lib/components/TableBody/TableBody.js +15 -0
- package/lib/components/TableBody/TableBody.js.map +1 -0
- package/lib/components/TableBody/TableBody.types.js +2 -0
- package/lib/components/TableBody/TableBody.types.js.map +1 -0
- package/lib/components/TableBody/index.js +6 -0
- package/lib/components/TableBody/index.js.map +1 -0
- package/lib/components/TableBody/renderTableBody.js +16 -0
- package/lib/components/TableBody/renderTableBody.js.map +1 -0
- package/lib/components/TableBody/useTableBody.js +32 -0
- package/lib/components/TableBody/useTableBody.js.map +1 -0
- package/lib/components/TableBody/useTableBodyStyles.js +35 -0
- package/lib/components/TableBody/useTableBodyStyles.js.map +1 -0
- package/lib/components/TableCell/TableCell.js +15 -0
- package/lib/components/TableCell/TableCell.js.map +1 -0
- package/lib/components/TableCell/TableCell.types.js +2 -0
- package/lib/components/TableCell/TableCell.types.js.map +1 -0
- package/lib/components/TableCell/index.js +6 -0
- package/lib/components/TableCell/index.js.map +1 -0
- package/lib/components/TableCell/renderTableCell.js +15 -0
- package/lib/components/TableCell/renderTableCell.js.map +1 -0
- package/lib/components/TableCell/useTableCell.js +32 -0
- package/lib/components/TableCell/useTableCell.js.map +1 -0
- package/lib/components/TableCell/useTableCellStyles.js +59 -0
- package/lib/components/TableCell/useTableCellStyles.js.map +1 -0
- package/lib/components/TableCellActions/TableCellActions.js +15 -0
- package/lib/components/TableCellActions/TableCellActions.js.map +1 -0
- package/lib/components/TableCellActions/TableCellActions.types.js +2 -0
- package/lib/components/TableCellActions/TableCellActions.types.js.map +1 -0
- package/lib/components/TableCellActions/index.js +6 -0
- package/lib/components/TableCellActions/index.js.map +1 -0
- package/lib/components/TableCellActions/renderTableCellActions.js +16 -0
- package/lib/components/TableCellActions/renderTableCellActions.js.map +1 -0
- package/lib/components/TableCellActions/useTableCellActions.js +27 -0
- package/lib/components/TableCellActions/useTableCellActions.js.map +1 -0
- package/lib/components/TableCellActions/useTableCellActionsStyles.js +40 -0
- package/lib/components/TableCellActions/useTableCellActionsStyles.js.map +1 -0
- package/lib/components/TableCellLayout/TableCellLayout.js +16 -0
- package/lib/components/TableCellLayout/TableCellLayout.js.map +1 -0
- package/lib/components/TableCellLayout/TableCellLayout.types.js +2 -0
- package/lib/components/TableCellLayout/TableCellLayout.types.js.map +1 -0
- package/lib/components/TableCellLayout/index.js +6 -0
- package/lib/components/TableCellLayout/index.js.map +1 -0
- package/lib/components/TableCellLayout/renderTableCellLayout.js +22 -0
- package/lib/components/TableCellLayout/renderTableCellLayout.js.map +1 -0
- package/lib/components/TableCellLayout/useTableCellLayout.js +46 -0
- package/lib/components/TableCellLayout/useTableCellLayout.js.map +1 -0
- package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js +13 -0
- package/lib/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -0
- package/lib/components/TableCellLayout/useTableCellLayoutStyles.js +74 -0
- package/lib/components/TableCellLayout/useTableCellLayoutStyles.js.map +1 -0
- package/lib/components/TableHeader/TableHeader.js +15 -0
- package/lib/components/TableHeader/TableHeader.js.map +1 -0
- package/lib/components/TableHeader/TableHeader.types.js +2 -0
- package/lib/components/TableHeader/TableHeader.types.js.map +1 -0
- package/lib/components/TableHeader/index.js +6 -0
- package/lib/components/TableHeader/index.js.map +1 -0
- package/lib/components/TableHeader/renderTableHeader.js +15 -0
- package/lib/components/TableHeader/renderTableHeader.js.map +1 -0
- package/lib/components/TableHeader/useTableHeader.js +39 -0
- package/lib/components/TableHeader/useTableHeader.js.map +1 -0
- package/lib/components/TableHeader/useTableHeaderStyles.js +41 -0
- package/lib/components/TableHeader/useTableHeaderStyles.js.map +1 -0
- package/lib/components/TableHeaderCell/TableHeaderCell.js +15 -0
- package/lib/components/TableHeaderCell/TableHeaderCell.js.map +1 -0
- package/lib/components/TableHeaderCell/TableHeaderCell.types.js +2 -0
- package/lib/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -0
- package/lib/components/TableHeaderCell/index.js +6 -0
- package/lib/components/TableHeaderCell/index.js.map +1 -0
- package/lib/components/TableHeaderCell/renderTableHeaderCell.js +17 -0
- package/lib/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -0
- package/lib/components/TableHeaderCell/useTableHeaderCell.js +62 -0
- package/lib/components/TableHeaderCell/useTableHeaderCell.js.map +1 -0
- package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js +106 -0
- package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -0
- package/lib/components/TableRow/TableRow.js +15 -0
- package/lib/components/TableRow/TableRow.js.map +1 -0
- package/lib/components/TableRow/TableRow.types.js +2 -0
- package/lib/components/TableRow/TableRow.types.js.map +1 -0
- package/lib/components/TableRow/index.js +6 -0
- package/lib/components/TableRow/index.js.map +1 -0
- package/lib/components/TableRow/renderTableRow.js +16 -0
- package/lib/components/TableRow/renderTableRow.js.map +1 -0
- package/lib/components/TableRow/useTableRow.js +34 -0
- package/lib/components/TableRow/useTableRow.js.map +1 -0
- package/lib/components/TableRow/useTableRowStyles.js +88 -0
- package/lib/components/TableRow/useTableRowStyles.js.map +1 -0
- package/lib/components/TableSelectionCell/TableSelectionCell.js +15 -0
- package/lib/components/TableSelectionCell/TableSelectionCell.js.map +1 -0
- package/lib/components/TableSelectionCell/TableSelectionCell.types.js +2 -0
- package/lib/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -0
- package/lib/components/TableSelectionCell/index.js +6 -0
- package/lib/components/TableSelectionCell/index.js.map +1 -0
- package/lib/components/TableSelectionCell/renderTableSelectionCell.js +17 -0
- package/lib/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -0
- package/lib/components/TableSelectionCell/useTableSelectionCell.js +47 -0
- package/lib/components/TableSelectionCell/useTableSelectionCell.js.map +1 -0
- package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js +81 -0
- package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -0
- package/lib/contexts/tableContext.js +14 -0
- package/lib/contexts/tableContext.js.map +1 -0
- package/lib/hooks/index.js +5 -0
- package/lib/hooks/index.js.map +1 -0
- package/lib/hooks/selectionManager.js +89 -0
- package/lib/hooks/selectionManager.js.map +1 -0
- package/lib/hooks/types.js +2 -0
- package/lib/hooks/types.js.map +1 -0
- package/lib/hooks/useSelection.js +74 -0
- package/lib/hooks/useSelection.js.map +1 -0
- package/lib/hooks/useSort.js +94 -0
- package/lib/hooks/useSort.js.map +1 -0
- package/lib/hooks/useTable.js +32 -0
- package/lib/hooks/useTable.js.map +1 -0
- package/lib/index.js +12 -0
- package/lib/index.js.map +1 -0
- package/lib/navigationModes/cell.js +250 -0
- package/lib/navigationModes/cell.js.map +1 -0
- package/lib/navigationModes/composite.js +208 -0
- package/lib/navigationModes/composite.js.map +1 -0
- package/lib/navigationModes/index.js +3 -0
- package/lib/navigationModes/index.js.map +1 -0
- package/lib/navigationModes/useNavigationMode.js +42 -0
- package/lib/navigationModes/useNavigationMode.js.map +1 -0
- package/lib-commonjs/Table.js +10 -0
- package/lib-commonjs/Table.js.map +1 -0
- package/lib-commonjs/TableBody.js +10 -0
- package/lib-commonjs/TableBody.js.map +1 -0
- package/lib-commonjs/TableCell.js +10 -0
- package/lib-commonjs/TableCell.js.map +1 -0
- package/lib-commonjs/TableCellActions.js +10 -0
- package/lib-commonjs/TableCellActions.js.map +1 -0
- package/lib-commonjs/TableCellLayout.js +10 -0
- package/lib-commonjs/TableCellLayout.js.map +1 -0
- package/lib-commonjs/TableCellPrimaryLayout.js +10 -0
- package/lib-commonjs/TableCellPrimaryLayout.js.map +1 -0
- package/lib-commonjs/TableHeader.js +10 -0
- package/lib-commonjs/TableHeader.js.map +1 -0
- package/lib-commonjs/TableHeaderCell.js +10 -0
- package/lib-commonjs/TableHeaderCell.js.map +1 -0
- package/lib-commonjs/TableRow.js +10 -0
- package/lib-commonjs/TableRow.js.map +1 -0
- package/lib-commonjs/TableSelectionCell.js +10 -0
- package/lib-commonjs/TableSelectionCell.js.map +1 -0
- package/lib-commonjs/components/Table/Table.js +28 -0
- package/lib-commonjs/components/Table/Table.js.map +1 -0
- package/lib-commonjs/components/Table/Table.types.js +6 -0
- package/lib-commonjs/components/Table/Table.types.js.map +1 -0
- package/lib-commonjs/components/Table/index.js +18 -0
- package/lib-commonjs/components/Table/index.js.map +1 -0
- package/lib-commonjs/components/Table/renderTable.js +30 -0
- package/lib-commonjs/components/Table/renderTable.js.map +1 -0
- package/lib-commonjs/components/Table/useTable.js +40 -0
- package/lib-commonjs/components/Table/useTable.js.map +1 -0
- package/lib-commonjs/components/Table/useTableContextValues.js +27 -0
- package/lib-commonjs/components/Table/useTableContextValues.js.map +1 -0
- package/lib-commonjs/components/Table/useTableStyles.js +64 -0
- package/lib-commonjs/components/Table/useTableStyles.js.map +1 -0
- package/lib-commonjs/components/TableBody/TableBody.js +26 -0
- package/lib-commonjs/components/TableBody/TableBody.js.map +1 -0
- package/lib-commonjs/components/TableBody/TableBody.types.js +6 -0
- package/lib-commonjs/components/TableBody/TableBody.types.js.map +1 -0
- package/lib-commonjs/components/TableBody/index.js +18 -0
- package/lib-commonjs/components/TableBody/index.js.map +1 -0
- package/lib-commonjs/components/TableBody/renderTableBody.js +27 -0
- package/lib-commonjs/components/TableBody/renderTableBody.js.map +1 -0
- package/lib-commonjs/components/TableBody/useTableBody.js +43 -0
- package/lib-commonjs/components/TableBody/useTableBody.js.map +1 -0
- package/lib-commonjs/components/TableBody/useTableBodyStyles.js +44 -0
- package/lib-commonjs/components/TableBody/useTableBodyStyles.js.map +1 -0
- package/lib-commonjs/components/TableCell/TableCell.js +26 -0
- package/lib-commonjs/components/TableCell/TableCell.js.map +1 -0
- package/lib-commonjs/components/TableCell/TableCell.types.js +6 -0
- package/lib-commonjs/components/TableCell/TableCell.types.js.map +1 -0
- package/lib-commonjs/components/TableCell/index.js +18 -0
- package/lib-commonjs/components/TableCell/index.js.map +1 -0
- package/lib-commonjs/components/TableCell/renderTableCell.js +26 -0
- package/lib-commonjs/components/TableCell/renderTableCell.js.map +1 -0
- package/lib-commonjs/components/TableCell/useTableCell.js +43 -0
- package/lib-commonjs/components/TableCell/useTableCell.js.map +1 -0
- package/lib-commonjs/components/TableCell/useTableCellStyles.js +70 -0
- package/lib-commonjs/components/TableCell/useTableCellStyles.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/TableCellActions.js +26 -0
- package/lib-commonjs/components/TableCellActions/TableCellActions.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/TableCellActions.types.js +6 -0
- package/lib-commonjs/components/TableCellActions/TableCellActions.types.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/index.js +18 -0
- package/lib-commonjs/components/TableCellActions/index.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/renderTableCellActions.js +27 -0
- package/lib-commonjs/components/TableCellActions/renderTableCellActions.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/useTableCellActions.js +38 -0
- package/lib-commonjs/components/TableCellActions/useTableCellActions.js.map +1 -0
- package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.js +51 -0
- package/lib-commonjs/components/TableCellActions/useTableCellActionsStyles.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/TableCellLayout.js +28 -0
- package/lib-commonjs/components/TableCellLayout/TableCellLayout.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/TableCellLayout.types.js +6 -0
- package/lib-commonjs/components/TableCellLayout/TableCellLayout.types.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/index.js +18 -0
- package/lib-commonjs/components/TableCellLayout/index.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js +34 -0
- package/lib-commonjs/components/TableCellLayout/renderTableCellLayout.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js +57 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayout.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js +23 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayoutContextValues.js.map +1 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.js +85 -0
- package/lib-commonjs/components/TableCellLayout/useTableCellLayoutStyles.js.map +1 -0
- package/lib-commonjs/components/TableHeader/TableHeader.js +26 -0
- package/lib-commonjs/components/TableHeader/TableHeader.js.map +1 -0
- package/lib-commonjs/components/TableHeader/TableHeader.types.js +6 -0
- package/lib-commonjs/components/TableHeader/TableHeader.types.js.map +1 -0
- package/lib-commonjs/components/TableHeader/index.js +18 -0
- package/lib-commonjs/components/TableHeader/index.js.map +1 -0
- package/lib-commonjs/components/TableHeader/renderTableHeader.js +26 -0
- package/lib-commonjs/components/TableHeader/renderTableHeader.js.map +1 -0
- package/lib-commonjs/components/TableHeader/useTableHeader.js +51 -0
- package/lib-commonjs/components/TableHeader/useTableHeader.js.map +1 -0
- package/lib-commonjs/components/TableHeader/useTableHeaderStyles.js +51 -0
- package/lib-commonjs/components/TableHeader/useTableHeaderStyles.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js +26 -0
- package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.types.js +6 -0
- package/lib-commonjs/components/TableHeaderCell/TableHeaderCell.types.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/index.js +18 -0
- package/lib-commonjs/components/TableHeaderCell/index.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js +28 -0
- package/lib-commonjs/components/TableHeaderCell/renderTableHeaderCell.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js +76 -0
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCell.js.map +1 -0
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js +117 -0
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -0
- package/lib-commonjs/components/TableRow/TableRow.js +26 -0
- package/lib-commonjs/components/TableRow/TableRow.js.map +1 -0
- package/lib-commonjs/components/TableRow/TableRow.types.js +6 -0
- package/lib-commonjs/components/TableRow/TableRow.types.js.map +1 -0
- package/lib-commonjs/components/TableRow/index.js +18 -0
- package/lib-commonjs/components/TableRow/index.js.map +1 -0
- package/lib-commonjs/components/TableRow/renderTableRow.js +27 -0
- package/lib-commonjs/components/TableRow/renderTableRow.js.map +1 -0
- package/lib-commonjs/components/TableRow/useTableRow.js +45 -0
- package/lib-commonjs/components/TableRow/useTableRow.js.map +1 -0
- package/lib-commonjs/components/TableRow/useTableRowStyles.js +100 -0
- package/lib-commonjs/components/TableRow/useTableRowStyles.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js +26 -0
- package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.types.js +6 -0
- package/lib-commonjs/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/index.js +18 -0
- package/lib-commonjs/components/TableSelectionCell/index.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js +28 -0
- package/lib-commonjs/components/TableSelectionCell/renderTableSelectionCell.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js +62 -0
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js.map +1 -0
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js +91 -0
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -0
- package/lib-commonjs/contexts/tableContext.js +25 -0
- package/lib-commonjs/contexts/tableContext.js.map +1 -0
- package/lib-commonjs/hooks/index.js +16 -0
- package/lib-commonjs/hooks/index.js.map +1 -0
- package/lib-commonjs/hooks/selectionManager.js +98 -0
- package/lib-commonjs/hooks/selectionManager.js.map +1 -0
- package/lib-commonjs/hooks/types.js +6 -0
- package/lib-commonjs/hooks/types.js.map +1 -0
- package/lib-commonjs/hooks/useSelection.js +89 -0
- package/lib-commonjs/hooks/useSelection.js.map +1 -0
- package/lib-commonjs/hooks/useSort.js +107 -0
- package/lib-commonjs/hooks/useSort.js.map +1 -0
- package/lib-commonjs/hooks/useTable.js +42 -0
- package/lib-commonjs/hooks/useTable.js.map +1 -0
- package/lib-commonjs/index.js +377 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/navigationModes/cell.js +259 -0
- package/lib-commonjs/navigationModes/cell.js.map +1 -0
- package/lib-commonjs/navigationModes/composite.js +217 -0
- package/lib-commonjs/navigationModes/composite.js.map +1 -0
- package/lib-commonjs/navigationModes/index.js +16 -0
- package/lib-commonjs/navigationModes/index.js.map +1 -0
- package/lib-commonjs/navigationModes/useNavigationMode.js +55 -0
- package/lib-commonjs/navigationModes/useNavigationMode.js.map +1 -0
- package/package.json +50 -0
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluentui/react-table",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Fri, 07 Oct 2022 12:44:26 GMT",
|
|
6
|
+
"tag": "@fluentui/react-table_v0.0.0-nightly-20221007-1237.1",
|
|
7
|
+
"version": "0.0.0-nightly-20221007-1237.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "fluentui-internal@service.microsoft.com",
|
|
12
|
+
"package": "@fluentui/react-table",
|
|
13
|
+
"commit": "not available",
|
|
14
|
+
"comment": "Release nightly v9"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@fluentui/react-table",
|
|
19
|
+
"comment": "Bump @fluentui/react-aria to v0.0.0-nightly-20221007-1237.1",
|
|
20
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@fluentui/react-table",
|
|
25
|
+
"comment": "Bump @fluentui/react-avatar to v0.0.0-nightly-20221007-1237.1",
|
|
26
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "beachball",
|
|
30
|
+
"package": "@fluentui/react-table",
|
|
31
|
+
"comment": "Bump @fluentui/react-checkbox to v0.0.0-nightly-20221007-1237.1",
|
|
32
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "beachball",
|
|
36
|
+
"package": "@fluentui/react-table",
|
|
37
|
+
"comment": "Bump @fluentui/react-tabster to v0.0.0-nightly-20221007-1237.1",
|
|
38
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"author": "beachball",
|
|
42
|
+
"package": "@fluentui/react-table",
|
|
43
|
+
"comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20221007-1237.1",
|
|
44
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"author": "beachball",
|
|
48
|
+
"package": "@fluentui/react-table",
|
|
49
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20221007-1237.1",
|
|
50
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"author": "beachball",
|
|
54
|
+
"package": "@fluentui/react-table",
|
|
55
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20221007-1237.1",
|
|
56
|
+
"commit": "cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"date": "Mon, 03 Oct 2022 22:24:41 GMT",
|
|
63
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.4",
|
|
64
|
+
"version": "9.0.0-alpha.4",
|
|
65
|
+
"comments": {
|
|
66
|
+
"prerelease": [
|
|
67
|
+
{
|
|
68
|
+
"author": "lingfangao@hotmail.com",
|
|
69
|
+
"package": "@fluentui/react-table",
|
|
70
|
+
"commit": "0bece748c51ef324f23ddce3e83f0f796bfced5f",
|
|
71
|
+
"comment": "feat: `noNativeElements` renders a flex layout"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"author": "lingfangao@hotmail.com",
|
|
75
|
+
"package": "@fluentui/react-table",
|
|
76
|
+
"commit": "9357de4af136dfb5e5ed37b68318024235aa4ba3",
|
|
77
|
+
"comment": "feat: Use AvatarContext to override avatar size"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"author": "beachball",
|
|
81
|
+
"package": "@fluentui/react-table",
|
|
82
|
+
"comment": "Bump @fluentui/react-aria to v9.2.1",
|
|
83
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"author": "beachball",
|
|
87
|
+
"package": "@fluentui/react-table",
|
|
88
|
+
"comment": "Bump @fluentui/react-avatar to v9.2.0",
|
|
89
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"author": "beachball",
|
|
93
|
+
"package": "@fluentui/react-table",
|
|
94
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.7",
|
|
95
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"author": "beachball",
|
|
99
|
+
"package": "@fluentui/react-table",
|
|
100
|
+
"comment": "Bump @fluentui/react-tabster to v9.1.2",
|
|
101
|
+
"commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"none": [
|
|
105
|
+
{
|
|
106
|
+
"author": "lingfangao@hotmail.com",
|
|
107
|
+
"package": "@fluentui/react-table",
|
|
108
|
+
"commit": "cd88ecf2e2407c308c8364b9167440b9bac171f3",
|
|
109
|
+
"comment": "chore: Migrate react-table to use new build"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"date": "Tue, 20 Sep 2022 20:55:42 GMT",
|
|
116
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.3",
|
|
117
|
+
"version": "9.0.0-alpha.3",
|
|
118
|
+
"comments": {
|
|
119
|
+
"prerelease": [
|
|
120
|
+
{
|
|
121
|
+
"author": "lingfangao@hotmail.com",
|
|
122
|
+
"package": "@fluentui/react-table",
|
|
123
|
+
"commit": "30d0ecb1a37bd941f01be0bc4a673374c422752b",
|
|
124
|
+
"comment": "feat: Adds `visible` prop to `TableCellActions`"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"author": "lingfangao@hotmail.com",
|
|
128
|
+
"package": "@fluentui/react-table",
|
|
129
|
+
"commit": "cd9c220e8ca2c6ab0bc4b598801ce38eee21688f",
|
|
130
|
+
"comment": "fix: `TableCellActions` displays correctly inside `TableHeaderCell`"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"author": "beachball",
|
|
134
|
+
"package": "@fluentui/react-table",
|
|
135
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.6",
|
|
136
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"author": "beachball",
|
|
140
|
+
"package": "@fluentui/react-table",
|
|
141
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14",
|
|
142
|
+
"commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"date": "Thu, 15 Sep 2022 09:49:26 GMT",
|
|
149
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.2",
|
|
150
|
+
"version": "9.0.0-alpha.2",
|
|
151
|
+
"comments": {
|
|
152
|
+
"prerelease": [
|
|
153
|
+
{
|
|
154
|
+
"author": "lingfangao@hotmail.com",
|
|
155
|
+
"package": "@fluentui/react-table",
|
|
156
|
+
"commit": "851d0fd82f7d802d048be89dc363271f7cf1720a",
|
|
157
|
+
"comment": "implement `useTable` state hook"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"author": "lingfangao@hotmail.com",
|
|
161
|
+
"package": "@fluentui/react-table",
|
|
162
|
+
"commit": "e79be7955cfeef07aa3377bf123b88800e4af1cc",
|
|
163
|
+
"comment": "feat: Remove TableCellPrimaryLayout, adds `appearance` prop to TableCellLayout for primary layout"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"author": "lingfangao@hotmail.com",
|
|
167
|
+
"package": "@fluentui/react-table",
|
|
168
|
+
"commit": "b51ebaec4a0681dc71e8f67a28a9d28b051bcba8",
|
|
169
|
+
"comment": "BREAKING: TableCell layouts are handled by layout components"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"author": "lingfangao@hotmail.com",
|
|
173
|
+
"package": "@fluentui/react-table",
|
|
174
|
+
"commit": "059b48cc66cbeb9c545b60ef842407895cd4e505",
|
|
175
|
+
"comment": "feat: Implement table cell layout components"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"author": "lingfangao@hotmail.com",
|
|
179
|
+
"package": "@fluentui/react-table",
|
|
180
|
+
"commit": "8f420a1c55f283156b758bda1e7ef0591ec57a78",
|
|
181
|
+
"comment": "feat: Remove inferred row state and add `rowEnhancer` option"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"author": "lingfangao@hotmail.com",
|
|
185
|
+
"package": "@fluentui/react-table",
|
|
186
|
+
"commit": "cf7b0b6c6941c1b798a57ead0bc67b98e4e0ddbb",
|
|
187
|
+
"comment": "feat: Implement unstable navigation modes"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"author": "olfedias@microsoft.com",
|
|
191
|
+
"package": "@fluentui/react-table",
|
|
192
|
+
"commit": "e610024474cfe5d45f61501a8b6a21daf4c794a2",
|
|
193
|
+
"comment": "chore: Update Griffel to latest version"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"author": "lingfangao@hotmail.com",
|
|
197
|
+
"package": "@fluentui/react-table",
|
|
198
|
+
"commit": "02a6a76a3350adfb4fd95cdfc178864801c8e2bf",
|
|
199
|
+
"comment": "refactor(useTable): selection manager to avoid calling multiple hooks"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"author": "lingfangao@hotmail.com",
|
|
203
|
+
"package": "@fluentui/react-table",
|
|
204
|
+
"commit": "b9b2c4cf2b69e8d5e4b0a8a01fcc8458b1c8efc6",
|
|
205
|
+
"comment": "feat: Implement `TableSelectionCell`"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"author": "lingfangao@hotmail.com",
|
|
209
|
+
"package": "@fluentui/react-table",
|
|
210
|
+
"commit": "f5398157ebbea5c748d8d7336f18b378a8bdec16",
|
|
211
|
+
"comment": "refactor: Stop using context selector for Table primitives"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"author": "lingfangao@hotmail.com",
|
|
215
|
+
"package": "@fluentui/react-table",
|
|
216
|
+
"commit": "573289549f9712357c5561057fc24e97f62a6c63",
|
|
217
|
+
"comment": "feat: autocontrolled `useTable` hook"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"author": "lingfangao@hotmail.com",
|
|
221
|
+
"package": "@fluentui/react-table",
|
|
222
|
+
"commit": "9253171aac6e08d6830361d125d657f21ddfc90a",
|
|
223
|
+
"comment": "feat: Implement `TableCellActions` and `TablePrimaryCell`"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"author": "beachball",
|
|
227
|
+
"package": "@fluentui/react-table",
|
|
228
|
+
"comment": "Bump @fluentui/react-aria to v9.2.0",
|
|
229
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"author": "beachball",
|
|
233
|
+
"package": "@fluentui/react-table",
|
|
234
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.5",
|
|
235
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"author": "beachball",
|
|
239
|
+
"package": "@fluentui/react-table",
|
|
240
|
+
"comment": "Bump @fluentui/react-tabster to v9.1.1",
|
|
241
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"author": "beachball",
|
|
245
|
+
"package": "@fluentui/react-table",
|
|
246
|
+
"comment": "Bump @fluentui/react-theme to v9.1.0",
|
|
247
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"author": "beachball",
|
|
251
|
+
"package": "@fluentui/react-table",
|
|
252
|
+
"comment": "Bump @fluentui/react-utilities to v9.1.0",
|
|
253
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"author": "beachball",
|
|
257
|
+
"package": "@fluentui/react-table",
|
|
258
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13",
|
|
259
|
+
"commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
|
|
260
|
+
}
|
|
261
|
+
],
|
|
262
|
+
"none": [
|
|
263
|
+
{
|
|
264
|
+
"author": "martinhochel@microsoft.com",
|
|
265
|
+
"package": "@fluentui/react-table",
|
|
266
|
+
"commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
|
|
267
|
+
"comment": "chore: update package scaffold"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"author": "lingfangao@hotmail.com",
|
|
271
|
+
"package": "@fluentui/react-table",
|
|
272
|
+
"commit": "9e604a18ef914090301b4d0cd0b602f646f5719c",
|
|
273
|
+
"comment": "chore: Add preview warning for Table component"
|
|
274
|
+
}
|
|
275
|
+
]
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"date": "Wed, 03 Aug 2022 16:04:03 GMT",
|
|
280
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.1",
|
|
281
|
+
"version": "9.0.0-alpha.1",
|
|
282
|
+
"comments": {
|
|
283
|
+
"prerelease": [
|
|
284
|
+
{
|
|
285
|
+
"author": "lingfangao@hotmail.com",
|
|
286
|
+
"package": "@fluentui/react-table",
|
|
287
|
+
"commit": "c8e1d465e52dca6aef141437bdd0cc5a927a4d7c",
|
|
288
|
+
"comment": "feat: Make sorting more primitive"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"author": "lingfangao@hotmail.com",
|
|
292
|
+
"package": "@fluentui/react-table",
|
|
293
|
+
"commit": "0e1784cd430525e023a458564d232ac689e0f50a",
|
|
294
|
+
"comment": "feat: Release package in `alpha`"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"author": "beachball",
|
|
298
|
+
"package": "@fluentui/react-table",
|
|
299
|
+
"comment": "Bump @fluentui/react-aria to v9.1.0",
|
|
300
|
+
"commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"author": "beachball",
|
|
304
|
+
"package": "@fluentui/react-table",
|
|
305
|
+
"comment": "Bump @fluentui/react-tabster to v9.1.0",
|
|
306
|
+
"commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"author": "beachball",
|
|
310
|
+
"package": "@fluentui/react-table",
|
|
311
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12",
|
|
312
|
+
"commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
|
|
313
|
+
}
|
|
314
|
+
]
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"date": "Thu, 14 Jul 2022 21:21:13 GMT",
|
|
319
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.0",
|
|
320
|
+
"version": "9.0.0-alpha.0",
|
|
321
|
+
"comments": {
|
|
322
|
+
"patch": [
|
|
323
|
+
{
|
|
324
|
+
"author": "beachball",
|
|
325
|
+
"package": "@fluentui/react-table",
|
|
326
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.2",
|
|
327
|
+
"commit": "79b513146194367544160f364b0a7dd749ed93e4"
|
|
328
|
+
}
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"date": "Thu, 14 Jul 2022 17:06:26 GMT",
|
|
334
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.0",
|
|
335
|
+
"version": "9.0.0-alpha.0",
|
|
336
|
+
"comments": {
|
|
337
|
+
"patch": [
|
|
338
|
+
{
|
|
339
|
+
"author": "beachball",
|
|
340
|
+
"package": "@fluentui/react-table",
|
|
341
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.1-0",
|
|
342
|
+
"commit": "35237381e941c8935b1892c9217096cea3e5601f"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"author": "beachball",
|
|
346
|
+
"package": "@fluentui/react-table",
|
|
347
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11",
|
|
348
|
+
"commit": "35237381e941c8935b1892c9217096cea3e5601f"
|
|
349
|
+
}
|
|
350
|
+
]
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
]
|
|
354
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Change Log - @fluentui/react-table
|
|
2
|
+
|
|
3
|
+
This log was last generated on Fri, 07 Oct 2022 12:44:26 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
<!-- Start content -->
|
|
6
|
+
|
|
7
|
+
## [0.0.0-nightly-20221007-1237.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v0.0.0-nightly-20221007-1237.1)
|
|
8
|
+
|
|
9
|
+
Fri, 07 Oct 2022 12:44:26 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.4..@fluentui/react-table_v0.0.0-nightly-20221007-1237.1)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
|
|
15
|
+
- Bump @fluentui/react-aria to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
16
|
+
- Bump @fluentui/react-avatar to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
17
|
+
- Bump @fluentui/react-checkbox to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
18
|
+
- Bump @fluentui/react-tabster to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
19
|
+
- Bump @fluentui/react-theme to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
20
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
21
|
+
- Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20221007-1237.1 ([commit](https://github.com/microsoft/fluentui/commit/cb80d71825ddb9ebe5d06bb14b1c970f8633c4ec) by beachball)
|
|
22
|
+
|
|
23
|
+
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.4)
|
|
24
|
+
|
|
25
|
+
Mon, 03 Oct 2022 22:24:41 GMT
|
|
26
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.3..@fluentui/react-table_v9.0.0-alpha.4)
|
|
27
|
+
|
|
28
|
+
### Changes
|
|
29
|
+
|
|
30
|
+
- feat: `noNativeElements` renders a flex layout ([PR #24913](https://github.com/microsoft/fluentui/pull/24913) by lingfangao@hotmail.com)
|
|
31
|
+
- feat: Use AvatarContext to override avatar size ([PR #24807](https://github.com/microsoft/fluentui/pull/24807) by lingfangao@hotmail.com)
|
|
32
|
+
- Bump @fluentui/react-aria to v9.2.1 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
|
33
|
+
- Bump @fluentui/react-avatar to v9.2.0 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
|
34
|
+
- Bump @fluentui/react-checkbox to v9.0.7 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
|
35
|
+
- Bump @fluentui/react-tabster to v9.1.2 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
|
|
36
|
+
|
|
37
|
+
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.3)
|
|
38
|
+
|
|
39
|
+
Tue, 20 Sep 2022 20:55:42 GMT
|
|
40
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.2..@fluentui/react-table_v9.0.0-alpha.3)
|
|
41
|
+
|
|
42
|
+
### Changes
|
|
43
|
+
|
|
44
|
+
- feat: Adds `visible` prop to `TableCellActions` ([PR #24831](https://github.com/microsoft/fluentui/pull/24831) by lingfangao@hotmail.com)
|
|
45
|
+
- fix: `TableCellActions` displays correctly inside `TableHeaderCell` ([PR #24829](https://github.com/microsoft/fluentui/pull/24829) by lingfangao@hotmail.com)
|
|
46
|
+
- Bump @fluentui/react-checkbox to v9.0.6 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
|
47
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
|
|
48
|
+
|
|
49
|
+
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.2)
|
|
50
|
+
|
|
51
|
+
Thu, 15 Sep 2022 09:49:26 GMT
|
|
52
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.1..@fluentui/react-table_v9.0.0-alpha.2)
|
|
53
|
+
|
|
54
|
+
### Changes
|
|
55
|
+
|
|
56
|
+
- implement `useTable` state hook ([PR #24329](https://github.com/microsoft/fluentui/pull/24329) by lingfangao@hotmail.com)
|
|
57
|
+
- feat: Remove TableCellPrimaryLayout, adds `appearance` prop to TableCellLayout for primary layout ([PR #24789](https://github.com/microsoft/fluentui/pull/24789) by lingfangao@hotmail.com)
|
|
58
|
+
- BREAKING: TableCell layouts are handled by layout components ([PR #24762](https://github.com/microsoft/fluentui/pull/24762) by lingfangao@hotmail.com)
|
|
59
|
+
- feat: Implement table cell layout components ([PR #24773](https://github.com/microsoft/fluentui/pull/24773) by lingfangao@hotmail.com)
|
|
60
|
+
- feat: Remove inferred row state and add `rowEnhancer` option ([PR #24346](https://github.com/microsoft/fluentui/pull/24346) by lingfangao@hotmail.com)
|
|
61
|
+
- feat: Implement unstable navigation modes ([PR #24383](https://github.com/microsoft/fluentui/pull/24383) by lingfangao@hotmail.com)
|
|
62
|
+
- chore: Update Griffel to latest version ([PR #24221](https://github.com/microsoft/fluentui/pull/24221) by olfedias@microsoft.com)
|
|
63
|
+
- refactor(useTable): selection manager to avoid calling multiple hooks ([PR #24377](https://github.com/microsoft/fluentui/pull/24377) by lingfangao@hotmail.com)
|
|
64
|
+
- feat: Implement `TableSelectionCell` ([PR #24252](https://github.com/microsoft/fluentui/pull/24252) by lingfangao@hotmail.com)
|
|
65
|
+
- refactor: Stop using context selector for Table primitives ([PR #24806](https://github.com/microsoft/fluentui/pull/24806) by lingfangao@hotmail.com)
|
|
66
|
+
- feat: autocontrolled `useTable` hook ([PR #24688](https://github.com/microsoft/fluentui/pull/24688) by lingfangao@hotmail.com)
|
|
67
|
+
- feat: Implement `TableCellActions` and `TablePrimaryCell` ([PR #24232](https://github.com/microsoft/fluentui/pull/24232) by lingfangao@hotmail.com)
|
|
68
|
+
- Bump @fluentui/react-aria to v9.2.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
69
|
+
- Bump @fluentui/react-checkbox to v9.0.5 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
70
|
+
- Bump @fluentui/react-tabster to v9.1.1 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
71
|
+
- Bump @fluentui/react-theme to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
72
|
+
- Bump @fluentui/react-utilities to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
73
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
|
|
74
|
+
|
|
75
|
+
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.1)
|
|
76
|
+
|
|
77
|
+
Wed, 03 Aug 2022 16:04:03 GMT
|
|
78
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.0..@fluentui/react-table_v9.0.0-alpha.1)
|
|
79
|
+
|
|
80
|
+
### Changes
|
|
81
|
+
|
|
82
|
+
- feat: Make sorting more primitive ([PR #24198](https://github.com/microsoft/fluentui/pull/24198) by lingfangao@hotmail.com)
|
|
83
|
+
- feat: Release package in `alpha` ([PR #24182](https://github.com/microsoft/fluentui/pull/24182) by lingfangao@hotmail.com)
|
|
84
|
+
- Bump @fluentui/react-aria to v9.1.0 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
|
|
85
|
+
- Bump @fluentui/react-tabster to v9.1.0 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
|
|
86
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
|
|
87
|
+
|
|
88
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.0)
|
|
89
|
+
|
|
90
|
+
Thu, 14 Jul 2022 21:21:13 GMT
|
|
91
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.0..@fluentui/react-table_v9.0.0-alpha.0)
|
|
92
|
+
|
|
93
|
+
### Patches
|
|
94
|
+
|
|
95
|
+
- Bump @fluentui/react-utilities to v9.0.2 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
|
|
96
|
+
|
|
97
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.0)
|
|
98
|
+
|
|
99
|
+
Thu, 14 Jul 2022 17:06:26 GMT
|
|
100
|
+
|
|
101
|
+
### Patches
|
|
102
|
+
|
|
103
|
+
- Bump @fluentui/react-utilities to v9.0.1-0 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
|
|
104
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
|
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@fluentui/react-table
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
MIT License
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14
|
+
|
|
15
|
+
Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
|
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# @fluentui/react-table
|
|
2
|
+
|
|
3
|
+
**React Table components for [Fluent UI React](https://react.fluentui.dev/)**
|
|
4
|
+
|
|
5
|
+
These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
|
package/Spec.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# @fluentui/react-table Spec
|
|
2
|
+
|
|
3
|
+
## Background
|
|
4
|
+
|
|
5
|
+
_Description and use cases of this component_
|
|
6
|
+
|
|
7
|
+
## Prior Art
|
|
8
|
+
|
|
9
|
+
_Include background research done for this component_
|
|
10
|
+
|
|
11
|
+
- _Link to Open UI research_
|
|
12
|
+
- _Link to comparison of v7 and v0_
|
|
13
|
+
- _Link to GitHub epic issue for the converged component_
|
|
14
|
+
|
|
15
|
+
## Sample Code
|
|
16
|
+
|
|
17
|
+
_Provide some representative example code that uses the proposed API for the component_
|
|
18
|
+
|
|
19
|
+
## Variants
|
|
20
|
+
|
|
21
|
+
_Describe visual or functional variants of this control, if applicable. For example, a slider could have a 2D variant._
|
|
22
|
+
|
|
23
|
+
## API
|
|
24
|
+
|
|
25
|
+
_List the **Props** and **Slots** proposed for the component. Ideally this would just be a link to the component's `.types.ts` file_
|
|
26
|
+
|
|
27
|
+
## Structure
|
|
28
|
+
|
|
29
|
+
- _**Public**_
|
|
30
|
+
- _**Internal**_
|
|
31
|
+
- _**DOM** - how the component will be rendered as HTML elements_
|
|
32
|
+
|
|
33
|
+
## Migration
|
|
34
|
+
|
|
35
|
+
_Describe what will need to be done to upgrade from the existing implementations:_
|
|
36
|
+
|
|
37
|
+
- _Migration from v8_
|
|
38
|
+
- _Migration from v0_
|
|
39
|
+
|
|
40
|
+
## Behaviors
|
|
41
|
+
|
|
42
|
+
_Explain how the component will behave in use, including:_
|
|
43
|
+
|
|
44
|
+
- _Component States_
|
|
45
|
+
- _Interaction_
|
|
46
|
+
- _Keyboard_
|
|
47
|
+
- _Cursor_
|
|
48
|
+
- _Touch_
|
|
49
|
+
- _Screen readers_
|
|
50
|
+
|
|
51
|
+
## Accessibility
|
|
52
|
+
|
|
53
|
+
Base accessibility information is included in the design document. After the spec is filled and review, outcomes from it need to be communicated to design and incorporated in the design document.
|
|
54
|
+
|
|
55
|
+
- Decide whether to use **native element** or folow **ARIA** and provide reasons
|
|
56
|
+
- Identify the **[ARIA](https://www.w3.org/TR/wai-aria-practices-1.2/) pattern** and, if the component is listed there, follow its specification as possible.
|
|
57
|
+
- Identify accessibility **variants**, the `role` ([ARIA roles](https://www.w3.org/TR/wai-aria-1.1/#role_definitions)) of the component, its `slots` and `aria-*` props.
|
|
58
|
+
- Describe the **keyboard navigation**: Tab Oder and Arrow Key Navigation. Describe any other keyboard **shortcuts** used
|
|
59
|
+
- Specify texts for **state change announcements** - [ARIA live regions
|
|
60
|
+
](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions) (number of available items in dropdown, error messages, confirmations, ...)
|
|
61
|
+
- Identify UI parts that appear on **hover or focus** and specify keyboard and screen reader interaction with them
|
|
62
|
+
- List cases when **focus** needs to be **trapped** in sections of the UI (for dialogs and popups or for hierarchical navigation)
|
|
63
|
+
- List cases when **focus** needs to be **moved programatically** (if parts of the UI are appearing/disappearing or other cases)
|