@trackunit/iris-app-runtime-core 0.0.63 → 0.0.66
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/index.js +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -1207,7 +1207,7 @@ $$1({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
|
|
|
1207
1207
|
const getCustomFieldValueFromRawValue = (customFieldDefinition, newValue) => {
|
|
1208
1208
|
if (customFieldDefinition.type === CustomFieldType.BOOLEAN) {
|
|
1209
1209
|
return {
|
|
1210
|
-
booleanValue: newValue
|
|
1210
|
+
booleanValue: newValue ? true : false,
|
|
1211
1211
|
type: CustomFieldType.BOOLEAN
|
|
1212
1212
|
};
|
|
1213
1213
|
} else if (customFieldDefinition.type === CustomFieldType.DATE) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.66",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@trackunit/iris-app-runtime-core-api": "0.0.
|
|
12
|
-
"@trackunit/react-core-contexts-api": "0.0.
|
|
11
|
+
"@trackunit/iris-app-runtime-core-api": "0.0.63",
|
|
12
|
+
"@trackunit/react-core-contexts-api": "0.0.57"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {}
|
|
15
15
|
}
|