@instructure/ui-tree-browser 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
  **Note:** Version bump only for package @instructure/ui-tree-browser
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tree-browser",
3
- "version": "11.7.2-snapshot-52",
3
+ "version": "11.7.2-snapshot-60",
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.27.6",
18
18
  "keycode": "^2",
19
- "@instructure/shared-types": "11.7.2-snapshot-52",
20
- "@instructure/ui-img": "11.7.2-snapshot-52",
21
- "@instructure/emotion": "11.7.2-snapshot-52",
22
- "@instructure/ui-icons": "11.7.2-snapshot-52",
23
- "@instructure/ui-react-utils": "11.7.2-snapshot-52",
24
- "@instructure/ui-utils": "11.7.2-snapshot-52"
19
+ "@instructure/emotion": "11.7.2-snapshot-60",
20
+ "@instructure/ui-icons": "11.7.2-snapshot-60",
21
+ "@instructure/shared-types": "11.7.2-snapshot-60",
22
+ "@instructure/ui-react-utils": "11.7.2-snapshot-60",
23
+ "@instructure/ui-img": "11.7.2-snapshot-60",
24
+ "@instructure/ui-utils": "11.7.2-snapshot-60"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@testing-library/jest-dom": "^6.6.3",
28
28
  "@testing-library/react": "15.0.7",
29
29
  "vitest": "^3.2.2",
30
- "@instructure/ui-babel-preset": "11.7.2-snapshot-52",
31
- "@instructure/ui-color-utils": "11.7.2-snapshot-52",
32
- "@instructure/ui-themes": "11.7.2-snapshot-52",
33
- "@instructure/ui-axe-check": "11.7.2-snapshot-52"
30
+ "@instructure/ui-axe-check": "11.7.2-snapshot-60",
31
+ "@instructure/ui-color-utils": "11.7.2-snapshot-60",
32
+ "@instructure/ui-themes": "11.7.2-snapshot-60",
33
+ "@instructure/ui-babel-preset": "11.7.2-snapshot-60"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18 <=19"
@@ -49,7 +49,7 @@ const transform = keyframes`
49
49
  * @return {Object} The final style object, which will be used in the component
50
50
  */
51
51
  const generateStyles = (
52
- componentTheme: NewComponentTypes['TreeBrowserTreeButton'],
52
+ componentTheme: ReturnType<NewComponentTypes['TreeBrowserTreeButton']>,
53
53
  props: TreeBrowserButtonProps,
54
54
  sharedTokens: SharedTokens,
55
55
  state: { animation?: boolean; hoverable?: boolean }
@@ -48,7 +48,7 @@ const list = keyframes`
48
48
  */
49
49
 
50
50
  const generateStyles = (
51
- componentTheme: NewComponentTypes['TreeBrowserTreeCollection'],
51
+ componentTheme: ReturnType<NewComponentTypes['TreeBrowserTreeCollection']>,
52
52
  props: TreeBrowserCollectionProps,
53
53
  sharedTokens: SharedTokens,
54
54
  state: { animation?: boolean }
@@ -39,7 +39,7 @@ import type { TreeBrowserStyle, TreeBrowserProps } from './props'
39
39
  */
40
40
 
41
41
  const generateStyles = (
42
- componentTheme: NewComponentTypes['TreeBrowser'],
42
+ componentTheme: ReturnType<NewComponentTypes['TreeBrowser']>,
43
43
  _props: TreeBrowserProps,
44
44
  sharedTokens: SharedTokens
45
45
  ): TreeBrowserStyle => {