@instructure/ui-checkbox 11.7.2-snapshot-52 → 11.7.2-snapshot-60

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.7.2-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-52) (2026-04-22)
6
+ ## [11.7.2-snapshot-60](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-60) (2026-04-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.2-snapshot-52",
3
+ "version": "11.7.2-snapshot-60",
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.27.6",
18
18
  "keycode": "^2",
19
- "@instructure/console": "11.7.2-snapshot-52",
20
- "@instructure/emotion": "11.7.2-snapshot-52",
21
- "@instructure/shared-types": "11.7.2-snapshot-52",
22
- "@instructure/ui-dom-utils": "11.7.2-snapshot-52",
23
- "@instructure/ui-form-field": "11.7.2-snapshot-52",
24
- "@instructure/ui-icons": "11.7.2-snapshot-52",
25
- "@instructure/ui-react-utils": "11.7.2-snapshot-52",
26
- "@instructure/ui-svg-images": "11.7.2-snapshot-52",
27
- "@instructure/ui-view": "11.7.2-snapshot-52",
28
- "@instructure/ui-utils": "11.7.2-snapshot-52",
29
- "@instructure/uid": "11.7.2-snapshot-52"
19
+ "@instructure/console": "11.7.2-snapshot-60",
20
+ "@instructure/shared-types": "11.7.2-snapshot-60",
21
+ "@instructure/emotion": "11.7.2-snapshot-60",
22
+ "@instructure/ui-dom-utils": "11.7.2-snapshot-60",
23
+ "@instructure/ui-form-field": "11.7.2-snapshot-60",
24
+ "@instructure/ui-icons": "11.7.2-snapshot-60",
25
+ "@instructure/ui-react-utils": "11.7.2-snapshot-60",
26
+ "@instructure/ui-svg-images": "11.7.2-snapshot-60",
27
+ "@instructure/ui-view": "11.7.2-snapshot-60",
28
+ "@instructure/ui-utils": "11.7.2-snapshot-60",
29
+ "@instructure/uid": "11.7.2-snapshot-60"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@testing-library/jest-dom": "^6.6.3",
33
33
  "@testing-library/react": "15.0.7",
34
34
  "@testing-library/user-event": "^14.6.1",
35
35
  "vitest": "^3.2.2",
36
- "@instructure/ui-axe-check": "11.7.2-snapshot-52",
37
- "@instructure/ui-babel-preset": "11.7.2-snapshot-52",
38
- "@instructure/ui-color-utils": "11.7.2-snapshot-52",
39
- "@instructure/ui-themes": "11.7.2-snapshot-52"
36
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-60",
37
+ "@instructure/ui-axe-check": "11.7.2-snapshot-60",
38
+ "@instructure/ui-color-utils": "11.7.2-snapshot-60",
39
+ "@instructure/ui-themes": "11.7.2-snapshot-60"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "react": ">=18 <=19"
@@ -38,7 +38,7 @@ import type { CheckboxFacadeProps, CheckboxFacadeStyle } from './props'
38
38
  * @return {Object} The final style object, which will be used in the component
39
39
  */
40
40
  const generateStyle = (
41
- componentTheme: NewComponentTypes['Checkbox'],
41
+ componentTheme: ReturnType<NewComponentTypes['Checkbox']>,
42
42
  props: CheckboxFacadeProps,
43
43
  sharedTokens: SharedTokens
44
44
  ): CheckboxFacadeStyle => {
@@ -39,7 +39,7 @@ import type { ToggleFacadeProps, ToggleFacadeStyle } from './props'
39
39
  * @return {Object} The final style object, which will be used in the component
40
40
  */
41
41
  const generateStyle = (
42
- componentTheme: NewComponentTypes['Toggle'],
42
+ componentTheme: ReturnType<NewComponentTypes['Toggle']>,
43
43
  props: ToggleFacadeProps,
44
44
  sharedTokens: SharedTokens
45
45
  ): ToggleFacadeStyle => {
@@ -37,7 +37,7 @@ import type { NewComponentTypes } from '@instructure/ui-themes'
37
37
  * @return {Object} The final style object, which will be used in the component
38
38
  */
39
39
  const generateStyle = (
40
- componentTheme: NewComponentTypes['Checkbox'],
40
+ componentTheme: ReturnType<NewComponentTypes['Checkbox']>,
41
41
  props: CheckboxProps
42
42
  ): CheckboxStyle => {
43
43
  const { inline, size, variant } = props