-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCHANGELOG.json
1018 lines (1018 loc) · 34.5 KB
/
CHANGELOG.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@itwin/tree-widget-react",
"entries": [
{
"date": "Wed, 08 Jan 2025 13:28:10 GMT",
"version": "3.2.3",
"tag": "@itwin/tree-widget-react_v3.2.3",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "f7d3af2ddb8b2ce1af9c8429e26886821efa1bd7",
"comment": "Changed `onHierarchyLoad` to log errors to console"
}
]
}
},
{
"date": "Tue, 07 Jan 2025 16:30:55 GMT",
"version": "3.2.2",
"tag": "@itwin/tree-widget-react_v3.2.2",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "3058f26b574dd9312d81545e8ab949f0c5222de7",
"comment": "Propagate `enableVirtualization` flag down to the underlying `Tree` component from `iTwinUI`"
}
]
}
},
{
"date": "Tue, 07 Jan 2025 12:53:32 GMT",
"version": "3.2.1",
"tag": "@itwin/tree-widget-react_v3.2.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "f6b3a561da16553d1e83a1167bf0c3e9679c4de9",
"comment": "Increase performance consistency when creating filtering paths from target items."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "109ddfcf614e55d69907fd610bb83b8628f51809",
"comment": "Reduced main thread blockage ~3 times when creating filtering paths from target items."
}
]
}
},
{
"date": "Wed, 18 Dec 2024 12:42:56 GMT",
"version": "3.2.0",
"tag": "@itwin/tree-widget-react_v3.2.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "72abd12703feb2f29791e853f023c5e853931be2",
"comment": "Bump dependencies"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "db4ec4ae0fc5b62aa6a200a38cac0c4724b836dd",
"comment": "Added an optional `selectionPredicate` function prop to `ModelsTreeComponent`, `ModelsTree`, `useModelsTree` and `Tree` components. When provided, it allows consumers to conditionally enable/disable selection of tree nodes."
}
],
"none": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "afbd086947adf7be897a249be4952637037217e8",
"comment": ""
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "20a3d0768000d74e7330fca886c711165acdefa9",
"comment": "Fix code snippets in README"
}
]
}
},
{
"date": "Fri, 29 Nov 2024 10:43:06 GMT",
"version": "3.1.0",
"tag": "@itwin/tree-widget-react_v3.1.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c7e031bc771bc9215acef7f8f724c5390e1f9079",
"comment": "Bump dependencies"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "485ec9d4bd818fb9ba6aab08af56287c18f41cb7",
"comment": "Add missing tooltips"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "b1f0b991b0896611b729ff5082b36d78cdcccc4c",
"comment": "Reduce the number of queries being executed when always/never drawn sets change."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c0eb696d30e44cf7ae22d47ac8d8fc1233bae3e9",
"comment": "Improve performance of visibility status calculation and visibility changes. Also reduce main thread blocking to avoid UI freezing."
}
],
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c0eb696d30e44cf7ae22d47ac8d8fc1233bae3e9",
"comment": "Replaced `ModelsTreeVisibilityHandlerOverrides.changeElementState` with `ModelsTreeVisibilityHandlerOverrides.changeElementsState`. The method is provided with a list of elements instead of single element to allow changing visibility of multiple elements in single batch istead of one by one."
}
]
}
},
{
"date": "Fri, 15 Nov 2024 15:03:19 GMT",
"version": "3.0.3",
"tag": "@itwin/tree-widget-react_v3.0.3",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c834672dd15fb7cdf0cbf330a63caaaaf989c013",
"comment": "Reduce UI blocking when checking visibility status"
}
]
}
},
{
"date": "Tue, 12 Nov 2024 12:57:13 GMT",
"version": "3.0.2",
"tag": "@itwin/tree-widget-react_v3.0.2",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "27c48c88a7adc44f34263a4004f68a73f17a40dd",
"comment": "Add a mention that `ECSchemaRpcLocater` requires `ECSchemaRpcInterface`"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "69092ffded10017826fe3f18fcfa01a110c6b957",
"comment": "Bump playwright"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "318241bd863ed47e678e62efab6af9f96c354f20",
"comment": "Update ECSQL queries to always use `.Id` suffix when querying navigation properties - that substantially improves query performance."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "342e3126e0325e5823cae7bf0f5cf9fe9ab0d8fa",
"comment": "Models tree: Improved performance of creating instance key paths for large numbers of target instances by up to 200x."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "48070db66f85d56ab3106f6b6d09d1f802ac64a7",
"comment": "Updated `TreeNodeRenderer` to pass `ref` to the underlying `TreeNodeRenderer` from `@itwin/presentation-hierarchies-react`."
}
]
}
},
{
"date": "Tue, 15 Oct 2024 20:19:11 GMT",
"version": "3.0.1",
"tag": "@itwin/tree-widget-react_v3.0.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "66cca3837edee3be537eefde2e5b6750ba44186e",
"comment": "Bump `presentation` package dependencies for bug fixes and orders of magnitude hierarchy filtering performance improvement."
}
]
}
},
{
"date": "Fri, 04 Oct 2024 15:06:44 GMT",
"version": "3.0.0",
"tag": "@itwin/tree-widget-react_v3.0.0",
"comments": {
"major": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "f42e53a666d74e8bc0850b9fd19424633a1167c7",
"comment": "The `3.0` release affects nearly all components in this package, usually in a breaking way. As a result, we suggest treating this version as a completely new package rather than an incremental upgrade - please have a look at the [README](./README.md) for a list of new features and examples on how to consume the new version"
}
]
}
},
{
"date": "Mon, 10 Jun 2024 12:47:48 GMT",
"version": "2.3.2",
"tag": "@itwin/tree-widget-react_v2.3.2",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "8adcd8a763fe12e3e11715ce32f867728a7f26b8",
"comment": "Removed usage of `require` as it is not supported in ES modules"
}
]
}
},
{
"date": "Wed, 22 May 2024 16:03:40 GMT",
"version": "2.3.1",
"tag": "@itwin/tree-widget-react_v2.3.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "e9bf064c5abf013603533612d6646b7a9dcb5150",
"comment": "Fixed newly inserted subject node visibility not changing"
}
]
}
},
{
"date": "Tue, 21 May 2024 13:26:36 GMT",
"version": "2.3.0",
"tag": "@itwin/tree-widget-react_v2.3.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "db7b45b4ab2d4ecc551cb999a25c382280e7f390",
"comment": "Fixed `ModelsTree` not changing visibility for child elements."
}
],
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "04282acf9deab4a3e223a7cf0e6f4c2d512b1b0f",
"comment": "Added support for custom start icons in `TreeSelector`."
}
]
}
},
{
"date": "Mon, 29 Apr 2024 14:59:26 GMT",
"version": "2.2.0",
"tag": "@itwin/tree-widget-react_v2.2.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "dfe63d29693bd646ebe59f8f7de75049414ac553",
"comment": "Added ability to track usage of `TreeWidget` features."
}
]
}
},
{
"date": "Wed, 17 Apr 2024 15:50:19 GMT",
"version": "2.1.0",
"tag": "@itwin/tree-widget-react_v2.1.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "bff4b8112d114c059657896c856242e36d89c139",
"comment": "Added ability to track performance of `TreeWidget` component features. Requires `@itwin/presentation-components` version `5.1` or higher"
}
],
"none": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "3ce3db62689abb58d25f59b0528f4b793d6c4c0c",
"comment": ""
}
],
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "18bac0b86b52beb1927820e630bd3ff1acf2203f",
"comment": "ModelsTree: Improved performance when changing visibility of multiple element nodes at the same time."
}
]
}
},
{
"date": "Thu, 04 Apr 2024 14:19:35 GMT",
"version": "2.0.2",
"tag": "@itwin/tree-widget-react_v2.0.2",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "36b1bb4329de32956d9f9d8b5f85482d523a820c",
"comment": "Removed border appearing around search button."
}
]
}
},
{
"date": "Thu, 07 Mar 2024 13:37:08 GMT",
"version": "2.0.1",
"tag": "@itwin/tree-widget-react_v2.0.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "2ed210e06087dd1e24b9090299e21d5f1c672778",
"comment": "Updated trees to always react to data changes and auto update."
}
]
}
},
{
"date": "Wed, 06 Mar 2024 15:24:33 GMT",
"version": "2.0.0",
"tag": "@itwin/tree-widget-react_v2.0.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "efc320f43a9ee782160f495c3da153793c2e1ff8",
"comment": "Tree Widget: Updated header and its content to be touch friendly when using expanded layout."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "b155f38ae63caacf60740c47770f94b5a3e04fba",
"comment": "Added React 18 support."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "32fec20f0f56f524fa108176ae82724aa3368650",
"comment": "Models Tree: zoom to viewport element on node double-click."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "f9075edff1018819436a99cd02538098f85816c3",
"comment": "Tree Widget: allow opt-in to hierarchy level size limiting."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "48fd3d82437b96368a6855a67147045d5520eacf",
"comment": "Tree Widget: Allow opt-in to hierarchy level filtering using `isHierarchyLevelFilteringEnabled` flag for all trees. Add support for `enlarged` nodes in non-visibility trees."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "cfa4646469b2665305a8d0a0f1dd0ca76e82a6eb",
"comment": "Move `VisibilityTreeEventHandler.onNodeDoubleClick` event handler to newly added `ModelsTreeEventHandler`. Expand `useVisibilityTreeState` hook to support custom `VisibilityTreeEventHandler`'s."
}
],
"none": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "7e69cfd65dfd1badc42125859f1a76e3cd5f4fa7",
"comment": "Run prettier to format code"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "80abe6949242d39712ff62b33a2990ed75712649",
"comment": "Bump `itwinjs-core` dev dependencies to `4.4.0-dev.32` (latest rc)"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "5430c6c2536dfd9b5be8ff52bd58929f448d2e02",
"comment": "Bump `itwinjs-core` dev dependencies to `4.4.0`"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "79268857d3d00ed13e1eb5a6f9cf2d9e07d897ae",
"comment": "Bump version"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "716aad28ddec9197a763e52eb03262e51f6c827e",
"comment": ""
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "4cffea73db2a9c1f723f04a0d575644b3da04433",
"comment": ""
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "2f711d2cc419c40434c51b166da560be931e4b56",
"comment": "Tree Widget: Fix possible `onCheckboxStateChanged` failure when multiple `rxjs` versions are present (#750)"
}
],
"major": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "a06e10d377e8a8cbfa08309cd77dd77a4bfda624",
"comment": "Update `@itwin/itwinui-react` dependency to `3.x`"
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c3ffd407f0821a60d512062382ab1d2bd3ad3f92",
"comment": "Bumped `@itwin/presentation-components` peer dependency version to `^5.0.0`."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "c3ffd407f0821a60d512062382ab1d2bd3ad3f92",
"comment": "Bumped AppUI peer dependencies version to `^4.10.0`."
}
],
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "9abc5dcc6ea38533de168e1351d70ca788466877",
"comment": "Models Tree: For all header actions only consider Models that model either `InformationPartitionElement` or `GeometricElement3d`. This should omit Models that are not displayed in the component."
},
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "737c255609c81c4bf521dab29a95c3462edbf413",
"comment": "Fixed progress indicator positioning in enlarged tree layout."
}
]
}
},
{
"date": "Tue, 30 Jan 2024 13:20:38 GMT",
"version": "1.2.2",
"tag": "@itwin/tree-widget-react_v1.2.2",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@itwin/tree-widget-react",
"commit": "589cdeecff8ccc02d4226a7dd235a5e5e3b9546c",
"comment": "Fixed `onCheckboxStateChanged` event handling when multiple `rxjs` versions are present."
}
]
}
},
{
"version": "1.2.1",
"tag": "@itwin/tree-widget-react_v1.2.1",
"date": "Fri, 01 Dec 2023 13:46:38 GMT",
"comments": {
"none": [
{
"comment": "Add lint checks for *.scss files."
}
],
"patch": [
{
"comment": "Fix padding for icons when elements are enlarged."
},
{
"comment": "Fix progress indicator sizing in `enlarged` layout"
}
]
}
},
{
"version": "1.2.0",
"tag": "@itwin/tree-widget-react_v1.2.0",
"date": "Tue, 19 Sep 2023 14:55:43 GMT",
"comments": {
"none": [
{
"comment": "Update to AppUI 4.5.0"
}
],
"minor": [
{
"comment": "`ModelsTree`: Add an option to pass `modelsVisibilityHandler` as a factory function."
}
]
}
},
{
"version": "1.1.3",
"tag": "@itwin/tree-widget-react_v1.1.3",
"date": "Tue, 29 Aug 2023 13:48:47 GMT",
"comments": {
"patch": [
{
"comment": "Fix spacing between expander and label in iModelContentTree component."
},
{
"comment": "Fix Models tree search not loading Subject nodes with hidden content models"
}
],
"none": [
{
"comment": "Add missing dev dependencies"
},
{
"comment": "Bump `@itwin/presentation-components` dev dependency to `4.1.0`."
}
]
}
},
{
"version": "1.1.2",
"tag": "@itwin/tree-widget-react_v1.1.2",
"date": "Tue, 22 Aug 2023 14:39:05 GMT",
"comments": {
"patch": [
{
"comment": "`Trees`: Do not select node when checkbox is clicked."
}
]
}
},
{
"version": "1.1.1",
"tag": "@itwin/tree-widget-react_v1.1.1",
"date": "Thu, 17 Aug 2023 14:42:37 GMT",
"comments": {
"none": [
{
"comment": "Added e2e tests for `TreeWidget` component."
}
],
"patch": [
{
"comment": "Trees: Fix eye checkbox background when node is selected and hovered."
}
]
}
},
{
"version": "1.1.0",
"tag": "@itwin/tree-widget-react_v1.1.0",
"date": "Mon, 07 Aug 2023 13:36:23 GMT",
"comments": {
"minor": [
{
"comment": "Trees: Added ability to increase node size in order to make tree more user friendly on touch devices."
},
{
"comment": "Trees: Added ability to customize tree node label"
},
{
"comment": "`ModelsTree`: Added ability to show models without elements."
},
{
"comment": "Added context menu support."
}
],
"patch": [
{
"comment": "Removed `@itwin/itwinui-variables` from dependencies."
}
]
}
},
{
"version": "1.0.0",
"tag": "@itwin/tree-widget-react_v1.0.0",
"date": "Mon, 31 Jul 2023 14:10:09 GMT",
"comments": {
"minor": [
{
"comment": "Models tree: Removed expansion toggle for root node."
},
{
"comment": "Widget: Added ability to conditionally show trees."
},
{
"comment": "Trees: Decrease whitespace size between the node label and eye checkbox."
},
{
"comment": "Added base tree props interface for props shared between trees."
},
{
"comment": "External sources tree: Add `ExternalSourcesTreeComponent` (currently `@alpha`)."
},
{
"comment": "Models tree: Added an option to specialize the class of geometric elements loaded into the hierarchy (see `ModelsTreeHierarchyConfiguration.elementClassSpecification`)."
},
{
"comment": "Trees: Use search box from the `@itwin/itwinui-react` library."
}
],
"patch": [
{
"comment": "Trees: Keep child nodes state the same after parent node re-expands."
},
{
"comment": "Categories tree: Fixed behavior of the Invert button. Previously, only categories were affected, now sub-categories are affected as well."
},
{
"comment": "Handle errors thrown from tree components."
},
{
"comment": "Persist tree scroll position when switching between widgets."
},
{
"comment": "`Tree Header`: Fixed dropdown buttons menu not theming correctly."
},
{
"comment": "`ModelsTree`: Refactor ruleset to not use deprecated `ImageIdOverride` rule. "
},
{
"comment": "`ModelsTree`: Always render checkbox to avoid UI shifting when checkbox appear."
}
],
"major": [
{
"comment": "Trees: Make eye checkboxes static on horizontal scroll."
},
{
"comment": "`createVisibilityTreeNodeRenderer` now takes a `props` object of type `VisibilityTreeNodeRendererProps`. It contains two new configuration options: `levelOffset`, and `disableRootNodeCollapse`."
},
{
"comment": "Rename `useVisibilityTreeRenderer` to `createVisibilityTreeRenderer`. It now takes a `props` object of type `VisibilityTreeRendererProps`"
},
{
"comment": "Bumped AppUI peer dependencies to `^4.3.0`."
},
{
"comment": "Renamed `TreeWidgetComponent` to `SelectableTree`."
},
{
"comment": "Widget: Reworked the way trees are provided to the widget. Instead of having separate configuration properties for hiding default trees and adding additional trees now there is only one property for supplying a list of trees to show."
},
{
"comment": "Refactored `IModelContentTreeProps` to not inherit `HTMLDivElement` props."
},
{
"comment": "`IVisibilityHandler`: Methods `getVisibilityStatus` and `changeVisibility` don't take `NodeKey` argument anymore."
},
{
"comment": "Models tree: `ModelsTreeProps.enableElementsClassGrouping` has been moved to `ModelsTreeProps.hierarchyConfig.enableElementsClassGrouping`."
}
],
"none": [
{
"comment": "Enforce consistent usage of type imports."
},
{
"comment": "`TreeHeader`: Debounce searchbox input to avoid making multiple requests."
},
{
"comment": "Bump dependencies."
}
]
}
},
{
"version": "0.10.0",
"tag": "@itwin/tree-widget-react_v0.10.0",
"date": "Tue, 23 May 2023 13:16:11 GMT",
"comments": {
"none": [
{
"comment": "Updating to iTwin.js core 4.0.0."
}
]
}
},
{
"version": "0.9.0",
"tag": "@itwin/tree-widget-react_v0.9.0",
"date": "Tue, 02 May 2023 16:12:17 GMT",
"comments": {
"none": [
{
"comment": "Updating to [email protected] and [email protected]."
},
{
"comment": "Removed usage of deprecated `@itwin/presentation-components` APIs."
},
{
"comment": "Updated trees to use visibility checkbox from `@itwin/itwinui-react`."
}
],
"minor": [
{
"comment": "Updated to AppUI 4.0 and Presentation 4.0."
}
]
}
},
{
"version": "0.8.0",
"tag": "@itwin/tree-widget-react_v0.8.0",
"date": "Mon, 03 Apr 2023 15:34:07 GMT",
"comments": {
"minor": [
{
"comment": "Removed `SpatialTree` and related components in favor of the ones in `@itwin/breakdown-trees-react`."
},
{
"comment": "Updated dependencies (`itwinui@2`, `appui@4`, `presentation-components@4`, `[email protected]`)."
}
],
"patch": [
{
"comment": "Use iTwin UI components instead of custom ones and CSS variables from `@itwin/itwinui-variables` instead of `@itwin/core-react`."
}
]
}
},
{
"version": "0.7.2",
"tag": "@itwin/tree-widget-react_v0.7.2",
"date": "Fri, 24 Mar 2023 10:46:34 GMT",
"comments": {
"patch": [
{
"comment": "Fixed tree filtering not being removed when search box is closed."
}
]
}
},
{
"version": "0.7.1",
"tag": "@itwin/tree-widget-react_v0.7.1",
"date": "Thu, 23 Mar 2023 15:12:36 GMT",
"comments": {
"patch": [
{
"comment": "'ModelsTree': Restored 'HideAll' button behavior to hide only models."
}
]
}
},
{
"version": "0.7.0",
"tag": "@itwin/tree-widget-react_v0.7.0",
"date": "Mon, 20 Mar 2023 14:48:35 GMT",
"comments": {
"patch": [
{
"comment": "ModelsTree: ensure that the \"Show all\" button is going to show all elements when there are elements with an \"exclusive\" flag."
},
{
"comment": "'2d' and '3d' buttons react to visibility changes in the viewport. The '2d' button will be disabled if no models with the PlanProjection flag are present in the model."
}
],
"minor": [
{
"comment": "Add an option to control what buttons are available in tree toolbars."
},
{
"comment": "Upgrade `itwinjs-core` dependencies to `^3.6.0`."
},
{
"comment": "Upgrade `typescript` to `~4.4.0`."
}
]
}
},
{
"version": "0.6.2",
"tag": "@itwin/tree-widget-react_v0.6.2",
"date": "Thu, 09 Mar 2023 20:08:53 GMT",
"comments": {
"patch": [
{
"comment": "`ModelsTreeComponent`: ensure that the \"show all\" and \"hide all\" buttons affect all iModel content."
},
{
"comment": "`ModelsTree`: Remove unused feature of filtering the tree by element ids."
}
]
}
},
{
"version": "0.6.1",
"tag": "@itwin/tree-widget-react_v0.6.1",
"date": "Thu, 19 Jan 2023 10:29:18 GMT",
"comments": {
"patch": [
{
"comment": "`CategoryTree`: Updated ruleset to not show private SubCategories."
},
{
"comment": "Bug fix for changing visibility of multiple nodes at once."
}
]
}
},
{
"version": "0.6.0",
"tag": "@itwin/tree-widget-react_v0.6.0",
"date": "Tue, 20 Dec 2022 15:12:29 GMT",
"comments": {
"minor": [
{
"comment": "Moved core trees implementation from `@itwin/appui-react` package to `@itwin/tree-widget-react`."
}
]
}
},
{
"version": "0.5.0",
"tag": "@itwin/tree-widget-react_v0.5.0",
"date": "Mon, 12 Sep 2022 19:50:36 GMT",
"comments": {
"minor": [
{
"comment": "Add new `defaultTreeId` prop to specify default tree for `TreeWidgetUiItemsProvider`."
}
]
}
},
{
"version": "0.4.7",
"tag": "@itwin/tree-widget-react_v0.4.7",
"date": "Mon, 30 May 2022 12:44:10 GMT",
"comments": {
"patch": [
{
"comment": "Fix GeometricElement nodes not being shown in `IModelContentTree`."
}
]
}
},
{
"version": "0.4.6",
"tag": "@itwin/tree-widget-react_v0.4.6",
"date": "Thu, 26 May 2022 15:54:07 GMT",
"comments": {
"patch": [
{
"comment": "Allow a caller to specify a default priority for `TreeWidgetUiItemsProvider`."
}
]
}
},
{
"version": "0.4.5",
"tag": "@itwin/tree-widget-react_v0.4.5",
"date": "Mon, 09 May 2022 18:04:58 GMT",
"comments": {
"patch": [
{
"comment": "Set restore transient state in `TreeWidgetUiItemsProvider` to restore state when remounted."
}
]
}
},
{
"version": "0.4.4",
"tag": "@itwin/tree-widget-react_v0.4.4",
"date": "Thu, 05 May 2022 12:21:21 GMT",
"comments": {
"patch": [
{
"comment": "Set tree-widget-search-bar-button-container z-index to 1."
}
]
}
},
{
"version": "0.4.3",
"tag": "@itwin/tree-widget-react_v0.4.3",
"date": "Thu, 21 Apr 2022 18:47:53 GMT",
"comments": {
"patch": [
{
"comment": "Do not unmount children in `AutoSizer` when height or width is 0 to avoid losing children state."
}
]
}
},
{
"version": "0.4.2",
"tag": "@itwin/tree-widget-react_v0.4.2",
"date": "Tue, 19 Apr 2022 14:15:57 GMT",
"comments": {
"patch": [
{
"comment": "Fixed search bar container to take up entire width of widget when open."
}
]
}
},
{
"version": "0.4.1",
"tag": "@itwin/tree-widget-react_v0.4.1",
"date": "Wed, 06 Apr 2022 13:48:44 GMT",
"comments": {
"none": [
{
"comment": "Add transitive peers as dev deps."
}
],
"patch": [
{
"comment": "Allow specifying default panel location."
},
{
"comment": "Added tree icon to tree widget tab."
}
]
}
},
{
"version": "0.4.0",
"tag": "@itwin/tree-widget-react_v0.4.0",
"date": "Fri, 18 Mar 2022 13:31:19 GMT",
"comments": {
"minor": [
{
"comment": "Remove deprecated `WidgetControl`, update `UiItemsProvider` initialization."
}
]
}
},
{
"version": "0.3.0",
"tag": "@itwin/tree-widget-react_v0.3.0",
"date": "Wed, 02 Mar 2022 21:38:51 GMT",
"comments": {
"minor": [
{
"comment": "Add `IModelContentTree`."
}
]
}
},
{
"version": "0.2.1",
"tag": "@itwin/tree-widget-react_v0.2.1",
"date": "Fri, 04 Feb 2022 00:43:35 GMT",
"comments": {
"patch": [
{
"comment": "Update scss to be pulled from cjs dir."
}
]
}
},
{
"version": "0.2.0",
"tag": "@itwin/tree-widget-react_v0.2.0",
"date": "Mon, 24 Jan 2022 19:14:37 GMT",
"comments": {
"minor": [
{
"comment": "Bump to official iTwin.js 3.0 release."
}
]
}
},
{
"version": "0.1.2",
"tag": "@itwin/tree-widget-react_v0.1.2",
"date": "Wed, 19 Jan 2022 17:39:40 GMT",
"comments": {
"patch": [
{
"comment": "Updated to latest rc, dev-185, and updated deps."