@eqproject/eqp-dynamic-module 2.8.12 → 2.8.15
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/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +33 -16
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +5 -3
- package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +5 -3
- package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +5 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +5 -3
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +5 -3
- package/esm2020/lib/components/private/trigger-creator/trigger-templates/text-trigger-template/text-trigger-template.component.mjs +5 -3
- package/esm2020/lib/components/private/trigger-creator/trigger-templates/textarea-trigger-template/textarea-trigger-template.component.mjs +5 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +54 -29
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +54 -29
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +5 -0
- package/lib/components/private/add-form-field/add-form-field.component.d.ts +1 -0
- package/lib/components/private/field-templates/text-field-template/text-field-template.component.d.ts +1 -0
- package/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.d.ts +1 -0
- package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +1 -0
- package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +1 -0
- package/lib/components/private/trigger-creator/trigger-templates/text-trigger-template/text-trigger-template.component.d.ts +1 -0
- package/lib/components/private/trigger-creator/trigger-templates/textarea-trigger-template/textarea-trigger-template.component.d.ts +1 -0
- package/package.json +2 -2
|
@@ -239,6 +239,11 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
239
239
|
* Crea il FormGroup per l'oggetto Form
|
|
240
240
|
*/
|
|
241
241
|
private createFormForm;
|
|
242
|
+
/**
|
|
243
|
+
* Drag and Drop delle colonne del form
|
|
244
|
+
*/
|
|
245
|
+
onDragReleased(event: any): void;
|
|
246
|
+
onDragEnded(event: any): void;
|
|
242
247
|
/**
|
|
243
248
|
* Crea il FormGroup epr l'aggiunta o la modifica di una action sui record della Form.
|
|
244
249
|
*/
|
|
@@ -114,6 +114,7 @@ export declare class AddFormFieldComponent implements OnInit {
|
|
|
114
114
|
key: string;
|
|
115
115
|
}>;
|
|
116
116
|
DMGetterCardinalities: typeof DataGetterCardinalityEnum;
|
|
117
|
+
platform: string;
|
|
117
118
|
constructor(formBuilder: UntypedFormBuilder, enumHelper: EnumHelper, dialog: MatDialog, cdr: ChangeDetectorRef, httpClient: HttpClient, utilityHelperService: UtilityHelperService);
|
|
118
119
|
ngOnInit(): Promise<void>;
|
|
119
120
|
/**
|
|
@@ -16,6 +16,7 @@ export declare class TextFieldTemplateComponent implements OnInit, OnChanges, IB
|
|
|
16
16
|
LabelstyleObj: any;
|
|
17
17
|
recordChange: EventEmitter<Record>;
|
|
18
18
|
InputMaskEnum: typeof TextMaskEnum;
|
|
19
|
+
platform: string;
|
|
19
20
|
constructor();
|
|
20
21
|
ngOnInit(): void;
|
|
21
22
|
initStyles(): void;
|
|
@@ -23,6 +23,7 @@ export declare class TextTriggerTemplateComponent {
|
|
|
23
23
|
booleanLogicOperatorType: typeof BooleanLogicOperatorType;
|
|
24
24
|
selectedBooleanLogicOperator: BooleanLogicOperatorType;
|
|
25
25
|
field: TextField;
|
|
26
|
+
platform: string;
|
|
26
27
|
constructor();
|
|
27
28
|
ngOnInit(): void;
|
|
28
29
|
initStyles(): void;
|
|
@@ -23,6 +23,7 @@ export declare class TextareaTriggerTemplateComponent {
|
|
|
23
23
|
activeCondition: boolean;
|
|
24
24
|
booleanLogicOperatorType: typeof BooleanLogicOperatorType;
|
|
25
25
|
selectedBooleanLogicOperator: BooleanLogicOperatorType;
|
|
26
|
+
platform: string;
|
|
26
27
|
constructor();
|
|
27
28
|
ngOnInit(): void;
|
|
28
29
|
initStyles(): void;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "EqProject"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.8.
|
|
7
|
+
"version": "2.8.15",
|
|
8
8
|
"peerDependencies": {
|
|
9
9
|
"@angular-material-components/datetime-picker": "^15.0.0",
|
|
10
10
|
"@angular-material-components/moment-adapter": "^15.0.0",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@eqproject/eqp-filters": "2.0.3",
|
|
23
23
|
"@eqproject/eqp-numeric": "2.0.1",
|
|
24
24
|
"@eqproject/eqp-select": "2.0.2",
|
|
25
|
-
"@eqproject/eqp-table": "2.5.
|
|
25
|
+
"@eqproject/eqp-table": "2.5.9",
|
|
26
26
|
"browser-image-compression": "^1.0.15",
|
|
27
27
|
"fabric": "^3.6.2",
|
|
28
28
|
"ngx-image-cropper": "^6.3.2",
|