@itwin/itwinui-react 3.19.1 → 3.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/DEV-cjs/core/Avatar/Avatar.js +0 -2
- package/DEV-cjs/core/Breadcrumbs/Breadcrumbs.js +10 -5
- package/DEV-cjs/core/Table/columns/expanderColumn.js +20 -25
- package/DEV-cjs/core/Table/columns/selectionColumn.js +8 -14
- package/DEV-cjs/core/Table/hooks/useExpanderCell.js +6 -10
- package/DEV-cjs/styles.js +1 -1
- package/DEV-esm/core/Avatar/Avatar.js +0 -2
- package/DEV-esm/core/Breadcrumbs/Breadcrumbs.js +11 -5
- package/DEV-esm/core/Table/columns/expanderColumn.js +20 -25
- package/DEV-esm/core/Table/columns/selectionColumn.js +8 -14
- package/DEV-esm/core/Table/hooks/useExpanderCell.js +6 -10
- package/DEV-esm/styles.js +1 -1
- package/cjs/core/Avatar/Avatar.d.ts +4 -8
- package/cjs/core/Avatar/Avatar.js +0 -2
- package/cjs/core/AvatarGroup/AvatarGroup.d.ts +0 -3
- package/cjs/core/Breadcrumbs/Breadcrumbs.js +10 -5
- package/cjs/core/Table/columns/expanderColumn.d.ts +2 -2
- package/cjs/core/Table/columns/expanderColumn.js +20 -25
- package/cjs/core/Table/columns/selectionColumn.d.ts +2 -2
- package/cjs/core/Table/columns/selectionColumn.js +8 -14
- package/cjs/core/Table/hooks/useExpanderCell.js +6 -10
- package/cjs/core/Typography/Kbd.d.ts +1 -1
- package/cjs/styles.js +1 -1
- package/esm/core/Avatar/Avatar.d.ts +4 -8
- package/esm/core/Avatar/Avatar.js +0 -2
- package/esm/core/AvatarGroup/AvatarGroup.d.ts +0 -3
- package/esm/core/Breadcrumbs/Breadcrumbs.js +11 -5
- package/esm/core/Table/columns/expanderColumn.d.ts +2 -2
- package/esm/core/Table/columns/expanderColumn.js +20 -25
- package/esm/core/Table/columns/selectionColumn.d.ts +2 -2
- package/esm/core/Table/columns/selectionColumn.js +8 -14
- package/esm/core/Table/hooks/useExpanderCell.js +6 -10
- package/esm/core/Typography/Kbd.d.ts +1 -1
- package/esm/styles.js +1 -1
- package/package.json +1 -1
- package/styles.css +10 -10
|
@@ -15,10 +15,6 @@ type AvatarProps = {
|
|
|
15
15
|
* Status/Availability of a user.
|
|
16
16
|
*/
|
|
17
17
|
status?: AvatarStatus;
|
|
18
|
-
/**
|
|
19
|
-
* Text which will appear when hovering over the icon.
|
|
20
|
-
*/
|
|
21
|
-
title?: string;
|
|
22
18
|
/**
|
|
23
19
|
* Abbreviation to be displayed.
|
|
24
20
|
*/
|
|
@@ -41,16 +37,16 @@ export declare const defaultStatusTitles: StatusTitles;
|
|
|
41
37
|
* Basic avatar component
|
|
42
38
|
* @example
|
|
43
39
|
* <caption>Small icon with abbreviation</caption>
|
|
44
|
-
* <Avatar size='small'
|
|
40
|
+
* <Avatar size='small' abbreviation='TR' backgroundColor='green'/>
|
|
45
41
|
* @example
|
|
46
42
|
* <caption>Medium icon with image</caption>
|
|
47
|
-
* <Avatar size='medium'
|
|
43
|
+
* <Avatar size='medium' abbreviation='TR' backgroundColor='green' image={<img src="https://cdn.example.com/user/profile/pic.png" />}/>
|
|
48
44
|
* @example
|
|
49
45
|
* <caption>Large icon with status</caption>
|
|
50
|
-
* <Avatar size='large'
|
|
46
|
+
* <Avatar size='large' abbreviation='TR' backgroundColor='green' status='online' />
|
|
51
47
|
* @example
|
|
52
48
|
* <caption>X-large icon with image</caption>
|
|
53
|
-
* <Avatar size='x-large'
|
|
49
|
+
* <Avatar size='x-large' abbreviation='TR' backgroundColor='green' image={<img src="https://cdn.example.com/user/profile/pic.png" />}/>
|
|
54
50
|
*/
|
|
55
51
|
export declare const Avatar: PolymorphicForwardRefComponent<"span", AvatarProps>;
|
|
56
52
|
export {};
|
|
@@ -19,7 +19,6 @@ export const Avatar = React.forwardRef((props, ref) => {
|
|
|
19
19
|
abbreviation,
|
|
20
20
|
image,
|
|
21
21
|
backgroundColor,
|
|
22
|
-
title,
|
|
23
22
|
translatedStatusTitles,
|
|
24
23
|
className,
|
|
25
24
|
style,
|
|
@@ -36,7 +35,6 @@ export const Avatar = React.forwardRef((props, ref) => {
|
|
|
36
35
|
className: cx('iui-avatar', className),
|
|
37
36
|
'data-iui-size': 'medium' !== size ? size : void 0,
|
|
38
37
|
'data-iui-status': status,
|
|
39
|
-
title: title,
|
|
40
38
|
style: {
|
|
41
39
|
backgroundColor: getBackground(backgroundColor),
|
|
42
40
|
...style,
|
|
@@ -43,17 +43,14 @@ type AvatarGroupProps = {
|
|
|
43
43
|
* <Avatar
|
|
44
44
|
* abbreviation="TR"
|
|
45
45
|
* backgroundColor={getUserColor("Terry Rivers")}
|
|
46
|
-
* title="Terry Rivers"
|
|
47
46
|
* />
|
|
48
47
|
* <Avatar
|
|
49
48
|
* abbreviation="RM"
|
|
50
49
|
* backgroundColor={getUserColor("Robin Mercer")}
|
|
51
|
-
* title="Robin Mercer"
|
|
52
50
|
* />
|
|
53
51
|
* <Avatar
|
|
54
52
|
* abbreviation="JM"
|
|
55
53
|
* backgroundColor={getUserColor("Jean Mullins")}
|
|
56
|
-
* title="Jean Mullins"
|
|
57
54
|
* />
|
|
58
55
|
* </AvatarGroup>
|
|
59
56
|
*/
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
Box,
|
|
6
6
|
OverflowContainer,
|
|
7
7
|
useWarningLogger,
|
|
8
|
+
cloneElementWithRef,
|
|
8
9
|
} from '../../utils/index.js';
|
|
9
10
|
import { Button } from '../Buttons/Button.js';
|
|
10
11
|
import { Anchor } from '../Typography/Anchor.js';
|
|
@@ -134,17 +135,22 @@ let ListItem = ({ item, isActive }) => {
|
|
|
134
135
|
);
|
|
135
136
|
children = React.createElement(BreadcrumbsItem, children.props);
|
|
136
137
|
}
|
|
138
|
+
let getProps = React.useCallback(
|
|
139
|
+
(children) => {
|
|
140
|
+
let defaultAriaCurrent = isActive ? 'location' : void 0;
|
|
141
|
+
return {
|
|
142
|
+
'aria-current': children.props['aria-current'] ?? defaultAriaCurrent,
|
|
143
|
+
};
|
|
144
|
+
},
|
|
145
|
+
[isActive],
|
|
146
|
+
);
|
|
137
147
|
return React.createElement(
|
|
138
148
|
Box,
|
|
139
149
|
{
|
|
140
150
|
as: 'li',
|
|
141
151
|
className: 'iui-breadcrumbs-item',
|
|
142
152
|
},
|
|
143
|
-
children
|
|
144
|
-
React.cloneElement(children, {
|
|
145
|
-
'aria-current':
|
|
146
|
-
children.props['aria-current'] ?? isActive ? 'location' : void 0,
|
|
147
|
-
}),
|
|
153
|
+
children ? cloneElementWithRef(children, getProps) : null,
|
|
148
154
|
);
|
|
149
155
|
};
|
|
150
156
|
let Separator = ({ separator }) =>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import type { CellRendererProps, Row } from '../../../react-table/react-table.js';
|
|
2
|
+
import type { CellProps, CellRendererProps, Row } from '../../../react-table/react-table.js';
|
|
3
3
|
export declare const EXPANDER_CELL_ID = "iui-table-expander";
|
|
4
4
|
/**
|
|
5
5
|
* Expander column that adds sub-content expander column to the Table.
|
|
@@ -39,6 +39,6 @@ export declare const ExpanderColumn: <T extends Record<string, unknown>>(props?:
|
|
|
39
39
|
maxWidth: number;
|
|
40
40
|
columnClassName: string;
|
|
41
41
|
cellClassName: string;
|
|
42
|
-
Cell: () => null;
|
|
42
|
+
Cell: (props: CellProps<T>) => React.JSX.Element | null;
|
|
43
43
|
cellRenderer: (props: CellRendererProps<T>) => React.JSX.Element;
|
|
44
44
|
};
|
|
@@ -15,35 +15,30 @@ export const ExpanderColumn = (props = {}) => {
|
|
|
15
15
|
maxWidth: 48,
|
|
16
16
|
columnClassName: 'iui-slot',
|
|
17
17
|
cellClassName: 'iui-slot',
|
|
18
|
-
Cell: () =>
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
let children = subComponent?.(row)
|
|
22
|
-
? React.createElement(
|
|
23
|
-
IconButton,
|
|
24
|
-
{
|
|
25
|
-
'aria-label': 'Toggle expandable content',
|
|
26
|
-
className: 'iui-table-row-expander',
|
|
27
|
-
styleType: 'borderless',
|
|
28
|
-
size: 'small',
|
|
29
|
-
onClick: (e) => {
|
|
30
|
-
e.stopPropagation();
|
|
31
|
-
row.toggleRowExpanded();
|
|
32
|
-
},
|
|
33
|
-
disabled: isDisabled?.(row.original),
|
|
34
|
-
'aria-expanded': row.isExpanded,
|
|
35
|
-
},
|
|
36
|
-
React.createElement(SvgChevronRight, null),
|
|
37
|
-
)
|
|
38
|
-
: null;
|
|
18
|
+
Cell: (props) => {
|
|
19
|
+
let { row } = props;
|
|
20
|
+
if (!subComponent?.(row)) return null;
|
|
39
21
|
return React.createElement(
|
|
40
|
-
|
|
22
|
+
IconButton,
|
|
41
23
|
{
|
|
42
|
-
|
|
43
|
-
|
|
24
|
+
'aria-label': 'Toggle expandable content',
|
|
25
|
+
className: 'iui-table-row-expander',
|
|
26
|
+
styleType: 'borderless',
|
|
27
|
+
size: 'small',
|
|
28
|
+
onClick: (e) => {
|
|
29
|
+
e.stopPropagation();
|
|
30
|
+
row.toggleRowExpanded();
|
|
31
|
+
},
|
|
32
|
+
disabled: isDisabled?.(props.row.original),
|
|
33
|
+
'aria-expanded': row.isExpanded,
|
|
44
34
|
},
|
|
45
|
-
|
|
35
|
+
React.createElement(SvgChevronRight, null),
|
|
46
36
|
);
|
|
47
37
|
},
|
|
38
|
+
cellRenderer: (props) =>
|
|
39
|
+
React.createElement(DefaultCell, {
|
|
40
|
+
...props,
|
|
41
|
+
isDisabled: (rowData) => !!isDisabled?.(rowData),
|
|
42
|
+
}),
|
|
48
43
|
};
|
|
49
44
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import type { CellRendererProps, HeaderProps } from '../../../react-table/react-table.js';
|
|
2
|
+
import type { CellProps, CellRendererProps, HeaderProps } from '../../../react-table/react-table.js';
|
|
3
3
|
export declare const SELECTION_CELL_ID = "iui-table-checkbox-selector";
|
|
4
4
|
/**
|
|
5
5
|
* Selection column that adds selection checkbox column to the Table.
|
|
@@ -28,6 +28,6 @@ export declare const SelectionColumn: <T extends Record<string, unknown>>(props?
|
|
|
28
28
|
columnClassName: string;
|
|
29
29
|
cellClassName: string;
|
|
30
30
|
Header: ({ getToggleAllRowsSelectedProps, toggleAllRowsSelected, rows, preFilteredFlatRows, state, }: HeaderProps<T>) => React.JSX.Element;
|
|
31
|
-
Cell: () =>
|
|
31
|
+
Cell: ({ row, selectSubRows }: CellProps<T>) => React.JSX.Element;
|
|
32
32
|
cellRenderer: (props: CellRendererProps<T>) => React.JSX.Element;
|
|
33
33
|
};
|
|
@@ -44,10 +44,8 @@ export const SelectionColumn = (props = {}) => {
|
|
|
44
44
|
onChange: () => toggleAllRowsSelected(nextToggleState),
|
|
45
45
|
});
|
|
46
46
|
},
|
|
47
|
-
Cell: () =>
|
|
48
|
-
|
|
49
|
-
let { row, selectSubRows = true } = props.cellProps;
|
|
50
|
-
let children = React.createElement(Checkbox, {
|
|
47
|
+
Cell: ({ row, selectSubRows = true }) =>
|
|
48
|
+
React.createElement(Checkbox, {
|
|
51
49
|
...row.getToggleRowSelectedProps(),
|
|
52
50
|
style: {},
|
|
53
51
|
title: '',
|
|
@@ -67,15 +65,11 @@ export const SelectionColumn = (props = {}) => {
|
|
|
67
65
|
);
|
|
68
66
|
else row.toggleRowSelected(!row.isSelected);
|
|
69
67
|
},
|
|
70
|
-
})
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
},
|
|
77
|
-
children,
|
|
78
|
-
);
|
|
79
|
-
},
|
|
68
|
+
}),
|
|
69
|
+
cellRenderer: (props) =>
|
|
70
|
+
React.createElement(DefaultCell, {
|
|
71
|
+
...props,
|
|
72
|
+
isDisabled: (rowData) => !!isDisabled?.(rowData),
|
|
73
|
+
}),
|
|
80
74
|
};
|
|
81
75
|
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { ExpanderColumn, EXPANDER_CELL_ID } from '../columns/index.js';
|
|
3
|
-
import { DefaultCell } from '../cells/DefaultCell.js';
|
|
4
3
|
export const useExpanderCell =
|
|
5
4
|
(subComponent, expanderCell, isRowDisabled) => (hooks) => {
|
|
6
5
|
if (!subComponent) return;
|
|
@@ -14,17 +13,14 @@ export const useExpanderCell =
|
|
|
14
13
|
return [
|
|
15
14
|
{
|
|
16
15
|
...expanderColumn,
|
|
17
|
-
|
|
18
|
-
? (
|
|
16
|
+
Cell: expanderCell
|
|
17
|
+
? (cellProps) =>
|
|
19
18
|
React.createElement(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
isDisabled: (rowData) => !!isRowDisabled?.(rowData),
|
|
24
|
-
},
|
|
25
|
-
expanderCell(props.cellProps),
|
|
19
|
+
React.Fragment,
|
|
20
|
+
null,
|
|
21
|
+
expanderCell(cellProps),
|
|
26
22
|
)
|
|
27
|
-
: expanderColumn.
|
|
23
|
+
: expanderColumn.Cell,
|
|
28
24
|
},
|
|
29
25
|
...columns,
|
|
30
26
|
];
|
package/esm/styles.js
CHANGED