ps-toolkit-ui 1.16.31 → 1.16.32
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 +16 -17
- 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/components/form/select/form.select.component.js +17 -18
- package/fesm2015/ps-toolkit-ui.js +16 -17
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/form/select/form.select.component.d.ts +0 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -6204,28 +6204,27 @@
|
|
|
6204
6204
|
if (this.inp.onChange) {
|
|
6205
6205
|
this.inp.onChange(this.inp, isEdit);
|
|
6206
6206
|
}
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
this.
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
i.rel.search = '';
|
|
6217
|
-
i.rel.options = [];
|
|
6207
|
+
if (this.inp.rel) {
|
|
6208
|
+
this.inp.rel.value = null;
|
|
6209
|
+
this.inp.rel.search = '';
|
|
6210
|
+
this.inp.rel.options = [];
|
|
6211
|
+
if (this.inp.rel.rel) {
|
|
6212
|
+
this.inp.rel.rel.value = null;
|
|
6213
|
+
this.inp.rel.rel.search = '';
|
|
6214
|
+
this.inp.rel.rel.options = [];
|
|
6215
|
+
}
|
|
6218
6216
|
if (v !== null) {
|
|
6219
|
-
|
|
6220
|
-
if (
|
|
6221
|
-
|
|
6217
|
+
this.inp.rel.url = this.inp.relUrl.replace('{}', this.inp.value);
|
|
6218
|
+
if (this.inp.rel.type !== exports.InputType.SelectAutoComplete) {
|
|
6219
|
+
this.inp.rel.load();
|
|
6222
6220
|
}
|
|
6223
6221
|
else {
|
|
6224
|
-
|
|
6222
|
+
this.inp.rel.url += '_{}';
|
|
6225
6223
|
}
|
|
6226
6224
|
}
|
|
6227
|
-
|
|
6228
|
-
|
|
6225
|
+
}
|
|
6226
|
+
if (!isEdit && !this.inp.multiple) {
|
|
6227
|
+
this.cI('Tab');
|
|
6229
6228
|
}
|
|
6230
6229
|
};
|
|
6231
6230
|
FormSelectComponent.prototype.toggle = function (op) {
|