@instructure/ui-tree-browser 11.7.4-snapshot-103 → 11.7.4-snapshot-105

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.4-snapshot-103](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-103) (2026-07-14)
6
+ ## [11.7.4-snapshot-105](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-105) (2026-07-15)
7
7
 
8
8
 
9
9
  ### Bug Fixes
@@ -14,6 +14,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
14
14
  ### Features
15
15
 
16
16
  * **many:** remove deprecated v2 items ([eaf8876](https://github.com/instructure/instructure-ui/commit/eaf88767c9beb95c4e09ee5705c387dfd79e4cb7))
17
+ * **many:** support current spacing tokens in the margin prop for v2 components ([1b47c5f](https://github.com/instructure/instructure-ui/commit/1b47c5f23eaa60b532cdfd53c39bd71f0cf51aaa))
17
18
 
18
19
 
19
20
  ### BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tree-browser",
3
- "version": "11.7.4-snapshot-103",
3
+ "version": "11.7.4-snapshot-105",
4
4
  "description": "A component for displaying a hierarchical view of information",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -16,21 +16,21 @@
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.7",
18
18
  "keycode": "^2",
19
- "@instructure/emotion": "11.7.4-snapshot-103",
20
- "@instructure/shared-types": "11.7.4-snapshot-103",
21
- "@instructure/ui-icons": "11.7.4-snapshot-103",
22
- "@instructure/ui-react-utils": "11.7.4-snapshot-103",
23
- "@instructure/ui-img": "11.7.4-snapshot-103",
24
- "@instructure/ui-themes": "11.7.4-snapshot-103",
25
- "@instructure/ui-utils": "11.7.4-snapshot-103"
19
+ "@instructure/emotion": "11.7.4-snapshot-105",
20
+ "@instructure/ui-icons": "11.7.4-snapshot-105",
21
+ "@instructure/shared-types": "11.7.4-snapshot-105",
22
+ "@instructure/ui-react-utils": "11.7.4-snapshot-105",
23
+ "@instructure/ui-img": "11.7.4-snapshot-105",
24
+ "@instructure/ui-themes": "11.7.4-snapshot-105",
25
+ "@instructure/ui-utils": "11.7.4-snapshot-105"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@testing-library/jest-dom": "^6.9.1",
29
29
  "@testing-library/react": "16.3.2",
30
30
  "vitest": "^4.1.9",
31
- "@instructure/ui-babel-preset": "11.7.4-snapshot-103",
32
- "@instructure/ui-color-utils": "11.7.4-snapshot-103",
33
- "@instructure/ui-axe-check": "11.7.4-snapshot-103"
31
+ "@instructure/ui-axe-check": "11.7.4-snapshot-105",
32
+ "@instructure/ui-babel-preset": "11.7.4-snapshot-105",
33
+ "@instructure/ui-color-utils": "11.7.4-snapshot-105"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18 <=19"
@@ -21,7 +21,7 @@ const Example = () => {
21
21
 
22
22
  return (
23
23
  <>
24
- <View display="block" margin="none none medium">
24
+ <View display="block" margin="none none general.spaceXl">
25
25
  <RadioInputGroup
26
26
  name="treeBrowserSize"
27
27
  defaultValue="medium"
@@ -317,7 +317,7 @@ type: example
317
317
  if (props.level > 1) {
318
318
  return <div style={{ display: 'flex', alignItems: 'flex-end', padding: '0.6rem 0 0.6rem 1rem', color: 'darkorange' }}>
319
319
  <span>{props.name}</span>
320
- <Tag text="done" size="small" margin="0 xx-small 0 xx-small"/>
320
+ <Tag text="done" size="small" margin="0 general.spaceXs 0 general.spaceXs"/>
321
321
  <Tag text="class A" size="small"/>
322
322
  </div>
323
323
  }
@@ -387,7 +387,7 @@ const Example = () => {
387
387
  screenReaderLabel="Cancel"
388
388
  onClick={(e) => handleExpandToggle(e, false)}
389
389
  onKeyDown={(e) => handleKeyPress(e, false)}
390
- margin="0 0 0 small"
390
+ margin="0 0 0 general.spaceMd"
391
391
  >
392
392
  <XInstUIIcon />
393
393
  </IconButton>
@@ -395,7 +395,7 @@ const Example = () => {
395
395
  screenReaderLabel="Add new group"
396
396
  onClick={(e) => handleExpandToggle(e, false)}
397
397
  onKeyDown={(e) => handleKeyPress(e, false)}
398
- margin="0 0 0 small"
398
+ margin="0 0 0 general.spaceMd"
399
399
  >
400
400
  <CheckInstUIIcon />
401
401
  </IconButton>
@@ -480,7 +480,7 @@ const Example = () => {
480
480
 
481
481
  return (
482
482
  <>
483
- <View display="block" margin="none none medium">
483
+ <View display="block" margin="none none general.spaceXl">
484
484
  <FormFieldGroup description="Turn on/off sorting">
485
485
  <Checkbox checked={sorted} label="Sort" onChange={toggleSort} />
486
486
  </FormFieldGroup>
@@ -633,7 +633,7 @@ const Example = () => {
633
633
 
634
634
  return (
635
635
  <>
636
- <View display="block" margin="none none medium">
636
+ <View display="block" margin="none none general.spaceXl">
637
637
  <Checkbox
638
638
  label="showRootCollection"
639
639
  variant="toggle"