@instructure/ui-table 10.24.0 → 10.24.1-snapshot-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
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [10.24.1-snapshot-1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1-snapshot-1) (2025-07-29)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @instructure/ui-table
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
# [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @instructure/ui-table
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@instructure/ui-table",
|
3
|
-
"version": "10.24.
|
3
|
+
"version": "10.24.1-snapshot-1",
|
4
4
|
"description": "A styled HTML table component",
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
6
6
|
"module": "./es/index.js",
|
@@ -23,10 +23,10 @@
|
|
23
23
|
},
|
24
24
|
"license": "MIT",
|
25
25
|
"devDependencies": {
|
26
|
-
"@instructure/ui-axe-check": "10.24.
|
27
|
-
"@instructure/ui-babel-preset": "10.24.
|
28
|
-
"@instructure/ui-color-utils": "10.24.
|
29
|
-
"@instructure/ui-themes": "10.24.
|
26
|
+
"@instructure/ui-axe-check": "10.24.1-snapshot-1",
|
27
|
+
"@instructure/ui-babel-preset": "10.24.1-snapshot-1",
|
28
|
+
"@instructure/ui-color-utils": "10.24.1-snapshot-1",
|
29
|
+
"@instructure/ui-themes": "10.24.1-snapshot-1",
|
30
30
|
"@testing-library/jest-dom": "^6.6.3",
|
31
31
|
"@testing-library/react": "^16.0.1",
|
32
32
|
"@testing-library/user-event": "^14.6.1",
|
@@ -34,17 +34,17 @@
|
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"@babel/runtime": "^7.27.6",
|
37
|
-
"@instructure/console": "10.24.
|
38
|
-
"@instructure/emotion": "10.24.
|
39
|
-
"@instructure/shared-types": "10.24.
|
40
|
-
"@instructure/ui-a11y-content": "10.24.
|
41
|
-
"@instructure/ui-icons": "10.24.
|
42
|
-
"@instructure/ui-prop-types": "10.24.
|
43
|
-
"@instructure/ui-react-utils": "10.24.
|
44
|
-
"@instructure/ui-simple-select": "10.24.
|
45
|
-
"@instructure/ui-testable": "10.24.
|
46
|
-
"@instructure/ui-utils": "10.24.
|
47
|
-
"@instructure/ui-view": "10.24.
|
37
|
+
"@instructure/console": "10.24.1-snapshot-1",
|
38
|
+
"@instructure/emotion": "10.24.1-snapshot-1",
|
39
|
+
"@instructure/shared-types": "10.24.1-snapshot-1",
|
40
|
+
"@instructure/ui-a11y-content": "10.24.1-snapshot-1",
|
41
|
+
"@instructure/ui-icons": "10.24.1-snapshot-1",
|
42
|
+
"@instructure/ui-prop-types": "10.24.1-snapshot-1",
|
43
|
+
"@instructure/ui-react-utils": "10.24.1-snapshot-1",
|
44
|
+
"@instructure/ui-simple-select": "10.24.1-snapshot-1",
|
45
|
+
"@instructure/ui-testable": "10.24.1-snapshot-1",
|
46
|
+
"@instructure/ui-utils": "10.24.1-snapshot-1",
|
47
|
+
"@instructure/ui-view": "10.24.1-snapshot-1",
|
48
48
|
"prop-types": "^15.8.1"
|
49
49
|
},
|
50
50
|
"peerDependencies": {
|
package/src/Table/Row/props.ts
CHANGED
@@ -37,9 +37,17 @@ type TableRowOwnProps = {
|
|
37
37
|
* A row's children should be table cells. Its children should have the
|
38
38
|
* `header` prop to render the column header in `stacked` layout
|
39
39
|
*
|
40
|
-
* By default `Table.ColHeader` or `Table.RowHeader` or `Table.Cell
|
40
|
+
* By default, `Table.ColHeader` or `Table.RowHeader` or `Table.Cell`.
|
41
|
+
*
|
42
|
+
* Falsy values are also allowed to be able to use syntax like
|
43
|
+
* `{condition && <Table.Cell>bla<Table.Cell>}`
|
41
44
|
*/
|
42
|
-
children?:
|
45
|
+
children?:
|
46
|
+
| React.ReactElement
|
47
|
+
| null
|
48
|
+
| undefined
|
49
|
+
| boolean
|
50
|
+
| (React.ReactElement | null | undefined | boolean)[]
|
43
51
|
|
44
52
|
/**
|
45
53
|
* Controls the hover state of the row.
|