@fluentui/react-table 9.0.0-alpha.5 → 9.0.0-alpha.7
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 +117 -1
- package/CHANGELOG.md +32 -2
- package/dist/index.d.ts +19 -4
- package/lib/components/Table/useTableStyles.js +2 -2
- package/lib/components/Table/useTableStyles.js.map +1 -1
- package/lib/components/TableHeader/renderTableHeader.js +5 -2
- package/lib/components/TableHeader/renderTableHeader.js.map +1 -1
- package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js +8 -2
- package/lib/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -1
- package/lib/components/TableRow/TableRow.types.js.map +1 -1
- package/lib/components/TableRow/useTableRow.js +7 -4
- package/lib/components/TableRow/useTableRow.js.map +1 -1
- package/lib/components/TableRow/useTableRowStyles.js +158 -6
- package/lib/components/TableRow/useTableRowStyles.js.map +1 -1
- package/lib/components/TableSelectionCell/TableSelectionCell.types.js.map +1 -1
- package/lib/components/TableSelectionCell/useTableSelectionCell.js +13 -9
- package/lib/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
- package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js +12 -3
- package/lib/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -1
- package/lib/contexts/tableHeaderContext.js +6 -0
- package/lib/contexts/tableHeaderContext.js.map +1 -0
- package/lib-commonjs/components/Table/useTableStyles.js +2 -2
- package/lib-commonjs/components/Table/useTableStyles.js.map +1 -1
- package/lib-commonjs/components/TableHeader/renderTableHeader.js +6 -2
- package/lib-commonjs/components/TableHeader/renderTableHeader.js.map +1 -1
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js +8 -2
- package/lib-commonjs/components/TableHeaderCell/useTableHeaderCellStyles.js.map +1 -1
- package/lib-commonjs/components/TableRow/useTableRow.js +7 -3
- package/lib-commonjs/components/TableRow/useTableRow.js.map +1 -1
- package/lib-commonjs/components/TableRow/useTableRowStyles.js +161 -6
- package/lib-commonjs/components/TableRow/useTableRowStyles.js.map +1 -1
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js +13 -10
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCell.js.map +1 -1
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js +13 -3
- package/lib-commonjs/components/TableSelectionCell/useTableSelectionCellStyles.js.map +1 -1
- package/lib-commonjs/contexts/tableHeaderContext.js +17 -0
- package/lib-commonjs/contexts/tableHeaderContext.js.map +1 -0
- package/package.json +14 -13
- package/lib/navigationModes/cell.js +0 -250
- package/lib/navigationModes/cell.js.map +0 -1
- package/lib/navigationModes/composite.js +0 -208
- package/lib/navigationModes/composite.js.map +0 -1
- package/lib/navigationModes/index.js +0 -3
- package/lib/navigationModes/index.js.map +0 -1
- package/lib/navigationModes/useNavigationMode.js +0 -42
- package/lib/navigationModes/useNavigationMode.js.map +0 -1
- package/lib-commonjs/navigationModes/cell.js +0 -259
- package/lib-commonjs/navigationModes/cell.js.map +0 -1
- package/lib-commonjs/navigationModes/composite.js +0 -217
- package/lib-commonjs/navigationModes/composite.js.map +0 -1
- package/lib-commonjs/navigationModes/index.js +0 -16
- package/lib-commonjs/navigationModes/index.js.map +0 -1
- package/lib-commonjs/navigationModes/useNavigationMode.js +0 -55
- package/lib-commonjs/navigationModes/useNavigationMode.js.map +0 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,123 @@
|
|
|
2
2
|
"name": "@fluentui/react-table",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Thu,
|
|
5
|
+
"date": "Thu, 20 Oct 2022 08:35:25 GMT",
|
|
6
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.7",
|
|
7
|
+
"version": "9.0.0-alpha.7",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "lingfangao@hotmail.com",
|
|
12
|
+
"package": "@fluentui/react-table",
|
|
13
|
+
"commit": "15b7b57ee484f8d500b3c7afb9aa46c17a9beaeb",
|
|
14
|
+
"comment": "fix: Row and header interactive styles are separate"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "lingfangao@hotmail.com",
|
|
18
|
+
"package": "@fluentui/react-table",
|
|
19
|
+
"commit": "bd212e73e6a6e3c92495b793c6e682c24f27b6db",
|
|
20
|
+
"comment": "feat(TableSelectionCell): Use Radio component, adds subtle and hidden"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "mgodbolt@microsoft.com",
|
|
24
|
+
"package": "@fluentui/react-table",
|
|
25
|
+
"commit": "17096b3137d9d3e7c7443ddc3ce0738b2910a334",
|
|
26
|
+
"comment": "chore: Bump peer deps to support React 18"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "olfedias@microsoft.com",
|
|
30
|
+
"package": "@fluentui/react-table",
|
|
31
|
+
"commit": "06865dada128321804646582f564ee86d835d174",
|
|
32
|
+
"comment": "chore: Update Griffel to latest version"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "lingfangao@hotmail.com",
|
|
36
|
+
"package": "@fluentui/react-table",
|
|
37
|
+
"commit": "66bf477e336a9248e138e31ee6e58d9672da8f8f",
|
|
38
|
+
"comment": "feat: Add `appearance` prop to `TableRow`"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"author": "beachball",
|
|
42
|
+
"package": "@fluentui/react-table",
|
|
43
|
+
"comment": "Bump @fluentui/react-aria to v9.2.3",
|
|
44
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"author": "beachball",
|
|
48
|
+
"package": "@fluentui/react-table",
|
|
49
|
+
"comment": "Bump @fluentui/react-avatar to v9.2.3",
|
|
50
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"author": "beachball",
|
|
54
|
+
"package": "@fluentui/react-table",
|
|
55
|
+
"comment": "Bump @fluentui/react-checkbox to v9.0.9",
|
|
56
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"author": "beachball",
|
|
60
|
+
"package": "@fluentui/react-table",
|
|
61
|
+
"comment": "Bump @fluentui/react-radio to v9.0.9",
|
|
62
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"author": "beachball",
|
|
66
|
+
"package": "@fluentui/react-table",
|
|
67
|
+
"comment": "Bump @fluentui/react-tabster to v9.2.0",
|
|
68
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"author": "beachball",
|
|
72
|
+
"package": "@fluentui/react-table",
|
|
73
|
+
"comment": "Bump @fluentui/react-theme to v9.1.1",
|
|
74
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"author": "beachball",
|
|
78
|
+
"package": "@fluentui/react-table",
|
|
79
|
+
"comment": "Bump @fluentui/react-utilities to v9.1.2",
|
|
80
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"author": "beachball",
|
|
84
|
+
"package": "@fluentui/react-table",
|
|
85
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16",
|
|
86
|
+
"commit": "be27026d83b8a019bcb945d0f42635ae76c00385"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"none": [
|
|
90
|
+
{
|
|
91
|
+
"author": "lingfangao@hotmail.com",
|
|
92
|
+
"package": "@fluentui/react-table",
|
|
93
|
+
"commit": "5280dfeda349453f42b51ae49c9d128bc322c609",
|
|
94
|
+
"comment": "docs: Remove row navigation"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"author": "lingfangao@hotmail.com",
|
|
98
|
+
"package": "@fluentui/react-table",
|
|
99
|
+
"commit": "433209a6b5e8adb7619d3658c1606ec8adb02745",
|
|
100
|
+
"comment": "docs: Update keyboard navigation examples to use `useArrowNavigationGroup`"
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"date": "Thu, 13 Oct 2022 12:56:30 GMT",
|
|
107
|
+
"tag": "@fluentui/react-table_v9.0.0-alpha.6",
|
|
108
|
+
"version": "9.0.0-alpha.6",
|
|
109
|
+
"comments": {
|
|
110
|
+
"prerelease": [
|
|
111
|
+
{
|
|
112
|
+
"author": "beachball",
|
|
113
|
+
"package": "@fluentui/react-table",
|
|
114
|
+
"comment": "Bump @fluentui/react-avatar to v9.2.2",
|
|
115
|
+
"commit": "77301c97c0539b9ebf891642eb0a077d1aeae9a6"
|
|
116
|
+
}
|
|
117
|
+
]
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"date": "Thu, 13 Oct 2022 11:03:01 GMT",
|
|
6
122
|
"tag": "@fluentui/react-table_v9.0.0-alpha.5",
|
|
7
123
|
"version": "9.0.0-alpha.5",
|
|
8
124
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,42 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-table
|
|
2
2
|
|
|
3
|
-
This log was last generated on Thu,
|
|
3
|
+
This log was last generated on Thu, 20 Oct 2022 08:35:25 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.7)
|
|
8
|
+
|
|
9
|
+
Thu, 20 Oct 2022 08:35:25 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.6..@fluentui/react-table_v9.0.0-alpha.7)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- fix: Row and header interactive styles are separate ([PR #25201](https://github.com/microsoft/fluentui/pull/25201) by lingfangao@hotmail.com)
|
|
15
|
+
- feat(TableSelectionCell): Use Radio component, adds subtle and hidden ([PR #25202](https://github.com/microsoft/fluentui/pull/25202) by lingfangao@hotmail.com)
|
|
16
|
+
- chore: Bump peer deps to support React 18 ([PR #24972](https://github.com/microsoft/fluentui/pull/24972) by mgodbolt@microsoft.com)
|
|
17
|
+
- chore: Update Griffel to latest version ([PR #25212](https://github.com/microsoft/fluentui/pull/25212) by olfedias@microsoft.com)
|
|
18
|
+
- feat: Add `appearance` prop to `TableRow` ([PR #25192](https://github.com/microsoft/fluentui/pull/25192) by lingfangao@hotmail.com)
|
|
19
|
+
- Bump @fluentui/react-aria to v9.2.3 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
20
|
+
- Bump @fluentui/react-avatar to v9.2.3 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
21
|
+
- Bump @fluentui/react-checkbox to v9.0.9 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
22
|
+
- Bump @fluentui/react-radio to v9.0.9 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
23
|
+
- Bump @fluentui/react-tabster to v9.2.0 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
24
|
+
- Bump @fluentui/react-theme to v9.1.1 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
25
|
+
- Bump @fluentui/react-utilities to v9.1.2 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
26
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16 ([commit](https://github.com/microsoft/fluentui/commit/be27026d83b8a019bcb945d0f42635ae76c00385) by beachball)
|
|
27
|
+
|
|
28
|
+
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.6)
|
|
29
|
+
|
|
30
|
+
Thu, 13 Oct 2022 12:56:30 GMT
|
|
31
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.5..@fluentui/react-table_v9.0.0-alpha.6)
|
|
32
|
+
|
|
33
|
+
### Changes
|
|
34
|
+
|
|
35
|
+
- Bump @fluentui/react-avatar to v9.2.2 ([PR #25119](https://github.com/microsoft/fluentui/pull/25119) by beachball)
|
|
36
|
+
|
|
7
37
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-table_v9.0.0-alpha.5)
|
|
8
38
|
|
|
9
|
-
Thu, 13 Oct 2022
|
|
39
|
+
Thu, 13 Oct 2022 11:03:01 GMT
|
|
10
40
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-table_v9.0.0-alpha.4..@fluentui/react-table_v9.0.0-alpha.5)
|
|
11
41
|
|
|
12
42
|
### Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { CheckboxProps } from '@fluentui/react-checkbox';
|
|
|
7
7
|
import type { ComponentProps } from '@fluentui/react-utilities';
|
|
8
8
|
import type { ComponentState } from '@fluentui/react-utilities';
|
|
9
9
|
import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
|
10
|
+
import type { Radio } from '@fluentui/react-radio';
|
|
10
11
|
import * as React_2 from 'react';
|
|
11
12
|
import type { Slot } from '@fluentui/react-utilities';
|
|
12
13
|
import type { SlotClassNames } from '@fluentui/react-utilities';
|
|
@@ -329,7 +330,13 @@ export declare const tableRowClassNames: SlotClassNames<TableRowSlots>;
|
|
|
329
330
|
/**
|
|
330
331
|
* TableRow Props
|
|
331
332
|
*/
|
|
332
|
-
export declare type TableRowProps = ComponentProps<TableRowSlots> & {
|
|
333
|
+
export declare type TableRowProps = ComponentProps<TableRowSlots> & {
|
|
334
|
+
/**
|
|
335
|
+
* A table row can have different variants
|
|
336
|
+
* @default none
|
|
337
|
+
*/
|
|
338
|
+
appearance?: 'brand' | 'neutral' | 'none';
|
|
339
|
+
};
|
|
333
340
|
|
|
334
341
|
export declare type TableRowSlots = {
|
|
335
342
|
root: Slot<'tr', 'div'>;
|
|
@@ -338,7 +345,7 @@ export declare type TableRowSlots = {
|
|
|
338
345
|
/**
|
|
339
346
|
* State used in rendering TableRow
|
|
340
347
|
*/
|
|
341
|
-
export declare type TableRowState = ComponentState<TableRowSlots> & Pick<TableContextValue, 'noNativeElements' | 'size'>;
|
|
348
|
+
export declare type TableRowState = ComponentState<TableRowSlots> & Pick<TableContextValue, 'noNativeElements' | 'size'> & Pick<Required<TableRowProps>, 'appearance'>;
|
|
342
349
|
|
|
343
350
|
/**
|
|
344
351
|
* TableSelectionCell component - TODO: add more docs
|
|
@@ -356,6 +363,14 @@ export declare type TableSelectionCellProps = ComponentProps<Partial<Omit<TableS
|
|
|
356
363
|
*/
|
|
357
364
|
type?: 'checkbox' | 'radio';
|
|
358
365
|
checked?: CheckboxProps['checked'];
|
|
366
|
+
/**
|
|
367
|
+
* Only visible when checked or the parent row is hovered
|
|
368
|
+
*/
|
|
369
|
+
subtle?: boolean;
|
|
370
|
+
/**
|
|
371
|
+
* Completely hides the selection cell visually but takes up the same space
|
|
372
|
+
*/
|
|
373
|
+
hidden?: boolean;
|
|
359
374
|
};
|
|
360
375
|
|
|
361
376
|
export declare type TableSelectionCellSlots = {
|
|
@@ -366,13 +381,13 @@ export declare type TableSelectionCellSlots = {
|
|
|
366
381
|
/**
|
|
367
382
|
* Selection indicator if selection type is radio
|
|
368
383
|
*/
|
|
369
|
-
radioIndicator: Slot<
|
|
384
|
+
radioIndicator: Slot<typeof Radio>;
|
|
370
385
|
} & Pick<TableCellSlots, 'root'>;
|
|
371
386
|
|
|
372
387
|
/**
|
|
373
388
|
* State used in rendering TableSelectionCell
|
|
374
389
|
*/
|
|
375
|
-
export declare type TableSelectionCellState = ComponentState<TableSelectionCellSlots> & Pick<Required<TableSelectionCellProps>, 'type' | 'checked'> & Pick<TableContextValue, 'noNativeElements'>;
|
|
390
|
+
export declare type TableSelectionCellState = ComponentState<TableSelectionCellSlots> & Pick<Required<TableSelectionCellProps>, 'type' | 'checked' | 'subtle' | 'hidden'> & Pick<TableContextValue, 'noNativeElements'>;
|
|
376
391
|
|
|
377
392
|
export declare interface TableSelectionState {
|
|
378
393
|
/**
|
|
@@ -31,10 +31,10 @@ const useFlexLayoutStyles = /*#__PURE__*/__styles({
|
|
|
31
31
|
const useStyles = /*#__PURE__*/__styles({
|
|
32
32
|
"root": {
|
|
33
33
|
"po53p8": "fgkb47j",
|
|
34
|
-
"De3pzq": "
|
|
34
|
+
"De3pzq": "fhovq9v"
|
|
35
35
|
}
|
|
36
36
|
}, {
|
|
37
|
-
"d": [".fgkb47j{border-collapse:collapse;}", ".
|
|
37
|
+
"d": [".fgkb47j{border-collapse:collapse;}", ".fhovq9v{background-color:var(--colorSubtleBackground);}"]
|
|
38
38
|
});
|
|
39
39
|
/**
|
|
40
40
|
* Apply styling to the Table slots based on the state
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["packages/react-components/react-table/src/components/Table/useTableStyles.ts"],"names":[],"mappings":"AAAA,mBAAqB,YAArB,QAAyC,gBAAzC;AACA,SAAS,MAAT,QAAuB,uBAAvB;AAIA,OAAO,MAAM,cAAc,GAAG,WAAvB;AACP,OAAO,MAAM,eAAe,GAA+B;EACzD,IAAI,EAAE;AADmD,CAApD;;AAIP,MAAM,oBAAoB,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA7B;;AASA,MAAM,mBAAmB,gBAAG;EAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA5B;AAMA;;AAEG;;;AACH,MAAM,SAAS,gBAAG;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAAlB;AAOA;;AAEG;;;AACH,OAAO,MAAM,uBAAuB,GAAI,KAAD,IAAkC;EACvE,MAAM,MAAM,GAAG,SAAS,EAAxB;EACA,MAAM,YAAY,GAAG;IACnB,KAAK,EAAE,oBAAoB,EADR;IAEnB,IAAI,EAAE,mBAAmB;EAFN,CAArB;EAIA,KAAK,CAAC,IAAN,CAAW,SAAX,GAAuB,YAAY,CACjC,cADiC,EAEjC,MAAM,CAAC,IAF0B,EAGjC,KAAK,CAAC,gBAAN,GAAyB,YAAY,CAAC,IAAb,CAAkB,IAA3C,GAAkD,YAAY,CAAC,KAAb,CAAmB,IAHpC,EAIjC,KAAK,CAAC,IAAN,CAAW,SAJsB,CAAnC;EAOA,OAAO,KAAP;AACD,CAdM","sourcesContent":["import { makeStyles, mergeClasses } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport type { TableSlots, TableState } from './Table.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const tableClassName = 'fui-Table';\nexport const tableClassNames: SlotClassNames<TableSlots> = {\n root: 'fui-Table',\n};\n\nconst useTableLayoutStyles = makeStyles({\n root: {\n display: 'table',\n verticalAlign: 'middle',\n width: '100%',\n tableLayout: 'fixed',\n },\n});\n\nconst useFlexLayoutStyles = makeStyles({\n root: {\n display: 'block',\n },\n});\n\n/**\n * Styles for the root slot\n */\nconst useStyles = makeStyles({\n root: {\n borderCollapse: 'collapse',\n backgroundColor: tokens.
|
|
1
|
+
{"version":3,"sources":["packages/react-components/react-table/src/components/Table/useTableStyles.ts"],"names":[],"mappings":"AAAA,mBAAqB,YAArB,QAAyC,gBAAzC;AACA,SAAS,MAAT,QAAuB,uBAAvB;AAIA,OAAO,MAAM,cAAc,GAAG,WAAvB;AACP,OAAO,MAAM,eAAe,GAA+B;EACzD,IAAI,EAAE;AADmD,CAApD;;AAIP,MAAM,oBAAoB,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA7B;;AASA,MAAM,mBAAmB,gBAAG;EAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA5B;AAMA;;AAEG;;;AACH,MAAM,SAAS,gBAAG;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAAlB;AAOA;;AAEG;;;AACH,OAAO,MAAM,uBAAuB,GAAI,KAAD,IAAkC;EACvE,MAAM,MAAM,GAAG,SAAS,EAAxB;EACA,MAAM,YAAY,GAAG;IACnB,KAAK,EAAE,oBAAoB,EADR;IAEnB,IAAI,EAAE,mBAAmB;EAFN,CAArB;EAIA,KAAK,CAAC,IAAN,CAAW,SAAX,GAAuB,YAAY,CACjC,cADiC,EAEjC,MAAM,CAAC,IAF0B,EAGjC,KAAK,CAAC,gBAAN,GAAyB,YAAY,CAAC,IAAb,CAAkB,IAA3C,GAAkD,YAAY,CAAC,KAAb,CAAmB,IAHpC,EAIjC,KAAK,CAAC,IAAN,CAAW,SAJsB,CAAnC;EAOA,OAAO,KAAP;AACD,CAdM","sourcesContent":["import { makeStyles, mergeClasses } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport type { TableSlots, TableState } from './Table.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const tableClassName = 'fui-Table';\nexport const tableClassNames: SlotClassNames<TableSlots> = {\n root: 'fui-Table',\n};\n\nconst useTableLayoutStyles = makeStyles({\n root: {\n display: 'table',\n verticalAlign: 'middle',\n width: '100%',\n tableLayout: 'fixed',\n },\n});\n\nconst useFlexLayoutStyles = makeStyles({\n root: {\n display: 'block',\n },\n});\n\n/**\n * Styles for the root slot\n */\nconst useStyles = makeStyles({\n root: {\n borderCollapse: 'collapse',\n backgroundColor: tokens.colorSubtleBackground,\n },\n});\n\n/**\n * Apply styling to the Table slots based on the state\n */\nexport const useTableStyles_unstable = (state: TableState): TableState => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles(),\n };\n state.root.className = mergeClasses(\n tableClassName,\n styles.root,\n state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root,\n state.root.className,\n );\n\n return state;\n};\n"],"sourceRoot":"../src/"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { getSlots } from '@fluentui/react-utilities';
|
|
3
|
+
import { TableHeaderContextProvider } from '../../contexts/tableHeaderContext';
|
|
3
4
|
/**
|
|
4
5
|
* Render the final JSX of TableHeader
|
|
5
6
|
*/
|
|
@@ -9,7 +10,9 @@ export const renderTableHeader_unstable = state => {
|
|
|
9
10
|
slots,
|
|
10
11
|
slotProps
|
|
11
12
|
} = getSlots(state);
|
|
12
|
-
return /*#__PURE__*/React.createElement(
|
|
13
|
-
|
|
13
|
+
return /*#__PURE__*/React.createElement(TableHeaderContextProvider, {
|
|
14
|
+
value: ""
|
|
15
|
+
}, /*#__PURE__*/React.createElement(slots.root, { ...slotProps.root
|
|
16
|
+
}));
|
|
14
17
|
};
|
|
15
18
|
//# sourceMappingURL=renderTableHeader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AAGA;;AAEG;;AACH,OAAO,MAAM,0BAA0B,GAAI,KAAD,IAA4B;EACpE,MAAM;IAAE,KAAF;IAAS;EAAT,IAAuB,QAAQ,CAAmB,KAAnB,CAArC;EAEA,
|
|
1
|
+
{"version":3,"sources":["packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AACA,SAAS,0BAAT,QAA2C,mCAA3C;AAGA;;AAEG;;AACH,OAAO,MAAM,0BAA0B,GAAI,KAAD,IAA4B;EACpE,MAAM;IAAE,KAAF;IAAS;EAAT,IAAuB,QAAQ,CAAmB,KAAnB,CAArC;EAEA,oBACE,KAAA,CAAA,aAAA,CAAC,0BAAD,EAA2B;IAAC,KAAK,EAAC;EAAP,CAA3B,eACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,EAAA,GAAK,SAAS,CAAC;EAAf,CAAX,CADF,CADF;AAKD,CARM","sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { TableHeaderContextProvider } from '../../contexts/tableHeaderContext';\nimport type { TableHeaderState, TableHeaderSlots } from './TableHeader.types';\n\n/**\n * Render the final JSX of TableHeader\n */\nexport const renderTableHeader_unstable = (state: TableHeaderState) => {\n const { slots, slotProps } = getSlots<TableHeaderSlots>(state);\n\n return (\n <TableHeaderContextProvider value=\"\">\n <slots.root {...slotProps.root} />\n </TableHeaderContextProvider>\n );\n};\n"],"sourceRoot":"../src/"}
|
|
@@ -39,6 +39,10 @@ const useStyles = /*#__PURE__*/__styles({
|
|
|
39
39
|
"Byoj8tv": "f1ov4xf1",
|
|
40
40
|
"uwmqm3": ["f1f5gg8d", "f1vdfbxk"]
|
|
41
41
|
},
|
|
42
|
+
"rootInteractive": {
|
|
43
|
+
"Jwef8y": "f1t94bn6",
|
|
44
|
+
"ecr2s2": "f1wfn5kd"
|
|
45
|
+
},
|
|
42
46
|
"resetButton": {
|
|
43
47
|
"B3rzk8w": "fq6nmtn",
|
|
44
48
|
"B7ck84d": "f1e4lqlz",
|
|
@@ -81,7 +85,9 @@ const useStyles = /*#__PURE__*/__styles({
|
|
|
81
85
|
"Bt984gj": "f122n59"
|
|
82
86
|
}
|
|
83
87
|
}, {
|
|
84
|
-
"d": [".f1nbblvp{padding-top:0px;}", ".f1vdfbxk{padding-right:var(--spacingHorizontalS);}", ".f1f5gg8d{padding-left:var(--spacingHorizontalS);}", ".f1ov4xf1{padding-bottom:0px;}", ".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;}", ".f10pi13n{position:relative;}", ".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;}", ".fsnqrgy{-webkit-column-gap:var(--spacingHorizontalS);column-gap:var(--spacingHorizontalS);}", ".fylz90v{row-gap:var(--spacingHorizontalS);}", ".f5pgtk9{min-height:44px;}", ".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;}", ".f1k6fduh{cursor:pointer;}"]
|
|
88
|
+
"d": [".f1nbblvp{padding-top:0px;}", ".f1vdfbxk{padding-right:var(--spacingHorizontalS);}", ".f1f5gg8d{padding-left:var(--spacingHorizontalS);}", ".f1ov4xf1{padding-bottom:0px;}", ".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;}", ".f10pi13n{position:relative;}", ".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;}", ".fsnqrgy{-webkit-column-gap:var(--spacingHorizontalS);column-gap:var(--spacingHorizontalS);}", ".fylz90v{row-gap:var(--spacingHorizontalS);}", ".f5pgtk9{min-height:44px;}", ".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;}", ".f1k6fduh{cursor:pointer;}"],
|
|
89
|
+
"h": [".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}"],
|
|
90
|
+
"a": [".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}"]
|
|
85
91
|
});
|
|
86
92
|
/**
|
|
87
93
|
* Apply styling to the TableHeaderCell slots based on the state
|
|
@@ -94,7 +100,7 @@ export const useTableHeaderCellStyles_unstable = state => {
|
|
|
94
100
|
table: useTableLayoutStyles(),
|
|
95
101
|
flex: useFlexLayoutStyles()
|
|
96
102
|
};
|
|
97
|
-
state.root.className = mergeClasses(tableHeaderCellClassNames.root, styles.root, state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.root.className);
|
|
103
|
+
state.root.className = mergeClasses(tableHeaderCellClassNames.root, styles.root, state.sortable && styles.rootInteractive, state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.root.className);
|
|
98
104
|
state.button.className = mergeClasses(tableHeaderCellClassNames.button, styles.resetButton, styles.button, state.sortable && styles.sortable, state.button.className);
|
|
99
105
|
|
|
100
106
|
if (state.sortIcon) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.ts"],"names":[],"mappings":"AAAA,mBAAqB,YAArB,EAAmC,UAAnC,QAAqD,gBAArD;AACA,SAAS,MAAT,QAAuB,uBAAvB;AAIA,OAAO,MAAM,wBAAwB,GAAG,qBAAjC;AACP,OAAO,MAAM,yBAAyB,GAAyC;EAC7E,IAAI,EAAE,qBADuE;EAE7E,MAAM,EAAE,6BAFqE;EAG7E,QAAQ,EAAE;AAHmE,CAAxE;;AAMP,MAAM,oBAAoB,gBAAG;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA7B;;AAOA,MAAM,mBAAmB,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA5B;AAQA;;AAEG;;;AACH,MAAM,SAAS,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;EAAA;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAAlB;
|
|
1
|
+
{"version":3,"sources":["packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.ts"],"names":[],"mappings":"AAAA,mBAAqB,YAArB,EAAmC,UAAnC,QAAqD,gBAArD;AACA,SAAS,MAAT,QAAuB,uBAAvB;AAIA,OAAO,MAAM,wBAAwB,GAAG,qBAAjC;AACP,OAAO,MAAM,yBAAyB,GAAyC;EAC7E,IAAI,EAAE,qBADuE;EAE7E,MAAM,EAAE,6BAFqE;EAG7E,QAAQ,EAAE;AAHmE,CAAxE;;AAMP,MAAM,oBAAoB,gBAAG;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA7B;;AAOA,MAAM,mBAAmB,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;AAAA;EAAA;AAAA,EAA5B;AAQA;;AAEG;;;AACH,MAAM,SAAS,gBAAG;EAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;IAAA;EAAA;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;EAAA;EAAA;IAAA;EAAA;EAAA;IAAA;IAAA;EAAA;AAAA;EAAA;EAAA;EAAA;AAAA,EAAlB;AAiDA;;AAEG;;;AACH,OAAO,MAAM,iCAAiC,GAAI,KAAD,IAAsD;EACrG,MAAM,MAAM,GAAG,SAAS,EAAxB;EACA,MAAM,YAAY,GAAG;IACnB,KAAK,EAAE,oBAAoB,EADR;IAEnB,IAAI,EAAE,mBAAmB;EAFN,CAArB;EAIA,KAAK,CAAC,IAAN,CAAW,SAAX,GAAuB,YAAY,CACjC,yBAAyB,CAAC,IADO,EAEjC,MAAM,CAAC,IAF0B,EAGjC,KAAK,CAAC,QAAN,IAAkB,MAAM,CAAC,eAHQ,EAIjC,KAAK,CAAC,gBAAN,GAAyB,YAAY,CAAC,IAAb,CAAkB,IAA3C,GAAkD,YAAY,CAAC,KAAb,CAAmB,IAJpC,EAKjC,KAAK,CAAC,IAAN,CAAW,SALsB,CAAnC;EAOA,KAAK,CAAC,MAAN,CAAa,SAAb,GAAyB,YAAY,CACnC,yBAAyB,CAAC,MADS,EAEnC,MAAM,CAAC,WAF4B,EAGnC,MAAM,CAAC,MAH4B,EAInC,KAAK,CAAC,QAAN,IAAkB,MAAM,CAAC,QAJU,EAKnC,KAAK,CAAC,MAAN,CAAa,SALsB,CAArC;;EAQA,IAAI,KAAK,CAAC,QAAV,EAAoB;IAClB,KAAK,CAAC,QAAN,CAAe,SAAf,GAA2B,YAAY,CACrC,yBAAyB,CAAC,QADW,EAErC,MAAM,CAAC,QAF8B,EAGrC,KAAK,CAAC,QAAN,CAAe,SAHsB,CAAvC;EAKD;;EAED,OAAO,KAAP;AACD,CA9BM","sourcesContent":["import { makeStyles, mergeClasses, shorthands } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\nimport type { TableHeaderCellSlots, TableHeaderCellState } from './TableHeaderCell.types';\n\nexport const tableHeaderCellClassName = 'fui-TableHeaderCell';\nexport const tableHeaderCellClassNames: SlotClassNames<TableHeaderCellSlots> = {\n root: 'fui-TableHeaderCell',\n button: 'fui-TableHeaderCell__button',\n sortIcon: 'fui-TableHeaderCell__sortIcon',\n};\n\nconst useTableLayoutStyles = makeStyles({\n root: {\n display: 'table-cell',\n verticalAlign: 'middle',\n },\n});\n\nconst useFlexLayoutStyles = makeStyles({\n root: {\n display: 'flex',\n ...shorthands.flex(1, 1, '0px'),\n minWidth: '0px',\n },\n});\n\n/**\n * Styles for the root slot\n */\nconst useStyles = makeStyles({\n root: {\n ...shorthands.padding('0px', tokens.spacingHorizontalS),\n },\n\n rootInteractive: {\n ':hover': {\n backgroundColor: tokens.colorSubtleBackgroundHover,\n },\n ':active': {\n backgroundColor: tokens.colorSubtleBackgroundPressed,\n },\n },\n\n resetButton: {\n resize: 'horizontal',\n boxSizing: 'content-box',\n backgroundColor: 'inherit',\n color: 'inherit',\n fontFamily: 'inherit',\n fontSize: 'inherit',\n lineHeight: 'normal',\n ...shorthands.overflow('visible'),\n ...shorthands.padding(0),\n ...shorthands.borderStyle('none'),\n WebkitAppearance: 'button',\n textAlign: 'unset',\n },\n button: {\n position: 'relative',\n width: '100%',\n display: 'flex',\n flexGrow: 1,\n height: '100%',\n alignItems: 'center',\n ...shorthands.gap(tokens.spacingHorizontalS),\n minHeight: '44px',\n ...shorthands.flex(1, 1, '0px'),\n },\n sortable: {\n cursor: 'pointer',\n },\n\n sortIcon: {\n display: 'flex',\n alignItems: 'center',\n },\n});\n\n/**\n * Apply styling to the TableHeaderCell slots based on the state\n */\nexport const useTableHeaderCellStyles_unstable = (state: TableHeaderCellState): TableHeaderCellState => {\n const styles = useStyles();\n const layoutStyles = {\n table: useTableLayoutStyles(),\n flex: useFlexLayoutStyles(),\n };\n state.root.className = mergeClasses(\n tableHeaderCellClassNames.root,\n styles.root,\n state.sortable && styles.rootInteractive,\n state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root,\n state.root.className,\n );\n state.button.className = mergeClasses(\n tableHeaderCellClassNames.button,\n styles.resetButton,\n styles.button,\n state.sortable && styles.sortable,\n state.button.className,\n );\n\n if (state.sortIcon) {\n state.sortIcon.className = mergeClasses(\n tableHeaderCellClassNames.sortIcon,\n styles.sortIcon,\n state.sortIcon.className,\n );\n }\n\n return state;\n};\n"],"sourceRoot":"../src/"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableRow.types.js","sourceRoot":"../src/","sources":["packages/react-components/react-table/src/components/TableRow/TableRow.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { TableContextValue } from '../Table/Table.types';\n\nexport type TableRowSlots = {\n root: Slot<'tr', 'div'>;\n};\n\n/**\n * TableRow Props\n */\nexport type TableRowProps = ComponentProps<TableRowSlots> & {};\n\n/**\n * State used in rendering TableRow\n */\nexport type TableRowState = ComponentState<TableRowSlots>
|
|
1
|
+
{"version":3,"file":"TableRow.types.js","sourceRoot":"../src/","sources":["packages/react-components/react-table/src/components/TableRow/TableRow.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\nimport { TableContextValue } from '../Table/Table.types';\n\nexport type TableRowSlots = {\n root: Slot<'tr', 'div'>;\n};\n\n/**\n * TableRow Props\n */\nexport type TableRowProps = ComponentProps<TableRowSlots> & {\n /**\n * A table row can have different variants\n * @default none\n */\n appearance?: 'brand' | 'neutral' | 'none';\n};\n\n/**\n * State used in rendering TableRow\n */\nexport type TableRowState = ComponentState<TableRowSlots> &\n Pick<TableContextValue, 'noNativeElements' | 'size'> &\n Pick<Required<TableRowProps>, 'appearance'>;\n"]}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { getNativeElementProps } from '@fluentui/react-utilities';
|
|
1
|
+
import { getNativeElementProps, useMergedRefs } from '@fluentui/react-utilities';
|
|
2
2
|
import { useTableContext } from '../../contexts/tableContext';
|
|
3
|
+
import { useFocusVisible } from '@fluentui/react-tabster';
|
|
3
4
|
/**
|
|
4
5
|
* Create the state required to render TableRow.
|
|
5
6
|
*
|
|
@@ -11,24 +12,26 @@ import { useTableContext } from '../../contexts/tableContext';
|
|
|
11
12
|
*/
|
|
12
13
|
|
|
13
14
|
export const useTableRow_unstable = (props, ref) => {
|
|
14
|
-
var _a;
|
|
15
|
+
var _a, _b;
|
|
15
16
|
|
|
16
17
|
const {
|
|
17
18
|
noNativeElements,
|
|
18
19
|
size
|
|
19
20
|
} = useTableContext();
|
|
20
21
|
const rootComponent = ((_a = props.as) !== null && _a !== void 0 ? _a : noNativeElements) ? 'div' : 'tr';
|
|
22
|
+
const focusVisibleRef = useFocusVisible();
|
|
21
23
|
return {
|
|
22
24
|
components: {
|
|
23
25
|
root: rootComponent
|
|
24
26
|
},
|
|
25
27
|
root: getNativeElementProps(rootComponent, {
|
|
26
|
-
ref,
|
|
28
|
+
ref: useMergedRefs(ref, focusVisibleRef),
|
|
27
29
|
role: rootComponent === 'div' ? 'row' : undefined,
|
|
28
30
|
...props
|
|
29
31
|
}),
|
|
30
32
|
size,
|
|
31
|
-
noNativeElements
|
|
33
|
+
noNativeElements,
|
|
34
|
+
appearance: (_b = props.appearance) !== null && _b !== void 0 ? _b : 'none'
|
|
32
35
|
};
|
|
33
36
|
};
|
|
34
37
|
//# sourceMappingURL=useTableRow.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["packages/react-components/react-table/src/components/TableRow/useTableRow.ts"],"names":[],"mappings":"AACA,SAAS,qBAAT,
|
|
1
|
+
{"version":3,"sources":["packages/react-components/react-table/src/components/TableRow/useTableRow.ts"],"names":[],"mappings":"AACA,SAAS,qBAAT,EAAgC,aAAhC,QAAqD,2BAArD;AAEA,SAAS,eAAT,QAAgC,6BAAhC;AACA,SAAS,eAAT,QAAgC,yBAAhC;AAEA;;;;;;;;AAQG;;AACH,OAAO,MAAM,oBAAoB,GAAG,CAAC,KAAD,EAAuB,GAAvB,KAAqE;;;EACvG,MAAM;IAAE,gBAAF;IAAoB;EAApB,IAA6B,eAAe,EAAlD;EACA,MAAM,aAAa,GAAG,CAAA,CAAA,EAAA,GAAA,KAAK,CAAC,EAAN,MAAQ,IAAR,IAAQ,EAAA,KAAA,KAAA,CAAR,GAAQ,EAAR,GAAY,gBAAZ,IAA+B,KAA/B,GAAuC,IAA7D;EACA,MAAM,eAAe,GAAG,eAAe,EAAvC;EAEA,OAAO;IACL,UAAU,EAAE;MACV,IAAI,EAAE;IADI,CADP;IAIL,IAAI,EAAE,qBAAqB,CAAC,aAAD,EAAgB;MACzC,GAAG,EAAE,aAAa,CAAC,GAAD,EAAM,eAAN,CADuB;MAEzC,IAAI,EAAE,aAAa,KAAK,KAAlB,GAA0B,KAA1B,GAAkC,SAFC;MAGzC,GAAG;IAHsC,CAAhB,CAJtB;IASL,IATK;IAUL,gBAVK;IAWL,UAAU,EAAE,CAAA,EAAA,GAAA,KAAK,CAAC,UAAN,MAAgB,IAAhB,IAAgB,EAAA,KAAA,KAAA,CAAhB,GAAgB,EAAhB,GAAoB;EAX3B,CAAP;AAaD,CAlBM","sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, useMergedRefs } from '@fluentui/react-utilities';\nimport type { TableRowProps, TableRowState } from './TableRow.types';\nimport { useTableContext } from '../../contexts/tableContext';\nimport { useFocusVisible } from '@fluentui/react-tabster';\n\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: TableRowProps, ref: React.Ref<HTMLElement>): TableRowState => {\n const { noNativeElements, size } = useTableContext();\n const rootComponent = props.as ?? noNativeElements ? 'div' : 'tr';\n const focusVisibleRef = useFocusVisible();\n\n return {\n components: {\n root: rootComponent,\n },\n root: getNativeElementProps(rootComponent, {\n ref: useMergedRefs(ref, focusVisibleRef),\n role: rootComponent === 'div' ? 'row' : undefined,\n ...props,\n }),\n size,\n noNativeElements,\n appearance: props.appearance ?? 'none',\n };\n};\n"],"sourceRoot":"../src/"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { __styles, mergeClasses, shorthands } from '@griffel/react';
|
|
2
2
|
import { tokens } from '@fluentui/react-theme';
|
|
3
3
|
import { tableCellActionsClassNames } from '../TableCellActions/useTableCellActionsStyles';
|
|
4
|
+
import { tableSelectionCellClassNames } from '../TableSelectionCell/useTableSelectionCellStyles';
|
|
5
|
+
import { createCustomFocusIndicatorStyle } from '@fluentui/react-tabster';
|
|
6
|
+
import { useIsInTableHeader } from '../../contexts/tableHeaderContext';
|
|
4
7
|
export const tableRowClassName = 'fui-TableRow';
|
|
5
8
|
export const tableRowClassNames = {
|
|
6
9
|
root: tableRowClassName
|
|
@@ -48,11 +51,28 @@ const useFlexLayoutStyles = /*#__PURE__*/__styles({
|
|
|
48
51
|
const useStyles = /*#__PURE__*/__styles({
|
|
49
52
|
"root": {
|
|
50
53
|
"sj55zd": "f19n0e5",
|
|
51
|
-
"
|
|
54
|
+
"B7ck84d": "f1ewtqcl",
|
|
55
|
+
"Befpiv7": "fblfkud",
|
|
56
|
+
"Bn4voq9": "fz36nt7",
|
|
57
|
+
"g9k6zt": "f9znhxp",
|
|
58
|
+
"kdpuga": ["f1o2ludy", "f1kjnpwc"],
|
|
59
|
+
"Bw81rd7": ["f1kjnpwc", "f1o2ludy"],
|
|
60
|
+
"B6xbmo0": ["fxmnebo", "f1witrsb"],
|
|
61
|
+
"dm238s": ["f1witrsb", "fxmnebo"]
|
|
62
|
+
},
|
|
63
|
+
"rootInteractive": {
|
|
64
|
+
"ecr2s2": "f1wfn5kd",
|
|
65
|
+
"lj723h": "f1g4hkjv",
|
|
66
|
+
"Bw1l9kw": "flaujjr",
|
|
67
|
+
"B43xm9u": "f15ngxrw",
|
|
68
|
+
"Bs8fhbl": "fd28r7f",
|
|
69
|
+
"i921ia": "fjbbrdp",
|
|
70
|
+
"Jwef8y": "f1t94bn6",
|
|
52
71
|
"Bi91k9c": "feu1g3u",
|
|
53
72
|
"Bi7d7a3": "f1boln4s",
|
|
54
73
|
"Bpt6rm4": "f1uorfem",
|
|
55
|
-
"
|
|
74
|
+
"Bt8cqyk": "frasl6z",
|
|
75
|
+
"ff6mpl": "fw60kww"
|
|
56
76
|
},
|
|
57
77
|
"medium": {
|
|
58
78
|
"Bn0qgzm": "f1vxd6vx",
|
|
@@ -66,10 +86,141 @@ const useStyles = /*#__PURE__*/__styles({
|
|
|
66
86
|
},
|
|
67
87
|
"smaller": {
|
|
68
88
|
"Be2twd7": "fy9rknc"
|
|
69
|
-
}
|
|
89
|
+
},
|
|
90
|
+
"brand": {
|
|
91
|
+
"De3pzq": "f16xkysk",
|
|
92
|
+
"sj55zd": "f1cgsbmv",
|
|
93
|
+
"g2u3we": "frmsihh",
|
|
94
|
+
"h3c5rm": ["frttxa5", "f11o2r7f"],
|
|
95
|
+
"B9xav0g": "fem5et0",
|
|
96
|
+
"zhjwy3": ["f11o2r7f", "frttxa5"],
|
|
97
|
+
"Jwef8y": "f121v1wq",
|
|
98
|
+
"ecr2s2": "ftepret",
|
|
99
|
+
"gwxt9v": "fqlf3fd",
|
|
100
|
+
"v3aym": ["f9dpb3h", "fw2muls"],
|
|
101
|
+
"Bc736ss": "f1yat0gj",
|
|
102
|
+
"Bk6ri7n": ["fw2muls", "f9dpb3h"],
|
|
103
|
+
"Bk5ld8o": "f7nae3y",
|
|
104
|
+
"c4eypz": ["fkbere7", "fa97sf3"],
|
|
105
|
+
"felo30": "fmtyzcc",
|
|
106
|
+
"Eshu5l": ["fa97sf3", "fkbere7"],
|
|
107
|
+
"Bjwas2f": "fb6zhgp",
|
|
108
|
+
"Bn1d65q": ["fyowp6c", "fz08sq8"],
|
|
109
|
+
"Bxeuatn": "f9dii88",
|
|
110
|
+
"n51gp8": ["fz08sq8", "fyowp6c"],
|
|
111
|
+
"Beo2b4z": ["f1afxoft", "flqq2yx"],
|
|
112
|
+
"h6lo6r": ["flqq2yx", "f1afxoft"],
|
|
113
|
+
"Btyw6ap": ["f1b5xrmd", "f1831rx6"],
|
|
114
|
+
"w1pwid": ["f1831rx6", "f1b5xrmd"],
|
|
115
|
+
"Brwvgy3": "fd94n53",
|
|
116
|
+
"yadkgm": "f1e0wld5"
|
|
117
|
+
},
|
|
118
|
+
"neutral": {
|
|
119
|
+
"gwxt9v": "fqlf3fd",
|
|
120
|
+
"v3aym": ["f9dpb3h", "fw2muls"],
|
|
121
|
+
"Bc736ss": "f1yat0gj",
|
|
122
|
+
"Bk6ri7n": ["fw2muls", "f9dpb3h"],
|
|
123
|
+
"Bk5ld8o": "f7nae3y",
|
|
124
|
+
"c4eypz": ["fkbere7", "fa97sf3"],
|
|
125
|
+
"felo30": "fmtyzcc",
|
|
126
|
+
"Eshu5l": ["fa97sf3", "fkbere7"],
|
|
127
|
+
"Bjwas2f": "fb6zhgp",
|
|
128
|
+
"Bn1d65q": ["fyowp6c", "fz08sq8"],
|
|
129
|
+
"Bxeuatn": "f9dii88",
|
|
130
|
+
"n51gp8": ["fz08sq8", "fyowp6c"],
|
|
131
|
+
"Beo2b4z": ["f1afxoft", "flqq2yx"],
|
|
132
|
+
"h6lo6r": ["flqq2yx", "f1afxoft"],
|
|
133
|
+
"Btyw6ap": ["f1b5xrmd", "f1831rx6"],
|
|
134
|
+
"w1pwid": ["f1831rx6", "f1b5xrmd"],
|
|
135
|
+
"Brwvgy3": "fd94n53",
|
|
136
|
+
"yadkgm": "f1e0wld5",
|
|
137
|
+
"De3pzq": "fq5gl1p",
|
|
138
|
+
"sj55zd": "f1cgsbmv",
|
|
139
|
+
"Jwef8y": "f1uqaxdt",
|
|
140
|
+
"ecr2s2": "fa9o754",
|
|
141
|
+
"g2u3we": "frmsihh",
|
|
142
|
+
"h3c5rm": ["frttxa5", "f11o2r7f"],
|
|
143
|
+
"B9xav0g": "fem5et0",
|
|
144
|
+
"zhjwy3": ["f11o2r7f", "frttxa5"]
|
|
145
|
+
},
|
|
146
|
+
"none": {}
|
|
70
147
|
}, {
|
|
71
|
-
"d": [".f19n0e5{color:var(--colorNeutralForeground1);}", ".f1ewtqcl{box-sizing:border-box;}", ".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}", ".fg706s2{border-bottom-style:solid;}", ".frpde29{border-bottom-color:var(--colorNeutralStroke2);}", ".fy9rknc{font-size:var(--fontSizeBase200);}"],
|
|
72
|
-
"
|
|
148
|
+
"d": [".f19n0e5{color:var(--colorNeutralForeground1);}", ".f1ewtqcl{box-sizing:border-box;}", ".fblfkud[data-fui-focus-visible]:focus-within .fui-TableSelectionCell{opacity:1;}", ".fz36nt7[data-fui-focus-visible]{outline-width:2px;}", ".f9znhxp[data-fui-focus-visible]{outline-style:solid;}", ".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);}", ".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);}"],
|
|
149
|
+
"a": [".f1wfn5kd:active{background-color:var(--colorSubtleBackgroundPressed);}", ".f1g4hkjv:active{color:var(--colorNeutralForeground1Pressed);}", ".flaujjr:active .fui-TableCellActions{background-color:var(--colorSubtleBackgroundPressed);}", ".f15ngxrw:active .fui-TableCellActions{opacity:1;}", ".fd28r7f:active .fui-TableSelectionCell{background-color:var(--colorNeutralBackground1Hover);}", ".fjbbrdp:active .fui-TableSelectionCell{opacity:1;}", ".ftepret:active{background-color:var(--colorBrandBackgroundInvertedSelected);}", ".fa9o754:active{background-color:var(--colorSubtleBackgroundSelected);}"],
|
|
150
|
+
"h": [".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}", ".feu1g3u:hover{color:var(--colorNeutralForeground1Hover);}", ".f1boln4s:hover .fui-TableCellActions{background-color:var(--colorNeutralBackground1Hover);}", ".f1uorfem:hover .fui-TableCellActions{opacity:1;}", ".frasl6z:hover .fui-TableSelectionCell{background-color:var(--colorNeutralBackground1Hover);}", ".fw60kww:hover .fui-TableSelectionCell{opacity:1;}", ".f121v1wq:hover{background-color:var(--colorBrandBackground2);}", ".f1uqaxdt:hover{background-color:var(--colorSubtleBackgroundSelected);}"],
|
|
151
|
+
"m": [["@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}", {
|
|
152
|
+
"m": "(forced-colors: active)"
|
|
153
|
+
}], ["@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}", {
|
|
154
|
+
"m": "(forced-colors: active)"
|
|
155
|
+
}], ["@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}", {
|
|
156
|
+
"m": "(forced-colors: active)"
|
|
157
|
+
}], ["@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}", {
|
|
158
|
+
"m": "(forced-colors: active)"
|
|
159
|
+
}], ["@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}", {
|
|
160
|
+
"m": "(forced-colors: active)"
|
|
161
|
+
}], ["@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}", {
|
|
162
|
+
"m": "(forced-colors: active)"
|
|
163
|
+
}], ["@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}", {
|
|
164
|
+
"m": "(forced-colors: active)"
|
|
165
|
+
}], ["@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}", {
|
|
166
|
+
"m": "(forced-colors: active)"
|
|
167
|
+
}], ["@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}", {
|
|
168
|
+
"m": "(forced-colors: active)"
|
|
169
|
+
}], ["@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}", {
|
|
170
|
+
"m": "(forced-colors: active)"
|
|
171
|
+
}], ["@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}", {
|
|
172
|
+
"m": "(forced-colors: active)"
|
|
173
|
+
}], ["@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}", {
|
|
174
|
+
"m": "(forced-colors: active)"
|
|
175
|
+
}], ["@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}", {
|
|
176
|
+
"m": "(forced-colors: active)"
|
|
177
|
+
}], ["@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}", {
|
|
178
|
+
"m": "(forced-colors: active)"
|
|
179
|
+
}], ["@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}", {
|
|
180
|
+
"m": "(forced-colors: active)"
|
|
181
|
+
}], ["@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}", {
|
|
182
|
+
"m": "(forced-colors: active)"
|
|
183
|
+
}], ["@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}", {
|
|
184
|
+
"m": "(forced-colors: active)"
|
|
185
|
+
}], ["@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}", {
|
|
186
|
+
"m": "(forced-colors: active)"
|
|
187
|
+
}], ["@media (forced-colors: active){.fqlf3fd{border-top-width:2px;}}", {
|
|
188
|
+
"m": "(forced-colors: active)"
|
|
189
|
+
}], ["@media (forced-colors: active){.f9dpb3h{border-right-width:2px;}.fw2muls{border-left-width:2px;}}", {
|
|
190
|
+
"m": "(forced-colors: active)"
|
|
191
|
+
}], ["@media (forced-colors: active){.f1yat0gj{border-bottom-width:2px;}}", {
|
|
192
|
+
"m": "(forced-colors: active)"
|
|
193
|
+
}], ["@media (forced-colors: active){.fw2muls{border-left-width:2px;}.f9dpb3h{border-right-width:2px;}}", {
|
|
194
|
+
"m": "(forced-colors: active)"
|
|
195
|
+
}], ["@media (forced-colors: active){.f7nae3y{border-top-style:solid;}}", {
|
|
196
|
+
"m": "(forced-colors: active)"
|
|
197
|
+
}], ["@media (forced-colors: active){.fkbere7{border-right-style:solid;}.fa97sf3{border-left-style:solid;}}", {
|
|
198
|
+
"m": "(forced-colors: active)"
|
|
199
|
+
}], ["@media (forced-colors: active){.fmtyzcc{border-bottom-style:solid;}}", {
|
|
200
|
+
"m": "(forced-colors: active)"
|
|
201
|
+
}], ["@media (forced-colors: active){.fa97sf3{border-left-style:solid;}.fkbere7{border-right-style:solid;}}", {
|
|
202
|
+
"m": "(forced-colors: active)"
|
|
203
|
+
}], ["@media (forced-colors: active){.fb6zhgp{border-top-color:transparent;}}", {
|
|
204
|
+
"m": "(forced-colors: active)"
|
|
205
|
+
}], ["@media (forced-colors: active){.fyowp6c{border-right-color:transparent;}.fz08sq8{border-left-color:transparent;}}", {
|
|
206
|
+
"m": "(forced-colors: active)"
|
|
207
|
+
}], ["@media (forced-colors: active){.f9dii88{border-bottom-color:transparent;}}", {
|
|
208
|
+
"m": "(forced-colors: active)"
|
|
209
|
+
}], ["@media (forced-colors: active){.fz08sq8{border-left-color:transparent;}.fyowp6c{border-right-color:transparent;}}", {
|
|
210
|
+
"m": "(forced-colors: active)"
|
|
211
|
+
}], ["@media (forced-colors: active){.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}}", {
|
|
212
|
+
"m": "(forced-colors: active)"
|
|
213
|
+
}], ["@media (forced-colors: active){.flqq2yx{border-bottom-left-radius:var(--borderRadiusMedium);}.f1afxoft{border-bottom-right-radius:var(--borderRadiusMedium);}}", {
|
|
214
|
+
"m": "(forced-colors: active)"
|
|
215
|
+
}], ["@media (forced-colors: active){.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}}", {
|
|
216
|
+
"m": "(forced-colors: active)"
|
|
217
|
+
}], ["@media (forced-colors: active){.f1831rx6{border-top-left-radius:var(--borderRadiusMedium);}.f1b5xrmd{border-top-right-radius:var(--borderRadiusMedium);}}", {
|
|
218
|
+
"m": "(forced-colors: active)"
|
|
219
|
+
}], ["@media (forced-colors: active){.fd94n53{box-sizing:border-box;}}", {
|
|
220
|
+
"m": "(forced-colors: active)"
|
|
221
|
+
}], ["@media (forced-colors: active){.f1e0wld5:focus-visible{outline-offset:-4px;}}", {
|
|
222
|
+
"m": "(forced-colors: active)"
|
|
223
|
+
}]]
|
|
73
224
|
});
|
|
74
225
|
/**
|
|
75
226
|
* Apply styling to the TableRow slots based on the state
|
|
@@ -77,12 +228,13 @@ const useStyles = /*#__PURE__*/__styles({
|
|
|
77
228
|
|
|
78
229
|
|
|
79
230
|
export const useTableRowStyles_unstable = state => {
|
|
231
|
+
const isHeaderRow = useIsInTableHeader();
|
|
80
232
|
const styles = useStyles();
|
|
81
233
|
const layoutStyles = {
|
|
82
234
|
table: useTableLayoutStyles(),
|
|
83
235
|
flex: useFlexLayoutStyles()
|
|
84
236
|
};
|
|
85
|
-
state.root.className = mergeClasses(tableRowClassNames.root, styles.root, styles[state.size], state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.noNativeElements ? layoutStyles.flex[state.size] : layoutStyles.table[state.size], state.root.className);
|
|
237
|
+
state.root.className = mergeClasses(tableRowClassNames.root, styles.root, !isHeaderRow && styles.rootInteractive, styles[state.size], state.noNativeElements ? layoutStyles.flex.root : layoutStyles.table.root, state.noNativeElements ? layoutStyles.flex[state.size] : layoutStyles.table[state.size], styles[state.appearance], state.root.className);
|
|
86
238
|
return state;
|
|
87
239
|
};
|
|
88
240
|
//# sourceMappingURL=useTableRowStyles.js.map
|