@eqproject/eqp-dynamic-module 2.0.0 → 2.0.1
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/README.md +21 -2
- package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +1 -1
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -3
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +2 -2
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +2 -2
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +2 -2
- package/esm2020/lib/components/private/form-records/list-form-record/list-form-record.component.mjs +1 -1
- package/esm2020/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.mjs +1 -1
- package/esm2020/lib/models/dynamicModuleCompileConfig.model.mjs +9 -0
- package/esm2020/lib/models/dynamicModuleConfig.model.mjs +13 -0
- package/esm2020/lib/models/dynamicModuleConfiguratorConfig.model.mjs +9 -0
- package/esm2020/lib/models/dynamicModuleConfiguratorSpecificConfig.model.mjs +10 -0
- package/esm2020/lib/models/dynamicModuleGeneralConfig.model.mjs +29 -0
- package/esm2020/lib/models/dynamicModuleListConfig.model.mjs +17 -0
- package/esm2020/lib/models/dynamicModuleRepairConfig.model.mjs +9 -0
- package/esm2020/public-api.mjs +8 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +19 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +19 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +2 -2
- package/lib/components/private/dynamic-module-field/dynamic-module-field.component.d.ts +1 -1
- package/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.d.ts +1 -1
- package/lib/components/private/form-records/add-form-record/add-form-record.component.d.ts +1 -1
- package/lib/components/private/form-records/list-form-record/list-form-record.component.d.ts +1 -1
- package/lib/components/private/form-records/repair-form-fields/repair-form-fields.component.d.ts +1 -1
- package/lib/models/{dynamicModuleCompileConfig.d.ts → dynamicModuleCompileConfig.model.d.ts} +0 -0
- package/lib/models/{dynamicModuleConfig.d.ts → dynamicModuleConfig.model.d.ts} +4 -4
- package/lib/models/{dynamicModuleConfiguratorConfig.d.ts → dynamicModuleConfiguratorConfig.model.d.ts} +2 -2
- package/lib/models/{dynamicModuleConfiguratorSpecificConfig.d.ts → dynamicModuleConfiguratorSpecificConfig.model.d.ts} +0 -0
- package/lib/models/{dynamicModuleGeneralConfig.d.ts → dynamicModuleGeneralConfig.model.d.ts} +0 -0
- package/lib/models/{dynamicModuleListConfig.d.ts → dynamicModuleListConfig.model.d.ts} +0 -0
- package/lib/models/{dynamicModuleRepairConfig.d.ts → dynamicModuleRepairConfig.model.d.ts} +0 -0
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
- package/esm2020/lib/models/dynamicModuleCompileConfig.mjs +0 -9
- package/esm2020/lib/models/dynamicModuleConfig.mjs +0 -13
- package/esm2020/lib/models/dynamicModuleConfiguratorConfig.mjs +0 -9
- package/esm2020/lib/models/dynamicModuleConfiguratorSpecificConfig.mjs +0 -10
- package/esm2020/lib/models/dynamicModuleGeneralConfig.mjs +0 -29
- package/esm2020/lib/models/dynamicModuleListConfig.mjs +0 -17
- package/esm2020/lib/models/dynamicModuleRepairConfig.mjs +0 -9
|
@@ -4832,6 +4832,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.8", ngImpor
|
|
|
4832
4832
|
}]
|
|
4833
4833
|
}] });
|
|
4834
4834
|
|
|
4835
|
+
class dynamicModuleRepairConfig {
|
|
4836
|
+
constructor() {
|
|
4837
|
+
/*
|
|
4838
|
+
* stringa da passare in REPAIR MODE
|
|
4839
|
+
*/
|
|
4840
|
+
this.FormJSON = "";
|
|
4841
|
+
}
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4844
|
+
class DynamicModuleConfig {
|
|
4845
|
+
constructor() {
|
|
4846
|
+
this.dynamicModuleGeneralConfig = new dynamicModuleGeneralConfig();
|
|
4847
|
+
this.dynamicModuleCompileConfig = new dynamicModuleCompileConfig();
|
|
4848
|
+
this.dynamicModuleListConfig = new dynamicModuleListConfig();
|
|
4849
|
+
this.dynamicModuleRepairConfig = new dynamicModuleRepairConfig();
|
|
4850
|
+
}
|
|
4851
|
+
}
|
|
4852
|
+
|
|
4835
4853
|
/**
|
|
4836
4854
|
* Rappresenta l'entità su cui vengono eseguite le operazioni di salvataggio.
|
|
4837
4855
|
*/
|
|
@@ -4864,5 +4882,5 @@ class TextareaField extends BaseField {
|
|
|
4864
4882
|
* Generated bundle index. Do not edit.
|
|
4865
4883
|
*/
|
|
4866
4884
|
|
|
4867
|
-
export { ActionOnRecord, AddFormFieldComponent, AddFormRecordComponent, ArrayValidators, AttachmentField, AttachmentFieldTemplateComponent, AvailableFileExtensions, AvailableImageExtensions, BaseField, BaseObj, BoolPresentantioEnum, BooleanField, BooleanFieldTemplateComponent, ButtonImage, ColSpanSizesEnum, Context, ContextUser, DateField, DateFieldTemplateComponent, DateTimeTypeEnum, DynRecord, DynamicModuleFieldComponent, EndPointConfiguration, EndPointData, EndPointDataParams, Entity, EqpDynamicModuleComponent, EqpDynamicModuleConfiguratorComponent, EqpDynamicModuleDialogService, EqpDynamicModuleModule, FieldTypeEnum, Form, FormFieldGroup, FormScalarTypeEnum, FormTypeEnum, ImageField, ImageFieldTemplateComponent, ListFormRecordComponent, ListPresentationEnum, ListValueField, ListValueFieldTemplateComponent, LookupField, NumericField, NumericFieldTemplateComponent, ParamTypeEnum, Record, RepairFormFieldsComponent, RequestMethodEnum, SpinnerService, TelRegex, TextField, TextFieldTemplateComponent, TextMaskEnum, TextareaField, TextareaFieldTemplateComponent, UrlRegex, UtilityHelperService };
|
|
4885
|
+
export { ActionOnRecord, AddFormFieldComponent, AddFormRecordComponent, ArrayValidators, AttachmentField, AttachmentFieldTemplateComponent, AvailableFileExtensions, AvailableImageExtensions, BaseField, BaseObj, BoolPresentantioEnum, BooleanField, BooleanFieldTemplateComponent, ButtonImage, ColSpanSizesEnum, Context, ContextUser, DateField, DateFieldTemplateComponent, DateTimeTypeEnum, DynRecord, DynamicModuleConfig, DynamicModuleConfiguratorConfig, DynamicModuleConfiguratorSpecificConfig, DynamicModuleFieldComponent, EndPointConfiguration, EndPointData, EndPointDataParams, Entity, EqpDynamicModuleComponent, EqpDynamicModuleConfiguratorComponent, EqpDynamicModuleDialogService, EqpDynamicModuleModule, FieldTypeEnum, Form, FormFieldGroup, FormScalarTypeEnum, FormTypeEnum, ImageField, ImageFieldTemplateComponent, ListFormRecordComponent, ListPresentationEnum, ListValueField, ListValueFieldTemplateComponent, LookupField, NumericField, NumericFieldTemplateComponent, ParamTypeEnum, Record, RepairFormFieldsComponent, RequestMethodEnum, SpinnerService, TelRegex, TextField, TextFieldTemplateComponent, TextMaskEnum, TextareaField, TextareaFieldTemplateComponent, UrlRegex, UtilityHelperService, dynamicModuleCompileConfig, dynamicModuleGeneralConfig, dynamicModuleListConfig, dynamicModuleRepairConfig };
|
|
4868
4886
|
//# sourceMappingURL=eqproject-eqp-dynamic-module.mjs.map
|