@instructure/ui-tree-browser 11.4.0 → 11.4.1-snapshot-0
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 +8 -0
- package/es/TreeBrowser/TreeButton/index.js +4 -7
- package/es/TreeBrowser/TreeCollection/index.js +5 -5
- package/es/TreeBrowser/TreeNode/index.js +4 -7
- package/es/TreeBrowser/index.js +7 -8
- package/es/index.js +4 -4
- package/package.json +28 -15
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.4.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.4.1-snapshot-0) (2026-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-tree-browser
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @instructure/ui-tree-browser
|
|
@@ -27,13 +27,10 @@ import { Component } from 'react';
|
|
|
27
27
|
import { Img } from '@instructure/ui-img';
|
|
28
28
|
import { callRenderProp } from '@instructure/ui-react-utils';
|
|
29
29
|
import { withStyle } from '@instructure/emotion';
|
|
30
|
-
import generateStyles from
|
|
31
|
-
import generateComponentTheme from
|
|
32
|
-
import { allowedProps } from
|
|
33
|
-
import TreeBrowserContext from
|
|
34
|
-
|
|
35
|
-
// Todo: merge TreeButton and TreeNode: TreeButton should be a special type of TreeNode
|
|
36
|
-
|
|
30
|
+
import generateStyles from "./styles.js";
|
|
31
|
+
import generateComponentTheme from "./theme.js";
|
|
32
|
+
import { allowedProps } from "./props.js";
|
|
33
|
+
import TreeBrowserContext from "../TreeBrowserContext.js"; // Todo: merge TreeButton and TreeNode: TreeButton should be a special type of TreeNode
|
|
37
34
|
/**
|
|
38
35
|
---
|
|
39
36
|
parent: TreeBrowser
|
|
@@ -26,11 +26,11 @@ var _dec, _class, _TreeCollection;
|
|
|
26
26
|
import { Component } from 'react';
|
|
27
27
|
import { withStyle } from '@instructure/emotion';
|
|
28
28
|
import { safeCloneElement } from '@instructure/ui-react-utils';
|
|
29
|
-
import { TreeButton } from
|
|
30
|
-
import generateStyles from
|
|
31
|
-
import generateComponentTheme from
|
|
32
|
-
import { allowedProps } from
|
|
33
|
-
import TreeBrowserContext from
|
|
29
|
+
import { TreeButton } from "../TreeButton/index.js";
|
|
30
|
+
import generateStyles from "./styles.js";
|
|
31
|
+
import generateComponentTheme from "./theme.js";
|
|
32
|
+
import { allowedProps } from "./props.js";
|
|
33
|
+
import TreeBrowserContext from "../TreeBrowserContext.js";
|
|
34
34
|
import { Fragment as _Fragment, jsxs as _jsxs, jsx as _jsx } from "@emotion/react/jsx-runtime";
|
|
35
35
|
import { createElement as _createElement } from "@emotion/react";
|
|
36
36
|
/**
|
|
@@ -27,13 +27,10 @@ import { Component } from 'react';
|
|
|
27
27
|
import { Img } from '@instructure/ui-img';
|
|
28
28
|
import { callRenderProp } from '@instructure/ui-react-utils';
|
|
29
29
|
import { withStyle } from '@instructure/emotion';
|
|
30
|
-
import generateStyles from
|
|
31
|
-
import generateComponentTheme from
|
|
32
|
-
import { allowedProps } from
|
|
33
|
-
import TreeBrowserContext from
|
|
34
|
-
|
|
35
|
-
// Todo: merge TreeButton and TreeNode: TreeButton should be a special type of TreeNode
|
|
36
|
-
|
|
30
|
+
import generateStyles from "../TreeButton/styles.js";
|
|
31
|
+
import generateComponentTheme from "../TreeButton/theme.js";
|
|
32
|
+
import { allowedProps } from "./props.js";
|
|
33
|
+
import TreeBrowserContext from "../TreeBrowserContext.js"; // Todo: merge TreeButton and TreeNode: TreeButton should be a special type of TreeNode
|
|
37
34
|
/**
|
|
38
35
|
---
|
|
39
36
|
parent: TreeBrowser
|
package/es/TreeBrowser/index.js
CHANGED
|
@@ -28,14 +28,13 @@ import keycode from 'keycode';
|
|
|
28
28
|
import { IconFolderLine, IconDocumentLine } from '@instructure/ui-icons';
|
|
29
29
|
import { omitProps, pickProps } from '@instructure/ui-react-utils';
|
|
30
30
|
import { withStyle } from '@instructure/emotion';
|
|
31
|
-
import { TreeCollection } from
|
|
32
|
-
import { TreeButton } from
|
|
33
|
-
import { TreeNode } from
|
|
34
|
-
import generateStyles from
|
|
35
|
-
import generateComponentTheme from
|
|
36
|
-
import { allowedProps } from
|
|
37
|
-
import TreeBrowserContext from
|
|
38
|
-
|
|
31
|
+
import { TreeCollection } from "./TreeCollection/index.js";
|
|
32
|
+
import { TreeButton } from "./TreeButton/index.js";
|
|
33
|
+
import { TreeNode } from "./TreeNode/index.js";
|
|
34
|
+
import generateStyles from "./styles.js";
|
|
35
|
+
import generateComponentTheme from "./theme.js";
|
|
36
|
+
import { allowedProps } from "./props.js";
|
|
37
|
+
import TreeBrowserContext from "./TreeBrowserContext.js";
|
|
39
38
|
/**
|
|
40
39
|
---
|
|
41
40
|
category: components
|
package/es/index.js
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
|
-
export { TreeBrowser } from
|
|
25
|
-
export { TreeButton } from
|
|
26
|
-
export { TreeCollection } from
|
|
27
|
-
export { TreeNode } from
|
|
24
|
+
export { TreeBrowser } from "./TreeBrowser/index.js";
|
|
25
|
+
export { TreeButton } from "./TreeBrowser/TreeButton/index.js";
|
|
26
|
+
export { TreeCollection } from "./TreeBrowser/TreeCollection/index.js";
|
|
27
|
+
export { TreeNode } from "./TreeBrowser/TreeNode/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tree-browser",
|
|
3
|
-
"version": "11.4.0",
|
|
3
|
+
"version": "11.4.1-snapshot-0",
|
|
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",
|
|
@@ -13,24 +13,24 @@
|
|
|
13
13
|
"homepage": "https://instructure.github.io/instructure-ui/",
|
|
14
14
|
"bugs": "https://github.com/instructure/instructure-ui/issues",
|
|
15
15
|
"license": "MIT",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/runtime": "^7.27.6",
|
|
18
|
+
"keycode": "^2",
|
|
19
|
+
"@instructure/emotion": "11.4.1-snapshot-0",
|
|
20
|
+
"@instructure/ui-icons": "11.4.1-snapshot-0",
|
|
21
|
+
"@instructure/ui-img": "11.4.1-snapshot-0",
|
|
22
|
+
"@instructure/shared-types": "11.4.1-snapshot-0",
|
|
23
|
+
"@instructure/ui-react-utils": "11.4.1-snapshot-0",
|
|
24
|
+
"@instructure/ui-utils": "11.4.1-snapshot-0"
|
|
25
|
+
},
|
|
16
26
|
"devDependencies": {
|
|
17
27
|
"@testing-library/jest-dom": "^6.6.3",
|
|
18
28
|
"@testing-library/react": "15.0.7",
|
|
19
29
|
"vitest": "^3.2.2",
|
|
20
|
-
"@instructure/ui-axe-check": "11.4.0",
|
|
21
|
-
"@instructure/ui-babel-preset": "11.4.0",
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@babel/runtime": "^7.27.6",
|
|
27
|
-
"keycode": "^2",
|
|
28
|
-
"@instructure/shared-types": "11.4.0",
|
|
29
|
-
"@instructure/emotion": "11.4.0",
|
|
30
|
-
"@instructure/ui-icons": "11.4.0",
|
|
31
|
-
"@instructure/ui-react-utils": "11.4.0",
|
|
32
|
-
"@instructure/ui-img": "11.4.0",
|
|
33
|
-
"@instructure/ui-utils": "11.4.0"
|
|
30
|
+
"@instructure/ui-axe-check": "11.4.1-snapshot-0",
|
|
31
|
+
"@instructure/ui-babel-preset": "11.4.1-snapshot-0",
|
|
32
|
+
"@instructure/ui-themes": "11.4.1-snapshot-0",
|
|
33
|
+
"@instructure/ui-color-utils": "11.4.1-snapshot-0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18 <=19"
|
|
@@ -39,6 +39,19 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"sideEffects": false,
|
|
42
|
+
"exports": {
|
|
43
|
+
".": {
|
|
44
|
+
"types": "./types/index.d.ts",
|
|
45
|
+
"import": "./es/index.js",
|
|
46
|
+
"require": "./lib/index.js",
|
|
47
|
+
"default": "./es/index.js"
|
|
48
|
+
},
|
|
49
|
+
"./lib/*": "./lib/*",
|
|
50
|
+
"./es/*": "./es/*",
|
|
51
|
+
"./types/*": "./types/*",
|
|
52
|
+
"./package.json": "./package.json",
|
|
53
|
+
"./src/*": "./src/*"
|
|
54
|
+
},
|
|
42
55
|
"scripts": {
|
|
43
56
|
"lint": "ui-scripts lint",
|
|
44
57
|
"lint:fix": "ui-scripts lint --fix",
|