@acorex/components 16.19.34 → 16.19.36
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.
|
@@ -12042,6 +12042,10 @@ class AXSearchBarComponent {
|
|
|
12042
12042
|
clearItem(name) {
|
|
12043
12043
|
this._editors.find((x) => x.property.property.name === name).clear();
|
|
12044
12044
|
}
|
|
12045
|
+
setPropertyEditorValue(uniqueName, editorOptionsKey, value) {
|
|
12046
|
+
const editor = this._editors.find((x) => x.property.property.uniqueName === uniqueName);
|
|
12047
|
+
editor.instance[editorOptionsKey] = value;
|
|
12048
|
+
}
|
|
12045
12049
|
ngOnInit() {
|
|
12046
12050
|
if (this.rtl == null) {
|
|
12047
12051
|
this.rtl =
|