@instructure/ui-buttons 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
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
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
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
11
|
* **ui-buttons:** fix buttons disabled style and color ([2f2f7b0](https://github.com/instructure/instructure-ui/commit/2f2f7b04c7d666aef0e76054c9f722dab9f679e7))
|
|
12
|
+
* **ui-table:** fix caption for table to be responsive to sorting ([aac2b17](https://github.com/instructure/instructure-ui/commit/aac2b1790f970a1e8e2d959723eb0e4248105dd2))
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-buttons",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-103",
|
|
4
4
|
"description": "Accessible button components",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -16,28 +16,28 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.7",
|
|
18
18
|
"keycode": "^2",
|
|
19
|
-
"@instructure/console": "11.7.4-snapshot-
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-a11y-
|
|
23
|
-
"@instructure/ui-a11y-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-icons": "11.7.4-snapshot-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-tooltip": "11.7.4-snapshot-
|
|
30
|
-
"@instructure/ui-utils": "11.7.4-snapshot-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/ui-view": "11.7.4-snapshot-
|
|
19
|
+
"@instructure/console": "11.7.4-snapshot-103",
|
|
20
|
+
"@instructure/shared-types": "11.7.4-snapshot-103",
|
|
21
|
+
"@instructure/emotion": "11.7.4-snapshot-103",
|
|
22
|
+
"@instructure/ui-a11y-content": "11.7.4-snapshot-103",
|
|
23
|
+
"@instructure/ui-a11y-utils": "11.7.4-snapshot-103",
|
|
24
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-103",
|
|
25
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-103",
|
|
26
|
+
"@instructure/ui-icons": "11.7.4-snapshot-103",
|
|
27
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-103",
|
|
28
|
+
"@instructure/ui-position": "11.7.4-snapshot-103",
|
|
29
|
+
"@instructure/ui-tooltip": "11.7.4-snapshot-103",
|
|
30
|
+
"@instructure/ui-utils": "11.7.4-snapshot-103",
|
|
31
|
+
"@instructure/ui-themes": "11.7.4-snapshot-103",
|
|
32
|
+
"@instructure/ui-view": "11.7.4-snapshot-103"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@testing-library/jest-dom": "^6.9.1",
|
|
36
36
|
"@testing-library/react": "16.3.2",
|
|
37
37
|
"@testing-library/user-event": "^14.6.1",
|
|
38
38
|
"vitest": "^4.1.9",
|
|
39
|
-
"@instructure/ui-
|
|
40
|
-
"@instructure/ui-
|
|
39
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-103",
|
|
40
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-103"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=18 <=19"
|
|
@@ -19,7 +19,7 @@ In the following example, CondensedButton is used so that the button content can
|
|
|
19
19
|
---
|
|
20
20
|
type: example
|
|
21
21
|
---
|
|
22
|
-
<Table caption='Tallest Roller Coasters'>
|
|
22
|
+
<Table caption={() => 'Tallest Roller Coasters'}>
|
|
23
23
|
<Table.Head>
|
|
24
24
|
<Table.Row>
|
|
25
25
|
<Table.ColHeader id="Roller Coaster">
|
|
@@ -19,7 +19,7 @@ In the following example, CondensedButton is used so that the button content can
|
|
|
19
19
|
---
|
|
20
20
|
type: example
|
|
21
21
|
---
|
|
22
|
-
<Table caption='Tallest Roller Coasters'>
|
|
22
|
+
<Table caption={() => 'Tallest Roller Coasters'}>
|
|
23
23
|
<Table.Head>
|
|
24
24
|
<Table.Row>
|
|
25
25
|
<Table.ColHeader id="Roller Coaster">
|