@eqproject/eqp-dynamic-module 2.8.12 → 2.8.14
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/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 +22 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +22 -14
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- 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 +1 -1
|
@@ -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;
|