ps-toolkit-ui 1.19.98 → 1.20.0
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 +5 -5
- 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/table.class.js +2 -2
- package/esm2015/lib/components/form/slide/form.slide.component.js +4 -2
- package/esm2015/lib/components/table/row/table.row.component.js +2 -4
- package/fesm2015/ps-toolkit-ui.js +5 -5
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/table.class.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3776,9 +3776,7 @@
|
|
|
3776
3776
|
}
|
|
3777
3777
|
};
|
|
3778
3778
|
TableRowComponent.prototype.onContextMenu = function (event) {
|
|
3779
|
-
|
|
3780
|
-
event.preventDefault(); // Prevents the default context menu for the entire component
|
|
3781
|
-
}
|
|
3779
|
+
event.preventDefault(); // Prevents the default context menu for the entire component
|
|
3782
3780
|
};
|
|
3783
3781
|
return TableRowComponent;
|
|
3784
3782
|
}());
|
|
@@ -8910,7 +8908,9 @@
|
|
|
8910
8908
|
}
|
|
8911
8909
|
_this.onChange(isEdit);
|
|
8912
8910
|
};
|
|
8913
|
-
|
|
8911
|
+
if (this.inp.default != null) {
|
|
8912
|
+
this.inp.setValue(this.inp.default, false);
|
|
8913
|
+
}
|
|
8914
8914
|
this.inp.isValid = function () {
|
|
8915
8915
|
_this.inp.error = null;
|
|
8916
8916
|
if (_this.inp.required && _this.inp.value === null) {
|
|
@@ -9259,7 +9259,7 @@
|
|
|
9259
9259
|
this.modal = null;
|
|
9260
9260
|
this.level = null;
|
|
9261
9261
|
this.withRelatedRow = false;
|
|
9262
|
-
this.relatedRow =
|
|
9262
|
+
this.relatedRow = null;
|
|
9263
9263
|
this.listAccess = null;
|
|
9264
9264
|
this.insertAccess = null;
|
|
9265
9265
|
this.subTable = null;
|