coer-elements 1.1.23 → 1.1.24

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.
@@ -1958,7 +1958,7 @@ class CoerGridExtension extends ControlValue {
1958
1958
  response = columnConfig.typeNumber;
1959
1959
  }
1960
1960
  else if (typeof columnConfig.typeNumber === 'function') {
1961
- response = (data === null) ? false : columnConfig.typeNumber({ property, row, value });
1961
+ response = (data === null) ? false : columnConfig.typeNumber({ indexRow: row.indexRow, property, row, value });
1962
1962
  }
1963
1963
  break;
1964
1964
  }
@@ -1969,7 +1969,7 @@ class CoerGridExtension extends ControlValue {
1969
1969
  response = columnConfig.typeDate;
1970
1970
  }
1971
1971
  else if (typeof columnConfig.typeDate === 'function') {
1972
- response = (data === null) ? false : columnConfig.typeDate({ property, row, value });
1972
+ response = (data === null) ? false : columnConfig.typeDate({ indexRow: row.indexRow, property, row, value });
1973
1973
  }
1974
1974
  break;
1975
1975
  }
@@ -1980,7 +1980,7 @@ class CoerGridExtension extends ControlValue {
1980
1980
  response = columnConfig.typeDateTime;
1981
1981
  }
1982
1982
  else if (typeof columnConfig.typeDateTime === 'function') {
1983
- response = (data === null) ? false : columnConfig.typeDateTime({ property, row, value });
1983
+ response = (data === null) ? false : columnConfig.typeDateTime({ indexRow: row.indexRow, property, row, value });
1984
1984
  }
1985
1985
  break;
1986
1986
  }
@@ -1992,7 +1992,7 @@ class CoerGridExtension extends ControlValue {
1992
1992
  response = columnConfig.toLocalZone;
1993
1993
  }
1994
1994
  else if (typeof columnConfig.toLocalZone === 'function') {
1995
- response = (data === null) ? true : columnConfig.toLocalZone({ property, row, value });
1995
+ response = (data === null) ? true : columnConfig.toLocalZone({ indexRow: row.indexRow, property, row, value });
1996
1996
  }
1997
1997
  break;
1998
1998
  }