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