@itwin/itwinui-react 3.20.0 → 3.20.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.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.20.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1398d25dfe5ad68a4fe500c38fec9f02a9970bd5: Fixed a `Table` issue where the sub-row expander could appear after the cell content in certain cases.
8
+
3
9
  ## 3.20.0
4
10
 
5
11
  ### Minor Changes
@@ -117,8 +117,8 @@ const TableCell = (props) => {
117
117
  _react.createElement(
118
118
  _react.Fragment,
119
119
  null,
120
- cellContent,
121
120
  expander,
121
+ cellContent,
122
122
  shadows,
123
123
  ),
124
124
  [cellContent, expander, shadows],
package/DEV-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.20.0';
3
+ const e = '3.20.1';
4
4
  const u = new Proxy(
5
5
  {},
6
6
  {
@@ -93,7 +93,7 @@ export const TableCell = (props) => {
93
93
  );
94
94
  let defaultCellRendererChildren = React.useMemo(
95
95
  () =>
96
- React.createElement(React.Fragment, null, cellContent, expander, shadows),
96
+ React.createElement(React.Fragment, null, expander, cellContent, shadows),
97
97
  [cellContent, expander, shadows],
98
98
  );
99
99
  let cellRendererProps = React.useMemo(
package/DEV-esm/styles.js CHANGED
@@ -1,4 +1,4 @@
1
- const t = '3.20.0';
1
+ const t = '3.20.1';
2
2
  const u = new Proxy(
3
3
  {},
4
4
  {
@@ -117,8 +117,8 @@ const TableCell = (props) => {
117
117
  _react.createElement(
118
118
  _react.Fragment,
119
119
  null,
120
- cellContent,
121
120
  expander,
121
+ cellContent,
122
122
  shadows,
123
123
  ),
124
124
  [cellContent, expander, shadows],
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.20.0';
3
+ const e = '3.20.1';
4
4
  const u = new Proxy(
5
5
  {},
6
6
  {
@@ -93,7 +93,7 @@ export const TableCell = (props) => {
93
93
  );
94
94
  let defaultCellRendererChildren = React.useMemo(
95
95
  () =>
96
- React.createElement(React.Fragment, null, cellContent, expander, shadows),
96
+ React.createElement(React.Fragment, null, expander, cellContent, shadows),
97
97
  [cellContent, expander, shadows],
98
98
  );
99
99
  let cellRendererProps = React.useMemo(
package/esm/styles.js CHANGED
@@ -1,4 +1,4 @@
1
- const t = '3.20.0';
1
+ const t = '3.20.1';
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.20.0",
3
+ "version": "3.20.1",
4
4
  "author": "Bentley Systems",
5
5
  "license": "MIT",
6
6
  "type": "module",