@sd-angular/core 1.1.38 → 1.1.41

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 (28) hide show
  1. package/bundles/sd-angular-core-grid-material.umd.js +5 -20
  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.umd.js +22 -6
  6. package/bundles/sd-angular-core-input.umd.js.map +1 -1
  7. package/bundles/sd-angular-core-input.umd.min.js +2 -2
  8. package/bundles/sd-angular-core-input.umd.min.js.map +1 -1
  9. package/bundles/sd-angular-core-select.umd.js +22 -6
  10. package/bundles/sd-angular-core-select.umd.js.map +1 -1
  11. package/bundles/sd-angular-core-select.umd.min.js +2 -2
  12. package/bundles/sd-angular-core-select.umd.min.js.map +1 -1
  13. package/esm2015/grid-material/src/lib/pipes/editor-handler-column.pipe.js +5 -20
  14. package/esm2015/grid-material/src/lib/pipes/editor-handler-row.pipe.js +2 -2
  15. package/esm2015/input/src/lib/input.component.js +12 -3
  16. package/esm2015/select/src/lib/select.component.js +12 -3
  17. package/fesm2015/sd-angular-core-grid-material.js +5 -20
  18. package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
  19. package/fesm2015/sd-angular-core-input.js +11 -2
  20. package/fesm2015/sd-angular-core-input.js.map +1 -1
  21. package/fesm2015/sd-angular-core-select.js +11 -2
  22. package/fesm2015/sd-angular-core-select.js.map +1 -1
  23. package/input/sd-angular-core-input.metadata.json +1 -1
  24. package/input/src/lib/input.component.d.ts +2 -0
  25. package/package.json +1 -1
  26. package/{sd-angular-core-1.1.38.tgz → sd-angular-core-1.1.41.tgz} +0 -0
  27. package/select/sd-angular-core-select.metadata.json +1 -1
  28. package/select/src/lib/select.component.d.ts +2 -0
@@ -4024,7 +4024,7 @@
4024
4024
  item.editorHandlerRow = Object.assign(Object.assign({}, item.editorHandlerRow), { visible: false, editable: !status, removable: false, savable: false, cancelable: false });
4025
4025
  }
4026
4026
  // const { sdId, editorHandlerColumn, ...remain } = item;
4027
- var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, expandDetail = item.expandDetail, isExpanded = item.isExpanded, isExpanding = item.isExpanding, isSelected = item.isSelected, sdGroup = item.sdGroup, selectable = item.selectable, actions = item.actions, groupedActions = item.groupedActions, originItem = item.originItem, editorErrorMessage = item.editorErrorMessage, remain = __rest(item, ["sdId", "editorHandlerColumn", "expandDetail", "isExpanded", "isExpanding", "isSelected", "sdGroup", "selectable", "actions", "groupedActions", "originItem", "editorErrorMessage"]);
4027
+ var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, expandDetail = item.expandDetail, isExpanded = item.isExpanded, isExpanding = item.isExpanding, isSelected = item.isSelected, sdGroup = item.sdGroup, selectable = item.selectable, actions = item.actions, groupedActions = item.groupedActions, originItem = item.originItem, editorErrorMessage = item.editorErrorMessage, editorHandlerRow = item.editorHandlerRow, remain = __rest(item, ["sdId", "editorHandlerColumn", "expandDetail", "isExpanded", "isExpanding", "isSelected", "sdGroup", "selectable", "actions", "groupedActions", "originItem", "editorErrorMessage", "editorHandlerRow"]);
4028
4028
  item.sdId = hash__default['default'](remain);
4029
4029
  item.editorHandlerColumn = item.editorHandlerColumn || {};
4030
4030
  var columns = gridOption.columns;
@@ -4074,10 +4074,11 @@
4074
4074
  if (column.type === 'children' || column.type === 'children-col') {
4075
4075
  return;
4076
4076
  }
4077
- var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, expandDetail = item.expandDetail, isExpanded = item.isExpanded, isExpanding = item.isExpanding, isSelected = item.isSelected, sdGroup = item.sdGroup, selectable = item.selectable, actions = item.actions, groupedActions = item.groupedActions, originItem = item.originItem, editorErrorMessage = item.editorErrorMessage, remain = __rest(item, ["sdId", "editorHandlerColumn", "expandDetail", "isExpanded", "isExpanding", "isSelected", "sdGroup", "selectable", "actions", "groupedActions", "originItem", "editorErrorMessage"]);
4077
+ var sdId = item.sdId, editorHandlerColumn = item.editorHandlerColumn, expandDetail = item.expandDetail, isExpanded = item.isExpanded, isExpanding = item.isExpanding, isSelected = item.isSelected, sdGroup = item.sdGroup, selectable = item.selectable, actions = item.actions, groupedActions = item.groupedActions, originItem = item.originItem, editorErrorMessage = item.editorErrorMessage, editorHandlerRow = item.editorHandlerRow, remain = __rest(item, ["sdId", "editorHandlerColumn", "expandDetail", "isExpanded", "isExpanding", "isSelected", "sdGroup", "selectable", "actions", "groupedActions", "originItem", "editorErrorMessage", "editorHandlerRow"]);
4078
4078
  var key = hash__default['default'](remain);
4079
- if (item.sdId === key && item.editorHandlerColumn) {
4080
- return;
4079
+ console.log(value, column.field, item.sdId, key);
4080
+ if (sdId === key && editorHandlerColumn) {
4081
+ return true;
4081
4082
  }
4082
4083
  item.editorHandlerColumn = item.editorHandlerColumn || {};
4083
4084
  var columns = gridOption.columns;
@@ -4094,22 +4095,6 @@
4094
4095
  }
4095
4096
  finally { if (e_1) throw e_1.error; }
4096
4097
  }
4097
- // const { sdId, editorHandlerColumn, ...remain } = item;
4098
- // const {
4099
- // sdId,
4100
- // editorHandlerColumn,
4101
- // expandDetail,
4102
- // isExpanded,
4103
- // isExpanding,
4104
- // isSelected,
4105
- // sdGroup,
4106
- // selectable,
4107
- // actions,
4108
- // editorHandlerRow,
4109
- // groupedActions,
4110
- // originItem,
4111
- // editorErrorMessage,
4112
- // ...remain } = item;
4113
4098
  item.sdId = key;
4114
4099
  return true;
4115
4100
  };