@itwin/core-frontend 5.7.0-dev.5 → 5.7.0-dev.7
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 +11 -1
- package/lib/cjs/quantity-formatting/QuantityFormatter.js +18 -4
- package/lib/cjs/quantity-formatting/QuantityFormatter.js.map +1 -1
- package/lib/esm/quantity-formatting/QuantityFormatter.js +18 -4
- package/lib/esm/quantity-formatting/QuantityFormatter.js.map +1 -1
- package/package.json +20 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Change Log - @itwin/core-frontend
|
|
2
2
|
|
|
3
|
-
This log was last generated on Thu,
|
|
3
|
+
This log was last generated on Thu, 05 Feb 2026 16:14:10 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.6.0
|
|
6
|
+
Thu, 05 Feb 2026 16:12:37 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Add applicationLogoCardFooter method to IModelApp for custom logo footer support
|
|
11
|
+
- Add lifecycle events for pull merge.
|
|
12
|
+
- Support EXT_textureInfo_constant_lod glTF extension
|
|
13
|
+
- Support BENTLEY_materials_planar_fill in glTF parsing and rendering.
|
|
4
14
|
|
|
5
15
|
## 5.5.2
|
|
6
16
|
Thu, 22 Jan 2026 16:16:54 GMT
|
|
@@ -853,7 +853,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
853
853
|
{ type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]meter2" },
|
|
854
854
|
{ type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]m-sta2" },
|
|
855
855
|
{ type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]meter4" },
|
|
856
|
-
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]
|
|
856
|
+
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]millimeter3" },
|
|
857
857
|
],
|
|
858
858
|
},
|
|
859
859
|
{
|
|
@@ -867,7 +867,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
867
867
|
{ type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
|
|
868
868
|
{ type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
|
|
869
869
|
{ type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4-labeled" },
|
|
870
|
-
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]
|
|
870
|
+
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
|
|
871
871
|
],
|
|
872
872
|
},
|
|
873
873
|
{
|
|
@@ -881,7 +881,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
881
881
|
{ type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]feet2" },
|
|
882
882
|
{ type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-sta2" },
|
|
883
883
|
{ type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
|
|
884
|
-
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]
|
|
884
|
+
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]feet2" },
|
|
885
885
|
],
|
|
886
886
|
},
|
|
887
887
|
{
|
|
@@ -895,7 +895,7 @@ const DEFAULT_FORMATKEY_BY_UNIT_SYSTEM = [
|
|
|
895
895
|
{ type: getQuantityTypeKey(QuantityType.Coordinate), formatKey: "[units:length]f-survey-2" },
|
|
896
896
|
{ type: getQuantityTypeKey(QuantityType.Stationing), formatKey: "[units:length]f-survey-sta2" },
|
|
897
897
|
{ type: getQuantityTypeKey(QuantityType.LengthSurvey), formatKey: "[units:length]f-survey-4" },
|
|
898
|
-
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-
|
|
898
|
+
{ type: getQuantityTypeKey(QuantityType.LengthEngineering), formatKey: "[units:length]f-survey-2" },
|
|
899
899
|
],
|
|
900
900
|
},
|
|
901
901
|
];
|
|
@@ -915,6 +915,20 @@ const DEFAULT_FORMATPROPS = [
|
|
|
915
915
|
type: "Decimal",
|
|
916
916
|
},
|
|
917
917
|
},
|
|
918
|
+
{
|
|
919
|
+
key: "[units:length]millimeter3",
|
|
920
|
+
description: "millimeters (labeled) 3 decimal places",
|
|
921
|
+
format: {
|
|
922
|
+
composite: {
|
|
923
|
+
includeZero: true,
|
|
924
|
+
spacer: "",
|
|
925
|
+
units: [{ label: "mm", name: "Units.MM" }],
|
|
926
|
+
},
|
|
927
|
+
formatTraits: ["keepSingleZero", "showUnitLabel"],
|
|
928
|
+
precision: 3,
|
|
929
|
+
type: "Decimal",
|
|
930
|
+
},
|
|
931
|
+
},
|
|
918
932
|
{
|
|
919
933
|
key: "[units:length]meter2",
|
|
920
934
|
description: "meters (labeled) 2 decimal places",
|