ps-toolkit-ui 1.5.25 → 1.5.28
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 +3 -1
- 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/currentDataClass.js +3 -1
- package/esm2015/lib/components/table/table.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/currentDataClass.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3063,7 +3063,7 @@
|
|
|
3063
3063
|
}
|
|
3064
3064
|
else if (c.enum != null) {
|
|
3065
3065
|
c.search.type = exports.InputType.Select;
|
|
3066
|
-
c.search.options = [new OptionClass('', '
|
|
3066
|
+
c.search.options = [new OptionClass('', '-1')].concat(EnumUtils.getKeysAndValues(c.enum).map(function (x) { return new OptionClass(_this.table.l(x.key), x.value); }));
|
|
3067
3067
|
}
|
|
3068
3068
|
else {
|
|
3069
3069
|
c.search.type = exports.InputType.Text;
|
|
@@ -7829,11 +7829,13 @@
|
|
|
7829
7829
|
this.permissions = [];
|
|
7830
7830
|
this.modules = [];
|
|
7831
7831
|
this.software = { Version: '0.0' };
|
|
7832
|
+
this.setting = {};
|
|
7832
7833
|
if (data != null) {
|
|
7833
7834
|
this.user = data.User;
|
|
7834
7835
|
this.permissions = data.Permissions;
|
|
7835
7836
|
this.modules = data.Modules;
|
|
7836
7837
|
this.software = data.Software;
|
|
7838
|
+
this.setting = data.Setting;
|
|
7837
7839
|
}
|
|
7838
7840
|
}
|
|
7839
7841
|
return CurrentDataClass;
|