ps-toolkit-ui 1.11.71 → 1.11.72
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.
- package/bundles/ps-toolkit-ui.umd.js +2 -0
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/form.class.js +2 -1
- package/esm2015/lib/components/form/date/form.date.component.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +2 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1909,6 +1909,7 @@
|
|
|
1909
1909
|
FormClass.prototype.setData = function (d) {
|
|
1910
1910
|
this.inputs.forEach(function (inp) {
|
|
1911
1911
|
var iv = _.get(d, inp.name);
|
|
1912
|
+
console.log(iv, 'iviviviviviv');
|
|
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);
|
|
@@ -3846,6 +3847,7 @@
|
|
|
3846
3847
|
};
|
|
3847
3848
|
};
|
|
3848
3849
|
FormDateComponent.prototype.setInpValue = function (v) {
|
|
3850
|
+
console.log(v, 'setInpValue');
|
|
3849
3851
|
if (v === null) {
|
|
3850
3852
|
this.inp.clear();
|
|
3851
3853
|
this.active = moment__namespace().locale('fa');
|