@sd-angular/core 1.2.6 → 1.2.9

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.
Files changed (32) hide show
  1. package/bundles/sd-angular-core-grid-material.umd.js +3 -3
  2. package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
  3. package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
  4. package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
  5. package/bundles/sd-angular-core-input-currency.umd.js +5 -5
  6. package/bundles/sd-angular-core-input-currency.umd.js.map +1 -1
  7. package/bundles/sd-angular-core-input-currency.umd.min.js +2 -2
  8. package/bundles/sd-angular-core-input-currency.umd.min.js.map +1 -1
  9. package/bundles/sd-angular-core-input-number.umd.js +5 -5
  10. package/bundles/sd-angular-core-input-number.umd.js.map +1 -1
  11. package/bundles/sd-angular-core-input-number.umd.min.js +2 -2
  12. package/bundles/sd-angular-core-input-number.umd.min.js.map +1 -1
  13. package/bundles/sd-angular-core-input.umd.js +5 -5
  14. package/bundles/sd-angular-core-input.umd.js.map +1 -1
  15. package/bundles/sd-angular-core-input.umd.min.js +2 -2
  16. package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
  17. package/esm2015/grid-material/src/lib/components/desktop-cell-editor/desktop-cell-editor.component.js +4 -4
  18. package/esm2015/grid-material/src/lib/models/grid-column.model.js +1 -1
  19. package/esm2015/input/src/lib/input.component.js +2 -3
  20. package/esm2015/input-currency/src/lib/input-currency.component.js +2 -3
  21. package/esm2015/input-number/src/lib/input-number.component.js +2 -3
  22. package/fesm2015/sd-angular-core-grid-material.js +3 -3
  23. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  24. package/fesm2015/sd-angular-core-input-currency.js +1 -2
  25. package/fesm2015/sd-angular-core-input-currency.js.map +1 -1
  26. package/fesm2015/sd-angular-core-input-number.js +1 -2
  27. package/fesm2015/sd-angular-core-input-number.js.map +1 -1
  28. package/fesm2015/sd-angular-core-input.js +1 -2
  29. package/fesm2015/sd-angular-core-input.js.map +1 -1
  30. package/grid-material/src/lib/models/grid-column.model.d.ts +3 -3
  31. package/package.json +1 -1
  32. package/{sd-angular-core-1.2.6.tgz → sd-angular-core-1.2.9.tgz} +0 -0
@@ -4063,7 +4063,7 @@
4063
4063
  return;
4064
4064
  }
4065
4065
  var editor = (_a = _this.column) === null || _a === void 0 ? void 0 : _a.editor;
4066
- (_b = editor === null || editor === void 0 ? void 0 : editor.add) === null || _b === void 0 ? void 0 : _b.apply(undefined);
4066
+ (_b = editor === null || editor === void 0 ? void 0 : editor.add) === null || _b === void 0 ? void 0 : _b.call(editor, _this.item);
4067
4067
  };
4068
4068
  this.editorOnEdit = function (option) {
4069
4069
  var _a, _b;
@@ -4071,7 +4071,7 @@
4071
4071
  return;
4072
4072
  }
4073
4073
  var editor = (_a = _this.column) === null || _a === void 0 ? void 0 : _a.editor;
4074
- (_b = editor === null || editor === void 0 ? void 0 : editor.edit) === null || _b === void 0 ? void 0 : _b.apply(undefined, [option, _this.item]);
4074
+ (_b = editor === null || editor === void 0 ? void 0 : editor.edit) === null || _b === void 0 ? void 0 : _b.call(editor, option, _this.item);
4075
4075
  };
4076
4076
  this.editorOnDelete = function (option) {
4077
4077
  var _a, _b;
@@ -4079,7 +4079,7 @@
4079
4079
  return;
4080
4080
  }
4081
4081
  var editor = (_a = _this.column) === null || _a === void 0 ? void 0 : _a.editor;
4082
- (_b = editor === null || editor === void 0 ? void 0 : editor.delete) === null || _b === void 0 ? void 0 : _b.apply(undefined, [option, _this.item]);
4082
+ (_b = editor === null || editor === void 0 ? void 0 : editor.delete) === null || _b === void 0 ? void 0 : _b.call(editor, option, _this.item);
4083
4083
  };
4084
4084
  }
4085
4085
  return SdDesktopCellEditor;