@solcre-org/core-ui 2.20.31 → 2.20.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.
|
@@ -1779,13 +1779,13 @@ class SelectFieldComponent extends BaseFieldComponent {
|
|
|
1779
1779
|
else {
|
|
1780
1780
|
current.push(option.value);
|
|
1781
1781
|
}
|
|
1782
|
-
this.formControl().setValue(current);
|
|
1782
|
+
this.formControl().setValue(current, { emitEvent: false });
|
|
1783
1783
|
this.formControl().markAsDirty();
|
|
1784
1784
|
this.onValueChange(current);
|
|
1785
1785
|
this.searchTerm.set('');
|
|
1786
1786
|
}
|
|
1787
1787
|
else {
|
|
1788
|
-
this.formControl().setValue(option.value);
|
|
1788
|
+
this.formControl().setValue(option.value, { emitEvent: false });
|
|
1789
1789
|
this.formControl().markAsDirty();
|
|
1790
1790
|
this.onValueChange(option.value);
|
|
1791
1791
|
this.closeDropdown();
|
|
@@ -1797,7 +1797,7 @@ class SelectFieldComponent extends BaseFieldComponent {
|
|
|
1797
1797
|
if (this.field().multiple) {
|
|
1798
1798
|
const current = Array.isArray(this.computedValue()) ? [...this.computedValue()] : [];
|
|
1799
1799
|
const filtered = current.filter((v) => String(v) !== String(item.value));
|
|
1800
|
-
this.formControl().setValue(filtered);
|
|
1800
|
+
this.formControl().setValue(filtered, { emitEvent: false });
|
|
1801
1801
|
this.formControl().markAsDirty();
|
|
1802
1802
|
this.onValueChange(filtered);
|
|
1803
1803
|
}
|
|
@@ -1806,7 +1806,7 @@ class SelectFieldComponent extends BaseFieldComponent {
|
|
|
1806
1806
|
event.preventDefault();
|
|
1807
1807
|
event.stopPropagation();
|
|
1808
1808
|
const emptyValue = this.field().multiple ? [] : null;
|
|
1809
|
-
this.formControl().setValue(emptyValue);
|
|
1809
|
+
this.formControl().setValue(emptyValue, { emitEvent: false });
|
|
1810
1810
|
this.formControl().markAsDirty();
|
|
1811
1811
|
this.hasValue.set(false);
|
|
1812
1812
|
this.onValueChange(emptyValue);
|
|
@@ -1853,7 +1853,7 @@ class SelectFieldComponent extends BaseFieldComponent {
|
|
|
1853
1853
|
if (current.length > 0) {
|
|
1854
1854
|
event.preventDefault();
|
|
1855
1855
|
current.pop();
|
|
1856
|
-
this.formControl().setValue(current);
|
|
1856
|
+
this.formControl().setValue(current, { emitEvent: false });
|
|
1857
1857
|
this.formControl().markAsDirty();
|
|
1858
1858
|
this.onValueChange(current);
|
|
1859
1859
|
}
|
|
@@ -17755,12 +17755,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17755
17755
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
17756
17756
|
// No edites manualmente este archivo
|
|
17757
17757
|
const VERSION = {
|
|
17758
|
-
full: '2.20.
|
|
17758
|
+
full: '2.20.32',
|
|
17759
17759
|
major: 2,
|
|
17760
17760
|
minor: 20,
|
|
17761
|
-
patch:
|
|
17762
|
-
timestamp: '2026-03-
|
|
17763
|
-
buildDate: '
|
|
17761
|
+
patch: 32,
|
|
17762
|
+
timestamp: '2026-03-04T17:46:34.039Z',
|
|
17763
|
+
buildDate: '4/3/2026'
|
|
17764
17764
|
};
|
|
17765
17765
|
|
|
17766
17766
|
class MainNavComponent {
|