chrv-components 1.12.191 → 1.12.192
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.
|
Binary file
|
|
@@ -4944,7 +4944,8 @@ class ChrSearchSelectInputComponent extends ChrInputComponent {
|
|
|
4944
4944
|
* @param event InputEvent
|
|
4945
4945
|
*/
|
|
4946
4946
|
this.onInput = (event) => {
|
|
4947
|
-
this.value.set(null);
|
|
4947
|
+
// this.value.set(null);
|
|
4948
|
+
this.onChange(null);
|
|
4948
4949
|
};
|
|
4949
4950
|
this.selectOption = (event) => {
|
|
4950
4951
|
const displayFn = this.display();
|
|
@@ -5011,7 +5012,7 @@ class ChrTagSelectInputComponent extends ChrInputComponent {
|
|
|
5011
5012
|
const currentList = [...this.selectedItems()];
|
|
5012
5013
|
if (!currentList.includes(event)) {
|
|
5013
5014
|
const newList = [...currentList, event];
|
|
5014
|
-
this.value.set(newList);
|
|
5015
|
+
// this.value.set(newList);
|
|
5015
5016
|
this.onChange(newList);
|
|
5016
5017
|
}
|
|
5017
5018
|
this.displayValue.set('');
|