@instructure/ui-checkbox 11.6.1-snapshot-0 → 11.6.1-snapshot-129

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.
Files changed (158) hide show
  1. package/CHANGELOG.md +42 -303
  2. package/es/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/index.js +1 -1
  3. package/es/Checkbox/{ToggleFacade → v1/ToggleFacade}/index.js +1 -1
  4. package/es/Checkbox/{index.js → v1/index.js} +3 -3
  5. package/es/Checkbox/v2/CheckboxFacade/index.js +104 -0
  6. package/es/Checkbox/v2/CheckboxFacade/props.js +26 -0
  7. package/es/Checkbox/v2/CheckboxFacade/styles.js +177 -0
  8. package/es/Checkbox/v2/ToggleFacade/index.js +116 -0
  9. package/es/Checkbox/v2/ToggleFacade/props.js +26 -0
  10. package/es/Checkbox/v2/ToggleFacade/styles.js +232 -0
  11. package/es/Checkbox/v2/index.js +289 -0
  12. package/es/Checkbox/v2/props.js +26 -0
  13. package/es/Checkbox/v2/styles.js +102 -0
  14. package/es/CheckboxGroup/{index.js → v1/index.js} +2 -2
  15. package/es/CheckboxGroup/v2/index.js +125 -0
  16. package/es/CheckboxGroup/v2/props.js +26 -0
  17. package/es/{index.js → exports/a.js} +2 -2
  18. package/es/exports/b.js +25 -0
  19. package/lib/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/index.js +2 -2
  20. package/lib/Checkbox/{ToggleFacade → v1/ToggleFacade}/index.js +3 -3
  21. package/lib/Checkbox/{index.js → v1/index.js} +5 -5
  22. package/lib/Checkbox/v2/CheckboxFacade/index.js +109 -0
  23. package/lib/Checkbox/v2/CheckboxFacade/props.js +31 -0
  24. package/lib/Checkbox/v2/CheckboxFacade/styles.js +183 -0
  25. package/lib/Checkbox/v2/ToggleFacade/index.js +121 -0
  26. package/lib/Checkbox/v2/ToggleFacade/props.js +31 -0
  27. package/lib/Checkbox/v2/ToggleFacade/styles.js +238 -0
  28. package/lib/Checkbox/v2/index.js +308 -0
  29. package/lib/Checkbox/v2/props.js +31 -0
  30. package/lib/Checkbox/v2/styles.js +108 -0
  31. package/lib/CheckboxGroup/{index.js → v1/index.js} +5 -5
  32. package/lib/CheckboxGroup/v2/index.js +133 -0
  33. package/lib/CheckboxGroup/v2/props.js +31 -0
  34. package/lib/{index.js → exports/a.js} +6 -6
  35. package/lib/exports/b.js +31 -0
  36. package/package.json +45 -23
  37. package/src/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/index.tsx +1 -1
  38. package/src/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/styles.ts +3 -1
  39. package/src/Checkbox/{ToggleFacade → v1/ToggleFacade}/index.tsx +1 -1
  40. package/src/Checkbox/{index.tsx → v1/index.tsx} +3 -3
  41. package/src/Checkbox/{props.ts → v1/props.ts} +1 -1
  42. package/src/Checkbox/{styles.ts → v1/styles.ts} +1 -1
  43. package/src/Checkbox/{theme.ts → v1/theme.ts} +1 -1
  44. package/src/Checkbox/v2/CheckboxFacade/index.tsx +113 -0
  45. package/src/Checkbox/v2/CheckboxFacade/props.ts +67 -0
  46. package/src/Checkbox/v2/CheckboxFacade/styles.ts +209 -0
  47. package/src/Checkbox/v2/README.md +193 -0
  48. package/src/Checkbox/v2/ToggleFacade/index.tsx +124 -0
  49. package/src/Checkbox/v2/ToggleFacade/props.ts +67 -0
  50. package/src/Checkbox/v2/ToggleFacade/styles.ts +301 -0
  51. package/src/Checkbox/v2/index.tsx +376 -0
  52. package/src/Checkbox/v2/props.ts +132 -0
  53. package/src/Checkbox/v2/styles.ts +118 -0
  54. package/src/CheckboxGroup/{index.tsx → v1/index.tsx} +2 -2
  55. package/src/CheckboxGroup/{props.ts → v1/props.ts} +3 -3
  56. package/src/CheckboxGroup/v2/README.md +111 -0
  57. package/src/CheckboxGroup/v2/index.tsx +157 -0
  58. package/src/CheckboxGroup/v2/props.ts +77 -0
  59. package/src/{index.ts → exports/a.ts} +6 -6
  60. package/src/exports/b.ts +30 -0
  61. package/tsconfig.build.tsbuildinfo +1 -1
  62. package/types/Checkbox/v1/CheckboxFacade/index.d.ts.map +1 -0
  63. package/types/Checkbox/v1/CheckboxFacade/props.d.ts.map +1 -0
  64. package/types/Checkbox/v1/CheckboxFacade/styles.d.ts.map +1 -0
  65. package/types/Checkbox/v1/CheckboxFacade/theme.d.ts.map +1 -0
  66. package/types/Checkbox/v1/ToggleFacade/index.d.ts.map +1 -0
  67. package/types/Checkbox/v1/ToggleFacade/props.d.ts.map +1 -0
  68. package/types/Checkbox/v1/ToggleFacade/styles.d.ts.map +1 -0
  69. package/types/Checkbox/v1/ToggleFacade/theme.d.ts.map +1 -0
  70. package/types/Checkbox/{index.d.ts → v1/index.d.ts} +1 -1
  71. package/types/Checkbox/v1/index.d.ts.map +1 -0
  72. package/types/Checkbox/{props.d.ts → v1/props.d.ts} +1 -1
  73. package/types/Checkbox/v1/props.d.ts.map +1 -0
  74. package/types/Checkbox/v1/styles.d.ts.map +1 -0
  75. package/types/Checkbox/v1/theme.d.ts.map +1 -0
  76. package/types/Checkbox/v2/CheckboxFacade/index.d.ts +39 -0
  77. package/types/Checkbox/v2/CheckboxFacade/index.d.ts.map +1 -0
  78. package/types/Checkbox/v2/CheckboxFacade/props.d.ts +27 -0
  79. package/types/Checkbox/v2/CheckboxFacade/props.d.ts.map +1 -0
  80. package/types/Checkbox/v2/CheckboxFacade/styles.d.ts +16 -0
  81. package/types/Checkbox/v2/CheckboxFacade/styles.d.ts.map +1 -0
  82. package/types/Checkbox/v2/ToggleFacade/index.d.ts +40 -0
  83. package/types/Checkbox/v2/ToggleFacade/index.d.ts.map +1 -0
  84. package/types/Checkbox/v2/ToggleFacade/props.d.ts +25 -0
  85. package/types/Checkbox/v2/ToggleFacade/props.d.ts.map +1 -0
  86. package/types/Checkbox/v2/ToggleFacade/styles.d.ts +16 -0
  87. package/types/Checkbox/v2/ToggleFacade/styles.d.ts.map +1 -0
  88. package/types/Checkbox/v2/index.d.ts +71 -0
  89. package/types/Checkbox/v2/index.d.ts.map +1 -0
  90. package/types/Checkbox/v2/props.d.ts +64 -0
  91. package/types/Checkbox/v2/props.d.ts.map +1 -0
  92. package/types/Checkbox/v2/styles.d.ts +16 -0
  93. package/types/Checkbox/v2/styles.d.ts.map +1 -0
  94. package/types/CheckboxGroup/{index.d.ts → v1/index.d.ts} +1 -1
  95. package/types/CheckboxGroup/v1/index.d.ts.map +1 -0
  96. package/types/CheckboxGroup/{props.d.ts → v1/props.d.ts} +3 -3
  97. package/types/CheckboxGroup/v1/props.d.ts.map +1 -0
  98. package/types/CheckboxGroup/v2/index.d.ts +42 -0
  99. package/types/CheckboxGroup/v2/index.d.ts.map +1 -0
  100. package/types/CheckboxGroup/v2/props.d.ts +30 -0
  101. package/types/CheckboxGroup/v2/props.d.ts.map +1 -0
  102. package/types/exports/a.d.ts +7 -0
  103. package/types/exports/a.d.ts.map +1 -0
  104. package/types/exports/b.d.ts +7 -0
  105. package/types/exports/b.d.ts.map +1 -0
  106. package/types/Checkbox/CheckboxFacade/index.d.ts.map +0 -1
  107. package/types/Checkbox/CheckboxFacade/props.d.ts.map +0 -1
  108. package/types/Checkbox/CheckboxFacade/styles.d.ts.map +0 -1
  109. package/types/Checkbox/CheckboxFacade/theme.d.ts.map +0 -1
  110. package/types/Checkbox/ToggleFacade/index.d.ts.map +0 -1
  111. package/types/Checkbox/ToggleFacade/props.d.ts.map +0 -1
  112. package/types/Checkbox/ToggleFacade/styles.d.ts.map +0 -1
  113. package/types/Checkbox/ToggleFacade/theme.d.ts.map +0 -1
  114. package/types/Checkbox/index.d.ts.map +0 -1
  115. package/types/Checkbox/props.d.ts.map +0 -1
  116. package/types/Checkbox/styles.d.ts.map +0 -1
  117. package/types/Checkbox/theme.d.ts.map +0 -1
  118. package/types/CheckboxGroup/index.d.ts.map +0 -1
  119. package/types/CheckboxGroup/props.d.ts.map +0 -1
  120. package/types/index.d.ts +0 -7
  121. package/types/index.d.ts.map +0 -1
  122. /package/es/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/props.js +0 -0
  123. /package/es/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/styles.js +0 -0
  124. /package/es/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/theme.js +0 -0
  125. /package/es/Checkbox/{ToggleFacade → v1/ToggleFacade}/props.js +0 -0
  126. /package/es/Checkbox/{ToggleFacade → v1/ToggleFacade}/styles.js +0 -0
  127. /package/es/Checkbox/{ToggleFacade → v1/ToggleFacade}/theme.js +0 -0
  128. /package/es/Checkbox/{props.js → v1/props.js} +0 -0
  129. /package/es/Checkbox/{styles.js → v1/styles.js} +0 -0
  130. /package/es/Checkbox/{theme.js → v1/theme.js} +0 -0
  131. /package/es/CheckboxGroup/{props.js → v1/props.js} +0 -0
  132. /package/lib/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/props.js +0 -0
  133. /package/lib/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/styles.js +0 -0
  134. /package/lib/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/theme.js +0 -0
  135. /package/lib/Checkbox/{ToggleFacade → v1/ToggleFacade}/props.js +0 -0
  136. /package/lib/Checkbox/{ToggleFacade → v1/ToggleFacade}/styles.js +0 -0
  137. /package/lib/Checkbox/{ToggleFacade → v1/ToggleFacade}/theme.js +0 -0
  138. /package/lib/Checkbox/{props.js → v1/props.js} +0 -0
  139. /package/lib/Checkbox/{styles.js → v1/styles.js} +0 -0
  140. /package/lib/Checkbox/{theme.js → v1/theme.js} +0 -0
  141. /package/lib/CheckboxGroup/{props.js → v1/props.js} +0 -0
  142. /package/src/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/props.ts +0 -0
  143. /package/src/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/theme.ts +0 -0
  144. /package/src/Checkbox/{README.md → v1/README.md} +0 -0
  145. /package/src/Checkbox/{ToggleFacade → v1/ToggleFacade}/props.ts +0 -0
  146. /package/src/Checkbox/{ToggleFacade → v1/ToggleFacade}/styles.ts +0 -0
  147. /package/src/Checkbox/{ToggleFacade → v1/ToggleFacade}/theme.ts +0 -0
  148. /package/src/CheckboxGroup/{README.md → v1/README.md} +0 -0
  149. /package/types/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/index.d.ts +0 -0
  150. /package/types/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/props.d.ts +0 -0
  151. /package/types/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/styles.d.ts +0 -0
  152. /package/types/Checkbox/{CheckboxFacade → v1/CheckboxFacade}/theme.d.ts +0 -0
  153. /package/types/Checkbox/{ToggleFacade → v1/ToggleFacade}/index.d.ts +0 -0
  154. /package/types/Checkbox/{ToggleFacade → v1/ToggleFacade}/props.d.ts +0 -0
  155. /package/types/Checkbox/{ToggleFacade → v1/ToggleFacade}/styles.d.ts +0 -0
  156. /package/types/Checkbox/{ToggleFacade → v1/ToggleFacade}/theme.d.ts +0 -0
  157. /package/types/Checkbox/{styles.d.ts → v1/styles.d.ts} +0 -0
  158. /package/types/Checkbox/{theme.d.ts → v1/theme.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,597 +3,336 @@
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.6.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-0) (2026-02-24)
6
+ ## [11.6.1-snapshot-129](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-129) (2026-03-16)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-checkbox
9
8
 
9
+ ### Bug Fixes
10
10
 
11
+ * **ui-checkbox:** prevent blur on checkbox label mousedown by manually restoring focus to hidden input ([843ca3e](https://github.com/instructure/instructure-ui/commit/843ca3e0d0db1197b343a17cd2740a4a8446d318))
12
+ * **ui-many:** fix imports of the multiversion support ([ff5f2b3](https://github.com/instructure/instructure-ui/commit/ff5f2b38660ddae432edd32b98eedae586589977))
11
13
 
12
14
 
15
+ ### Features
13
16
 
14
- # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
17
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
18
+ * **many:** rework TextArea and dependent FormField components ([0f8c438](https://github.com/instructure/instructure-ui/commit/0f8c43803e3458bbf7b2dd266a9e246cb89b0d3c))
19
+ * **ui-checkbox:** checkbox rework ([85cc06b](https://github.com/instructure/instructure-ui/commit/85cc06b3580e117680b5df1c804a519f8ac7828c))
15
20
 
16
- **Note:** Version bump only for package @instructure/ui-checkbox
17
21
 
18
22
 
19
23
 
20
24
 
21
-
22
- # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
25
+ # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
23
26
 
24
27
  **Note:** Version bump only for package @instructure/ui-checkbox
25
28
 
29
+ # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
26
30
 
27
-
28
-
31
+ **Note:** Version bump only for package @instructure/ui-checkbox
29
32
 
30
33
  # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
31
34
 
32
35
  **Note:** Version bump only for package @instructure/ui-checkbox
33
36
 
34
-
35
-
36
-
37
-
38
37
  # [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
39
38
 
40
39
  **Note:** Version bump only for package @instructure/ui-checkbox
41
40
 
42
-
43
-
44
-
45
-
46
41
  # [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
47
42
 
48
-
49
43
  ### Features
50
44
 
51
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
52
-
53
-
54
-
55
-
45
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
56
46
 
57
47
  # [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
58
48
 
59
-
60
49
  ### Features
61
50
 
62
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
63
-
64
-
65
-
66
-
51
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
67
52
 
68
53
  ## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
69
54
 
70
55
  **Note:** Version bump only for package @instructure/ui-checkbox
71
56
 
72
-
73
-
74
-
75
-
76
57
  # [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
77
58
 
78
-
79
59
  ### Features
80
60
 
81
- * **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
82
-
61
+ - **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
83
62
 
84
63
  ### BREAKING CHANGES
85
64
 
86
- * **many:** InstUI v11 contains the following breaking changes:
87
- - React 16 and 17 are no longer supported
88
- - remove `PropTypes` from all packages
89
- - remove `CodeEditor` component
90
- - remove `@instui/theme-registry` package
91
- - remove `@testable`, `@experimental`, `@hack` decorators
92
- - InstUISettingsProvider's `as` prop is removed
93
- - `canvas.use()`, `canvasHighContrast.use()` functions are removed
94
- - `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
95
- - `variables` field on theme objects are removed
96
- - remove deprecated props from Table: Row's `isStacked`, Body's
65
+ - **many:** InstUI v11 contains the following breaking changes:
66
+
67
+ * React 16 and 17 are no longer supported
68
+ * remove `PropTypes` from all packages
69
+ * remove `CodeEditor` component
70
+ * remove `@instui/theme-registry` package
71
+ * remove `@testable`, `@experimental`, `@hack` decorators
72
+ * InstUISettingsProvider's `as` prop is removed
73
+ * `canvas.use()`, `canvasHighContrast.use()` functions are removed
74
+ * `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
75
+ * `variables` field on theme objects are removed
76
+ * remove deprecated props from Table: Row's `isStacked`, Body's
97
77
  `isStacked`, `hover`, and `headers`
98
- - `Table`'s `caption` prop is now required
99
- - `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
100
-
101
-
102
-
103
-
78
+ * `Table`'s `caption` prop is now required
79
+ * `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
104
80
 
105
81
  # [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
106
82
 
107
83
  **Note:** Version bump only for package @instructure/ui-checkbox
108
84
 
109
-
110
-
111
-
112
-
113
85
  # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
114
86
 
115
87
  **Note:** Version bump only for package @instructure/ui-checkbox
116
88
 
117
-
118
-
119
-
120
-
121
89
  ## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
122
90
 
123
91
  **Note:** Version bump only for package @instructure/ui-checkbox
124
92
 
125
-
126
-
127
-
128
-
129
93
  ## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
130
94
 
131
95
  **Note:** Version bump only for package @instructure/ui-checkbox
132
96
 
133
-
134
-
135
-
136
-
137
97
  # [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
138
98
 
139
99
  **Note:** Version bump only for package @instructure/ui-checkbox
140
100
 
141
-
142
-
143
-
144
-
145
101
  # [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
146
102
 
147
103
  **Note:** Version bump only for package @instructure/ui-checkbox
148
104
 
149
-
150
-
151
-
152
-
153
105
  # [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
154
106
 
155
107
  **Note:** Version bump only for package @instructure/ui-checkbox
156
108
 
157
-
158
-
159
-
160
-
161
109
  # [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
162
110
 
163
111
  **Note:** Version bump only for package @instructure/ui-checkbox
164
112
 
165
-
166
-
167
-
168
-
169
113
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
170
114
 
171
115
  **Note:** Version bump only for package @instructure/ui-checkbox
172
116
 
173
-
174
-
175
-
176
-
177
117
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
178
118
 
179
-
180
119
  ### Bug Fixes
181
120
 
182
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
183
-
121
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
184
122
 
185
123
  ### Features
186
124
 
187
- * **many:** add missing inputRef prop to input components ([e1158fb](https://github.com/instructure/instructure-ui/commit/e1158fb7af5426e6ce13efe197c2148e1c5f15f0))
188
-
189
-
190
-
191
-
125
+ - **many:** add missing inputRef prop to input components ([e1158fb](https://github.com/instructure/instructure-ui/commit/e1158fb7af5426e6ce13efe197c2148e1c5f15f0))
192
126
 
193
127
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
194
128
 
195
129
  **Note:** Version bump only for package @instructure/ui-checkbox
196
130
 
197
-
198
-
199
-
200
-
201
131
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
202
132
 
203
133
  **Note:** Version bump only for package @instructure/ui-checkbox
204
134
 
205
-
206
-
207
-
208
-
209
135
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
210
136
 
211
137
  **Note:** Version bump only for package @instructure/ui-checkbox
212
138
 
213
-
214
-
215
-
216
-
217
139
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
218
140
 
219
141
  **Note:** Version bump only for package @instructure/ui-checkbox
220
142
 
221
-
222
-
223
-
224
-
225
143
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
226
144
 
227
-
228
145
  ### Bug Fixes
229
146
 
230
- * **ui-checkbox:** remove pointer cursor from disabled checkbox toggle ([796284e](https://github.com/instructure/instructure-ui/commit/796284ecad5af495d369ef467386f21a503fdc0f))
231
-
232
-
233
-
234
-
147
+ - **ui-checkbox:** remove pointer cursor from disabled checkbox toggle ([796284e](https://github.com/instructure/instructure-ui/commit/796284ecad5af495d369ef467386f21a503fdc0f))
235
148
 
236
149
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
237
150
 
238
-
239
151
  ### Bug Fixes
240
152
 
241
- * **ui-radio-input,ui-checkbox:** fix 'React does not recognize the isRequired prop on a DOM element' on RadioInputGroup and Checkbox ([32bb431](https://github.com/instructure/instructure-ui/commit/32bb43185eb53ce4e452d02e33c41ceaf0c4e2b9))
242
-
243
-
244
-
245
-
153
+ - **ui-radio-input,ui-checkbox:** fix 'React does not recognize the isRequired prop on a DOM element' on RadioInputGroup and Checkbox ([32bb431](https://github.com/instructure/instructure-ui/commit/32bb43185eb53ce4e452d02e33c41ceaf0c4e2b9))
246
154
 
247
155
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
248
156
 
249
157
  **Note:** Version bump only for package @instructure/ui-checkbox
250
158
 
251
-
252
-
253
-
254
-
255
159
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
256
160
 
257
161
  **Note:** Version bump only for package @instructure/ui-checkbox
258
162
 
259
-
260
-
261
-
262
-
263
163
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
264
164
 
265
165
  **Note:** Version bump only for package @instructure/ui-checkbox
266
166
 
267
-
268
-
269
-
270
-
271
167
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
272
168
 
273
169
  **Note:** Version bump only for package @instructure/ui-checkbox
274
170
 
275
-
276
-
277
-
278
-
279
171
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
280
172
 
281
173
  **Note:** Version bump only for package @instructure/ui-checkbox
282
174
 
283
-
284
-
285
-
286
-
287
175
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
288
176
 
289
177
  **Note:** Version bump only for package @instructure/ui-checkbox
290
178
 
291
-
292
-
293
-
294
-
295
179
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
296
180
 
297
181
  **Note:** Version bump only for package @instructure/ui-checkbox
298
182
 
299
-
300
-
301
-
302
-
303
183
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
304
184
 
305
185
  **Note:** Version bump only for package @instructure/ui-checkbox
306
186
 
307
-
308
-
309
-
310
-
311
187
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
312
188
 
313
-
314
189
  ### Bug Fixes
315
190
 
316
- * **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
317
-
318
-
319
-
320
-
191
+ - **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
321
192
 
322
193
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
323
194
 
324
195
  **Note:** Version bump only for package @instructure/ui-checkbox
325
196
 
326
-
327
-
328
-
329
-
330
197
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
331
198
 
332
199
  **Note:** Version bump only for package @instructure/ui-checkbox
333
200
 
334
-
335
-
336
-
337
-
338
201
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
339
202
 
340
203
  **Note:** Version bump only for package @instructure/ui-checkbox
341
204
 
342
-
343
-
344
-
345
-
346
205
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
347
206
 
348
207
  **Note:** Version bump only for package @instructure/ui-checkbox
349
208
 
350
-
351
-
352
-
353
-
354
209
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
355
210
 
356
211
  **Note:** Version bump only for package @instructure/ui-checkbox
357
212
 
358
-
359
-
360
-
361
-
362
213
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
363
214
 
364
-
365
215
  ### Bug Fixes
366
216
 
367
- * **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
368
-
369
-
370
-
371
-
217
+ - **many:** hide required asterisks from screenreaders ([78aec71](https://github.com/instructure/instructure-ui/commit/78aec71d1056df3a43ffd226d993c451a8fe9c1d))
372
218
 
373
219
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
374
220
 
375
221
  **Note:** Version bump only for package @instructure/ui-checkbox
376
222
 
377
-
378
-
379
-
380
-
381
223
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
382
224
 
383
-
384
225
  ### Bug Fixes
385
226
 
386
- * **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
387
- * **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
388
-
389
-
390
-
391
-
227
+ - **many:** adjust border colors to meet a11y contrast standards ([2f47e06](https://github.com/instructure/instructure-ui/commit/2f47e066f7107c67e37ce8b7aff483586cf7a6b7))
228
+ - **many:** fix regression where form elements without label got misaligned ([139f7f1](https://github.com/instructure/instructure-ui/commit/139f7f130cd7e8372af869a13cfd50cd6a97fd85))
392
229
 
393
230
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
394
231
 
395
-
396
232
  ### Features
397
233
 
398
- * **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
399
-
400
-
401
-
402
-
234
+ - **many:** add new form field error msg style + add asterisk for required fields ([9b03683](https://github.com/instructure/instructure-ui/commit/9b03683dadeef4c5deae2c60bea10686f143ff5d))
403
235
 
404
236
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
405
237
 
406
-
407
238
  ### Bug Fixes
408
239
 
409
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
410
-
411
-
412
-
413
-
240
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
414
241
 
415
242
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
416
243
 
417
244
  **Note:** Version bump only for package @instructure/ui-checkbox
418
245
 
419
-
420
-
421
-
422
-
423
246
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
424
247
 
425
-
426
248
  ### Bug Fixes
427
249
 
428
- * **ui-progress,ui-range-input:** use just the native HTML elements instead of ARIA tags ([f0fa72c](https://github.com/instructure/instructure-ui/commit/f0fa72c7d716ab2cb0af191debe27db1e911c19a))
429
-
430
-
431
-
432
-
250
+ - **ui-progress,ui-range-input:** use just the native HTML elements instead of ARIA tags ([f0fa72c](https://github.com/instructure/instructure-ui/commit/f0fa72c7d716ab2cb0af191debe27db1e911c19a))
433
251
 
434
252
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
435
253
 
436
-
437
254
  ### Bug Fixes
438
255
 
439
- * **ui-checkbox,ui-radio-input:** reduce clickable area of checkbox and radioinput ([77b2a7d](https://github.com/instructure/instructure-ui/commit/77b2a7d18da19f28328486e53a31f7ca5ec37e74))
440
-
441
-
442
-
443
-
256
+ - **ui-checkbox,ui-radio-input:** reduce clickable area of checkbox and radioinput ([77b2a7d](https://github.com/instructure/instructure-ui/commit/77b2a7d18da19f28328486e53a31f7ca5ec37e74))
444
257
 
445
258
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
446
259
 
447
260
  **Note:** Version bump only for package @instructure/ui-checkbox
448
261
 
449
-
450
-
451
-
452
-
453
262
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
454
263
 
455
264
  **Note:** Version bump only for package @instructure/ui-checkbox
456
265
 
457
-
458
-
459
-
460
-
461
266
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
462
267
 
463
268
  **Note:** Version bump only for package @instructure/ui-checkbox
464
269
 
465
-
466
-
467
-
468
-
469
270
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
470
271
 
471
-
472
272
  ### Features
473
273
 
474
- * **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
475
-
274
+ - **many:** rewrite color system ([1e5809e](https://github.com/instructure/instructure-ui/commit/1e5809e28dee8c2a71703a429609b8d2f95d76e6))
476
275
 
477
276
  ### BREAKING CHANGES
478
277
 
479
- * **many:** Breaks color overrides in certain cases
480
-
481
-
482
-
483
-
278
+ - **many:** Breaks color overrides in certain cases
484
279
 
485
280
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
486
281
 
487
282
  **Note:** Version bump only for package @instructure/ui-checkbox
488
283
 
489
-
490
-
491
-
492
-
493
284
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
494
285
 
495
286
  **Note:** Version bump only for package @instructure/ui-checkbox
496
287
 
497
-
498
-
499
-
500
-
501
288
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
502
289
 
503
290
  **Note:** Version bump only for package @instructure/ui-checkbox
504
291
 
505
-
506
-
507
-
508
-
509
292
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
510
293
 
511
294
  **Note:** Version bump only for package @instructure/ui-checkbox
512
295
 
513
-
514
-
515
-
516
-
517
296
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
518
297
 
519
298
  **Note:** Version bump only for package @instructure/ui-checkbox
520
299
 
521
-
522
-
523
-
524
-
525
300
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
526
301
 
527
302
  **Note:** Version bump only for package @instructure/ui-checkbox
528
303
 
529
-
530
-
531
-
532
-
533
304
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
534
305
 
535
306
  **Note:** Version bump only for package @instructure/ui-checkbox
536
307
 
537
-
538
-
539
-
540
-
541
308
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
542
309
 
543
310
  **Note:** Version bump only for package @instructure/ui-checkbox
544
311
 
545
-
546
-
547
-
548
-
549
312
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
550
313
 
551
314
  **Note:** Version bump only for package @instructure/ui-checkbox
552
315
 
553
-
554
-
555
-
556
-
557
316
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
558
317
 
559
318
  **Note:** Version bump only for package @instructure/ui-checkbox
560
319
 
561
-
562
-
563
-
564
-
565
320
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
566
321
 
567
322
  **Note:** Version bump only for package @instructure/ui-checkbox
568
323
 
569
-
570
-
571
-
572
-
573
324
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
574
325
 
575
326
  **Note:** Version bump only for package @instructure/ui-checkbox
576
327
 
577
-
578
-
579
-
580
-
581
328
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
582
329
 
583
330
  **Note:** Version bump only for package @instructure/ui-checkbox
584
331
 
585
-
586
-
587
-
588
-
589
332
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
590
333
 
591
334
  **Note:** Version bump only for package @instructure/ui-checkbox
592
335
 
593
-
594
-
595
-
596
-
597
336
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
598
337
 
599
338
  **Note:** Version bump only for package @instructure/ui-checkbox
@@ -26,7 +26,7 @@ var _dec, _class, _CheckboxFacade, _SVGIcon, _IconCheckMarkSolid;
26
26
  import { Component } from 'react';
27
27
  import { SVGIcon } from '@instructure/ui-svg-images';
28
28
  import { IconCheckMarkSolid } from '@instructure/ui-icons';
29
- import { withStyle } from '@instructure/emotion';
29
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
30
30
  import generateStyle from "./styles.js";
31
31
  import generateComponentTheme from "./theme.js";
32
32
  import { allowedProps } from "./props.js";
@@ -25,7 +25,7 @@ var _dec, _class, _ToggleFacade;
25
25
 
26
26
  import { Component } from 'react';
27
27
  import { IconCheckSolid, IconXSolid } from '@instructure/ui-icons';
28
- import { withStyle } from '@instructure/emotion';
28
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
29
29
  import generateStyle from "./styles.js";
30
30
  import generateComponentTheme from "./theme.js";
31
31
  import { allowedProps } from "./props.js";
@@ -25,13 +25,13 @@ var _dec, _dec2, _class, _Checkbox;
25
25
 
26
26
  import { Component } from 'react';
27
27
  import keycode from 'keycode';
28
- import { FormFieldMessages } from '@instructure/ui-form-field';
28
+ import { FormFieldMessages } from '@instructure/ui-form-field/v11_6';
29
29
  import { createChainedFunction } from '@instructure/ui-utils';
30
30
  import { logError as error } from '@instructure/console';
31
31
  import { isActiveElement } from '@instructure/ui-dom-utils';
32
32
  import { omitProps, withDeterministicId } from '@instructure/ui-react-utils';
33
- import { View } from '@instructure/ui-view';
34
- import { withStyle } from '@instructure/emotion';
33
+ import { View } from '@instructure/ui-view/v11_6';
34
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
35
35
  import { CheckboxFacade } from "./CheckboxFacade/index.js";
36
36
  import { ToggleFacade } from "./ToggleFacade/index.js";
37
37
  import generateStyle from "./styles.js";