ps-toolkit-ui 1.5.13 → 1.5.14

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.
@@ -1858,7 +1858,6 @@
1858
1858
  _this.type === exports.InputType.SelectAutoCompletePlaque || _this.type === exports.InputType.SelectAutoCompletePlaqueM ||
1859
1859
  _this.type === exports.InputType.SelectAutoCompletePlaqueF || _this.type === exports.InputType.Radio) {
1860
1860
  var r = _this.getOptions(result, null);
1861
- console.log(r, 'this.getOptions(result, null)');
1862
1861
  var s = result.find(function (x) { return x.Selected; });
1863
1862
  if (s) {
1864
1863
  _this.value = s.Id.toString();
@@ -1890,7 +1889,6 @@
1890
1889
  InputClass.prototype.setOptions = function (r) {
1891
1890
  var _this = this;
1892
1891
  this.options = r;
1893
- console.log(this.options, 'this.options');
1894
1892
  if (this.value != null) {
1895
1893
  setTimeout(function () {
1896
1894
  _this.setValue(_this.value, true);
@@ -4288,7 +4286,6 @@
4288
4286
  }
4289
4287
  };
4290
4288
  this.inp.focus = function () {
4291
- console.log('this.inp.focus');
4292
4289
  _this.openOptions(true);
4293
4290
  };
4294
4291
  this.inp.isValid = function () {
@@ -4422,7 +4419,6 @@
4422
4419
  };
4423
4420
  FormPlaqueSelectComponent.prototype.loadOptions = function () {
4424
4421
  var v = this.getSearch().replace(/^_+|_+$/g, '');
4425
- console.log('loadOptions', v);
4426
4422
  if (v) {
4427
4423
  this.inp.load(this.inp.url.replace('{}', v));
4428
4424
  }
@@ -4432,7 +4428,6 @@
4432
4428
  };
4433
4429
  FormPlaqueSelectComponent.prototype.openOptions = function (f) {
4434
4430
  if (f === void 0) { f = false; }
4435
- console.log('openOptions');
4436
4431
  this.setPosition();
4437
4432
  this.setHoverCenter();
4438
4433
  this.open = true;
@@ -4506,7 +4501,6 @@
4506
4501
  }
4507
4502
  };
4508
4503
  FormPlaqueSelectComponent.prototype.toggleOption = function () {
4509
- console.log('toggleOption');
4510
4504
  this.openOptions();
4511
4505
  };
4512
4506
  FormPlaqueSelectComponent.prototype.selectOption = function (v, isEdit) {