@sd-angular/core 1.2.9 → 1.2.10
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 +9 -6
- 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-select.umd.js +1 -5
- package/bundles/sd-angular-core-select.umd.js.map +1 -1
- package/bundles/sd-angular-core-select.umd.min.js +1 -1
- package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/components/desktop-cell-editor/desktop-cell-editor.component.js +10 -7
- package/esm2015/select/src/lib/select.component.js +1 -4
- package/fesm2015/sd-angular-core-grid-material.js +9 -6
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/fesm2015/sd-angular-core-select.js +0 -3
- package/fesm2015/sd-angular-core-select.js.map +1 -1
- package/package.json +1 -1
- package/sd-angular-core-1.2.10.tgz +0 -0
- package/sd-angular-core-1.2.9.tgz +0 -0
|
@@ -4062,24 +4062,27 @@
|
|
|
4062
4062
|
if (_this.column.type === 'children' || _this.column.type === 'children-col') {
|
|
4063
4063
|
return;
|
|
4064
4064
|
}
|
|
4065
|
-
|
|
4066
|
-
|
|
4065
|
+
if (_this.column.type === 'values') {
|
|
4066
|
+
(_b = (_a = _this.column.editor) === null || _a === void 0 ? void 0 : _a.add) === null || _b === void 0 ? void 0 : _b.call(_a, _this.item);
|
|
4067
|
+
}
|
|
4067
4068
|
};
|
|
4068
4069
|
this.editorOnEdit = function (option) {
|
|
4069
4070
|
var _a, _b;
|
|
4070
4071
|
if (_this.column.type === 'children' || _this.column.type === 'children-col') {
|
|
4071
4072
|
return;
|
|
4072
4073
|
}
|
|
4073
|
-
|
|
4074
|
-
|
|
4074
|
+
if (_this.column.type === 'values') {
|
|
4075
|
+
(_b = (_a = _this.column.editor) === null || _a === void 0 ? void 0 : _a.edit) === null || _b === void 0 ? void 0 : _b.call(_a, option, _this.item);
|
|
4076
|
+
}
|
|
4075
4077
|
};
|
|
4076
4078
|
this.editorOnDelete = function (option) {
|
|
4077
4079
|
var _a, _b;
|
|
4078
4080
|
if (_this.column.type === 'children' || _this.column.type === 'children-col') {
|
|
4079
4081
|
return;
|
|
4080
4082
|
}
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
+
if (_this.column.type === 'values') {
|
|
4084
|
+
(_b = (_a = _this.column.editor) === null || _a === void 0 ? void 0 : _a.delete) === null || _b === void 0 ? void 0 : _b.call(_a, option, _this.item);
|
|
4085
|
+
}
|
|
4083
4086
|
};
|
|
4084
4087
|
}
|
|
4085
4088
|
return SdDesktopCellEditor;
|