tnx-shared 5.0.9 → 5.0.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.
@@ -3282,7 +3282,7 @@
3282
3282
  this.reSelectLastItem = true; // Select lại item cuối cùng đã chọn của grid
3283
3283
  this.fireEventWhenReSelect = false;
3284
3284
  this.advanceData = {};
3285
- this.useWorkflowNew = true; // Sẽ bỏ đi trong tương lai khi thay thế hoàn toàn bằng workflow new
3285
+ this.useWorkflowNew = false; // Sẽ bỏ đi trong tương lai khi thay thế hoàn toàn bằng workflow new
3286
3286
  this.isWorkflowTree = false;
3287
3287
  this.hasCustomHandleClickRow = false;
3288
3288
  this.checkPermisionTrinhKy = false;
@@ -3297,7 +3297,7 @@
3297
3297
  this.hiddenSetting = false;
3298
3298
  this.hiddenSettingPermission = false;
3299
3299
  this.hiddenSettingWorkflow = false;
3300
- this.hiddenSettingWorkflowNew = false;
3300
+ this.hiddenSettingWorkflowNew = true;
3301
3301
  this.hiddenPageTitle = false;
3302
3302
  this.hiddenCheckbox = false;
3303
3303
  this.hiddenOrderColumn = false;
@@ -29604,15 +29604,15 @@
29604
29604
  component: this,
29605
29605
  event: evt
29606
29606
  });
29607
- if (this.selectedValueBefore != this._value) {
29608
- if (this.control.multiple) {
29607
+ if (this.control.multiple) {
29608
+ if (this.selectedValueBefore != this._value) {
29609
29609
  if (this.selectedValueBefore == null && this._value && this._value.length == 0) {
29610
29610
  this.selectedValueBefore = this._value;
29611
29611
  return;
29612
29612
  }
29613
+ this.selectedValueBefore = this._value;
29614
+ this.onHideSmartEvent.emit(evt);
29613
29615
  }
29614
- this.selectedValueBefore = this._value;
29615
- this.onHideSmartEvent.emit(evt);
29616
29616
  }
29617
29617
  };
29618
29618
  DropdownComponent.prototype.handleFocus = function (evt) {