@crystaldesign/diva-backoffice 24.1.1 → 24.1.2-beta.1
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/build/esm/index.js +2 -2
- package/package.json +2 -2
package/build/esm/index.js
CHANGED
|
@@ -250,7 +250,7 @@ function aplyMapping (_ref) {
|
|
|
250
250
|
}
|
|
251
251
|
for (var _i = 0; _i < mapping.map.length; _i++) {
|
|
252
252
|
var _m = mapping.map[_i];
|
|
253
|
-
if (!meetsCondition(_m))
|
|
253
|
+
if (!meetsCondition(_m)) continue;
|
|
254
254
|
if (_m.targetField == '$ROOT' && _m.sourceField) {
|
|
255
255
|
returnValue = flatMapping[_m.sourceField];
|
|
256
256
|
return;
|
|
@@ -16048,7 +16048,7 @@ function StringCell (_ref) {
|
|
|
16048
16048
|
width: column.width,
|
|
16049
16049
|
paddingRight: 12
|
|
16050
16050
|
},
|
|
16051
|
-
children: column.translationPrefix && children[1] ? t(column.translationPrefix + '.' + children[1]) : children
|
|
16051
|
+
children: column.translationPrefix && typeof children[1] == 'number' ? t(column.translationPrefix + '.' + children[1]) : children
|
|
16052
16052
|
})
|
|
16053
16053
|
});
|
|
16054
16054
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/diva-backoffice",
|
|
3
|
-
"version": "24.1.1",
|
|
3
|
+
"version": "24.1.2-beta.1",
|
|
4
4
|
"license": "COMMERCIAL",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@testing-library/jest-dom": "^5.15.0",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
},
|
|
51
51
|
"module": "build/esm/index.js",
|
|
52
52
|
"types": "./build/types/backoffice/src/index.d.ts",
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "09289f40b50a4534d54559be96b8971222e96264"
|
|
54
54
|
}
|