@itwin/components-react 5.4.0 → 5.6.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +355 -13
  2. package/lib/components-react/UiComponents.js +1 -1
  3. package/lib/components-react/UiComponents.js.map +1 -1
  4. package/lib/components-react/common/DisposePolyfill.d.ts +5 -0
  5. package/lib/components-react/common/DisposePolyfill.d.ts.map +1 -0
  6. package/lib/components-react/common/DisposePolyfill.js +14 -0
  7. package/lib/components-react/common/DisposePolyfill.js.map +1 -0
  8. package/lib/components-react/common/ImageRenderer.js +1 -1
  9. package/lib/components-react/common/ImageRenderer.js.map +1 -1
  10. package/lib/components-react/converters/PointTypeConverter.d.ts.map +1 -1
  11. package/lib/components-react/converters/PointTypeConverter.js +1 -0
  12. package/lib/components-react/converters/PointTypeConverter.js.map +1 -1
  13. package/lib/components-react/filter-builder/FilterBuilderRule.d.ts.map +1 -1
  14. package/lib/components-react/filter-builder/FilterBuilderRule.js +2 -5
  15. package/lib/components-react/filter-builder/FilterBuilderRule.js.map +1 -1
  16. package/lib/components-react/filter-builder/FilterBuilderRuleValue.d.ts +6 -0
  17. package/lib/components-react/filter-builder/FilterBuilderRuleValue.d.ts.map +1 -1
  18. package/lib/components-react/filter-builder/FilterBuilderRuleValue.js +3 -2
  19. package/lib/components-react/filter-builder/FilterBuilderRuleValue.js.map +1 -1
  20. package/lib/components-react/new-editors/EditorRenderer.d.ts +9 -1
  21. package/lib/components-react/new-editors/EditorRenderer.d.ts.map +1 -1
  22. package/lib/components-react/new-editors/EditorRenderer.js +6 -3
  23. package/lib/components-react/new-editors/EditorRenderer.js.map +1 -1
  24. package/lib/components-react/new-editors/editors/NumericEditor.d.ts.map +1 -1
  25. package/lib/components-react/new-editors/editors/NumericEditor.js +9 -4
  26. package/lib/components-react/new-editors/editors/NumericEditor.js.map +1 -1
  27. package/lib/components-react/properties/renderers/PropertyGridColumns.d.ts.map +1 -1
  28. package/lib/components-react/properties/renderers/PropertyGridColumns.js +1 -1
  29. package/lib/components-react/properties/renderers/PropertyGridColumns.js.map +1 -1
  30. package/lib/components-react/propertygrid/component/VirtualizedPropertyGrid.d.ts +1 -1
  31. package/lib/components-react/propertygrid/component/VirtualizedPropertyGrid.js.map +1 -1
  32. package/lib/components-react/propertygrid/dataproviders/FilteringDataProvider.d.ts +6 -2
  33. package/lib/components-react/propertygrid/dataproviders/FilteringDataProvider.d.ts.map +1 -1
  34. package/lib/components-react/propertygrid/dataproviders/FilteringDataProvider.js +16 -1
  35. package/lib/components-react/propertygrid/dataproviders/FilteringDataProvider.js.map +1 -1
  36. package/lib/components-react/propertygrid/internal/flat-items/MutableFlatGridItem.d.ts.map +1 -1
  37. package/lib/components-react/propertygrid/internal/flat-items/MutableFlatGridItem.js +1 -1
  38. package/lib/components-react/propertygrid/internal/flat-items/MutableFlatGridItem.js.map +1 -1
  39. package/lib/components-react/propertygrid/internal/flat-items/MutableGridItemFactory.d.ts.map +1 -1
  40. package/lib/components-react/propertygrid/internal/flat-items/MutableGridItemFactory.js +1 -1
  41. package/lib/components-react/propertygrid/internal/flat-items/MutableGridItemFactory.js.map +1 -1
  42. package/lib/components-react/tree/controlled/TreeEventHandler.d.ts +8 -3
  43. package/lib/components-react/tree/controlled/TreeEventHandler.d.ts.map +1 -1
  44. package/lib/components-react/tree/controlled/TreeEventHandler.js +18 -2
  45. package/lib/components-react/tree/controlled/TreeEventHandler.js.map +1 -1
  46. package/package.json +16 -15
package/CHANGELOG.md CHANGED
@@ -1,8 +1,78 @@
1
1
  # Change Log - @itwin/components-react
2
2
 
3
- This log was last generated on Thu, 17 Apr 2025 09:55:41 GMT and should not be manually modified.
3
+ ## 5.6.0
4
+
5
+ ### Patch Changes
6
+
7
+ - a4b74f9: Fix potential infinite recursion in dispose methods of `TreeEventHandler` and `FilteringPropertyDataProvider` classes.
8
+ - @itwin/core-react@5.6.0
9
+
10
+ ## 5.5.0
11
+
12
+ ### Minor Changes
13
+
14
+ - c619667: Deprecated `dispose` method of `FilteringPropertyDataProvider` and `TreeEventHandler` classes which is defined in now deprecated `IDisposable` interface from `@itwin/core-bentley` package.
15
+
16
+ In version `5.2`, TypeScript [introduced](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-2.html#using-declarations-and-explicit-resource-management) `Disposable` type and `using` declarations (from the upcoming [Explicit Resource Management](https://github.com/tc39/proposal-explicit-resource-management) feature in ECMAScript).
17
+
18
+ Consumers should use `Symbol.dispose` instead, which is polyfilled by the AppUI package.
19
+
20
+ ```ts
21
+ // Before #1
22
+ const handler = new TreeEventHandler();
23
+ handler.dispose();
24
+
25
+ // Before #2 when using `using` utility from `@itwin/core-bentley`
26
+ using(new TreeEventHandler(), (handler) => {
27
+ // Do something with handler, it'll get disposed when the callback returns
28
+ });
29
+
30
+ // After
31
+ using handler = new TreeEventHandler();
32
+ // Do something with handler, it'll get disposed when it goes out of scope
33
+ ```
34
+
35
+ - c619667: Updated peer dependencies to support iTwin.js core v5 packages.
36
+ - a69108d: Added ability to opt in to using new editors system in `FilterBuilder` component. [#1288](https://github.com/iTwin/appui/pull/1288)
37
+
38
+ ```tsx
39
+ return (
40
+ <FilterBuilder
41
+ {...props}
42
+ ruleValueRenderer={React.useCallback(
43
+ (valueProps) => (
44
+ <PropertyFilterBuilderRuleValue {...valueProps} editorSystem="new" />
45
+ ),
46
+ []
47
+ )}
48
+ />
49
+ );
50
+ ```
51
+
52
+ Added ability to render status message in `EditorRenderer`.
53
+
54
+ ```tsx
55
+ return <EditorRenderer {...props} statusMessage="Negative status message" />;
56
+ ```
57
+
58
+ ```tsx
59
+ return (
60
+ <EditorRenderer
61
+ {...props}
62
+ statusMessage={
63
+ <StatusMessage status="positive">Custom status message</StatusMessage>
64
+ }
65
+ />
66
+ );
67
+ ```
68
+
69
+ ### Patch Changes
70
+
71
+ - Updated dependencies [c619667]
72
+ - @itwin/core-react@5.5.0
4
73
 
5
74
  ## 5.4.0
75
+
6
76
  Thu, 17 Apr 2025 09:55:41 GMT
7
77
 
8
78
  ### Updates
@@ -11,16 +81,19 @@ Thu, 17 Apr 2025 09:55:41 GMT
11
81
  - Added new system for rendering property value editor components.
12
82
 
13
83
  ## 5.3.1
84
+
14
85
  Thu, 20 Mar 2025 11:10:28 GMT
15
86
 
16
87
  _Version update only_
17
88
 
18
89
  ## 5.3.0
90
+
19
91
  Fri, 14 Mar 2025 17:37:48 GMT
20
92
 
21
93
  _Version update only_
22
94
 
23
95
  ## 5.2.0
96
+
24
97
  Thu, 27 Feb 2025 08:07:36 GMT
25
98
 
26
99
  ### Updates
@@ -28,6 +101,7 @@ Thu, 27 Feb 2025 08:07:36 GMT
28
101
  - Fix an issue which prevented tabbing through editor containers.
29
102
 
30
103
  ## 5.1.0
104
+
31
105
  Thu, 30 Jan 2025 09:15:23 GMT
32
106
 
33
107
  ### Updates
@@ -35,11 +109,13 @@ Thu, 30 Jan 2025 09:15:23 GMT
35
109
  - cSpell fixes
36
110
 
37
111
  ## 5.0.5
112
+
38
113
  Tue, 21 Jan 2025 11:38:58 GMT
39
114
 
40
115
  _Version update only_
41
116
 
42
117
  ## 5.0.4
118
+
43
119
  Fri, 17 Jan 2025 14:12:03 GMT
44
120
 
45
121
  ### Updates
@@ -47,11 +123,13 @@ Fri, 17 Jan 2025 14:12:03 GMT
47
123
  - Fixed `module 'lodash' does not provide an export named...` error when running in Node.js.
48
124
 
49
125
  ## 5.0.3
126
+
50
127
  Fri, 17 Jan 2025 11:42:02 GMT
51
128
 
52
129
  _Version update only_
53
130
 
54
131
  ## 5.0.2
132
+
55
133
  Thu, 16 Jan 2025 12:04:12 GMT
56
134
 
57
135
  ### Updates
@@ -59,11 +137,13 @@ Thu, 16 Jan 2025 12:04:12 GMT
59
137
  - Use import attributes for json imports.
60
138
 
61
139
  ## 5.0.1
140
+
62
141
  Wed, 15 Jan 2025 11:47:00 GMT
63
142
 
64
143
  _Version update only_
65
144
 
66
145
  ## 5.0.0
146
+
67
147
  Mon, 16 Dec 2024 11:43:27 GMT
68
148
 
69
149
  ### Updates
@@ -84,26 +164,31 @@ Mon, 16 Dec 2024 11:43:27 GMT
84
164
  - Replace buic variables with iTwinUI CSS variables.
85
165
 
86
166
  ## 4.17.6
167
+
87
168
  Wed, 20 Nov 2024 14:27:46 GMT
88
169
 
89
170
  _Version update only_
90
171
 
91
172
  ## 4.17.5
173
+
92
174
  Thu, 14 Nov 2024 08:22:04 GMT
93
175
 
94
176
  _Version update only_
95
177
 
96
178
  ## 4.17.4
179
+
97
180
  Fri, 08 Nov 2024 14:41:23 GMT
98
181
 
99
182
  _Version update only_
100
183
 
101
184
  ## 4.17.3
185
+
102
186
  Wed, 06 Nov 2024 09:04:20 GMT
103
187
 
104
188
  _Version update only_
105
189
 
106
190
  ## 4.17.2
191
+
107
192
  Wed, 30 Oct 2024 14:46:15 GMT
108
193
 
109
194
  ### Updates
@@ -111,6 +196,7 @@ Wed, 30 Oct 2024 14:46:15 GMT
111
196
  - Fixed `pw:` links handling in property grid.
112
197
 
113
198
  ## 4.17.1
199
+
114
200
  Wed, 09 Oct 2024 10:50:47 GMT
115
201
 
116
202
  ### Updates
@@ -118,6 +204,7 @@ Wed, 09 Oct 2024 10:50:47 GMT
118
204
  - Update FilterBuilder UI according to UX team's new specs
119
205
 
120
206
  ## 4.17.0
207
+
121
208
  Thu, 19 Sep 2024 12:50:53 GMT
122
209
 
123
210
  ### Updates
@@ -126,31 +213,37 @@ Thu, 19 Sep 2024 12:50:53 GMT
126
213
  - Add support for allowing last rule to be deleted in FilterBuilder
127
214
 
128
215
  ## 4.16.5
216
+
129
217
  Tue, 10 Sep 2024 16:40:46 GMT
130
218
 
131
219
  _Version update only_
132
220
 
133
221
  ## 4.16.4
222
+
134
223
  Wed, 04 Sep 2024 08:10:19 GMT
135
224
 
136
225
  _Version update only_
137
226
 
138
227
  ## 4.16.3
228
+
139
229
  Tue, 03 Sep 2024 14:32:22 GMT
140
230
 
141
231
  _Version update only_
142
232
 
143
233
  ## 4.16.2
234
+
144
235
  Wed, 28 Aug 2024 06:32:12 GMT
145
236
 
146
237
  _Version update only_
147
238
 
148
239
  ## 4.16.1
240
+
149
241
  Fri, 16 Aug 2024 08:18:14 GMT
150
242
 
151
243
  _Version update only_
152
244
 
153
245
  ## 4.16.0
246
+
154
247
  Wed, 07 Aug 2024 12:38:32 GMT
155
248
 
156
249
  ### Updates
@@ -165,49 +258,58 @@ Wed, 07 Aug 2024 12:38:32 GMT
165
258
  - Updated `VirtualizedPropertyGrid` to automatically close property editors when data changes.
166
259
 
167
260
  ## 4.15.5
261
+
168
262
  Wed, 24 Jul 2024 16:09:26 GMT
169
263
 
170
264
  _Version update only_
171
265
 
172
266
  ## 4.15.4
267
+
173
268
  Mon, 22 Jul 2024 21:27:52 GMT
174
269
 
175
270
  _Version update only_
176
271
 
177
272
  ## 4.15.3
273
+
178
274
  Mon, 15 Jul 2024 12:12:00 GMT
179
275
 
180
276
  _Version update only_
181
277
 
182
278
  ## 4.15.2
279
+
183
280
  Wed, 10 Jul 2024 11:54:56 GMT
184
281
 
185
282
  _Version update only_
186
283
 
187
284
  ## 4.15.1
285
+
188
286
  Tue, 09 Jul 2024 09:23:12 GMT
189
287
 
190
288
  _Version update only_
191
289
 
192
290
  ## 4.15.0
291
+
193
292
  Fri, 28 Jun 2024 09:09:37 GMT
194
293
 
195
294
  ### Updates
196
295
 
197
- - `PropertyFilterBuilder`: Allow adding custom item for PropertyFilterBuilderActions
296
+ - `PropertyFilterBuilder`: Allow adding custom item for PropertyFilterBuilderActions
198
297
  - Portal editors to the same container used to portal other components.
199
298
 
200
299
  ## 4.14.2
300
+
201
301
  Mon, 22 Jul 2024 21:23:09 GMT
202
302
 
203
303
  _Version update only_
204
304
 
205
305
  ## 4.14.1
306
+
206
307
  Tue, 11 Jun 2024 15:58:29 GMT
207
308
 
208
309
  _Version update only_
209
310
 
210
311
  ## 4.14.0
312
+
211
313
  Thu, 06 Jun 2024 08:24:21 GMT
212
314
 
213
315
  ### Updates
@@ -217,11 +319,13 @@ Thu, 06 Jun 2024 08:24:21 GMT
217
319
  - Update PropertyGrid to allow browser context menu and user selection.
218
320
 
219
321
  ## 4.13.4
322
+
220
323
  Tue, 21 May 2024 08:21:34 GMT
221
324
 
222
325
  _Version update only_
223
326
 
224
327
  ## 4.13.3
328
+
225
329
  Fri, 17 May 2024 09:43:31 GMT
226
330
 
227
331
  ### Updates
@@ -229,11 +333,13 @@ Fri, 17 May 2024 09:43:31 GMT
229
333
  - upgrade to TypeScript@5.3.3 and @itwin/build-tools@4.6.x
230
334
 
231
335
  ## 4.13.2
336
+
232
337
  Wed, 08 May 2024 08:24:46 GMT
233
338
 
234
339
  _Version update only_
235
340
 
236
341
  ## 4.13.1
342
+
237
343
  Tue, 07 May 2024 15:01:46 GMT
238
344
 
239
345
  ### Updates
@@ -241,6 +347,7 @@ Tue, 07 May 2024 15:01:46 GMT
241
347
  - Fixed `VirtualizedPropertyGrid` not rendering primitive property display value and instead always trying to convert raw value into string.
242
348
 
243
349
  ## 4.13.0
350
+
244
351
  Tue, 07 May 2024 08:44:06 GMT
245
352
 
246
353
  ### Updates
@@ -251,6 +358,7 @@ Tue, 07 May 2024 08:44:06 GMT
251
358
  - Fixed spacing between categories in `VirtualizedPropertyGrid`.
252
359
 
253
360
  ## 4.12.0
361
+
254
362
  Fri, 05 Apr 2024 09:55:35 GMT
255
363
 
256
364
  ### Updates
@@ -258,6 +366,7 @@ Fri, 05 Apr 2024 09:55:35 GMT
258
366
  - Added note to `PropertyFilterRuleOperator` that `Like` operator should be handled as a contains operator.
259
367
 
260
368
  ## 4.11.0
369
+
261
370
  Thu, 21 Mar 2024 16:38:04 GMT
262
371
 
263
372
  ### Patches
@@ -271,6 +380,7 @@ Thu, 21 Mar 2024 16:38:04 GMT
271
380
  - Removed memoization for translated strings in components.
272
381
 
273
382
  ## 4.10.0
383
+
274
384
  Mon, 26 Feb 2024 15:50:45 GMT
275
385
 
276
386
  ### Updates
@@ -279,6 +389,7 @@ Mon, 26 Feb 2024 15:50:45 GMT
279
389
  - Use iTwinUI 3.x.
280
390
 
281
391
  ## 4.9.0
392
+
282
393
  Tue, 06 Feb 2024 08:56:40 GMT
283
394
 
284
395
  ### Patches
@@ -293,21 +404,25 @@ Tue, 06 Feb 2024 08:56:40 GMT
293
404
  - Polish UI for FilterBuilder
294
405
 
295
406
  ## 4.8.3
407
+
296
408
  Tue, 30 Jan 2024 09:04:27 GMT
297
409
 
298
410
  _Version update only_
299
411
 
300
412
  ## 4.8.2
413
+
301
414
  Wed, 24 Jan 2024 12:37:03 GMT
302
415
 
303
416
  _Version update only_
304
417
 
305
418
  ## 4.8.1
419
+
306
420
  Thu, 11 Jan 2024 13:05:42 GMT
307
421
 
308
422
  _Version update only_
309
423
 
310
424
  ## 4.8.0
425
+
311
426
  Thu, 21 Dec 2023 14:08:42 GMT
312
427
 
313
428
  ### Patches
@@ -316,11 +431,13 @@ Thu, 21 Dec 2023 14:08:42 GMT
316
431
  - Ensure correct initial property orientation in `PropertyGrid`
317
432
 
318
433
  ## 4.7.2
434
+
319
435
  Wed, 20 Dec 2023 23:11:37 GMT
320
436
 
321
437
  _Version update only_
322
438
 
323
439
  ## 4.7.1
440
+
324
441
  Thu, 07 Dec 2023 19:40:17 GMT
325
442
 
326
443
  ### Minor changes
@@ -332,6 +449,7 @@ Thu, 07 Dec 2023 19:40:17 GMT
332
449
  - Set filterText to lowercase in constructors of filterers.
333
450
 
334
451
  ## 4.7.0
452
+
335
453
  Fri, 01 Dec 2023 20:01:16 GMT
336
454
 
337
455
  ### Minor changes
@@ -348,21 +466,25 @@ Fri, 01 Dec 2023 20:01:16 GMT
348
466
  - Fixed `useAsyncValue` hook to work in React 18 strict mode.
349
467
 
350
468
  ## 4.6.3
469
+
351
470
  Wed, 25 Oct 2023 09:39:22 GMT
352
471
 
353
472
  _Version update only_
354
473
 
355
474
  ## 4.6.2
475
+
356
476
  Tue, 17 Oct 2023 19:16:23 GMT
357
477
 
358
478
  _Version update only_
359
479
 
360
480
  ## 4.6.1
481
+
361
482
  Thu, 12 Oct 2023 16:59:20 GMT
362
483
 
363
484
  _Version update only_
364
485
 
365
486
  ## 4.6.0
487
+
366
488
  Wed, 04 Oct 2023 18:05:34 GMT
367
489
 
368
490
  ### Updates
@@ -370,11 +492,13 @@ Wed, 04 Oct 2023 18:05:34 GMT
370
492
  - Fix `useTreeModel` missing tree model changes that happen after render until `useTreeModel` subscribes to `TreeModelSource.onModelChanged` event.
371
493
 
372
494
  ## 4.5.1
495
+
373
496
  Fri, 08 Sep 2023 16:10:53 GMT
374
497
 
375
498
  _Version update only_
376
499
 
377
500
  ## 4.5.0
501
+
378
502
  Wed, 06 Sep 2023 17:29:22 GMT
379
503
 
380
504
  ### Updates
@@ -387,6 +511,7 @@ Wed, 06 Sep 2023 17:29:22 GMT
387
511
  - `ControlledTree`: Fixed range selection over nodes that are not loaded causing browser to hang.
388
512
 
389
513
  ## 4.4.0
514
+
390
515
  Tue, 15 Aug 2023 18:02:09 GMT
391
516
 
392
517
  ### Updates
@@ -397,6 +522,7 @@ Tue, 15 Aug 2023 18:02:09 GMT
397
522
  - Promote `PropertyFilterBuilderRuleOperatorProps`, `PropertyFilterBuilderRuleValueProps`, `PropertyFilterBuilderRuleValue` to beta, create interface `PropertyFilterBuilderRuleValueRendererProps` which extends `PropertyFilterBuilderRuleValueProps`, pass `PropertyFilterRuleOperator` to custom `PropertyFilterBuilderRuleValue` renderer.
398
523
 
399
524
  ## 4.3.0
525
+
400
526
  Mon, 17 Jul 2023 10:16:20 GMT
401
527
 
402
528
  ### Updates
@@ -405,6 +531,7 @@ Mon, 17 Jul 2023 10:16:20 GMT
405
531
  - Added `useControlledTreeLayoutStorage` and `useVirtualizedPropertyGridLayoutStorage` hooks
406
532
 
407
533
  ## 4.2.0
534
+
408
535
  Tue, 27 Jun 2023 14:50:22 GMT
409
536
 
410
537
  ### Updates
@@ -420,6 +547,7 @@ Tue, 27 Jun 2023 14:50:22 GMT
420
547
  - Update `@itwin/itwinui-react` version to 2.11.6.
421
548
 
422
549
  ## 4.1.0
550
+
423
551
  Mon, 29 May 2023 14:05:04 GMT
424
552
 
425
553
  ### Updates
@@ -428,11 +556,13 @@ Mon, 29 May 2023 14:05:04 GMT
428
556
  - Fix tree flickering without keeping the horizontal scrollbar
429
557
 
430
558
  ## 4.0.1
559
+
431
560
  Fri, 19 May 2023 12:24:31 GMT
432
561
 
433
562
  _Version update only_
434
563
 
435
564
  ## 4.0.0
565
+
436
566
  Mon, 01 May 2023 13:32:16 GMT
437
567
 
438
568
  ### Updates
@@ -458,16 +588,19 @@ Mon, 01 May 2023 13:32:16 GMT
458
588
  - Remove webfont icons from components.
459
589
 
460
590
  ## 3.7.2
591
+
461
592
  Wed, 12 Apr 2023 13:12:42 GMT
462
593
 
463
594
  _Version update only_
464
595
 
465
596
  ## 3.7.1
597
+
466
598
  Mon, 03 Apr 2023 15:15:36 GMT
467
599
 
468
600
  _Version update only_
469
601
 
470
602
  ## 3.7.0
603
+
471
604
  Wed, 29 Mar 2023 15:02:27 GMT
472
605
 
473
606
  ### Updates
@@ -475,16 +608,19 @@ Wed, 29 Mar 2023 15:02:27 GMT
475
608
  - Update @deprecated comments.
476
609
 
477
610
  ## 3.6.3
611
+
478
612
  Mon, 27 Mar 2023 16:26:47 GMT
479
613
 
480
614
  _Version update only_
481
615
 
482
616
  ## 3.6.2
617
+
483
618
  Fri, 17 Mar 2023 17:52:32 GMT
484
619
 
485
620
  _Version update only_
486
621
 
487
622
  ## 3.6.1
623
+
488
624
  Fri, 24 Feb 2023 22:00:48 GMT
489
625
 
490
626
  ### Updates
@@ -492,6 +628,7 @@ Fri, 24 Feb 2023 22:00:48 GMT
492
628
  - Update `@itwin/itwinui-icons-react` dependency to version `^1.15`
493
629
 
494
630
  ## 3.6.0
631
+
495
632
  Wed, 08 Feb 2023 14:58:39 GMT
496
633
 
497
634
  ### Updates
@@ -505,36 +642,43 @@ Wed, 08 Feb 2023 14:58:39 GMT
505
642
  - Fixed 'FilteringInput' placeholder text localization
506
643
 
507
644
  ## 3.5.6
645
+
508
646
  Fri, 24 Feb 2023 16:02:47 GMT
509
647
 
510
648
  _Version update only_
511
649
 
512
650
  ## 3.5.5
651
+
513
652
  Thu, 26 Jan 2023 22:53:27 GMT
514
653
 
515
654
  _Version update only_
516
655
 
517
656
  ## 3.5.4
657
+
518
658
  Wed, 18 Jan 2023 15:27:15 GMT
519
659
 
520
660
  _Version update only_
521
661
 
522
662
  ## 3.5.3
663
+
523
664
  Fri, 13 Jan 2023 17:23:07 GMT
524
665
 
525
666
  _Version update only_
526
667
 
527
668
  ## 3.5.2
669
+
528
670
  Wed, 11 Jan 2023 16:46:30 GMT
529
671
 
530
672
  _Version update only_
531
673
 
532
674
  ## 3.5.1
675
+
533
676
  Thu, 15 Dec 2022 16:38:28 GMT
534
677
 
535
678
  _Version update only_
536
679
 
537
680
  ## 3.5.0
681
+
538
682
  Wed, 07 Dec 2022 19:12:36 GMT
539
683
 
540
684
  ### Updates
@@ -547,41 +691,49 @@ Wed, 07 Dec 2022 19:12:36 GMT
547
691
  - Use --buic-toolbar-opacity to set the opacity of toolbar items.
548
692
 
549
693
  ## 3.4.7
694
+
550
695
  Wed, 30 Nov 2022 14:28:19 GMT
551
696
 
552
697
  _Version update only_
553
698
 
554
699
  ## 3.4.6
700
+
555
701
  Tue, 22 Nov 2022 14:24:19 GMT
556
702
 
557
703
  _Version update only_
558
704
 
559
705
  ## 3.4.5
706
+
560
707
  Thu, 17 Nov 2022 21:32:50 GMT
561
708
 
562
709
  _Version update only_
563
710
 
564
711
  ## 3.4.4
712
+
565
713
  Thu, 10 Nov 2022 19:32:17 GMT
566
714
 
567
715
  _Version update only_
568
716
 
569
717
  ## 3.4.3
718
+
570
719
  Fri, 28 Oct 2022 13:34:57 GMT
571
720
 
572
721
  _Version update only_
573
722
 
574
723
  ## 3.4.2
724
+
575
725
  Mon, 24 Oct 2022 13:23:45 GMT
576
726
 
577
727
  _Version update only_
578
728
 
579
729
  ## 3.4.1
730
+
580
731
  Mon, 17 Oct 2022 20:06:51 GMT
581
732
 
582
733
  _Version update only_
583
734
 
584
735
  ## 3.4.0
736
+
585
737
  Thu, 13 Oct 2022 20:24:47 GMT
586
738
 
587
739
  ### Updates
@@ -593,26 +745,31 @@ Thu, 13 Oct 2022 20:24:47 GMT
593
745
  - `MutableTreeModel`: Accept initial `TreeModel` in the constructor.
594
746
 
595
747
  ## 3.3.5
748
+
596
749
  Tue, 27 Sep 2022 11:50:59 GMT
597
750
 
598
751
  _Version update only_
599
752
 
600
753
  ## 3.3.4
754
+
601
755
  Thu, 08 Sep 2022 19:00:04 GMT
602
756
 
603
757
  _Version update only_
604
758
 
605
759
  ## 3.3.3
760
+
606
761
  Tue, 06 Sep 2022 20:54:19 GMT
607
762
 
608
763
  _Version update only_
609
764
 
610
765
  ## 3.3.2
766
+
611
767
  Thu, 01 Sep 2022 14:37:22 GMT
612
768
 
613
769
  _Version update only_
614
770
 
615
771
  ## 3.3.1
772
+
616
773
  Fri, 26 Aug 2022 15:40:02 GMT
617
774
 
618
775
  ### Updates
@@ -620,6 +777,7 @@ Fri, 26 Aug 2022 15:40:02 GMT
620
777
  - Updated desktop toolbar width and height to 40px
621
778
 
622
779
  ## 3.3.0
780
+
623
781
  Thu, 18 Aug 2022 19:08:02 GMT
624
782
 
625
783
  ### Updates
@@ -635,41 +793,49 @@ Thu, 18 Aug 2022 19:08:02 GMT
635
793
  - Update iTwinUI-react to 1.38.1
636
794
 
637
795
  ## 3.2.9
796
+
638
797
  Fri, 26 Aug 2022 14:21:40 GMT
639
798
 
640
799
  _Version update only_
641
800
 
642
801
  ## 3.2.8
802
+
643
803
  Tue, 09 Aug 2022 15:52:41 GMT
644
804
 
645
805
  _Version update only_
646
806
 
647
807
  ## 3.2.7
808
+
648
809
  Mon, 01 Aug 2022 13:36:56 GMT
649
810
 
650
811
  _Version update only_
651
812
 
652
813
  ## 3.2.6
814
+
653
815
  Fri, 15 Jul 2022 19:04:43 GMT
654
816
 
655
817
  _Version update only_
656
818
 
657
819
  ## 3.2.5
820
+
658
821
  Wed, 13 Jul 2022 15:45:52 GMT
659
822
 
660
823
  _Version update only_
661
824
 
662
825
  ## 3.2.4
826
+
663
827
  Tue, 21 Jun 2022 18:06:33 GMT
664
828
 
665
829
  _Version update only_
666
830
 
667
831
  ## 3.2.3
832
+
668
833
  Fri, 17 Jun 2022 15:18:39 GMT
669
834
 
670
835
  _Version update only_
671
836
 
672
837
  ## 3.2.2
838
+
673
839
  Fri, 10 Jun 2022 16:11:36 GMT
674
840
 
675
841
  ### Updates
@@ -677,11 +843,13 @@ Fri, 10 Jun 2022 16:11:36 GMT
677
843
  - Fix `useTreeModel` returning stale model for the given model source
678
844
 
679
845
  ## 3.2.1
846
+
680
847
  Tue, 07 Jun 2022 15:02:56 GMT
681
848
 
682
849
  _Version update only_
683
850
 
684
851
  ## 3.2.0
852
+
685
853
  Fri, 20 May 2022 13:10:54 GMT
686
854
 
687
855
  ### Updates
@@ -690,21 +858,25 @@ Fri, 20 May 2022 13:10:54 GMT
690
858
  - Update UI to new UX design to allow only 2 sections of widgets per panel.
691
859
 
692
860
  ## 3.1.3
861
+
693
862
  Fri, 15 Apr 2022 13:49:25 GMT
694
863
 
695
864
  _Version update only_
696
865
 
697
866
  ## 3.1.2
867
+
698
868
  Wed, 06 Apr 2022 22:27:56 GMT
699
869
 
700
870
  _Version update only_
701
871
 
702
872
  ## 3.1.1
873
+
703
874
  Thu, 31 Mar 2022 15:55:48 GMT
704
875
 
705
876
  _Version update only_
706
877
 
707
878
  ## 3.1.0
879
+
708
880
  Tue, 29 Mar 2022 20:53:47 GMT
709
881
 
710
882
  ### Updates
@@ -715,16 +887,19 @@ Tue, 29 Mar 2022 20:53:47 GMT
715
887
  - Update to latest itwinui-react.
716
888
 
717
889
  ## 3.0.3
890
+
718
891
  Fri, 25 Mar 2022 15:10:01 GMT
719
892
 
720
893
  _Version update only_
721
894
 
722
895
  ## 3.0.2
896
+
723
897
  Thu, 10 Mar 2022 21:18:13 GMT
724
898
 
725
899
  _Version update only_
726
900
 
727
901
  ## 3.0.1
902
+
728
903
  Thu, 24 Feb 2022 15:26:55 GMT
729
904
 
730
905
  ### Updates
@@ -732,6 +907,7 @@ Thu, 24 Feb 2022 15:26:55 GMT
732
907
  - Use ToolbarAutoHidePopupContext to monitor widgets' autoHidden state.
733
908
 
734
909
  ## 3.0.0
910
+
735
911
  Mon, 24 Jan 2022 14:00:52 GMT
736
912
 
737
913
  ### Updates
@@ -757,7 +933,7 @@ Mon, 24 Jan 2022 14:00:52 GMT
757
933
  - Clean up deprecated FilteringInput and PropertyGrid props
758
934
  - Make `width` and `height` props required for `VirtualizedPropertyGrid` and `VirtualizedPropertyGridWithDataProvider`
759
935
  - Update CustomNumberEditor resetting of bad values.
760
- - update immer to fix security warning
936
+ - update immer to fix security warning
761
937
  - Deprecated Breadcrumb component
762
938
  - Deprecate and promote apis
763
939
  - Deprecate Table component.
@@ -782,87 +958,103 @@ Mon, 24 Jan 2022 14:00:52 GMT
782
958
  - Remove react 16 peer dependency.
783
959
  - Remove itwinUi css overrides.
784
960
  - UiFramework and UiIModelComponent initialize method no longer take localization argument, uses IModelApp.localization internally.
785
- - Replaced ui-core Slider with one from iTwinUi-react.
961
+ - Replaced ui-core Slider with one from iTwinUi-react.
786
962
  - Update to latest types/react package
787
963
  - Skip test causing CI job failures
788
964
  - Lock down and update version numbers so docs will build.
789
965
 
790
966
  ## 2.19.28
967
+
791
968
  Wed, 12 Jan 2022 14:52:38 GMT
792
969
 
793
970
  _Version update only_
794
971
 
795
972
  ## 2.19.27
973
+
796
974
  Wed, 05 Jan 2022 20:07:20 GMT
797
975
 
798
976
  _Version update only_
799
977
 
800
978
  ## 2.19.26
979
+
801
980
  Wed, 08 Dec 2021 20:54:53 GMT
802
981
 
803
982
  _Version update only_
804
983
 
805
984
  ## 2.19.25
985
+
806
986
  Fri, 03 Dec 2021 20:05:49 GMT
807
987
 
808
988
  _Version update only_
809
989
 
810
990
  ## 2.19.24
991
+
811
992
  Mon, 29 Nov 2021 18:44:31 GMT
812
993
 
813
994
  _Version update only_
814
995
 
815
996
  ## 2.19.23
997
+
816
998
  Mon, 22 Nov 2021 20:41:40 GMT
817
999
 
818
1000
  _Version update only_
819
1001
 
820
1002
  ## 2.19.22
1003
+
821
1004
  Wed, 17 Nov 2021 01:23:26 GMT
822
1005
 
823
1006
  _Version update only_
824
1007
 
825
1008
  ## 2.19.21
1009
+
826
1010
  Wed, 10 Nov 2021 10:58:24 GMT
827
1011
 
828
1012
  _Version update only_
829
1013
 
830
1014
  ## 2.19.20
1015
+
831
1016
  Fri, 29 Oct 2021 16:14:22 GMT
832
1017
 
833
1018
  _Version update only_
834
1019
 
835
1020
  ## 2.19.19
1021
+
836
1022
  Mon, 25 Oct 2021 16:16:25 GMT
837
1023
 
838
1024
  _Version update only_
839
1025
 
840
1026
  ## 2.19.18
1027
+
841
1028
  Thu, 21 Oct 2021 20:59:44 GMT
842
1029
 
843
1030
  _Version update only_
844
1031
 
845
1032
  ## 2.19.17
1033
+
846
1034
  Thu, 14 Oct 2021 21:19:43 GMT
847
1035
 
848
1036
  _Version update only_
849
1037
 
850
1038
  ## 2.19.16
1039
+
851
1040
  Mon, 11 Oct 2021 17:37:46 GMT
852
1041
 
853
1042
  _Version update only_
854
1043
 
855
1044
  ## 2.19.15
1045
+
856
1046
  Fri, 08 Oct 2021 16:44:23 GMT
857
1047
 
858
1048
  _Version update only_
859
1049
 
860
1050
  ## 2.19.14
1051
+
861
1052
  Fri, 01 Oct 2021 13:07:03 GMT
862
1053
 
863
1054
  _Version update only_
864
1055
 
865
1056
  ## 2.19.13
1057
+
866
1058
  Tue, 21 Sep 2021 21:06:40 GMT
867
1059
 
868
1060
  ### Updates
@@ -870,6 +1062,7 @@ Tue, 21 Sep 2021 21:06:40 GMT
870
1062
  - 'PropertyValueRendererManager': use merged MergedPropertyValueRenderer before looking for typename specific renderer if property is merged.
871
1063
 
872
1064
  ## 2.19.12
1065
+
873
1066
  Wed, 15 Sep 2021 18:06:47 GMT
874
1067
 
875
1068
  ### Updates
@@ -877,56 +1070,67 @@ Wed, 15 Sep 2021 18:06:47 GMT
877
1070
  - `TreeRenderer`: Fix last call to `scrollToNode` being repeated on each render.
878
1071
 
879
1072
  ## 2.19.11
1073
+
880
1074
  Thu, 09 Sep 2021 21:04:58 GMT
881
1075
 
882
1076
  _Version update only_
883
1077
 
884
1078
  ## 2.19.10
1079
+
885
1080
  Wed, 08 Sep 2021 14:36:01 GMT
886
1081
 
887
1082
  _Version update only_
888
1083
 
889
1084
  ## 2.19.9
1085
+
890
1086
  Wed, 25 Aug 2021 15:36:01 GMT
891
1087
 
892
1088
  _Version update only_
893
1089
 
894
1090
  ## 2.19.8
1091
+
895
1092
  Mon, 23 Aug 2021 13:23:13 GMT
896
1093
 
897
1094
  _Version update only_
898
1095
 
899
1096
  ## 2.19.7
1097
+
900
1098
  Fri, 20 Aug 2021 17:47:22 GMT
901
1099
 
902
1100
  _Version update only_
903
1101
 
904
1102
  ## 2.19.6
1103
+
905
1104
  Tue, 17 Aug 2021 20:34:29 GMT
906
1105
 
907
1106
  _Version update only_
908
1107
 
909
1108
  ## 2.19.5
1109
+
910
1110
  Fri, 13 Aug 2021 21:48:09 GMT
911
1111
 
912
1112
  _Version update only_
913
1113
 
914
1114
  ## 2.19.4
1115
+
915
1116
  Thu, 12 Aug 2021 13:09:26 GMT
916
1117
 
917
1118
  _Version update only_
918
1119
 
919
1120
  ## 2.19.3
1121
+
920
1122
  Wed, 04 Aug 2021 20:29:34 GMT
921
1123
 
922
1124
  _Version update only_
923
1125
 
924
1126
  ## 2.19.2
1127
+
925
1128
  Tue, 03 Aug 2021 18:26:23 GMT
926
1129
 
927
1130
  _Version update only_
928
1131
 
929
1132
  ## 2.19.1
1133
+
930
1134
  Thu, 29 Jul 2021 20:01:11 GMT
931
1135
 
932
1136
  ### Updates
@@ -934,6 +1138,7 @@ Thu, 29 Jul 2021 20:01:11 GMT
934
1138
  - `ControlledTree`: Fix tree background not being rendered.
935
1139
 
936
1140
  ## 2.19.0
1141
+
937
1142
  Mon, 26 Jul 2021 12:21:25 GMT
938
1143
 
939
1144
  ### Updates
@@ -946,11 +1151,13 @@ Mon, 26 Jul 2021 12:21:25 GMT
946
1151
  - Add option prop to set time zone offset for date and time display in the TimelineComponent.
947
1152
 
948
1153
  ## 2.18.4
1154
+
949
1155
  Tue, 10 Aug 2021 19:35:13 GMT
950
1156
 
951
1157
  _Version update only_
952
1158
 
953
1159
  ## 2.18.3
1160
+
954
1161
  Wed, 28 Jul 2021 17:16:30 GMT
955
1162
 
956
1163
  ### Updates
@@ -958,6 +1165,7 @@ Wed, 28 Jul 2021 17:16:30 GMT
958
1165
  - Fixed scrolling in Table component
959
1166
 
960
1167
  ## 2.18.2
1168
+
961
1169
  Mon, 26 Jul 2021 16:18:31 GMT
962
1170
 
963
1171
  ### Updates
@@ -966,11 +1174,13 @@ Mon, 26 Jul 2021 16:18:31 GMT
966
1174
  - Workaround for react-data-grid blank grid after scroll and update
967
1175
 
968
1176
  ## 2.18.1
1177
+
969
1178
  Fri, 16 Jul 2021 17:45:09 GMT
970
1179
 
971
1180
  _Version update only_
972
1181
 
973
1182
  ## 2.18.0
1183
+
974
1184
  Fri, 09 Jul 2021 18:11:24 GMT
975
1185
 
976
1186
  ### Updates
@@ -984,6 +1194,7 @@ Fri, 09 Jul 2021 18:11:24 GMT
984
1194
  - Add props to the TimelineComponent that will allow apps to pass a set of items to be prefixed, appended, or to replace the context menu entries.
985
1195
 
986
1196
  ## 2.17.3
1197
+
987
1198
  Mon, 26 Jul 2021 16:08:36 GMT
988
1199
 
989
1200
  ### Updates
@@ -991,16 +1202,19 @@ Mon, 26 Jul 2021 16:08:36 GMT
991
1202
  - Workaround for react-data-grid blank grid after scroll and update
992
1203
 
993
1204
  ## 2.17.2
1205
+
994
1206
  Thu, 08 Jul 2021 15:23:00 GMT
995
1207
 
996
1208
  _Version update only_
997
1209
 
998
1210
  ## 2.17.1
1211
+
999
1212
  Fri, 02 Jul 2021 15:38:31 GMT
1000
1213
 
1001
1214
  _Version update only_
1002
1215
 
1003
1216
  ## 2.17.0
1217
+
1004
1218
  Mon, 28 Jun 2021 16:20:11 GMT
1005
1219
 
1006
1220
  ### Updates
@@ -1018,6 +1232,7 @@ Mon, 28 Jun 2021 16:20:11 GMT
1018
1232
  - `VirtualizedPropertyGridWithDataProvider`: Fix loading animation overflowing its parent container.
1019
1233
 
1020
1234
  ## 2.16.10
1235
+
1021
1236
  Thu, 22 Jul 2021 20:23:45 GMT
1022
1237
 
1023
1238
  ### Updates
@@ -1025,51 +1240,61 @@ Thu, 22 Jul 2021 20:23:45 GMT
1025
1240
  - Workaround for react-data-grid blank grid after scroll and update
1026
1241
 
1027
1242
  ## 2.16.9
1243
+
1028
1244
  Tue, 06 Jul 2021 22:08:34 GMT
1029
1245
 
1030
1246
  _Version update only_
1031
1247
 
1032
1248
  ## 2.16.8
1249
+
1033
1250
  Fri, 02 Jul 2021 17:40:46 GMT
1034
1251
 
1035
1252
  _Version update only_
1036
1253
 
1037
1254
  ## 2.16.7
1255
+
1038
1256
  Mon, 28 Jun 2021 18:13:04 GMT
1039
1257
 
1040
1258
  _Version update only_
1041
1259
 
1042
1260
  ## 2.16.6
1261
+
1043
1262
  Mon, 28 Jun 2021 13:12:55 GMT
1044
1263
 
1045
1264
  _Version update only_
1046
1265
 
1047
1266
  ## 2.16.5
1267
+
1048
1268
  Fri, 25 Jun 2021 16:03:01 GMT
1049
1269
 
1050
1270
  _Version update only_
1051
1271
 
1052
1272
  ## 2.16.4
1273
+
1053
1274
  Wed, 23 Jun 2021 17:09:07 GMT
1054
1275
 
1055
1276
  _Version update only_
1056
1277
 
1057
1278
  ## 2.16.3
1279
+
1058
1280
  Wed, 16 Jun 2021 20:29:32 GMT
1059
1281
 
1060
1282
  _Version update only_
1061
1283
 
1062
1284
  ## 2.16.2
1285
+
1063
1286
  Thu, 03 Jun 2021 18:08:11 GMT
1064
1287
 
1065
1288
  _Version update only_
1066
1289
 
1067
1290
  ## 2.16.1
1291
+
1068
1292
  Thu, 27 May 2021 20:04:22 GMT
1069
1293
 
1070
1294
  _Version update only_
1071
1295
 
1072
1296
  ## 2.16.0
1297
+
1073
1298
  Mon, 24 May 2021 15:58:39 GMT
1074
1299
 
1075
1300
  ### Updates
@@ -1080,14 +1305,16 @@ Mon, 24 May 2021 15:58:39 GMT
1080
1305
  - Improved Multi-Value column filtering in the Table component
1081
1306
  - Move `VirtualizedPropertyGrid` related types from @alpha to @beta.
1082
1307
  - Fixed getting distinct values when Table rows are updated
1083
- - Update to latest classnames package
1308
+ - Update to latest classnames package
1084
1309
 
1085
1310
  ## 2.15.6
1311
+
1086
1312
  Wed, 26 May 2021 15:55:19 GMT
1087
1313
 
1088
1314
  _Version update only_
1089
1315
 
1090
1316
  ## 2.15.5
1317
+
1091
1318
  Thu, 20 May 2021 15:06:26 GMT
1092
1319
 
1093
1320
  ### Updates
@@ -1095,26 +1322,31 @@ Thu, 20 May 2021 15:06:26 GMT
1095
1322
  - Fixed getting distinct values when Table rows are updated
1096
1323
 
1097
1324
  ## 2.15.4
1325
+
1098
1326
  Tue, 18 May 2021 21:59:07 GMT
1099
1327
 
1100
1328
  _Version update only_
1101
1329
 
1102
1330
  ## 2.15.3
1331
+
1103
1332
  Mon, 17 May 2021 13:31:38 GMT
1104
1333
 
1105
1334
  _Version update only_
1106
1335
 
1107
1336
  ## 2.15.2
1337
+
1108
1338
  Wed, 12 May 2021 18:08:13 GMT
1109
1339
 
1110
1340
  _Version update only_
1111
1341
 
1112
1342
  ## 2.15.1
1343
+
1113
1344
  Wed, 05 May 2021 13:18:31 GMT
1114
1345
 
1115
1346
  _Version update only_
1116
1347
 
1117
1348
  ## 2.15.0
1349
+
1118
1350
  Fri, 30 Apr 2021 12:36:58 GMT
1119
1351
 
1120
1352
  ### Updates
@@ -1129,26 +1361,31 @@ Fri, 30 Apr 2021 12:36:58 GMT
1129
1361
  - Fix a crash when clicking on a `ControlledTree` node when the tree contains placeholder nodes and using `SelectionMode.Multiple`
1130
1362
 
1131
1363
  ## 2.14.4
1364
+
1132
1365
  Thu, 22 Apr 2021 21:07:33 GMT
1133
1366
 
1134
1367
  _Version update only_
1135
1368
 
1136
1369
  ## 2.14.3
1370
+
1137
1371
  Thu, 15 Apr 2021 15:13:16 GMT
1138
1372
 
1139
1373
  _Version update only_
1140
1374
 
1141
1375
  ## 2.14.2
1376
+
1142
1377
  Thu, 08 Apr 2021 14:30:09 GMT
1143
1378
 
1144
1379
  _Version update only_
1145
1380
 
1146
1381
  ## 2.14.1
1382
+
1147
1383
  Mon, 05 Apr 2021 16:28:00 GMT
1148
1384
 
1149
1385
  _Version update only_
1150
1386
 
1151
1387
  ## 2.14.0
1388
+
1152
1389
  Fri, 02 Apr 2021 13:18:42 GMT
1153
1390
 
1154
1391
  ### Updates
@@ -1167,6 +1404,7 @@ Fri, 02 Apr 2021 13:18:42 GMT
1167
1404
  - Better support for Escape key to Home position
1168
1405
 
1169
1406
  ## 2.13.0
1407
+
1170
1408
  Tue, 09 Mar 2021 20:28:13 GMT
1171
1409
 
1172
1410
  ### Updates
@@ -1183,21 +1421,25 @@ Tue, 09 Mar 2021 20:28:13 GMT
1183
1421
  - begin rename project from iModel.js to iTwin.js
1184
1422
 
1185
1423
  ## 2.12.3
1424
+
1186
1425
  Mon, 08 Mar 2021 15:32:00 GMT
1187
1426
 
1188
1427
  _Version update only_
1189
1428
 
1190
1429
  ## 2.12.2
1430
+
1191
1431
  Wed, 03 Mar 2021 18:48:53 GMT
1192
1432
 
1193
1433
  _Version update only_
1194
1434
 
1195
1435
  ## 2.12.1
1436
+
1196
1437
  Tue, 23 Feb 2021 20:54:45 GMT
1197
1438
 
1198
1439
  _Version update only_
1199
1440
 
1200
1441
  ## 2.12.0
1442
+
1201
1443
  Thu, 18 Feb 2021 22:10:13 GMT
1202
1444
 
1203
1445
  ### Updates
@@ -1208,16 +1450,19 @@ Thu, 18 Feb 2021 22:10:13 GMT
1208
1450
  - Update TimelineComponent.tsx to properly respond to changed props.
1209
1451
 
1210
1452
  ## 2.11.2
1453
+
1211
1454
  Thu, 18 Feb 2021 02:50:59 GMT
1212
1455
 
1213
1456
  _Version update only_
1214
1457
 
1215
1458
  ## 2.11.1
1459
+
1216
1460
  Thu, 04 Feb 2021 17:22:41 GMT
1217
1461
 
1218
1462
  _Version update only_
1219
1463
 
1220
1464
  ## 2.11.0
1465
+
1221
1466
  Thu, 28 Jan 2021 13:39:27 GMT
1222
1467
 
1223
1468
  ### Updates
@@ -1238,21 +1483,25 @@ Thu, 28 Jan 2021 13:39:27 GMT
1238
1483
  - Always clone the ViewState for a ViewportComponent to avoid attaching the same ViewState to multiple viewPorts.
1239
1484
 
1240
1485
  ## 2.10.3
1486
+
1241
1487
  Fri, 08 Jan 2021 18:34:03 GMT
1242
1488
 
1243
1489
  _Version update only_
1244
1490
 
1245
1491
  ## 2.10.2
1492
+
1246
1493
  Fri, 08 Jan 2021 14:52:02 GMT
1247
1494
 
1248
1495
  _Version update only_
1249
1496
 
1250
1497
  ## 2.10.1
1498
+
1251
1499
  Tue, 22 Dec 2020 00:53:38 GMT
1252
1500
 
1253
1501
  _Version update only_
1254
1502
 
1255
1503
  ## 2.10.0
1504
+
1256
1505
  Fri, 18 Dec 2020 18:24:01 GMT
1257
1506
 
1258
1507
  ### Updates
@@ -1269,46 +1518,55 @@ Fri, 18 Dec 2020 18:24:01 GMT
1269
1518
  - Fix issue where entries in ButtonGroup would not properly disable/enable.
1270
1519
 
1271
1520
  ## 2.9.9
1521
+
1272
1522
  Sun, 13 Dec 2020 19:00:03 GMT
1273
1523
 
1274
1524
  _Version update only_
1275
1525
 
1276
1526
  ## 2.9.8
1527
+
1277
1528
  Fri, 11 Dec 2020 02:57:36 GMT
1278
1529
 
1279
1530
  _Version update only_
1280
1531
 
1281
1532
  ## 2.9.7
1533
+
1282
1534
  Wed, 09 Dec 2020 20:58:23 GMT
1283
1535
 
1284
1536
  _Version update only_
1285
1537
 
1286
1538
  ## 2.9.6
1539
+
1287
1540
  Mon, 07 Dec 2020 18:40:48 GMT
1288
1541
 
1289
1542
  _Version update only_
1290
1543
 
1291
1544
  ## 2.9.5
1545
+
1292
1546
  Sat, 05 Dec 2020 01:55:56 GMT
1293
1547
 
1294
1548
  _Version update only_
1295
1549
 
1296
1550
  ## 2.9.4
1551
+
1297
1552
  Wed, 02 Dec 2020 20:55:40 GMT
1298
1553
 
1299
1554
  _Version update only_
1300
1555
 
1301
1556
  ## 2.9.3
1557
+
1302
1558
  Mon, 23 Nov 2020 20:57:56 GMT
1303
1559
 
1304
1560
  _Version update only_
1305
1561
 
1306
1562
  ## 2.9.2
1563
+
1307
1564
  Mon, 23 Nov 2020 15:33:50 GMT
1308
1565
 
1309
1566
  _Version update only_
1310
1567
 
1311
1568
  ## 2.9.1
1569
+
1312
1570
  Thu, 19 Nov 2020 17:03:42 GMT
1313
1571
 
1314
1572
  ### Updates
@@ -1317,6 +1575,7 @@ Thu, 19 Nov 2020 17:03:42 GMT
1317
1575
  - Revert width change to EnumEditor component instead set width to auto only for docked tool settings.
1318
1576
 
1319
1577
  ## 2.9.0
1578
+
1320
1579
  Wed, 18 Nov 2020 16:01:50 GMT
1321
1580
 
1322
1581
  ### Updates
@@ -1330,11 +1589,13 @@ Wed, 18 Nov 2020 16:01:50 GMT
1330
1589
  - Update EditorContainer tests in attempt to fix sporadic test failures.
1331
1590
 
1332
1591
  ## 2.8.1
1592
+
1333
1593
  Tue, 03 Nov 2020 00:33:56 GMT
1334
1594
 
1335
1595
  _Version update only_
1336
1596
 
1337
1597
  ## 2.8.0
1598
+
1338
1599
  Fri, 23 Oct 2020 17:04:02 GMT
1339
1600
 
1340
1601
  ### Updates
@@ -1347,36 +1608,43 @@ Fri, 23 Oct 2020 17:04:02 GMT
1347
1608
  - Added jsdoc ESLint rule for UI packages
1348
1609
 
1349
1610
  ## 2.7.6
1611
+
1350
1612
  Wed, 11 Nov 2020 16:28:23 GMT
1351
1613
 
1352
1614
  _Version update only_
1353
1615
 
1354
1616
  ## 2.7.5
1617
+
1355
1618
  Fri, 23 Oct 2020 16:23:51 GMT
1356
1619
 
1357
1620
  _Version update only_
1358
1621
 
1359
1622
  ## 2.7.4
1623
+
1360
1624
  Mon, 19 Oct 2020 17:57:02 GMT
1361
1625
 
1362
1626
  _Version update only_
1363
1627
 
1364
1628
  ## 2.7.3
1629
+
1365
1630
  Wed, 14 Oct 2020 17:00:59 GMT
1366
1631
 
1367
1632
  _Version update only_
1368
1633
 
1369
1634
  ## 2.7.2
1635
+
1370
1636
  Tue, 13 Oct 2020 18:20:39 GMT
1371
1637
 
1372
1638
  _Version update only_
1373
1639
 
1374
1640
  ## 2.7.1
1641
+
1375
1642
  Thu, 08 Oct 2020 13:04:35 GMT
1376
1643
 
1377
1644
  _Version update only_
1378
1645
 
1379
1646
  ## 2.7.0
1647
+
1380
1648
  Fri, 02 Oct 2020 18:03:32 GMT
1381
1649
 
1382
1650
  ### Updates
@@ -1384,38 +1652,44 @@ Fri, 02 Oct 2020 18:03:32 GMT
1384
1652
  - Update boolean type editors to allow component to be disabled.
1385
1653
  - Add support for a DatePicker control.
1386
1654
  - Update editor to use fixed focus trap.
1387
- - Added Table cell editor activation via keyboard when using row selection. Added Tree cell editor activation via keyboard.
1655
+ - Added Table cell editor activation via keyboard when using row selection. Added Tree cell editor activation via keyboard.
1388
1656
  - Fixed react-axe initialization. Improved ui-components test coverage.
1389
1657
  - Table cell editing via keyboard
1390
1658
  - Add multiline text property support to property grid.
1391
1659
  - TreeRenderer: Add ability to scroll to a specific node
1392
1660
 
1393
1661
  ## 2.6.5
1662
+
1394
1663
  Sat, 26 Sep 2020 16:06:34 GMT
1395
1664
 
1396
1665
  _Version update only_
1397
1666
 
1398
1667
  ## 2.6.4
1668
+
1399
1669
  Tue, 22 Sep 2020 17:40:07 GMT
1400
1670
 
1401
1671
  _Version update only_
1402
1672
 
1403
1673
  ## 2.6.3
1674
+
1404
1675
  Mon, 21 Sep 2020 14:47:10 GMT
1405
1676
 
1406
1677
  _Version update only_
1407
1678
 
1408
1679
  ## 2.6.2
1680
+
1409
1681
  Mon, 21 Sep 2020 13:07:44 GMT
1410
1682
 
1411
1683
  _Version update only_
1412
1684
 
1413
1685
  ## 2.6.1
1686
+
1414
1687
  Fri, 18 Sep 2020 13:15:09 GMT
1415
1688
 
1416
1689
  _Version update only_
1417
1690
 
1418
1691
  ## 2.6.0
1692
+
1419
1693
  Thu, 17 Sep 2020 13:16:12 GMT
1420
1694
 
1421
1695
  ### Updates
@@ -1429,6 +1703,7 @@ Thu, 17 Sep 2020 13:16:12 GMT
1429
1703
  - Add ThemedEnumEditor for DialogItems and ToolSettings, using the ThemedSelect component.
1430
1704
 
1431
1705
  ## 2.5.5
1706
+
1432
1707
  Wed, 02 Sep 2020 17:42:23 GMT
1433
1708
 
1434
1709
  ### Updates
@@ -1436,26 +1711,31 @@ Wed, 02 Sep 2020 17:42:23 GMT
1436
1711
  - Update rxjs dependency version to `^6.6.2`
1437
1712
 
1438
1713
  ## 2.5.4
1714
+
1439
1715
  Fri, 28 Aug 2020 15:34:15 GMT
1440
1716
 
1441
1717
  _Version update only_
1442
1718
 
1443
1719
  ## 2.5.3
1720
+
1444
1721
  Wed, 26 Aug 2020 11:46:00 GMT
1445
1722
 
1446
1723
  _Version update only_
1447
1724
 
1448
1725
  ## 2.5.2
1726
+
1449
1727
  Tue, 25 Aug 2020 22:09:08 GMT
1450
1728
 
1451
1729
  _Version update only_
1452
1730
 
1453
1731
  ## 2.5.1
1732
+
1454
1733
  Mon, 24 Aug 2020 18:13:04 GMT
1455
1734
 
1456
1735
  _Version update only_
1457
1736
 
1458
1737
  ## 2.5.0
1738
+
1459
1739
  Thu, 20 Aug 2020 20:57:10 GMT
1460
1740
 
1461
1741
  ### Updates
@@ -1473,16 +1753,19 @@ Thu, 20 Aug 2020 20:57:10 GMT
1473
1753
  - Tree keyboard node selection & expansion
1474
1754
 
1475
1755
  ## 2.4.2
1756
+
1476
1757
  Fri, 14 Aug 2020 16:34:09 GMT
1477
1758
 
1478
1759
  _Version update only_
1479
1760
 
1480
1761
  ## 2.4.1
1762
+
1481
1763
  Fri, 07 Aug 2020 19:57:43 GMT
1482
1764
 
1483
1765
  _Version update only_
1484
1766
 
1485
1767
  ## 2.4.0
1768
+
1486
1769
  Tue, 28 Jul 2020 16:26:24 GMT
1487
1770
 
1488
1771
  ### Updates
@@ -1496,21 +1779,25 @@ Tue, 28 Jul 2020 16:26:24 GMT
1496
1779
  - Use Tooltip and Popup for timeline and toolbars.
1497
1780
 
1498
1781
  ## 2.3.3
1782
+
1499
1783
  Thu, 23 Jul 2020 12:57:15 GMT
1500
1784
 
1501
1785
  _Version update only_
1502
1786
 
1503
1787
  ## 2.3.2
1788
+
1504
1789
  Tue, 14 Jul 2020 23:50:36 GMT
1505
1790
 
1506
1791
  _Version update only_
1507
1792
 
1508
1793
  ## 2.3.1
1794
+
1509
1795
  Mon, 13 Jul 2020 18:50:14 GMT
1510
1796
 
1511
1797
  _Version update only_
1512
1798
 
1513
1799
  ## 2.3.0
1800
+
1514
1801
  Fri, 10 Jul 2020 17:23:14 GMT
1515
1802
 
1516
1803
  ### Updates
@@ -1524,11 +1811,13 @@ Fri, 10 Jul 2020 17:23:14 GMT
1524
1811
  - Changing SelectableContent component to use ThemedSelect in place of a pure HTML select element
1525
1812
 
1526
1813
  ## 2.2.1
1814
+
1527
1815
  Tue, 07 Jul 2020 14:44:52 GMT
1528
1816
 
1529
1817
  _Version update only_
1530
1818
 
1531
1819
  ## 2.2.0
1820
+
1532
1821
  Fri, 19 Jun 2020 14:10:03 GMT
1533
1822
 
1534
1823
  ### Updates
@@ -1541,12 +1830,13 @@ Fri, 19 Jun 2020 14:10:03 GMT
1541
1830
  - Added ViewStateProp & support for obtaining ViewState from function in ViewportComponent and IModelViewportControl
1542
1831
 
1543
1832
  ## 2.1.0
1833
+
1544
1834
  Thu, 28 May 2020 22:48:59 GMT
1545
1835
 
1546
1836
  ### Updates
1547
1837
 
1548
1838
  - Fix toolbar overflow panel display.
1549
- - Update to only show group separators if toolbar is not transparent.
1839
+ - Update to only show group separators if toolbar is not transparent.
1550
1840
  - Fix toolbar error when scaling up UI.
1551
1841
  - Property grid horizontal layout updated according to UX requirements.
1552
1842
  - Fixed Table filter renderers after react-select version upgrade
@@ -1560,6 +1850,7 @@ Thu, 28 May 2020 22:48:59 GMT
1560
1850
  - Only show badges on toolbar buttons if toolbar background is not transparent.
1561
1851
 
1562
1852
  ## 2.0.0
1853
+
1563
1854
  Wed, 06 May 2020 13:17:49 GMT
1564
1855
 
1565
1856
  ### Updates
@@ -1571,7 +1862,7 @@ Wed, 06 May 2020 13:17:49 GMT
1571
1862
  - Fixed Navigation cube jagged edges on iOS
1572
1863
  - Added new type of ImageSourceType "webfont-icon" which allows to load custom font-family icons by providing {className}:{iconName} format image value. It defaults to core-icon if value does not match this format.
1573
1864
  - Fix parsing of 0 (zero) value in CustomNumberEditor
1574
- - Fix bug where toolbar buttons did not show expand arrow on custom button when not in 'DragInteraction' mode. Fix display of key-in browser 1.0 UI.
1865
+ - Fix bug where toolbar buttons did not show expand arrow on custom button when not in 'DragInteraction' mode. Fix display of key-in browser 1.0 UI.
1575
1866
  - Fix ordering of button items in overflow in Navigation Widget.
1576
1867
  - Ensure ui-abstract is listed as peer dependency and not just a dev dependency.
1577
1868
  - Fix documentation tag
@@ -1622,16 +1913,19 @@ Wed, 06 May 2020 13:17:49 GMT
1622
1913
  - iModel write API development
1623
1914
 
1624
1915
  ## 1.14.1
1916
+
1625
1917
  Wed, 22 Apr 2020 19:04:00 GMT
1626
1918
 
1627
1919
  _Version update only_
1628
1920
 
1629
1921
  ## 1.14.0
1922
+
1630
1923
  Tue, 31 Mar 2020 15:44:19 GMT
1631
1924
 
1632
1925
  _Version update only_
1633
1926
 
1634
1927
  ## 1.13.0
1928
+
1635
1929
  Wed, 04 Mar 2020 16:16:31 GMT
1636
1930
 
1637
1931
  ### Updates
@@ -1639,6 +1933,7 @@ Wed, 04 Mar 2020 16:16:31 GMT
1639
1933
  - Fix iOS Safari high CPU of enum button group.
1640
1934
 
1641
1935
  ## 1.12.0
1936
+
1642
1937
  Wed, 12 Feb 2020 17:45:50 GMT
1643
1938
 
1644
1939
  ### Updates
@@ -1652,6 +1947,7 @@ Wed, 12 Feb 2020 17:45:50 GMT
1652
1947
  - Property grid border fix.
1653
1948
 
1654
1949
  ## 1.11.0
1950
+
1655
1951
  Wed, 22 Jan 2020 19:24:12 GMT
1656
1952
 
1657
1953
  ### Updates
@@ -1661,6 +1957,7 @@ Wed, 22 Jan 2020 19:24:12 GMT
1661
1957
  - Upgrade to TypeScript 3.7.2.
1662
1958
 
1663
1959
  ## 1.10.0
1960
+
1664
1961
  Tue, 07 Jan 2020 19:44:01 GMT
1665
1962
 
1666
1963
  ### Updates
@@ -1674,6 +1971,7 @@ Tue, 07 Jan 2020 19:44:01 GMT
1674
1971
  - Update timeline test to use fake timers to see if that resolved sporadic failures on CI builds.
1675
1972
 
1676
1973
  ## 1.9.0
1974
+
1677
1975
  Tue, 10 Dec 2019 18:08:56 GMT
1678
1976
 
1679
1977
  ### Updates
@@ -1700,6 +1998,7 @@ Tue, 10 Dec 2019 18:08:56 GMT
1700
1998
  - Code cleanup based on code analysis report from lgtm.
1701
1999
 
1702
2000
  ## 1.8.0
2001
+
1703
2002
  Fri, 22 Nov 2019 14:03:34 GMT
1704
2003
 
1705
2004
  ### Updates
@@ -1710,7 +2009,7 @@ Fri, 22 Nov 2019 14:03:34 GMT
1710
2009
  - Added Table cell context menu support
1711
2010
  - Added Tree Node.tsx export to ui-components package
1712
2011
  - Added tslint-react-hooks to UI packages
1713
- - Change componentDidUpdate to call _setDuration instead of setState directly. This will make sure the onChange handler is called.
2012
+ - Change componentDidUpdate to call \_setDuration instead of setState directly. This will make sure the onChange handler is called.
1714
2013
  - Refactor ControlledTree custom hooks to use useEffectSkipFirst
1715
2014
  - Separated TreeModelSource and TreeNodeLoader. Added highlighting support to ControlledTree.
1716
2015
  - Added node icon rendering to ControlledTree
@@ -1718,6 +2017,7 @@ Fri, 22 Nov 2019 14:03:34 GMT
1718
2017
  - Add componentDidUpdate() to the TimelineComponent, updating currentDuration after the app changes the state of initialDuration.
1719
2018
 
1720
2019
  ## 1.7.0
2020
+
1721
2021
  Fri, 01 Nov 2019 13:28:37 GMT
1722
2022
 
1723
2023
  ### Updates
@@ -1734,6 +2034,7 @@ Fri, 01 Nov 2019 13:28:37 GMT
1734
2034
  - Added initial implementation of ControlledTree
1735
2035
 
1736
2036
  ## 1.6.0
2037
+
1737
2038
  Wed, 09 Oct 2019 20:28:42 GMT
1738
2039
 
1739
2040
  ### Updates
@@ -1744,6 +2045,7 @@ Wed, 09 Oct 2019 20:28:42 GMT
1744
2045
  - Focus EnumButtonGroupEditor without scrolling.
1745
2046
 
1746
2047
  ## 1.5.0
2048
+
1747
2049
  Mon, 30 Sep 2019 22:28:48 GMT
1748
2050
 
1749
2051
  ### Updates
@@ -1759,9 +2061,10 @@ Mon, 30 Sep 2019 22:28:48 GMT
1759
2061
  - Upgrade to TypeScript 3.6.2
1760
2062
  - Fixed signature of BreadcrumbTreeUtils.aliasNodeListToTableDataProvider for consistent extract-api treatment
1761
2063
  - Tree: Clear page caches when reloading tree data
1762
- - this.props.viewportRef(this._vp); callback moved to the end of async componentDidMount(); Additional check if (!this._mounted) after await
2064
+ - this.props.viewportRef(this.\_vp); callback moved to the end of async componentDidMount(); Additional check if (!this.\_mounted) after await
1763
2065
 
1764
2066
  ## 1.4.0
2067
+
1765
2068
  Tue, 10 Sep 2019 12:09:49 GMT
1766
2069
 
1767
2070
  ### Updates
@@ -1777,6 +2080,7 @@ Tue, 10 Sep 2019 12:09:49 GMT
1777
2080
  - Fixed bug in style of the weight picker popup
1778
2081
 
1779
2082
  ## 1.3.0
2083
+
1780
2084
  Tue, 13 Aug 2019 20:25:53 GMT
1781
2085
 
1782
2086
  ### Updates
@@ -1799,6 +2103,7 @@ Tue, 13 Aug 2019 20:25:53 GMT
1799
2103
  - Update to latest icon package version.
1800
2104
 
1801
2105
  ## 1.2.0
2106
+
1802
2107
  Wed, 24 Jul 2019 11:47:26 GMT
1803
2108
 
1804
2109
  ### Updates
@@ -1809,6 +2114,7 @@ Wed, 24 Jul 2019 11:47:26 GMT
1809
2114
  - PropertyView: Update visual styles.
1810
2115
 
1811
2116
  ## 1.1.0
2117
+
1812
2118
  Mon, 01 Jul 2019 19:04:29 GMT
1813
2119
 
1814
2120
  ### Updates
@@ -1834,6 +2140,7 @@ Mon, 01 Jul 2019 19:04:29 GMT
1834
2140
  - ui-component unit tests. NumericInput strict=true default.
1835
2141
 
1836
2142
  ## 1.0.0
2143
+
1837
2144
  Mon, 03 Jun 2019 18:09:39 GMT
1838
2145
 
1839
2146
  ### Updates
@@ -1853,6 +2160,7 @@ Mon, 03 Jun 2019 18:09:39 GMT
1853
2160
  - Added ViewSelectorChangedEvent
1854
2161
 
1855
2162
  ## 0.191.0
2163
+
1856
2164
  Mon, 13 May 2019 15:52:05 GMT
1857
2165
 
1858
2166
  ### Updates
@@ -1897,6 +2205,7 @@ Mon, 13 May 2019 15:52:05 GMT
1897
2205
  - Added test coverage for ViewportComponent
1898
2206
 
1899
2207
  ## 0.190.0
2208
+
1900
2209
  Thu, 14 Mar 2019 14:26:49 GMT
1901
2210
 
1902
2211
  ### Updates
@@ -1907,6 +2216,7 @@ Thu, 14 Mar 2019 14:26:49 GMT
1907
2216
  - Add Transparency slider component.
1908
2217
 
1909
2218
  ## 0.189.0
2219
+
1910
2220
  Wed, 06 Mar 2019 15:41:22 GMT
1911
2221
 
1912
2222
  ### Updates
@@ -1950,11 +2260,13 @@ Wed, 06 Mar 2019 15:41:22 GMT
1950
2260
  - WIP: ViewportComponent unit tests. Removed imodeljs-clients-backend dependency from ui-framework
1951
2261
 
1952
2262
  ## 0.188.0
2263
+
1953
2264
  Wed, 16 Jan 2019 16:36:09 GMT
1954
2265
 
1955
2266
  _Version update only_
1956
2267
 
1957
2268
  ## 0.187.0
2269
+
1958
2270
  Tue, 15 Jan 2019 15:18:59 GMT
1959
2271
 
1960
2272
  ### Updates
@@ -1963,6 +2275,7 @@ Tue, 15 Jan 2019 15:18:59 GMT
1963
2275
  - Add ability to assign context menu for properties in PropertyGrid
1964
2276
 
1965
2277
  ## 0.186.0
2278
+
1966
2279
  Mon, 14 Jan 2019 23:09:10 GMT
1967
2280
 
1968
2281
  ### Updates
@@ -1970,11 +2283,13 @@ Mon, 14 Jan 2019 23:09:10 GMT
1970
2283
  - Property pane does not show struct or array info anymore
1971
2284
 
1972
2285
  ## 0.185.0
2286
+
1973
2287
  Fri, 11 Jan 2019 18:29:00 GMT
1974
2288
 
1975
2289
  _Version update only_
1976
2290
 
1977
2291
  ## 0.184.0
2292
+
1978
2293
  Thu, 10 Jan 2019 22:46:17 GMT
1979
2294
 
1980
2295
  ### Updates
@@ -1985,21 +2300,25 @@ Thu, 10 Jan 2019 22:46:17 GMT
1985
2300
  - Fix double and navigation property value renderers to not append ".0" to values in certain cases
1986
2301
 
1987
2302
  ## 0.183.0
2303
+
1988
2304
  Mon, 07 Jan 2019 21:49:21 GMT
1989
2305
 
1990
2306
  _Version update only_
1991
2307
 
1992
2308
  ## 0.182.0
2309
+
1993
2310
  Mon, 07 Jan 2019 13:31:34 GMT
1994
2311
 
1995
2312
  _Version update only_
1996
2313
 
1997
2314
  ## 0.181.0
2315
+
1998
2316
  Fri, 04 Jan 2019 13:02:40 GMT
1999
2317
 
2000
2318
  _Version update only_
2001
2319
 
2002
2320
  ## 0.180.0
2321
+
2003
2322
  Wed, 02 Jan 2019 15:18:23 GMT
2004
2323
 
2005
2324
  ### Updates
@@ -2010,6 +2329,7 @@ Wed, 02 Jan 2019 15:18:23 GMT
2010
2329
  - Added optional viewState prop to ViewportComponent
2011
2330
 
2012
2331
  ## 0.179.0
2332
+
2013
2333
  Wed, 19 Dec 2018 18:26:14 GMT
2014
2334
 
2015
2335
  ### Updates
@@ -2018,7 +2338,7 @@ Wed, 19 Dec 2018 18:26:14 GMT
2018
2338
  - Added DragDrop tests, added component withDragDrop HOC tests
2019
2339
  - Synchronizing navigation aids with view definition changes
2020
2340
  - Simplified property pane tooltips and improved Property Pane performance.
2021
- - Simplified struct and array tooltips in Table component.
2341
+ - Simplified struct and array tooltips in Table component.
2022
2342
  - Fix BeInspireTree's event listening functions to handle array inputs
2023
2343
  - Fix BeInspireTree's muting events with allowed number of triggers
2024
2344
  - Cache BeInspireTree.visible() result for better performance
@@ -2031,11 +2351,13 @@ Wed, 19 Dec 2018 18:26:14 GMT
2031
2351
  - Show loading spinner in the Tree while root nodes are being loaded
2032
2352
 
2033
2353
  ## 0.178.0
2354
+
2034
2355
  Thu, 13 Dec 2018 22:06:10 GMT
2035
2356
 
2036
2357
  _Version update only_
2037
2358
 
2038
2359
  ## 0.177.0
2360
+
2039
2361
  Wed, 12 Dec 2018 17:21:32 GMT
2040
2362
 
2041
2363
  ### Updates
@@ -2048,16 +2370,19 @@ Wed, 12 Dec 2018 17:21:32 GMT
2048
2370
  - Improved speed & smoothness of CubeNavigationAid. Made class names unique to fix documentation. UI Tree doc fixes.
2049
2371
 
2050
2372
  ## 0.176.0
2373
+
2051
2374
  Mon, 10 Dec 2018 21:19:45 GMT
2052
2375
 
2053
2376
  _Version update only_
2054
2377
 
2055
2378
  ## 0.175.0
2379
+
2056
2380
  Mon, 10 Dec 2018 17:08:55 GMT
2057
2381
 
2058
2382
  _Version update only_
2059
2383
 
2060
2384
  ## 0.174.0
2385
+
2061
2386
  Mon, 10 Dec 2018 13:24:09 GMT
2062
2387
 
2063
2388
  ### Updates
@@ -2069,6 +2394,7 @@ Mon, 10 Dec 2018 13:24:09 GMT
2069
2394
  - TreeNode can now render asynchronously.
2070
2395
 
2071
2396
  ## 0.173.0
2397
+
2072
2398
  Thu, 06 Dec 2018 22:03:29 GMT
2073
2399
 
2074
2400
  ### Updates
@@ -2078,6 +2404,7 @@ Thu, 06 Dec 2018 22:03:29 GMT
2078
2404
  - Custom imodelJs noDirectImport lint rule implemented, noDuplicateImport lint rule turned on.
2079
2405
 
2080
2406
  ## 0.172.0
2407
+
2081
2408
  Tue, 04 Dec 2018 17:24:39 GMT
2082
2409
 
2083
2410
  ### Updates
@@ -2085,6 +2412,7 @@ Tue, 04 Dec 2018 17:24:39 GMT
2085
2412
  - Changed index file name to match package name, eliminate subdirectory index files, decrease usage of default exports, change imports to use other packages' index file.
2086
2413
 
2087
2414
  ## 0.171.0
2415
+
2088
2416
  Mon, 03 Dec 2018 18:52:58 GMT
2089
2417
 
2090
2418
  ### Updates
@@ -2099,6 +2427,7 @@ Mon, 03 Dec 2018 18:52:58 GMT
2099
2427
  - Implement pagination in Tree component
2100
2428
 
2101
2429
  ## 0.170.0
2430
+
2102
2431
  Mon, 26 Nov 2018 19:38:42 GMT
2103
2432
 
2104
2433
  ### Updates
@@ -2110,6 +2439,7 @@ Mon, 26 Nov 2018 19:38:42 GMT
2110
2439
  - Enabled table to contain popups and dialog and slightly cleaned up it's CSS.
2111
2440
 
2112
2441
  ## 0.169.0
2442
+
2113
2443
  Tue, 20 Nov 2018 16:17:15 GMT
2114
2444
 
2115
2445
  ### Updates
@@ -2117,11 +2447,13 @@ Tue, 20 Nov 2018 16:17:15 GMT
2117
2447
  - Virtualized nodes' rendering in the Tree component
2118
2448
 
2119
2449
  ## 0.168.0
2450
+
2120
2451
  Sat, 17 Nov 2018 14:20:11 GMT
2121
2452
 
2122
2453
  _Version update only_
2123
2454
 
2124
2455
  ## 0.167.0
2456
+
2125
2457
  Fri, 16 Nov 2018 21:45:44 GMT
2126
2458
 
2127
2459
  ### Updates
@@ -2134,21 +2466,24 @@ Fri, 16 Nov 2018 21:45:44 GMT
2134
2466
  - ui-framework unit tests & docs
2135
2467
 
2136
2468
  ## 0.166.0
2469
+
2137
2470
  Mon, 12 Nov 2018 16:42:10 GMT
2138
2471
 
2139
2472
  _Version update only_
2140
2473
 
2141
2474
  ## 0.165.0
2475
+
2142
2476
  Mon, 12 Nov 2018 15:47:00 GMT
2143
2477
 
2144
2478
  _Version update only_
2145
2479
 
2146
2480
  ## 0.164.0
2481
+
2147
2482
  Thu, 08 Nov 2018 17:59:21 GMT
2148
2483
 
2149
2484
  ### Updates
2150
2485
 
2151
- - Deprecated dev-cors-proxy-server and use of it.
2486
+ - Deprecated dev-cors-proxy-server and use of it.
2152
2487
  - Fix: Do not start search if input field is empty
2153
2488
  - Use strongly typed enums for identifying keyboard keys
2154
2489
  - PropertyGrid property editing and unit tests
@@ -2158,6 +2493,7 @@ Thu, 08 Nov 2018 17:59:21 GMT
2158
2493
  - Zone & Widget initial state, more ui-core unit tests, cleaned up ui-framework index.ts files.
2159
2494
 
2160
2495
  ## 0.163.0
2496
+
2161
2497
  Wed, 31 Oct 2018 20:55:37 GMT
2162
2498
 
2163
2499
  ### Updates
@@ -2167,6 +2503,7 @@ Wed, 31 Oct 2018 20:55:37 GMT
2167
2503
  - Fixed ui-framework unit test
2168
2504
 
2169
2505
  ## 0.162.0
2506
+
2170
2507
  Wed, 24 Oct 2018 19:20:07 GMT
2171
2508
 
2172
2509
  ### Updates
@@ -2187,26 +2524,31 @@ Wed, 24 Oct 2018 19:20:07 GMT
2187
2524
  - Custom property value renderer manager can now be provided to Table and Pane. Without it they use default property renderers.
2188
2525
 
2189
2526
  ## 0.161.0
2527
+
2190
2528
  Fri, 19 Oct 2018 13:04:14 GMT
2191
2529
 
2192
2530
  _Version update only_
2193
2531
 
2194
2532
  ## 0.160.0
2533
+
2195
2534
  Wed, 17 Oct 2018 18:18:38 GMT
2196
2535
 
2197
2536
  _Version update only_
2198
2537
 
2199
2538
  ## 0.159.0
2539
+
2200
2540
  Tue, 16 Oct 2018 14:09:09 GMT
2201
2541
 
2202
2542
  _Version update only_
2203
2543
 
2204
2544
  ## 0.158.0
2545
+
2205
2546
  Mon, 15 Oct 2018 19:36:09 GMT
2206
2547
 
2207
2548
  _Version update only_
2208
2549
 
2209
2550
  ## 0.157.0
2551
+
2210
2552
  Sun, 14 Oct 2018 17:20:06 GMT
2211
2553
 
2212
2554
  ### Updates
@@ -2214,9 +2556,9 @@ Sun, 14 Oct 2018 17:20:06 GMT
2214
2556
  - Fixing scripts for linux
2215
2557
 
2216
2558
  ## 0.156.0
2559
+
2217
2560
  Fri, 12 Oct 2018 23:00:10 GMT
2218
2561
 
2219
2562
  ### Updates
2220
2563
 
2221
2564
  - Initial release
2222
-