monkey-front-components 0.0.619 → 0.0.620

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.
@@ -971,6 +971,11 @@ class MECXDynamicSelectComponent {
971
971
  get className() {
972
972
  return this._field?.style?.class;
973
973
  }
974
+ ngOnInit() {
975
+ if (this._field && this._field?.startValues) {
976
+ this.onHandleGenericLoad();
977
+ }
978
+ }
974
979
  onHandleGenericLoad() {
975
980
  const { _form, _field, self } = this;
976
981
  if (_form?.disabled || !_field || !_field?.functions?.onHandleGenericLoad)