@acorex/components 16.20.9 → 16.20.10

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.
@@ -13954,8 +13954,19 @@ class AXDatePropertyEditorComponent extends AXProperyEditorComponent {
13954
13954
  super.handleValueChange(e.value);
13955
13955
  }
13956
13956
  navigate(value) {
13957
+ this.date._renderPicker = true;
13958
+ this.cdr.detectChanges();
13957
13959
  this.date.navigate(value);
13958
13960
  }
13961
+ open() {
13962
+ this.date.dropdown.open();
13963
+ }
13964
+ close() {
13965
+ this.date.dropdown.close();
13966
+ }
13967
+ toggle() {
13968
+ this.date.dropdown.toggle();
13969
+ }
13959
13970
  ngAfterViewInit() {
13960
13971
  this.registerForValidationForm(this.date);
13961
13972
  this.onRenderCompleted.emit();