@acorex/components 4.2.32 → 4.2.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.
@@ -3843,7 +3843,7 @@ class AXDatePickerComponent extends AXValidatableComponent {
3843
3843
  this.selectToday();
3844
3844
  }
3845
3845
  if (this.dropdown.dropdownWidth > 200 || this.dropdown.dropdownWidth < 200) {
3846
- this.dropdown.dropdownWidth = 250;
3846
+ this.dropdown.dropdownWidth = 320;
3847
3847
  }
3848
3848
  this.cdr.markForCheck();
3849
3849
  });
@@ -5460,6 +5460,7 @@ class AXFormGroupComponent extends AXBaseComponent {
5460
5460
  }
5461
5461
  ngAfterViewInit() {
5462
5462
  this.required = this.component?.validation?.rules?.some(c => c.type === 'required');
5463
+ this.div.nativeElement.classList.add(this.size);
5463
5464
  if (this.required) {
5464
5465
  this.div.nativeElement.classList.add('required-state');
5465
5466
  }