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.
@@ -14098,9 +14098,8 @@ const determineHasChildren = ({
14098
14098
 
14099
14099
  const sortByPosition = (items, getConfig) => {
14100
14100
  return items.sort((a, b) => {
14101
- var _getConfig, _getConfig2;
14102
- const positionA = ((_getConfig = getConfig(a)) === null || _getConfig === void 0 ? void 0 : _getConfig.position) || 0;
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 ((item === null || item === void 0 ? void 0 : item[conditionKey]) === conditionValue) {
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
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.404",
3
+ "version": "0.6.405",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -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,