@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.
- package/bundles/sd-angular-core-grid-material.umd.js +3 -3
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input-currency.umd.js +5 -5
- package/bundles/sd-angular-core-input-currency.umd.js.map +1 -1
- package/bundles/sd-angular-core-input-currency.umd.min.js +2 -2
- package/bundles/sd-angular-core-input-currency.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input-number.umd.js +5 -5
- package/bundles/sd-angular-core-input-number.umd.js.map +1 -1
- package/bundles/sd-angular-core-input-number.umd.min.js +2 -2
- package/bundles/sd-angular-core-input-number.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.js +5 -5
- package/bundles/sd-angular-core-input.umd.js.map +1 -1
- package/bundles/sd-angular-core-input.umd.min.js +2 -2
- package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/components/desktop-cell-editor/desktop-cell-editor.component.js +4 -4
- package/esm2015/grid-material/src/lib/models/grid-column.model.js +1 -1
- package/esm2015/input/src/lib/input.component.js +2 -3
- package/esm2015/input-currency/src/lib/input-currency.component.js +2 -3
- package/esm2015/input-number/src/lib/input-number.component.js +2 -3
- package/fesm2015/sd-angular-core-grid-material.js +3 -3
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-input-currency.js +1 -2
- package/fesm2015/sd-angular-core-input-currency.js.map +1 -1
- package/fesm2015/sd-angular-core-input-number.js +1 -2
- package/fesm2015/sd-angular-core-input-number.js.map +1 -1
- package/fesm2015/sd-angular-core-input.js +1 -2
- package/fesm2015/sd-angular-core-input.js.map +1 -1
- package/grid-material/src/lib/models/grid-column.model.d.ts +3 -3
- package/package.json +1 -1
- 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.
|
|
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.
|
|
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.
|
|
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;
|