@instructure/ui-checkbox 11.0.2-snapshot-0 → 11.0.2-snapshot-2

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,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.0.2-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-0) (2025-10-15)
6
+ ## [11.0.2-snapshot-2](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.0.2-snapshot-2) (2025-10-20)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-checkbox
9
9
 
package/README.md CHANGED
@@ -10,8 +10,8 @@ A styled HTML input type="checkbox" component.
10
10
 
11
11
  The `ui-checkbox` package contains the following:
12
12
 
13
- - [Checkbox](#Checkbox)
14
- - [CheckboxGroup](#CheckboxGroup)
13
+ - [Checkbox](Checkbox)
14
+ - [CheckboxGroup](CheckboxGroup)
15
15
 
16
16
  ### Installation
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-checkbox",
3
- "version": "11.0.2-snapshot-0",
3
+ "version": "11.0.2-snapshot-2",
4
4
  "description": " styled HTML input type='checkbox' component.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,24 +24,24 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.27.6",
27
- "@instructure/console": "11.0.2-snapshot-0",
28
- "@instructure/emotion": "11.0.2-snapshot-0",
29
- "@instructure/shared-types": "11.0.2-snapshot-0",
30
- "@instructure/ui-dom-utils": "11.0.2-snapshot-0",
31
- "@instructure/ui-form-field": "11.0.2-snapshot-0",
32
- "@instructure/ui-icons": "11.0.2-snapshot-0",
33
- "@instructure/ui-react-utils": "11.0.2-snapshot-0",
34
- "@instructure/ui-svg-images": "11.0.2-snapshot-0",
35
- "@instructure/ui-utils": "11.0.2-snapshot-0",
36
- "@instructure/ui-view": "11.0.2-snapshot-0",
37
- "@instructure/uid": "11.0.2-snapshot-0",
27
+ "@instructure/console": "11.0.2-snapshot-2",
28
+ "@instructure/emotion": "11.0.2-snapshot-2",
29
+ "@instructure/shared-types": "11.0.2-snapshot-2",
30
+ "@instructure/ui-dom-utils": "11.0.2-snapshot-2",
31
+ "@instructure/ui-form-field": "11.0.2-snapshot-2",
32
+ "@instructure/ui-icons": "11.0.2-snapshot-2",
33
+ "@instructure/ui-react-utils": "11.0.2-snapshot-2",
34
+ "@instructure/ui-svg-images": "11.0.2-snapshot-2",
35
+ "@instructure/ui-utils": "11.0.2-snapshot-2",
36
+ "@instructure/ui-view": "11.0.2-snapshot-2",
37
+ "@instructure/uid": "11.0.2-snapshot-2",
38
38
  "keycode": "^2"
39
39
  },
40
40
  "devDependencies": {
41
- "@instructure/ui-axe-check": "11.0.2-snapshot-0",
42
- "@instructure/ui-babel-preset": "11.0.2-snapshot-0",
43
- "@instructure/ui-color-utils": "11.0.2-snapshot-0",
44
- "@instructure/ui-themes": "11.0.2-snapshot-0",
41
+ "@instructure/ui-axe-check": "11.0.2-snapshot-2",
42
+ "@instructure/ui-babel-preset": "11.0.2-snapshot-2",
43
+ "@instructure/ui-color-utils": "11.0.2-snapshot-2",
44
+ "@instructure/ui-themes": "11.0.2-snapshot-2",
45
45
  "@testing-library/jest-dom": "^6.6.3",
46
46
  "@testing-library/react": "15.0.7",
47
47
  "@testing-library/user-event": "^14.6.1",
@@ -149,7 +149,7 @@ type: example
149
149
  ```
150
150
 
151
151
  You might want to hide the label text when using the toggle switch variant. Do that by wrapping
152
- the text in the [ScreenReaderContent](#ScreenReaderContent) component.
152
+ the text in the [ScreenReaderContent](ScreenReaderContent) component.
153
153
 
154
154
  ```js
155
155
  ---
@@ -2,7 +2,7 @@
2
2
  describes: CheckboxGroup
3
3
  ---
4
4
 
5
- A `<CheckboxGroup/>` is a group of [Checkbox](#Checkbox) components that share the same name. You can
5
+ A `<CheckboxGroup/>` is a group of [Checkbox](Checkbox) components that share the same name. You can
6
6
  set an array `value` for the entire group and it will handle setting the `checked` and `name` props for you.
7
7
  The Checkbox components can be rendered vertically or horizontally using the `layout` property.
8
8