ps-toolkit-ui 1.11.0 → 1.11.2

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.
@@ -2112,15 +2112,15 @@
2112
2112
  InputClass.prototype.getSelectedOptions = function (opts) {
2113
2113
  var e_4, _a;
2114
2114
  if (opts === void 0) { opts = this.options; }
2115
- console.log(opts);
2116
2115
  var l = [];
2117
2116
  try {
2118
2117
  for (var opts_1 = __values(opts), opts_1_1 = opts_1.next(); !opts_1_1.done; opts_1_1 = opts_1.next()) {
2119
2118
  var f = opts_1_1.value;
2120
2119
  if (f.selected && (!this.onlyChild || f.options.length === 0)) {
2120
+ console.log(f);
2121
2121
  l.push(f);
2122
2122
  }
2123
- var rs = this.getSelected(f.options);
2123
+ var rs = this.getSelectedOptions(f.options);
2124
2124
  l = l.concat(rs);
2125
2125
  }
2126
2126
  }