@itwin/itwinui-react 3.19.1 → 3.19.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/DEV-cjs/core/Avatar/Avatar.js +0 -2
  3. package/DEV-cjs/core/Breadcrumbs/Breadcrumbs.js +10 -5
  4. package/DEV-cjs/core/ComboBox/ComboBox.js +6 -4
  5. package/DEV-cjs/core/Popover/Popover.js +1 -1
  6. package/DEV-cjs/core/Select/Select.js +9 -7
  7. package/DEV-cjs/core/Table/columns/expanderColumn.js +20 -25
  8. package/DEV-cjs/core/Table/columns/selectionColumn.js +8 -14
  9. package/DEV-cjs/core/Table/hooks/useExpanderCell.js +6 -10
  10. package/DEV-cjs/styles.js +1 -1
  11. package/DEV-esm/core/Avatar/Avatar.js +0 -2
  12. package/DEV-esm/core/Breadcrumbs/Breadcrumbs.js +11 -5
  13. package/DEV-esm/core/ComboBox/ComboBox.js +6 -4
  14. package/DEV-esm/core/Popover/Popover.js +1 -1
  15. package/DEV-esm/core/Select/Select.js +9 -7
  16. package/DEV-esm/core/Table/columns/expanderColumn.js +20 -25
  17. package/DEV-esm/core/Table/columns/selectionColumn.js +8 -14
  18. package/DEV-esm/core/Table/hooks/useExpanderCell.js +6 -10
  19. package/DEV-esm/styles.js +1 -1
  20. package/cjs/core/Avatar/Avatar.d.ts +4 -8
  21. package/cjs/core/Avatar/Avatar.js +0 -2
  22. package/cjs/core/AvatarGroup/AvatarGroup.d.ts +0 -3
  23. package/cjs/core/Breadcrumbs/Breadcrumbs.js +10 -5
  24. package/cjs/core/ComboBox/ComboBox.js +6 -4
  25. package/cjs/core/Popover/Popover.js +1 -1
  26. package/cjs/core/Select/Select.js +9 -7
  27. package/cjs/core/Table/columns/expanderColumn.d.ts +2 -2
  28. package/cjs/core/Table/columns/expanderColumn.js +20 -25
  29. package/cjs/core/Table/columns/selectionColumn.d.ts +2 -2
  30. package/cjs/core/Table/columns/selectionColumn.js +8 -14
  31. package/cjs/core/Table/hooks/useExpanderCell.js +6 -10
  32. package/cjs/core/Typography/Kbd.d.ts +1 -1
  33. package/cjs/styles.js +1 -1
  34. package/esm/core/Avatar/Avatar.d.ts +4 -8
  35. package/esm/core/Avatar/Avatar.js +0 -2
  36. package/esm/core/AvatarGroup/AvatarGroup.d.ts +0 -3
  37. package/esm/core/Breadcrumbs/Breadcrumbs.js +11 -5
  38. package/esm/core/ComboBox/ComboBox.js +6 -4
  39. package/esm/core/Popover/Popover.js +1 -1
  40. package/esm/core/Select/Select.js +9 -7
  41. package/esm/core/Table/columns/expanderColumn.d.ts +2 -2
  42. package/esm/core/Table/columns/expanderColumn.js +20 -25
  43. package/esm/core/Table/columns/selectionColumn.d.ts +2 -2
  44. package/esm/core/Table/columns/selectionColumn.js +8 -14
  45. package/esm/core/Table/hooks/useExpanderCell.js +6 -10
  46. package/esm/core/Typography/Kbd.d.ts +1 -1
  47. package/esm/styles.js +1 -1
  48. package/package.json +1 -1
  49. package/styles.css +10 -10
@@ -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
  };
@@ -35,35 +35,30 @@ const ExpanderColumn = (props = {}) => {
35
35
  maxWidth: 48,
36
36
  columnClassName: 'iui-slot',
37
37
  cellClassName: 'iui-slot',
38
- Cell: () => null,
39
- cellRenderer: (props) => {
40
- let { row } = props.cellProps;
41
- let children = subComponent?.(row)
42
- ? _react.createElement(
43
- _IconButton.IconButton,
44
- {
45
- 'aria-label': 'Toggle expandable content',
46
- className: 'iui-table-row-expander',
47
- styleType: 'borderless',
48
- size: 'small',
49
- onClick: (e) => {
50
- e.stopPropagation();
51
- row.toggleRowExpanded();
52
- },
53
- disabled: isDisabled?.(row.original),
54
- 'aria-expanded': row.isExpanded,
55
- },
56
- _react.createElement(_index.SvgChevronRight, null),
57
- )
58
- : null;
38
+ Cell: (props) => {
39
+ let { row } = props;
40
+ if (!subComponent?.(row)) return null;
59
41
  return _react.createElement(
60
- _index1.DefaultCell,
42
+ _IconButton.IconButton,
61
43
  {
62
- ...props,
63
- isDisabled: (rowData) => !!isDisabled?.(rowData),
44
+ 'aria-label': 'Toggle expandable content',
45
+ className: 'iui-table-row-expander',
46
+ styleType: 'borderless',
47
+ size: 'small',
48
+ onClick: (e) => {
49
+ e.stopPropagation();
50
+ row.toggleRowExpanded();
51
+ },
52
+ disabled: isDisabled?.(props.row.original),
53
+ 'aria-expanded': row.isExpanded,
64
54
  },
65
- children,
55
+ _react.createElement(_index.SvgChevronRight, null),
66
56
  );
67
57
  },
58
+ cellRenderer: (props) =>
59
+ _react.createElement(_index1.DefaultCell, {
60
+ ...props,
61
+ isDisabled: (rowData) => !!isDisabled?.(rowData),
62
+ }),
68
63
  };
69
64
  };
@@ -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: () => null;
31
+ Cell: ({ row, selectSubRows }: CellProps<T>) => React.JSX.Element;
32
32
  cellRenderer: (props: CellRendererProps<T>) => React.JSX.Element;
33
33
  };
@@ -64,10 +64,8 @@ const SelectionColumn = (props = {}) => {
64
64
  onChange: () => toggleAllRowsSelected(nextToggleState),
65
65
  });
66
66
  },
67
- Cell: () => null,
68
- cellRenderer: (props) => {
69
- let { row, selectSubRows = true } = props.cellProps;
70
- let children = _react.createElement(_Checkbox.Checkbox, {
67
+ Cell: ({ row, selectSubRows = true }) =>
68
+ _react.createElement(_Checkbox.Checkbox, {
71
69
  ...row.getToggleRowSelectedProps(),
72
70
  style: {},
73
71
  title: '',
@@ -87,15 +85,11 @@ const SelectionColumn = (props = {}) => {
87
85
  );
88
86
  else row.toggleRowSelected(!row.isSelected);
89
87
  },
90
- });
91
- return _react.createElement(
92
- _index.DefaultCell,
93
- {
94
- ...props,
95
- isDisabled: (rowData) => !!isDisabled?.(rowData),
96
- },
97
- children,
98
- );
99
- },
88
+ }),
89
+ cellRenderer: (props) =>
90
+ _react.createElement(_index.DefaultCell, {
91
+ ...props,
92
+ isDisabled: (rowData) => !!isDisabled?.(rowData),
93
+ }),
100
94
  };
101
95
  };
@@ -11,7 +11,6 @@ Object.defineProperty(exports, 'useExpanderCell', {
11
11
  const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
12
12
  const _react = /*#__PURE__*/ _interop_require_wildcard._(require('react'));
13
13
  const _index = require('../columns/index.js');
14
- const _DefaultCell = require('../cells/DefaultCell.js');
15
14
  const useExpanderCell =
16
15
  (subComponent, expanderCell, isRowDisabled) => (hooks) => {
17
16
  if (!subComponent) return;
@@ -27,17 +26,14 @@ const useExpanderCell =
27
26
  return [
28
27
  {
29
28
  ...expanderColumn,
30
- cellRenderer: expanderCell
31
- ? (props) =>
29
+ Cell: expanderCell
30
+ ? (cellProps) =>
32
31
  _react.createElement(
33
- _DefaultCell.DefaultCell,
34
- {
35
- ...props,
36
- isDisabled: (rowData) => !!isRowDisabled?.(rowData),
37
- },
38
- expanderCell(props.cellProps),
32
+ _react.Fragment,
33
+ null,
34
+ expanderCell(cellProps),
39
35
  )
40
- : expanderColumn.cellRenderer,
36
+ : expanderColumn.Cell,
41
37
  },
42
38
  ...columns,
43
39
  ];
@@ -27,7 +27,7 @@ type KbdProps = {
27
27
  * A keyboard key element.
28
28
  * @example
29
29
  * <Kbd>A</Kbd>
30
- * <Kbd title='Enter'>{KbdKeys.Enter}</Kbd>
30
+ * <Kbd>{KbdKeys.Enter}</Kbd>
31
31
  */
32
32
  export declare const Kbd: PolymorphicForwardRefComponent<"kbd", KbdProps>;
33
33
  export {};
package/cjs/styles.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
3
- const e = '3.19.1';
3
+ const e = '3.19.3';
4
4
  const u = new Proxy(
5
5
  {},
6
6
  {
@@ -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' title='Terry Rivers' abbreviation='TR' backgroundColor='green'/>
40
+ * <Avatar size='small' abbreviation='TR' backgroundColor='green'/>
45
41
  * @example
46
42
  * <caption>Medium icon with image</caption>
47
- * <Avatar size='medium' title='Terry Rivers' abbreviation='TR' backgroundColor='green' image={<img src="https://cdn.example.com/user/profile/pic.png" />}/>
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' title='Terry Rivers' abbreviation='TR' backgroundColor='green' status='online' />
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' title='Terry Rivers' abbreviation='TR' backgroundColor='green' image={<img src="https://cdn.example.com/user/profile/pic.png" />}/>
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 }) =>
@@ -406,10 +406,12 @@ export const ComboBox = React.forwardRef((props, forwardedRef) => {
406
406
  return React.createElement(SelectTag, {
407
407
  key: option.label,
408
408
  label: option.label,
409
- onRemove: () => {
410
- handleOptionSelection(__originalIndex);
411
- hide();
412
- },
409
+ onRemove: inputProps?.disabled
410
+ ? void 0
411
+ : () => {
412
+ handleOptionSelection(__originalIndex);
413
+ hide();
414
+ },
413
415
  });
414
416
  })
415
417
  .filter(Boolean)
@@ -98,7 +98,7 @@ export const usePopover = (options) => {
98
98
  void 0 !== middleware.offset && offset(middleware.offset),
99
99
  middleware.flip &&
100
100
  flip({
101
- padding: 4,
101
+ padding: 5,
102
102
  }),
103
103
  middleware.shift &&
104
104
  shift({
@@ -230,14 +230,16 @@ let CustomSelect = React.forwardRef((props, forwardedRef) => {
230
230
  React.createElement(SelectTag, {
231
231
  key: option.label,
232
232
  label: option.label,
233
- onRemove: () => {
234
- handleOptionSelection(option, {
235
- isSelected: true,
236
- });
237
- selectRef.current?.focus();
238
- },
233
+ onRemove: disabled
234
+ ? void 0
235
+ : () => {
236
+ handleOptionSelection(option, {
237
+ isSelected: true,
238
+ });
239
+ selectRef.current?.focus();
240
+ },
239
241
  }),
240
- [handleOptionSelection],
242
+ [disabled, handleOptionSelection],
241
243
  );
242
244
  let popover = usePopover({
243
245
  visible: isOpen,
@@ -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: () => null,
19
- cellRenderer: (props) => {
20
- let { row } = props.cellProps;
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
- DefaultCell,
22
+ IconButton,
41
23
  {
42
- ...props,
43
- isDisabled: (rowData) => !!isDisabled?.(rowData),
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
- children,
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: () => null;
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: () => null,
48
- cellRenderer: (props) => {
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
- return React.createElement(
72
- DefaultCell,
73
- {
74
- ...props,
75
- isDisabled: (rowData) => !!isDisabled?.(rowData),
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
- cellRenderer: expanderCell
18
- ? (props) =>
16
+ Cell: expanderCell
17
+ ? (cellProps) =>
19
18
  React.createElement(
20
- DefaultCell,
21
- {
22
- ...props,
23
- isDisabled: (rowData) => !!isRowDisabled?.(rowData),
24
- },
25
- expanderCell(props.cellProps),
19
+ React.Fragment,
20
+ null,
21
+ expanderCell(cellProps),
26
22
  )
27
- : expanderColumn.cellRenderer,
23
+ : expanderColumn.Cell,
28
24
  },
29
25
  ...columns,
30
26
  ];
@@ -27,7 +27,7 @@ type KbdProps = {
27
27
  * A keyboard key element.
28
28
  * @example
29
29
  * <Kbd>A</Kbd>
30
- * <Kbd title='Enter'>{KbdKeys.Enter}</Kbd>
30
+ * <Kbd>{KbdKeys.Enter}</Kbd>
31
31
  */
32
32
  export declare const Kbd: PolymorphicForwardRefComponent<"kbd", KbdProps>;
33
33
  export {};
package/esm/styles.js CHANGED
@@ -1,4 +1,4 @@
1
- const t = '3.19.1';
1
+ const t = '3.19.3';
2
2
  const u = new Proxy(
3
3
  {},
4
4
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/itwinui-react",
3
- "version": "3.19.1",
3
+ "version": "3.19.3",
4
4
  "author": "Bentley Systems",
5
5
  "license": "MIT",
6
6
  "type": "module",