ps-toolkit-ui 0.0.153 → 0.0.154
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 -2
- 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 -2
- package/esm2015/lib/components/form/label/form.label.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1665,7 +1665,7 @@
|
|
|
1665
1665
|
var ivs = _.get(d, inp.name.replace('Id', ''));
|
|
1666
1666
|
inp.setValue({ Search: ivs, Value: iv }, true);
|
|
1667
1667
|
}
|
|
1668
|
-
else {
|
|
1668
|
+
else if (inp.type !== exports.InputType.Label) {
|
|
1669
1669
|
inp.setValue(iv, true);
|
|
1670
1670
|
}
|
|
1671
1671
|
if (inp.type === exports.InputType.SelectAutoCompletePlaque || inp.type === exports.InputType.SelectAutoComplete) {
|
|
@@ -4043,7 +4043,7 @@
|
|
|
4043
4043
|
FormLabelComponent.decorators = [
|
|
4044
4044
|
{ type: core.Component, args: [{
|
|
4045
4045
|
selector: 'lib-form-label',
|
|
4046
|
-
template: "<div [id]=\"inp.name + 'Input'\" (click)=\"onClick()\" #inputDiv [className]=\"inp.class + ' form-input label'\" [innerHTML]=\"inp.value\">\r\n</div>\r\n
|
|
4046
|
+
template: "<div [id]=\"inp.name + 'Input'\" (click)=\"onClick()\" #inputDiv [className]=\"inp.class + ' form-input label'\" [innerHTML]=\"inp.l(inp.value)\">\r\n</div>\r\n",
|
|
4047
4047
|
styles: [".form-input.label{-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;cursor:default;float:right;font-size:12px;line-height:30px;padding:0 15px;position:relative;text-align:center;width:100%}.form-input.label.underline{margin:20px 15px;width:calc(100% - 30px)}.form-input.label.form-group-title{margin:0 15px 10px;width:calc(100% - 30px)}.form-input.label.space{margin:10px 15px;width:calc(100% - 30px)}.form-input.label.h-58{height:58px;line-height:58px}.form-input.label.h-45{height:45px;line-height:45px}.form-input.label.h-30{height:30px;line-height:30px}.form-input.label.h-25{height:25px;line-height:25px}"]
|
|
4048
4048
|
},] }
|
|
4049
4049
|
];
|