@trackunit/iris-app-runtime-core 0.3.155 → 0.3.156

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.3.155",
3
+ "version": "0.3.156",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -1,4 +1,4 @@
1
- import { CustomFieldType, CustomFieldValue, UnitSiType, UnitUsType } from "@trackunit/iris-app-runtime-core-api";
1
+ import { CustomFieldType, CustomFieldValue, UnitOfMeasurementType } from "@trackunit/iris-app-runtime-core-api";
2
2
  import { SystemOfMeasurementType } from "@trackunit/react-core-contexts-api";
3
3
  export interface DropdownSelection {
4
4
  value: string;
@@ -26,7 +26,7 @@ export declare const getDateValue: (value: string) => string;
26
26
  /**
27
27
  * Format a custom field value to ensure a consistent representation in the ui.
28
28
  */
29
- export declare const getCustomFieldValueForDisplayInUI: (value: number | string | null | undefined, _unit: UnitUsType | UnitSiType | null | undefined, _systemOfMeasurement?: SystemOfMeasurementType | null, language?: string) => number | string | null | undefined;
29
+ export declare const getCustomFieldValueForDisplayInUI: (value: number | string | null | undefined, _unit: UnitOfMeasurementType | null | undefined, _systemOfMeasurement?: SystemOfMeasurementType | null, language?: string) => number | string | null | undefined;
30
30
  /**
31
31
  * type guard to ensure that a value is of a type compatible with custom fields
32
32
  */