forked from iTwin/viewer-components-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG.json
More file actions
1683 lines (1683 loc) · 46.9 KB
/
CHANGELOG.json
File metadata and controls
1683 lines (1683 loc) · 46.9 KB
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/map-layers",
"entries": [
{
"date": "Wed, 23 Oct 2024 13:32:29 GMT",
"version": "5.6.2",
"tag": "@itwin/map-layers_v5.6.2",
"comments": {
"patch": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "1708f8eab81404035fa8fda3bb32a537f4f21955",
"comment": "Fix timing issue with map layers feature info tool not always being shown"
}
]
}
},
{
"date": "Tue, 22 Oct 2024 14:41:59 GMT",
"version": "5.6.1",
"tag": "@itwin/map-layers_v5.6.1",
"comments": {
"patch": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "f53aea190cdafd75f321c1258d797ca3c6859634",
"comment": "Fix z-index of map layers settings popup"
}
]
}
},
{
"date": "Fri, 13 Sep 2024 17:50:16 GMT",
"version": "5.6.0",
"tag": "@itwin/map-layers_v5.6.0",
"comments": {
"minor": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "5ea6f3789dc279192e0800dc096909a2f2aa316c",
"comment": "Remove map layers feature info tech preview badges"
}
]
}
},
{
"date": "Wed, 11 Sep 2024 19:11:54 GMT",
"version": "5.5.0",
"tag": "@itwin/map-layers_v5.5.0",
"comments": {
"minor": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "9ac4d0f9b9b5a7f79938129b62551b0db363e31c",
"comment": "Hide map layer info tool when map layers is off or no arcgis feature layers exist"
}
]
}
},
{
"date": "Wed, 29 May 2024 18:39:36 GMT",
"version": "5.4.4",
"tag": "@itwin/map-layers_v5.4.4",
"comments": {
"none": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "3cf4d181df078b62ea0484624fe2737f22243392",
"comment": "Styled map layers package's code with Prettier"
}
]
}
},
{
"date": "Tue, 21 May 2024 13:26:35 GMT",
"version": "5.4.4",
"tag": "@itwin/map-layers_v5.4.4",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "5fcfa29b9769d03fa686549395f20ded33c015ed",
"comment": "Url scheme validation when adding a new map layer and fix an issue with usersPreferences and browser storage."
},
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "0d80fd375ec8ea0596a7057a9ace05b12c4a0ca8",
"comment": "Added copy property value button in Map Layers Info widget"
}
]
}
},
{
"date": "Thu, 04 Apr 2024 14:19:35 GMT",
"version": "5.4.3",
"tag": "@itwin/map-layers_v5.4.3",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "01c1b960d7d32da1ec69f559c6149770fce56d51",
"comment": "Clear MapFeatureInfo Widget when active tool changes"
}
]
}
},
{
"date": "Mon, 11 Mar 2024 18:18:16 GMT",
"version": "5.4.2",
"tag": "@itwin/map-layers_v5.4.2",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "1bf42345a8e7bc8408b354493dc3398f0ffb85e8",
"comment": "Fixed `supportTileUrl` option that would not be honored in some cases"
}
]
}
},
{
"date": "Wed, 06 Mar 2024 15:24:33 GMT",
"version": "5.4.1",
"tag": "@itwin/map-layers_v5.4.1",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "18479809216a681f901f884e67db6c8c04787615",
"comment": "Added @itwin\\map-layers-formats to peerDependencies"
}
]
}
},
{
"date": "Thu, 29 Feb 2024 19:46:34 GMT",
"version": "5.4.0",
"tag": "@itwin/map-layers_v5.4.0",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "5a2cf9d2f64d2338e884b4ccbe4f4d257e95edb1",
"comment": "Improved warning message when an incompatible map-layer type is provided."
},
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "fc3504a3b691cdf97c695cc3d18e02c7cde5d3df",
"comment": "Moved @itwin/itwinui-react to direct dependencies"
},
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "5ba336b59cd8cb1cf0f03ac4f79c655e0045af35",
"comment": "Hide User Preferences Options to store at the iTwin/iModel scope."
},
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "56ccf3c964674f8d9d1194d49006b150280fc80c",
"comment": "Added @itwin/itwinui-react to peer dependencies"
}
],
"minor": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "05815f4e7587b2e42227194574abf4ee49fbce4e",
"comment": "Support for custom query parameters."
}
]
}
},
{
"date": "Wed, 07 Feb 2024 21:16:44 GMT",
"version": "5.3.1",
"tag": "@itwin/map-layers_v5.3.1",
"comments": {
"patch": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "0b8ac8d861a34e4acdf21f86c34ee9e577088fa5",
"comment": "Fix map feature info widget tech preview badge"
}
]
}
},
{
"date": "Tue, 06 Feb 2024 13:45:21 GMT",
"version": "5.3.0",
"tag": "@itwin/map-layers_v5.3.0",
"comments": {
"minor": [
{
"author": "wil.maier@bentley.com",
"package": "@itwin/map-layers",
"commit": "78499205ff7183061bf5d5cbdd546a47e267b946",
"comment": "Add option to show tech preview badge on MapFeatureInfoTool/Widget"
}
]
}
},
{
"date": "Mon, 29 Jan 2024 21:37:20 GMT",
"version": "5.2.7",
"tag": "@itwin/map-layers_v5.2.7",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "2d199e72efdd7836dc148b4c6933f67702fcc8ab",
"comment": "Make sure the Feature Info Widget is reopened every time selection change occurs."
},
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "05de91bf6d34cfe29f1df5b640a114346d9b5eee",
"comment": "Fixed an issue that would prevent the display of Feature Info properties."
}
]
}
},
{
"date": "Thu, 18 Jan 2024 15:05:39 GMT",
"version": "5.2.6",
"tag": "@itwin/map-layers_v5.2.6",
"comments": {
"patch": [
{
"author": "mdastous-bentley@users.noreply.github.com",
"package": "@itwin/map-layers",
"commit": "828c75e8f6bab9b78278ea27c9d0a8bac9fd3d8e",
"comment": "Fix issue where two instances of 'Aerial Imagery with labels' are visible in map layers widget"
}
]
}
},
{
"version": "5.2.5",
"tag": "@itwin/map-layers_v5.2.5",
"date": "Mon, 18 Dec 2023 18:31:01 GMT",
"comments": {
"patch": [
{
"comment": "ensure the isGeolocated runs when active viewport changes even if the onEcefLocationChanged has already fired"
}
]
}
},
{
"version": "5.2.4",
"tag": "@itwin/map-layers_v5.2.4",
"date": "Tue, 07 Nov 2023 13:43:31 GMT",
"comments": {
"patch": [
{
"comment": "Fix UI refresh issues after a saved view is applied."
}
]
}
},
{
"version": "5.2.3",
"tag": "@itwin/map-layers_v5.2.3",
"date": "Thu, 26 Oct 2023 13:09:22 GMT",
"comments": {
"patch": [
{
"comment": "Fixed base map translation issues"
},
{
"comment": "Fix warning message after a failed attempt to provide credentials"
},
{
"comment": "Fix an issue in the 'Add New Layer' dialog where invalid credentials warning would not appear after a first invalid attempt."
},
{
"comment": "Make the MapFeatureInfo Widget appear only when results are available."
}
]
}
},
{
"version": "5.2.2",
"tag": "@itwin/map-layers_v5.2.2",
"date": "Thu, 05 Oct 2023 18:48:11 GMT",
"comments": {
"patch": [
{
"comment": "Several UI fixes and fine tuning."
}
]
}
},
{
"version": "5.2.1",
"tag": "@itwin/map-layers_v5.2.1",
"date": "Mon, 02 Oct 2023 20:32:55 GMT",
"comments": {
"patch": [
{
"comment": "Restore settings icon that got incorrectly removed"
}
]
}
},
{
"version": "5.2.0",
"tag": "@itwin/map-layers_v5.2.0",
"date": "Fri, 29 Sep 2023 20:08:20 GMT",
"comments": {
"minor": [
{
"comment": "Updated Feature Selection UI to consume new itwin.js API"
}
],
"none": [
{
"comment": "Improved UI to better control the state of multiple map layers in a single operation"
}
]
}
},
{
"version": "5.1.2",
"tag": "@itwin/map-layers_v5.1.2",
"date": "Tue, 12 Sep 2023 14:07:42 GMT",
"comments": {
"patch": [
{
"comment": "Removed deep import of icons"
}
]
}
},
{
"version": "5.1.1",
"tag": "@itwin/map-layers_v5.1.1",
"date": "Fri, 28 Jul 2023 18:31:57 GMT",
"comments": {
"patch": [
{
"comment": "Fix baseMap visibility not retained when switching to another style. Also fixed typos localized strings."
},
{
"comment": "Fixed maplayer context menu not opening at the right position."
}
]
}
},
{
"version": "5.1.0",
"tag": "@itwin/map-layers_v5.1.0",
"date": "Wed, 26 Jul 2023 21:49:07 GMT",
"comments": {
"minor": [
{
"comment": "New UI that allow creating multiple layers from sources supporting single layer per request."
}
],
"patch": [
{
"comment": "Fixvarious display issues with MapLayer widget"
}
]
}
},
{
"version": "5.0.0",
"tag": "@itwin/map-layers_v5.0.0",
"date": "Tue, 06 Jun 2023 10:57:06 GMT",
"comments": {
"none": [
{
"comment": "Update and react to iTwin.js Core 4.0"
},
{
"comment": "Updated itwinjs-core to latest RC version."
}
],
"patch": [
{
"comment": "Fix an issue with MapLayerPreferences that would not save with the proper key with replacing an existing source. Also also added MapLayersPrefBrowserStorage as a simple/testing implementation of UserPreferencesAccess."
},
{
"comment": "Refactored SubLayers tree panel and made it independent from viewport"
}
]
}
},
{
"version": "4.0.0",
"tag": "@itwin/map-layers_v4.0.0",
"date": "Thu, 04 May 2023 23:59:19 GMT",
"comments": {
"none": [
{
"comment": "remove refs of $uicore-button-focus-boxshadow in maplayers scss files"
},
{
"comment": "Migrated UiItemsProviders to new API from @itwin/appui-react."
}
],
"minor": [
{
"comment": "Updated to AppUI 4.0 and Presentation 4.0"
}
]
}
},
{
"version": "3.6.0",
"tag": "@itwin/map-layers_v3.6.0",
"date": "Wed, 08 Feb 2023 14:58:40 GMT",
"comments": {
"none": [
{
"comment": "Allow map-layer requiring authentication to be correctly initialized after a saved view restore."
},
{
"comment": "Added support for new viewport event (onMapLayerScaleRangeVisibilityChanged)"
},
{
"comment": "Improved map-layer coordinate systems validation and error reporting."
},
{
"comment": "Fix Map Layers widget not updating after an iModel gets geolocated."
},
{
"comment": " Use EmptyLocalization for localization in tests to increase test performance"
}
]
}
},
{
"version": "3.5.6",
"tag": "@itwin/map-layers_v3.5.6",
"date": "Fri, 24 Feb 2023 16:02:47 GMT",
"comments": {}
},
{
"version": "3.5.5",
"tag": "@itwin/map-layers_v3.5.5",
"date": "Thu, 26 Jan 2023 22:53:28 GMT",
"comments": {}
},
{
"version": "3.5.4",
"tag": "@itwin/map-layers_v3.5.4",
"date": "Wed, 18 Jan 2023 15:27:15 GMT",
"comments": {}
},
{
"version": "3.5.3",
"tag": "@itwin/map-layers_v3.5.3",
"date": "Fri, 13 Jan 2023 17:23:07 GMT",
"comments": {}
},
{
"version": "3.5.2",
"tag": "@itwin/map-layers_v3.5.2",
"date": "Wed, 11 Jan 2023 16:46:30 GMT",
"comments": {}
},
{
"version": "3.5.1",
"tag": "@itwin/map-layers_v3.5.1",
"date": "Thu, 15 Dec 2022 16:38:29 GMT",
"comments": {}
},
{
"version": "3.5.0",
"tag": "@itwin/map-layers_v3.5.0",
"date": "Wed, 07 Dec 2022 19:12:37 GMT",
"comments": {
"none": [
{
"comment": "MapLayers widget's preferences UI now support edit,delete buttons without having an iModel ID. Also fix an issue with edit. "
},
{
"comment": "Unpin classnames package"
}
]
}
},
{
"version": "3.4.7",
"tag": "@itwin/map-layers_v3.4.7",
"date": "Wed, 30 Nov 2022 14:28:19 GMT",
"comments": {}
},
{
"version": "3.4.6",
"tag": "@itwin/map-layers_v3.4.6",
"date": "Tue, 22 Nov 2022 14:24:19 GMT",
"comments": {}
},
{
"version": "3.4.5",
"tag": "@itwin/map-layers_v3.4.5",
"date": "Thu, 17 Nov 2022 21:32:50 GMT",
"comments": {}
},
{
"version": "3.4.4",
"tag": "@itwin/map-layers_v3.4.4",
"date": "Thu, 10 Nov 2022 19:32:17 GMT",
"comments": {}
},
{
"version": "3.4.3",
"tag": "@itwin/map-layers_v3.4.3",
"date": "Fri, 28 Oct 2022 13:34:58 GMT",
"comments": {}
},
{
"version": "3.4.2",
"tag": "@itwin/map-layers_v3.4.2",
"date": "Mon, 24 Oct 2022 13:23:45 GMT",
"comments": {}
},
{
"version": "3.4.1",
"tag": "@itwin/map-layers_v3.4.1",
"date": "Mon, 17 Oct 2022 20:06:51 GMT",
"comments": {}
},
{
"version": "3.4.0",
"tag": "@itwin/map-layers_v3.4.0",
"date": "Thu, 13 Oct 2022 20:24:47 GMT",
"comments": {
"none": [
{
"comment": "Disable map-layers widget when the background map setting is off in the current view settings."
},
{
"comment": "Maplayers widget now correctly rerefresh its state whenever the application switches between different viewports."
},
{
"comment": "Updated Node types declaration to support latest v16"
}
]
}
},
{
"version": "3.3.5",
"tag": "@itwin/map-layers_v3.3.5",
"date": "Tue, 27 Sep 2022 11:50:59 GMT",
"comments": {}
},
{
"version": "3.3.4",
"tag": "@itwin/map-layers_v3.3.4",
"date": "Thu, 08 Sep 2022 19:00:05 GMT",
"comments": {}
},
{
"version": "3.3.3",
"tag": "@itwin/map-layers_v3.3.3",
"date": "Tue, 06 Sep 2022 20:54:19 GMT",
"comments": {}
},
{
"version": "3.3.2",
"tag": "@itwin/map-layers_v3.3.2",
"date": "Thu, 01 Sep 2022 14:37:22 GMT",
"comments": {}
},
{
"version": "3.3.1",
"tag": "@itwin/map-layers_v3.3.1",
"date": "Fri, 26 Aug 2022 15:40:02 GMT",
"comments": {}
},
{
"version": "3.3.0",
"tag": "@itwin/map-layers_v3.3.0",
"date": "Thu, 18 Aug 2022 19:08:02 GMT",
"comments": {
"none": [
{
"comment": "upgrade mocha to version 10.0.0"
},
{
"comment": "Fixed FeatureInfo provider registration when Map Layers Widget is initialized."
},
{
"comment": "Update iTwinUI-react to 1.38.1"
}
]
}
},
{
"version": "3.2.9",
"tag": "@itwin/map-layers_v3.2.9",
"date": "Fri, 26 Aug 2022 14:21:40 GMT",
"comments": {}
},
{
"version": "3.2.8",
"tag": "@itwin/map-layers_v3.2.8",
"date": "Tue, 09 Aug 2022 15:52:41 GMT",
"comments": {}
},
{
"version": "3.2.7",
"tag": "@itwin/map-layers_v3.2.7",
"date": "Mon, 01 Aug 2022 13:36:56 GMT",
"comments": {}
},
{
"version": "3.2.6",
"tag": "@itwin/map-layers_v3.2.6",
"date": "Fri, 15 Jul 2022 19:04:43 GMT",
"comments": {}
},
{
"version": "3.2.5",
"tag": "@itwin/map-layers_v3.2.5",
"date": "Wed, 13 Jul 2022 15:45:53 GMT",
"comments": {
"none": [
{
"comment": "Use a different resize observer technique to ensure the controlled tree in map suplayer popup is properly sized."
},
{
"comment": "Turned ON Popup's 'repositionOnResize' property for MapLayerSettingsMenu."
}
]
}
},
{
"version": "3.2.4",
"tag": "@itwin/map-layers_v3.2.4",
"date": "Tue, 21 Jun 2022 18:06:33 GMT",
"comments": {}
},
{
"version": "3.2.3",
"tag": "@itwin/map-layers_v3.2.3",
"date": "Fri, 17 Jun 2022 15:18:39 GMT",
"comments": {
"none": [
{
"comment": "Made public MapLayers related objects, methods."
}
]
}
},
{
"version": "3.2.2",
"tag": "@itwin/map-layers_v3.2.2",
"date": "Fri, 10 Jun 2022 16:11:37 GMT",
"comments": {}
},
{
"version": "3.2.1",
"tag": "@itwin/map-layers_v3.2.1",
"date": "Tue, 07 Jun 2022 15:02:57 GMT",
"comments": {}
},
{
"version": "3.2.0",
"tag": "@itwin/map-layers_v3.2.0",
"date": "Fri, 20 May 2022 13:10:54 GMT",
"comments": {
"none": [
{
"comment": "maplayers widget has been updated to support OAuth2: if needed, a popup window will be displayed to trigger the external OAuth process. When process completes, the focus returns to the map-layers widget and layer is ready to be added/displayed."
},
{
"comment": "Use iTwinUI-react components to get consistent styling. Alos fixed bug with elevation correction control."
},
{
"comment": "Fix a display issue with background color's ColorPicker where part of the dialog was missing."
},
{
"comment": "Add ability to pass parameters to UiItemsManager when loading items provider to specify what stages allow the provider to supply items."
}
]
}
},
{
"version": "3.1.3",
"tag": "@itwin/map-layers_v3.1.3",
"date": "Fri, 15 Apr 2022 13:49:25 GMT",
"comments": {}
},
{
"version": "3.1.2",
"tag": "@itwin/map-layers_v3.1.2",
"date": "Wed, 06 Apr 2022 22:27:56 GMT",
"comments": {}
},
{
"version": "3.1.1",
"tag": "@itwin/map-layers_v3.1.1",
"date": "Thu, 31 Mar 2022 15:55:48 GMT",
"comments": {
"none": [
{
"comment": "Adjusted the map-layers package's peer dependencies to no longer lock down core packages."
}
]
}
},
{
"version": "3.1.0",
"tag": "@itwin/map-layers_v3.1.0",
"date": "Tue, 29 Mar 2022 20:53:47 GMT",
"comments": {
"none": [
{
"comment": "Add support for map layers using model geometry."
},
{
"comment": "User Preferences is now supported for Blank Connection configurations."
},
{
"comment": "Fixed issue that would close the new maplayer dialog when a new layer type was picked."
},
{
"comment": "Fix 'ResizeObserver loop limit exceeded' error in MapLayers widget"
},
{
"comment": "Added FeatureInfo Widget."
},
{
"comment": "Bug fix: Right click on the new map layer dialog would close it."
},
{
"comment": "Refactored MapLayersUI initialization, and will always use UiProviders"
},
{
"comment": "Fix style on select"
},
{
"comment": "Update to itwinui-css version \"0.44.0\"."
},
{
"comment": "Update to @itwin/itwinui-react: 1.32.0"
},
{
"comment": "Update to latest itwinui-react - requires new compile option allowSyntheticDefaultImports=true."
}
]
}
},
{
"version": "3.0.3",
"tag": "@itwin/map-layers_v3.0.3",
"date": "Fri, 25 Mar 2022 15:10:02 GMT",
"comments": {}
},
{
"version": "3.0.2",
"tag": "@itwin/map-layers_v3.0.2",
"date": "Thu, 10 Mar 2022 21:18:13 GMT",
"comments": {}
},
{
"version": "3.0.1",
"tag": "@itwin/map-layers_v3.0.1",
"date": "Thu, 24 Feb 2022 15:26:55 GMT",
"comments": {}
},
{
"version": "3.0.0",
"tag": "@itwin/map-layers_v3.0.0",
"date": "Mon, 24 Jan 2022 14:00:52 GMT",
"comments": {
"none": [
{
"comment": "Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package"
},
{
"comment": "Layers could not be added through MapLayers widget when UserPreferences was not set. Fix various issues related to user preferences."
},
{
"comment": "Fixed various CSS issues in map-layers widget after recent UI framework changes."
},
{
"comment": "No longer display username/password fields by default in the custom map layers dialog: If validation fails and reports authentication is needed, we then ask end-user for credentials."
},
{
"comment": "Use QuantityNumericInput for 'Elevation Offset' and 'Model Height' fields instead of hardcoded units."
},
{
"comment": "Migrated from Toggle to ToggleSwitch component in map-layers widget"
},
{
"comment": "rename contextId -> iTwinId"
},
{
"comment": "Unregister maplayers itemsProvider and widget control on terminate."
},
{
"comment": "Now use 'DisplayStyleState.backgroundMapBase' instead of 'DisplayStyleState.changeBaseMapProps' to update the mapImagery."
},
{
"comment": "use new @itwin package names"
},
{
"comment": "rename to @itwin/map-layers"
},
{
"comment": "remove ClientRequestContext and its subclasses"
},
{
"comment": "Replace usage of I18N with generic Localization interface."
},
{
"comment": " Renamed an iModel's parent container to iTwin"
},
{
"comment": "Ignore lint warning for deprecated class"
},
{
"comment": "Upgraded itwinui-react to 1.16.2. Fixed editor sizes."
},
{
"comment": "Update to latest itwinui-react"
},
{
"comment": "Incorporating iTwinUI-CSS and iTwinUI-React into iModel.js"
},
{
"comment": "Update to React 17."
},
{
"comment": "Created imodel-components folder & package and moved color, lineweight, navigationaids, quantity, timeline & viewport. Deprecated MessageSeverity in ui-core & added it ui-abstract. Added MessagePresenter interface to ui-abstract."
},
{
"comment": "Replace deprecated ThemedSelect component with iTwinUI-react Select component."
},
{
"comment": "Remove itwinUi css overrides."
},
{
"comment": "Replaced ui-core Slider with one from iTwinUi-react."
},
{
"comment": "Update to latest types/react package"
},
{
"comment": "Lock down and update version numbers so docs will build."
}
]
}
},
{
"version": "2.19.28",
"tag": "@itwin/map-layers_v2.19.28",
"date": "Wed, 12 Jan 2022 14:52:38 GMT",
"comments": {}
},
{
"version": "2.19.27",
"tag": "@itwin/map-layers_v2.19.27",
"date": "Wed, 05 Jan 2022 20:07:20 GMT",
"comments": {}
},
{
"version": "2.19.26",
"tag": "@itwin/map-layers_v2.19.26",
"date": "Wed, 08 Dec 2021 20:54:53 GMT",
"comments": {}
},
{
"version": "2.19.25",
"tag": "@itwin/map-layers_v2.19.25",
"date": "Fri, 03 Dec 2021 20:05:49 GMT",
"comments": {}
},
{
"version": "2.19.24",
"tag": "@itwin/map-layers_v2.19.24",
"date": "Mon, 29 Nov 2021 18:44:31 GMT",
"comments": {
"none": [
{
"comment": "Fixed UI spacing issues in map-layers widget."
}
]
}
},
{
"version": "2.19.23",
"tag": "@itwin/map-layers_v2.19.23",
"date": "Mon, 22 Nov 2021 20:41:40 GMT",
"comments": {}
},
{
"version": "2.19.22",
"tag": "@itwin/map-layers_v2.19.22",
"date": "Wed, 17 Nov 2021 01:23:26 GMT",
"comments": {}
},
{
"version": "2.19.21",
"tag": "@itwin/map-layers_v2.19.21",
"date": "Wed, 10 Nov 2021 10:58:24 GMT",
"comments": {}
},
{
"version": "2.19.20",
"tag": "@itwin/map-layers_v2.19.20",
"date": "Fri, 29 Oct 2021 16:14:22 GMT",
"comments": {
"none": [
{
"comment": "Added Mask transparency to map-layers widget."
}
]
}
},
{
"version": "2.19.19",
"tag": "@itwin/map-layers_v2.19.19",
"date": "Mon, 25 Oct 2021 16:16:25 GMT",
"comments": {
"none": [
{
"comment": "Drop unnecessary dep on @bentley/react-scripts"
}
]
}
},
{
"version": "2.19.18",
"tag": "@itwin/map-layers_v2.19.18",
"date": "Thu, 21 Oct 2021 20:59:44 GMT",
"comments": {}
},
{
"version": "2.19.17",
"tag": "@itwin/map-layers_v2.19.17",
"date": "Thu, 14 Oct 2021 21:19:43 GMT",
"comments": {}
},
{
"version": "2.19.16",
"tag": "@itwin/map-layers_v2.19.16",
"date": "Mon, 11 Oct 2021 17:37:46 GMT",
"comments": {}
},
{
"version": "2.19.15",
"tag": "@itwin/map-layers_v2.19.15",
"date": "Fri, 08 Oct 2021 16:44:23 GMT",
"comments": {}
},
{
"version": "2.19.14",
"tag": "@itwin/map-layers_v2.19.14",
"date": "Fri, 01 Oct 2021 13:07:03 GMT",
"comments": {}
},
{
"version": "2.19.13",
"tag": "@itwin/map-layers_v2.19.13",
"date": "Tue, 21 Sep 2021 21:06:40 GMT",
"comments": {}
},
{
"version": "2.19.12",
"tag": "@itwin/map-layers_v2.19.12",
"date": "Wed, 15 Sep 2021 18:06:46 GMT",
"comments": {}
},
{
"version": "2.19.11",
"tag": "@itwin/map-layers_v2.19.11",
"date": "Thu, 09 Sep 2021 21:04:58 GMT",
"comments": {}
},
{
"version": "2.19.10",
"tag": "@itwin/map-layers_v2.19.10",
"date": "Wed, 08 Sep 2021 14:36:01 GMT",
"comments": {}
},
{
"version": "2.19.9",
"tag": "@itwin/map-layers_v2.19.9",