@itwin/presentation-hierarchies-react 2.0.0-alpha.1 → 2.0.0-alpha.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +12 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @itwin/presentation-hierarchies-react
2
2
 
3
+ ## 2.0.0-alpha.2
4
+
5
+ ### Major Changes
6
+
7
+ - [#864](https://github.com/iTwin/presentation/pull/864): Add `@itwin/itwinui-icons` as optional peer dependency (only required when using iTwinUI-based tree / node renderers).
8
+
3
9
  ## 2.0.0-alpha.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/presentation-hierarchies-react",
3
- "version": "2.0.0-alpha.1",
3
+ "version": "2.0.0-alpha.2",
4
4
  "description": "React components based on `@itwin/presentation-hierarchies`",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -38,29 +38,33 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@itwin/core-bentley": "^4.10.1",
41
- "@itwin/itwinui-icons": "5.0.0-alpha.0",
42
41
  "@itwin/itwinui-illustrations-react": "^2.1.0",
43
42
  "classnames": "^2.5.1",
44
43
  "immer": "^10.1.1",
45
44
  "react-error-boundary": "^4.0.13",
46
45
  "rxjs": "^7.8.1",
47
- "@itwin/presentation-hierarchies": "^1.4.1",
48
46
  "@itwin/presentation-shared": "^1.2.0",
49
- "@itwin/unified-selection": "^1.3.0"
47
+ "@itwin/unified-selection": "^1.3.0",
48
+ "@itwin/presentation-hierarchies": "^1.4.1"
50
49
  },
51
50
  "peerDependencies": {
52
- "@itwin/itwinui-react": "^5.0.0-alpha.3",
51
+ "@itwin/itwinui-icons": "^5.0.0-alpha.2",
52
+ "@itwin/itwinui-react": "^5.0.0-alpha.4",
53
53
  "react": "^17.0.0 || ^18.0.0",
54
54
  "react-dom": "^17.0.0 || ^18.0.0"
55
55
  },
56
56
  "peerDependenciesMeta": {
57
+ "@itwin/itwinui-icons": {
58
+ "optional": true
59
+ },
57
60
  "@itwin/itwinui-react": {
58
61
  "optional": true
59
62
  }
60
63
  },
61
64
  "devDependencies": {
62
65
  "@itwin/build-tools": "^4.10.1",
63
- "@itwin/itwinui-react": "^5.0.0-alpha.3",
66
+ "@itwin/itwinui-icons": "^5.0.0-alpha.2",
67
+ "@itwin/itwinui-react": "^5.0.0-alpha.4",
64
68
  "@testing-library/dom": "^10.3.2",
65
69
  "@testing-library/react": "^16.0.0",
66
70
  "@testing-library/user-event": "^14.5.2",
@@ -92,8 +96,8 @@
92
96
  "sinon-chai": "^3.7.0",
93
97
  "testdouble": "^3.20.2",
94
98
  "typescript": "~5.6.3",
95
- "presentation-test-utilities": "^0.0.0",
96
- "presentation-build-tools": "^0.0.0"
99
+ "presentation-build-tools": "^0.0.0",
100
+ "presentation-test-utilities": "^0.0.0"
97
101
  },
98
102
  "scripts": {
99
103
  "build": "npm run -s build:esm",