@acorex/components 16.19.38 → 16.19.39
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.
|
@@ -12046,6 +12046,10 @@ class AXSearchBarComponent {
|
|
|
12046
12046
|
const editor = this._editors.find((x) => x.property.property.uniqueName === uniqueName);
|
|
12047
12047
|
editor.instance[editorOptionsKey] = value;
|
|
12048
12048
|
}
|
|
12049
|
+
setValue(uniqueName, value) {
|
|
12050
|
+
const editor = this._editors.find((x) => x.property.property.uniqueName === uniqueName);
|
|
12051
|
+
editor.property.value = value;
|
|
12052
|
+
}
|
|
12049
12053
|
ngOnInit() {
|
|
12050
12054
|
if (this.rtl == null) {
|
|
12051
12055
|
this.rtl =
|