@instructure/ui-checkbox 11.7.2-snapshot-4 → 11.7.2-snapshot-5

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,9 +3,12 @@
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-4](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-4) (2026-03-20)
6
+ ## [11.7.2-snapshot-5](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-5) (2026-03-23)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-checkbox
8
+
9
+ ### Bug Fixes
10
+
11
+ * **many:** fix checkbox toggle variant icons and resolve border radius inheritance issues in DateInput and Menu from View ([ab2c8c2](https://github.com/instructure/instructure-ui/commit/ab2c8c2ba7f5b3944f7977244e37f4a4c916422a))
9
12
 
10
13
 
11
14
 
@@ -212,7 +212,7 @@ const generateStyle = (componentTheme, props, sharedTokens) => {
212
212
  borderRadius: '100%',
213
213
  border: `${componentTheme.borderWidth} solid ${getIconBorderColor()}`
214
214
  },
215
- '& [class*="lucideIcon"] svg': {
215
+ '& [class*="icon"] svg': {
216
216
  position: 'relative',
217
217
  zIndex: 1
218
218
  }
@@ -218,7 +218,7 @@ const generateStyle = (componentTheme, props, sharedTokens) => {
218
218
  borderRadius: '100%',
219
219
  border: `${componentTheme.borderWidth} solid ${getIconBorderColor()}`
220
220
  },
221
- '& [class*="lucideIcon"] svg': {
221
+ '& [class*="icon"] svg': {
222
222
  position: 'relative',
223
223
  zIndex: 1
224
224
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-checkbox",
3
- "version": "11.7.2-snapshot-4",
3
+ "version": "11.7.2-snapshot-5",
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-4",
20
- "@instructure/shared-types": "11.7.2-snapshot-4",
21
- "@instructure/emotion": "11.7.2-snapshot-4",
22
- "@instructure/ui-dom-utils": "11.7.2-snapshot-4",
23
- "@instructure/ui-form-field": "11.7.2-snapshot-4",
24
- "@instructure/ui-icons": "11.7.2-snapshot-4",
25
- "@instructure/ui-react-utils": "11.7.2-snapshot-4",
26
- "@instructure/ui-utils": "11.7.2-snapshot-4",
27
- "@instructure/ui-svg-images": "11.7.2-snapshot-4",
28
- "@instructure/ui-view": "11.7.2-snapshot-4",
29
- "@instructure/uid": "11.7.2-snapshot-4"
19
+ "@instructure/emotion": "11.7.2-snapshot-5",
20
+ "@instructure/shared-types": "11.7.2-snapshot-5",
21
+ "@instructure/ui-dom-utils": "11.7.2-snapshot-5",
22
+ "@instructure/console": "11.7.2-snapshot-5",
23
+ "@instructure/ui-form-field": "11.7.2-snapshot-5",
24
+ "@instructure/ui-icons": "11.7.2-snapshot-5",
25
+ "@instructure/ui-react-utils": "11.7.2-snapshot-5",
26
+ "@instructure/ui-utils": "11.7.2-snapshot-5",
27
+ "@instructure/ui-view": "11.7.2-snapshot-5",
28
+ "@instructure/ui-svg-images": "11.7.2-snapshot-5",
29
+ "@instructure/uid": "11.7.2-snapshot-5"
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-babel-preset": "11.7.2-snapshot-4",
37
- "@instructure/ui-axe-check": "11.7.2-snapshot-4",
38
- "@instructure/ui-color-utils": "11.7.2-snapshot-4",
39
- "@instructure/ui-themes": "11.7.2-snapshot-4"
36
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-5",
37
+ "@instructure/ui-themes": "11.7.2-snapshot-5",
38
+ "@instructure/ui-color-utils": "11.7.2-snapshot-5",
39
+ "@instructure/ui-axe-check": "11.7.2-snapshot-5"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "react": ">=18 <=19"
@@ -277,7 +277,7 @@ const generateStyle = (
277
277
  border: `${componentTheme.borderWidth} solid ${getIconBorderColor()}`
278
278
  },
279
279
 
280
- '& [class*="lucideIcon"] svg': {
280
+ '& [class*="icon"] svg': {
281
281
  position: 'relative',
282
282
  zIndex: 1
283
283
  }