@instructure/ui-tree-browser 10.19.2-snapshot-5 → 10.19.2-snapshot-6
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 +5 -2
- package/es/TreeBrowser/TreeCollection/index.js +11 -11
- package/lib/TreeBrowser/TreeCollection/index.js +11 -11
- package/package.json +16 -16
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/TreeBrowser/TreeButton/index.d.ts.map +1 -1
- package/types/TreeBrowser/TreeButton/styles.d.ts.map +1 -1
- package/types/TreeBrowser/TreeButton/theme.d.ts.map +1 -1
- package/types/TreeBrowser/TreeCollection/index.d.ts.map +1 -1
- package/types/TreeBrowser/TreeCollection/styles.d.ts.map +1 -1
- package/types/TreeBrowser/TreeCollection/theme.d.ts.map +1 -1
- package/types/TreeBrowser/TreeNode/index.d.ts.map +1 -1
- package/types/TreeBrowser/index.d.ts +1 -1
- package/types/TreeBrowser/index.d.ts.map +1 -1
- package/types/TreeBrowser/styles.d.ts.map +1 -1
- package/types/TreeBrowser/theme.d.ts.map +1 -1
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
|
-
## [10.19.2-snapshot-
|
|
6
|
+
## [10.19.2-snapshot-6](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.19.2-snapshot-6) (2025-06-12)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
|
@@ -286,17 +286,17 @@ let TreeCollection = (_dec = withStyle(generateStyles, generateComponentTheme),
|
|
|
286
286
|
};
|
|
287
287
|
}
|
|
288
288
|
render() {
|
|
289
|
-
const _this$
|
|
290
|
-
id = _this$
|
|
291
|
-
name = _this$
|
|
292
|
-
expanded = _this$
|
|
293
|
-
collectionIcon = _this$
|
|
294
|
-
collectionIconExpanded = _this$
|
|
295
|
-
isCollectionFlattened = _this$
|
|
296
|
-
getCollectionProps = _this$
|
|
297
|
-
level = _this$
|
|
298
|
-
position = _this$
|
|
299
|
-
styles = _this$
|
|
289
|
+
const _this$props0 = this.props,
|
|
290
|
+
id = _this$props0.id,
|
|
291
|
+
name = _this$props0.name,
|
|
292
|
+
expanded = _this$props0.expanded,
|
|
293
|
+
collectionIcon = _this$props0.collectionIcon,
|
|
294
|
+
collectionIconExpanded = _this$props0.collectionIconExpanded,
|
|
295
|
+
isCollectionFlattened = _this$props0.isCollectionFlattened,
|
|
296
|
+
getCollectionProps = _this$props0.getCollectionProps,
|
|
297
|
+
level = _this$props0.level,
|
|
298
|
+
position = _this$props0.position,
|
|
299
|
+
styles = _this$props0.styles;
|
|
300
300
|
const collectionProps = getCollectionProps({
|
|
301
301
|
...this.getCommonButtonProps(),
|
|
302
302
|
expanded: expanded,
|
|
@@ -292,17 +292,17 @@ let TreeCollection = exports.TreeCollection = (_dec = (0, _emotion.withStyle)(_s
|
|
|
292
292
|
};
|
|
293
293
|
}
|
|
294
294
|
render() {
|
|
295
|
-
const _this$
|
|
296
|
-
id = _this$
|
|
297
|
-
name = _this$
|
|
298
|
-
expanded = _this$
|
|
299
|
-
collectionIcon = _this$
|
|
300
|
-
collectionIconExpanded = _this$
|
|
301
|
-
isCollectionFlattened = _this$
|
|
302
|
-
getCollectionProps = _this$
|
|
303
|
-
level = _this$
|
|
304
|
-
position = _this$
|
|
305
|
-
styles = _this$
|
|
295
|
+
const _this$props0 = this.props,
|
|
296
|
+
id = _this$props0.id,
|
|
297
|
+
name = _this$props0.name,
|
|
298
|
+
expanded = _this$props0.expanded,
|
|
299
|
+
collectionIcon = _this$props0.collectionIcon,
|
|
300
|
+
collectionIconExpanded = _this$props0.collectionIconExpanded,
|
|
301
|
+
isCollectionFlattened = _this$props0.isCollectionFlattened,
|
|
302
|
+
getCollectionProps = _this$props0.getCollectionProps,
|
|
303
|
+
level = _this$props0.level,
|
|
304
|
+
position = _this$props0.position,
|
|
305
|
+
styles = _this$props0.styles;
|
|
306
306
|
const collectionProps = getCollectionProps({
|
|
307
307
|
...this.getCommonButtonProps(),
|
|
308
308
|
expanded: expanded,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tree-browser",
|
|
3
|
-
"version": "10.19.2-snapshot-
|
|
3
|
+
"version": "10.19.2-snapshot-6",
|
|
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",
|
|
@@ -23,25 +23,25 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-axe-check": "10.19.2-snapshot-
|
|
27
|
-
"@instructure/ui-babel-preset": "10.19.2-snapshot-
|
|
28
|
-
"@instructure/ui-color-utils": "10.19.2-snapshot-
|
|
29
|
-
"@instructure/ui-test-utils": "10.19.2-snapshot-
|
|
30
|
-
"@instructure/ui-themes": "10.19.2-snapshot-
|
|
26
|
+
"@instructure/ui-axe-check": "10.19.2-snapshot-6",
|
|
27
|
+
"@instructure/ui-babel-preset": "10.19.2-snapshot-6",
|
|
28
|
+
"@instructure/ui-color-utils": "10.19.2-snapshot-6",
|
|
29
|
+
"@instructure/ui-test-utils": "10.19.2-snapshot-6",
|
|
30
|
+
"@instructure/ui-themes": "10.19.2-snapshot-6",
|
|
31
31
|
"@testing-library/jest-dom": "^6.6.3",
|
|
32
32
|
"@testing-library/react": "^16.0.1",
|
|
33
|
-
"vitest": "^2.
|
|
33
|
+
"vitest": "^3.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@babel/runtime": "^7.
|
|
37
|
-
"@instructure/emotion": "10.19.2-snapshot-
|
|
38
|
-
"@instructure/shared-types": "10.19.2-snapshot-
|
|
39
|
-
"@instructure/ui-icons": "10.19.2-snapshot-
|
|
40
|
-
"@instructure/ui-img": "10.19.2-snapshot-
|
|
41
|
-
"@instructure/ui-prop-types": "10.19.2-snapshot-
|
|
42
|
-
"@instructure/ui-react-utils": "10.19.2-snapshot-
|
|
43
|
-
"@instructure/ui-testable": "10.19.2-snapshot-
|
|
44
|
-
"@instructure/ui-utils": "10.19.2-snapshot-
|
|
36
|
+
"@babel/runtime": "^7.27.6",
|
|
37
|
+
"@instructure/emotion": "10.19.2-snapshot-6",
|
|
38
|
+
"@instructure/shared-types": "10.19.2-snapshot-6",
|
|
39
|
+
"@instructure/ui-icons": "10.19.2-snapshot-6",
|
|
40
|
+
"@instructure/ui-img": "10.19.2-snapshot-6",
|
|
41
|
+
"@instructure/ui-prop-types": "10.19.2-snapshot-6",
|
|
42
|
+
"@instructure/ui-react-utils": "10.19.2-snapshot-6",
|
|
43
|
+
"@instructure/ui-testable": "10.19.2-snapshot-6",
|
|
44
|
+
"@instructure/ui-utils": "10.19.2-snapshot-6",
|
|
45
45
|
"keycode": "^2",
|
|
46
46
|
"prop-types": "^15.8.1"
|
|
47
47
|
},
|