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