datastake-daf 0.6.404 → 0.6.405
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/dist/components/index.js
CHANGED
|
@@ -14098,9 +14098,8 @@ const determineHasChildren = ({
|
|
|
14098
14098
|
|
|
14099
14099
|
const sortByPosition = (items, getConfig) => {
|
|
14100
14100
|
return items.sort((a, b) => {
|
|
14101
|
-
|
|
14102
|
-
const
|
|
14103
|
-
const positionB = ((_getConfig2 = getConfig(b)) === null || _getConfig2 === void 0 ? void 0 : _getConfig2.position) || 0;
|
|
14101
|
+
const positionA = getConfig(a)?.position || 0;
|
|
14102
|
+
const positionB = getConfig(b)?.position || 0;
|
|
14104
14103
|
return positionA - positionB;
|
|
14105
14104
|
});
|
|
14106
14105
|
};
|
|
@@ -14117,7 +14116,7 @@ const resolveDynamicLabel = (labelConfig, item, defaultLabel) => {
|
|
|
14117
14116
|
const parts = labelKey.split(' is ');
|
|
14118
14117
|
if (parts.length === 2) {
|
|
14119
14118
|
const [conditionKey, conditionValue] = parts;
|
|
14120
|
-
if (
|
|
14119
|
+
if (item?.[conditionKey] === conditionValue) {
|
|
14121
14120
|
return labelConfig[labelKey];
|
|
14122
14121
|
}
|
|
14123
14122
|
}
|
|
@@ -47004,6 +47003,7 @@ const filterParams = (value, module) => {
|
|
|
47004
47003
|
...filters
|
|
47005
47004
|
} = activeFilters || {};
|
|
47006
47005
|
const params = {};
|
|
47006
|
+
console.log(module, NEW_PAGINATION_APPS.includes(module), "new pagination");
|
|
47007
47007
|
params.pagination = JSON.stringify({
|
|
47008
47008
|
[NEW_PAGINATION_APPS.includes(module) ? "skip" : "page"]: page,
|
|
47009
47009
|
[NEW_PAGINATION_APPS.includes(module) ? "take" : "pageSize"]: pageSize
|
package/dist/utils/index.js
CHANGED
|
@@ -6111,6 +6111,7 @@ const filterParams = (value, module) => {
|
|
|
6111
6111
|
...filters
|
|
6112
6112
|
} = activeFilters || {};
|
|
6113
6113
|
const params = {};
|
|
6114
|
+
console.log(module, NEW_PAGINATION_APPS.includes(module), "new pagination");
|
|
6114
6115
|
params.pagination = JSON.stringify({
|
|
6115
6116
|
[NEW_PAGINATION_APPS.includes(module) ? "skip" : "page"]: page,
|
|
6116
6117
|
[NEW_PAGINATION_APPS.includes(module) ? "take" : "pageSize"]: pageSize
|
package/package.json
CHANGED
|
@@ -71,6 +71,7 @@ export const filterParams = (value, module) => {
|
|
|
71
71
|
|
|
72
72
|
const params = {};
|
|
73
73
|
|
|
74
|
+
console.log(module, NEW_PAGINATION_APPS.includes(module), "new pagination");
|
|
74
75
|
params.pagination = JSON.stringify({
|
|
75
76
|
[NEW_PAGINATION_APPS.includes(module) ? "skip" : "page"]: page,
|
|
76
77
|
[NEW_PAGINATION_APPS.includes(module) ? "take" : "pageSize"]: pageSize,
|