ps-toolkit-ui 1.18.83 → 1.18.84

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.
@@ -6327,12 +6327,14 @@
6327
6327
  };
6328
6328
  FormSelectComponent.prototype.toggle = function (op) {
6329
6329
  if (op.selected) {
6330
+ this.inp.value = null;
6330
6331
  this.unCheck(op);
6331
6332
  if (this.inp.onlyChild) {
6332
6333
  this.unCheckParent(op.parent);
6333
6334
  }
6334
6335
  }
6335
6336
  else {
6337
+ this.inp.value = op.value;
6336
6338
  this.check(op);
6337
6339
  if (this.inp.onlyChild && this.inp.type === exports.InputType.Tree) {
6338
6340
  this.checkParent(op.parent);