ps-toolkit-ui 1.10.79 → 1.10.81
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/form.class.js +2 -1
- package/esm2015/lib/components/form/select/form.select.component.js +2 -1
- package/esm2015/lib/components/form/select/item/form.select.item.component.js +1 -1
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/form.class.d.ts +1 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -1941,6 +1941,7 @@
|
|
|
1941
1941
|
this.placeholder = null;
|
|
1942
1942
|
this.addNew = false;
|
|
1943
1943
|
this.description = null;
|
|
1944
|
+
this.valueOption = null;
|
|
1944
1945
|
this.value = null;
|
|
1945
1946
|
this.search = null;
|
|
1946
1947
|
this.default = null;
|
|
@@ -5274,7 +5275,7 @@
|
|
|
5274
5275
|
FormSelectItemComponent.decorators = [
|
|
5275
5276
|
{ type: core.Component, args: [{
|
|
5276
5277
|
selector: 'lib-form-select-item',
|
|
5277
|
-
template: "<div [className]=\"'option-con' + (item.value == select.value ? ' selected' : '')\" *ngIf=\"item.show\" [attr.data-value]=\"item.value\">\r\n <div (click)=\"(!select.onlyChild || item.options.length == 0) && selectOption.emit(item.value)\" [class]=\"(!select.onlyChild || item.options.length == 0 ? '
|
|
5278
|
+
template: "<div [className]=\"'option-con' + (item.value == select.value ? ' selected' : '')\" *ngIf=\"item.show\" [attr.data-value]=\"item.value\">\r\n <div (click)=\"(!select.onlyChild || item.options.length == 0) && selectOption.emit(item.value)\" [class]=\"(!select.onlyChild || item.options.length == 0 ? '' : 'disable ') + 'option'\">\r\n <div [className]=\"(item.selected ? 'checked ' : item.selected == null ? 'null ' : '') + ' check'\" *ngIf=\"select.multiple\"></div>\r\n <span [innerHTML]=\"select.l(item.name) | safeHtml\"></span>\r\n <span *ngIf=\"item.option && item.option.Color\" class=\"color\" [style]=\"{backgroundColor: item.option.Color}\"></span>\r\n </div>\r\n <div *ngIf=\"item.options.length > 0 && (select.level === null || select.level > level)\" class=\"children rightline\">\r\n <lib-form-select-item (selectOption)=\"selectOption.emit($event)\" [level]=\"level + 1\" [parent]=\"item\" [item]=\"op\" [select]=\"select\" *ngFor=\"let op of item.options\"></lib-form-select-item>\r\n </div>\r\n</div>\r\n",
|
|
5278
5279
|
styles: [".option-con{float:right;width:100%}.option-con .caret-icon{float:right;font-size:20px;height:35px;line-height:33px;text-align:center;width:35px}.option-con .children{float:left;position:relative;width:calc(100% - 35px)}.option{align-items:center;border-radius:0;display:flex;float:left;font-size:10px;justify-content:center;line-height:15px;min-height:30px;padding:3px 10px;position:relative;text-align:center;width:100%}.option.disable{cursor:default}.option .color{border-radius:var(--border-radius-base);height:15px;position:absolute;right:20px;top:7.5px;width:15px}::ng-deep .plaque-inp .option{direction:ltr}.option .check:after{content:\"\\f0c8\";font-family:Font Awesome\\ 5 Pro;font-size:18px;font-weight:400;height:20px;line-height:20px;position:absolute;right:5px;top:5px;width:20px}.option .check.checked:after{content:\"\\f14a\"}.option .check.checked:after,.option .check.null:after{animation:pop .18s ease-in;color:var(--green);font-weight:900}.option .check.null:after{content:\"\\f146\"}.option-con.hover>.option:not(.disable),.option-con.selected>.option{background-color:var(--black-white)}"]
|
|
5279
5280
|
},] }
|
|
5280
5281
|
];
|
|
@@ -5512,6 +5513,7 @@
|
|
|
5512
5513
|
this.inp.search = '';
|
|
5513
5514
|
}
|
|
5514
5515
|
else {
|
|
5516
|
+
this.inp.valueOption = va;
|
|
5515
5517
|
this.inp.value = v;
|
|
5516
5518
|
this.inp.search = va ? (((this.inp.type !== exports.InputType.SelectSearch && this.inp.type !== exports.InputType.Select) || va.search) ? va.search : va.name) : '';
|
|
5517
5519
|
}
|