@instructure/ui-pages 11.7.4-snapshot-101 → 11.7.4-snapshot-103
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 +5 -2
- package/package.json +11 -11
- package/src/Pages/v1/README.md +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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
|
-
## [11.7.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-103](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-103) (2026-07-14)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **ui-table:** fix caption for table to be responsive to sorting ([aac2b17](https://github.com/instructure/instructure-ui/commit/aac2b1790f970a1e8e2d959723eb0e4248105dd2))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-pages",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-103",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,22 +15,22 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.7",
|
|
18
|
-
"@instructure/console": "11.7.4-snapshot-
|
|
19
|
-
"@instructure/emotion": "11.7.4-snapshot-
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-themes": "11.7.4-snapshot-
|
|
24
|
-
"@instructure/ui-utils": "11.7.4-snapshot-
|
|
25
|
-
"@instructure/ui-view": "11.7.4-snapshot-
|
|
18
|
+
"@instructure/console": "11.7.4-snapshot-103",
|
|
19
|
+
"@instructure/emotion": "11.7.4-snapshot-103",
|
|
20
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-103",
|
|
21
|
+
"@instructure/shared-types": "11.7.4-snapshot-103",
|
|
22
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-103",
|
|
23
|
+
"@instructure/ui-themes": "11.7.4-snapshot-103",
|
|
24
|
+
"@instructure/ui-utils": "11.7.4-snapshot-103",
|
|
25
|
+
"@instructure/ui-view": "11.7.4-snapshot-103"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@testing-library/jest-dom": "^6.9.1",
|
|
29
29
|
"@testing-library/react": "16.3.2",
|
|
30
30
|
"@testing-library/user-event": "^14.6.1",
|
|
31
31
|
"vitest": "^4.1.9",
|
|
32
|
-
"@instructure/ui-
|
|
33
|
-
"@instructure/ui-
|
|
32
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-103",
|
|
33
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-103"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18 <=19"
|
package/src/Pages/v1/README.md
CHANGED
|
@@ -348,7 +348,7 @@ const Example = () => {
|
|
|
348
348
|
<Byline description={user.name}>
|
|
349
349
|
<Avatar name={user.name} />
|
|
350
350
|
</Byline>
|
|
351
|
-
<Table caption="User details">
|
|
351
|
+
<Table caption={() => "User details"}>
|
|
352
352
|
<Table.Body>
|
|
353
353
|
<Table.Row>
|
|
354
354
|
<Table.RowHeader>Age</Table.RowHeader>
|
|
@@ -357,7 +357,7 @@ const Example = () => {
|
|
|
357
357
|
</Table.Body>
|
|
358
358
|
</Table>
|
|
359
359
|
{user.email && (
|
|
360
|
-
<Table caption="User details">
|
|
360
|
+
<Table caption={() => "User details"}>
|
|
361
361
|
<Table.Body>
|
|
362
362
|
<Table.Row>
|
|
363
363
|
<Table.RowHeader>Email</Table.RowHeader>
|
|
@@ -367,7 +367,7 @@ const Example = () => {
|
|
|
367
367
|
</Table>
|
|
368
368
|
)}
|
|
369
369
|
{!isNaN(user.spouse) && (
|
|
370
|
-
<Table caption="User details">
|
|
370
|
+
<Table caption={() => "User details"}>
|
|
371
371
|
<Table.Body>
|
|
372
372
|
<Table.Row>
|
|
373
373
|
<Table.RowHeader>Spouse</Table.RowHeader>
|
|
@@ -379,7 +379,7 @@ const Example = () => {
|
|
|
379
379
|
</Table>
|
|
380
380
|
)}
|
|
381
381
|
{Array.isArray(user.parents) && (
|
|
382
|
-
<Table caption="User details">
|
|
382
|
+
<Table caption={() => "User details"}>
|
|
383
383
|
<Table.Body>
|
|
384
384
|
<Table.Row>
|
|
385
385
|
<Table.RowHeader>Parents</Table.RowHeader>
|