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.
- package/esm2020/lib/components/dynamic/select/select.component.mjs +6 -1
- package/esm2020/lib/interfaces/field-config.mjs +1 -1
- package/fesm2015/monkey-front-components.mjs +6 -0
- package/fesm2015/monkey-front-components.mjs.map +1 -1
- package/fesm2020/monkey-front-components.mjs +5 -0
- package/fesm2020/monkey-front-components.mjs.map +1 -1
- package/lib/components/dynamic/select/select.component.d.ts +3 -2
- package/lib/interfaces/field-config.d.ts +1 -0
- package/monkey-front-components-0.0.620.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-components-0.0.619.tgz +0 -0
|
@@ -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)
|