@sd-angular/core 0.0.991 → 0.0.992
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 +4 -1
- 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/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/editor-handler-column.pipe.js +6 -2
- package/esm2015/grid-material/src/lib/pipes/sd-id.pipe.js +2 -2
- package/fesm2015/sd-angular-core-grid-material.js +4 -1
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/models/grid.model.d.ts +0 -1
- package/package.json +1 -1
- package/{sd-angular-core-0.0.991.tgz → sd-angular-core-0.0.992.tgz} +0 -0
|
@@ -3881,6 +3881,7 @@
|
|
|
3881
3881
|
if (column.type === 'children' || column.type === 'children-col') {
|
|
3882
3882
|
return;
|
|
3883
3883
|
}
|
|
3884
|
+
item.editorHandlerColumn = item.editorHandlerColumn || {};
|
|
3884
3885
|
item.editorHandlerColumn[column.field] = Object.assign(Object.assign({}, item.editorHandlerColumn[column.field]), { visible: __classPrivateFieldGet(this, _visible).call(this, column, item) });
|
|
3885
3886
|
var columns = gridOption.columns;
|
|
3886
3887
|
try {
|
|
@@ -3896,6 +3897,8 @@
|
|
|
3896
3897
|
}
|
|
3897
3898
|
finally { if (e_1) throw e_1.error; }
|
|
3898
3899
|
}
|
|
3900
|
+
var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, remain = __rest(item, ["sdId", "editorHandlerColumn"]);
|
|
3901
|
+
item.sdId = hash__default['default'](remain);
|
|
3899
3902
|
return true;
|
|
3900
3903
|
};
|
|
3901
3904
|
return SdEditorHandlerColumnPipe;
|
|
@@ -4116,7 +4119,7 @@
|
|
|
4116
4119
|
var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, remain = __rest(item, ["sdId", "editorHandlerColumn"]);
|
|
4117
4120
|
item.editorHandlerColumn = item.editorHandlerColumn || {};
|
|
4118
4121
|
item.sdId = hash__default['default'](remain);
|
|
4119
|
-
item.editorHandlerColumn[column.field] = Object.assign(
|
|
4122
|
+
item.editorHandlerColumn[column.field] = Object.assign({}, item.editorHandlerColumn[column.field]);
|
|
4120
4123
|
return item.sdId;
|
|
4121
4124
|
};
|
|
4122
4125
|
return SdIdPipe;
|