ps-toolkit-ui 1.11.71 → 1.11.73

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.
@@ -1814,7 +1814,7 @@
1814
1814
  }
1815
1815
  }
1816
1816
  var setD = function (n, vl) {
1817
- var e_1, _a;
1817
+ var e_1, _b;
1818
1818
  if (d instanceof FormData) {
1819
1819
  if (vl instanceof Array) {
1820
1820
  try {
@@ -1826,7 +1826,7 @@
1826
1826
  catch (e_1_1) { e_1 = { error: e_1_1 }; }
1827
1827
  finally {
1828
1828
  try {
1829
- if (vl_1_1 && !vl_1_1.done && (_a = vl_1.return)) _a.call(vl_1);
1829
+ if (vl_1_1 && !vl_1_1.done && (_b = vl_1.return)) _b.call(vl_1);
1830
1830
  }
1831
1831
  finally { if (e_1) throw e_1.error; }
1832
1832
  }
@@ -1850,20 +1850,20 @@
1850
1850
  }
1851
1851
  };
1852
1852
  this.inputs.forEach(function (inp) {
1853
- var e_2, _a;
1853
+ var e_2, _b;
1854
1854
  var vl = inp.data();
1855
1855
  if (vl !== null) {
1856
1856
  if (typeof vl === 'object' && !(vl instanceof Array)) {
1857
1857
  try {
1858
- for (var _b = __values(Object.entries(vl)), _c = _b.next(); !_c.done; _c = _b.next()) {
1859
- var _d = __read(_c.value, 2), key = _d[0], value = _d[1];
1858
+ for (var _c = __values(Object.entries(vl)), _d = _c.next(); !_d.done; _d = _c.next()) {
1859
+ var _e = __read(_d.value, 2), key = _e[0], value = _e[1];
1860
1860
  setD(key, value);
1861
1861
  }
1862
1862
  }
1863
1863
  catch (e_2_1) { e_2 = { error: e_2_1 }; }
1864
1864
  finally {
1865
1865
  try {
1866
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
1866
+ if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
1867
1867
  }
1868
1868
  finally { if (e_2) throw e_2.error; }
1869
1869
  }
@@ -1881,7 +1881,7 @@
1881
1881
  d = {};
1882
1882
  }
1883
1883
  this.inputs.forEach(function (inp) {
1884
- var e_3, _a;
1884
+ var e_3, _b;
1885
1885
  var vl = inp.data();
1886
1886
  if (vl !== null && vl !== '') {
1887
1887
  if (vl instanceof Array) {
@@ -1894,7 +1894,7 @@
1894
1894
  catch (e_3_1) { e_3 = { error: e_3_1 }; }
1895
1895
  finally {
1896
1896
  try {
1897
- if (vl_2_1 && !vl_2_1.done && (_a = vl_2.return)) _a.call(vl_2);
1897
+ if (vl_2_1 && !vl_2_1.done && (_b = vl_2.return)) _b.call(vl_2);
1898
1898
  }
1899
1899
  finally { if (e_3) throw e_3.error; }
1900
1900
  }
@@ -1908,7 +1908,8 @@
1908
1908
  };
1909
1909
  FormClass.prototype.setData = function (d) {
1910
1910
  this.inputs.forEach(function (inp) {
1911
- var iv = _.get(d, inp.name);
1911
+ var _a;
1912
+ var iv = (_a = _.get(d, inp.name)) !== null && _a !== void 0 ? _a : null;
1912
1913
  if (inp.type === exports.InputType.Vehicle) {
1913
1914
  var ivt = _.get(d, inp.name + 'Type');
1914
1915
  inp.setValue({ Value: iv, Type: ivt }, true);
@@ -2115,7 +2116,7 @@
2115
2116
  return this.getSelectedOptions(opts).map(function (x) { return x.value; });
2116
2117
  };
2117
2118
  InputClass.prototype.getSelectedOptions = function (opts) {
2118
- var e_4, _a;
2119
+ var e_4, _b;
2119
2120
  if (opts === void 0) { opts = this.options; }
2120
2121
  var l = [];
2121
2122
  try {
@@ -2131,7 +2132,7 @@
2131
2132
  catch (e_4_1) { e_4 = { error: e_4_1 }; }
2132
2133
  finally {
2133
2134
  try {
2134
- if (opts_1_1 && !opts_1_1.done && (_a = opts_1.return)) _a.call(opts_1);
2135
+ if (opts_1_1 && !opts_1_1.done && (_b = opts_1.return)) _b.call(opts_1);
2135
2136
  }
2136
2137
  finally { if (e_4) throw e_4.error; }
2137
2138
  }
@@ -2187,10 +2188,10 @@
2187
2188
  this.rows = rows;
2188
2189
  }
2189
2190
  AccordionClass.prototype.check = function () {
2190
- var e_5, _a;
2191
+ var e_5, _b;
2191
2192
  try {
2192
- for (var _b = __values(this.rows), _c = _b.next(); !_c.done; _c = _b.next()) {
2193
- var row = _c.value;
2193
+ for (var _c = __values(this.rows), _d = _c.next(); !_d.done; _d = _c.next()) {
2194
+ var row = _d.value;
2194
2195
  if (!row.form.check()) {
2195
2196
  row.open();
2196
2197
  return false;
@@ -2200,7 +2201,7 @@
2200
2201
  catch (e_5_1) { e_5 = { error: e_5_1 }; }
2201
2202
  finally {
2202
2203
  try {
2203
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
2204
+ if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
2204
2205
  }
2205
2206
  finally { if (e_5) throw e_5.error; }
2206
2207
  }