@itwin/core-common 5.7.0-dev.10 → 5.7.0-dev.12

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @itwin/core-common
2
2
 
3
- This log was last generated on Thu, 05 Feb 2026 16:14:10 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 13 Feb 2026 17:13:15 GMT and should not be manually modified.
4
+
5
+ ## 5.6.1
6
+ Fri, 13 Feb 2026 17:11:47 GMT
7
+
8
+ ### Updates
9
+
10
+ - Fix a bug in a 'if' statement with a color def TBGR numeric value.
4
11
 
5
12
  ## 5.6.0
6
13
  Thu, 05 Feb 2026 16:12:37 GMT
@@ -221,7 +221,7 @@ var ElementGeometry;
221
221
  if (entry.text) {
222
222
  result = this.appendTextString(new TextString_1.TextString(entry.text));
223
223
  }
224
- else if (entry.color) {
224
+ else if (undefined !== entry.color) {
225
225
  const params = geomParams?.clone() ?? new GeometryParams_1.GeometryParams(core_bentley_1.Id64.invalid);
226
226
  if (entry.color !== "subcategory") {
227
227
  params.lineColor = ColorDef_1.ColorDef.fromJSON(entry.color);