@instructure/ui-checkbox 11.7.4-snapshot-130 → 11.7.4-snapshot-132
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 +1 -1
- package/package.json +16 -16
- package/src/Checkbox/v2/README.md +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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-132](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-132) (2026-07-23)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-checkbox",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-132",
|
|
4
4
|
"description": " styled HTML input type='checkbox' component.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -16,27 +16,27 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.7",
|
|
18
18
|
"keycode": "^2",
|
|
19
|
-
"@instructure/console": "11.7.4-snapshot-
|
|
20
|
-
"@instructure/emotion": "11.7.4-snapshot-
|
|
21
|
-
"@instructure/shared-types": "11.7.4-snapshot-
|
|
22
|
-
"@instructure/ui-form-field": "11.7.4-snapshot-
|
|
23
|
-
"@instructure/ui-dom-utils": "11.7.4-snapshot-
|
|
24
|
-
"@instructure/ui-icons": "11.7.4-snapshot-
|
|
25
|
-
"@instructure/ui-react-utils": "11.7.4-snapshot-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-view": "11.7.4-snapshot-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/uid": "11.7.4-snapshot-
|
|
30
|
-
"@instructure/ui-svg-images": "11.7.4-snapshot-
|
|
19
|
+
"@instructure/console": "11.7.4-snapshot-132",
|
|
20
|
+
"@instructure/emotion": "11.7.4-snapshot-132",
|
|
21
|
+
"@instructure/shared-types": "11.7.4-snapshot-132",
|
|
22
|
+
"@instructure/ui-form-field": "11.7.4-snapshot-132",
|
|
23
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-132",
|
|
24
|
+
"@instructure/ui-icons": "11.7.4-snapshot-132",
|
|
25
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-132",
|
|
26
|
+
"@instructure/ui-themes": "11.7.4-snapshot-132",
|
|
27
|
+
"@instructure/ui-view": "11.7.4-snapshot-132",
|
|
28
|
+
"@instructure/ui-utils": "11.7.4-snapshot-132",
|
|
29
|
+
"@instructure/uid": "11.7.4-snapshot-132",
|
|
30
|
+
"@instructure/ui-svg-images": "11.7.4-snapshot-132"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@testing-library/jest-dom": "^6.9.1",
|
|
34
34
|
"@testing-library/react": "16.3.2",
|
|
35
35
|
"@testing-library/user-event": "^14.6.1",
|
|
36
36
|
"vitest": "^4.1.9",
|
|
37
|
-
"@instructure/ui-axe-check": "11.7.4-snapshot-
|
|
38
|
-
"@instructure/ui-babel-preset": "11.7.4-snapshot-
|
|
39
|
-
"@instructure/ui-color-utils": "11.7.4-snapshot-
|
|
37
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-132",
|
|
38
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-132",
|
|
39
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-132"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"react": ">=18 <=19"
|
|
@@ -75,7 +75,7 @@ type: example
|
|
|
75
75
|
checked={value.length === 3}
|
|
76
76
|
indeterminate={value.length > 0 && value.length < 3}
|
|
77
77
|
/>
|
|
78
|
-
<View as="div" padding="0 0 0
|
|
78
|
+
<View as="div" padding="0 0 0 general.spaceXl">
|
|
79
79
|
<Checkbox
|
|
80
80
|
aria-labelledby="groupLabel eng203Label"
|
|
81
81
|
label={<span id="eng203Label">English 203</span>}
|
|
@@ -87,7 +87,7 @@ type: example
|
|
|
87
87
|
checked={value.indexOf('eng203') !== -1}
|
|
88
88
|
/>
|
|
89
89
|
</View>
|
|
90
|
-
<View as="div" padding="0 0 0
|
|
90
|
+
<View as="div" padding="0 0 0 general.spaceXl">
|
|
91
91
|
<Checkbox
|
|
92
92
|
aria-labelledby="groupLabel sci101Label"
|
|
93
93
|
label={<span id="sci101Label">Science 101</span>}
|
|
@@ -99,7 +99,7 @@ type: example
|
|
|
99
99
|
checked={value.indexOf('sci101') !== -1}
|
|
100
100
|
/>
|
|
101
101
|
</View>
|
|
102
|
-
<View as="div" padding="0 0 0
|
|
102
|
+
<View as="div" padding="0 0 0 general.spaceXl">
|
|
103
103
|
<Checkbox
|
|
104
104
|
aria-labelledby="groupLabel hist101Label"
|
|
105
105
|
label={<span id="hist101Label">History 111</span>}
|