@eqproject/eqp-dynamic-module 2.10.50 → 2.10.52
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 +131 -11
- package/esm2020/lib/components/private/field-templates/label-field-template/label-field-template.component.mjs +4 -3
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +3 -3
- package/esm2020/lib/components/private/graphs/graph/graph.component.mjs +3 -3
- package/esm2020/lib/models/endPointConfiguration.model.mjs +6 -1
- package/esm2020/lib/models/fields/dateField.model.mjs +4 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +141 -11
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +135 -11
- 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 +25 -0
- package/lib/models/endPointConfiguration.model.d.ts +1 -0
- package/lib/models/fields/dateField.model.d.ts +3 -3
- package/package.json +1 -1
|
@@ -121,6 +121,26 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
121
121
|
selectedContestualizationValue: number;
|
|
122
122
|
showDeleteButton: boolean;
|
|
123
123
|
selectedFields: Array<BaseField>;
|
|
124
|
+
dialogAiEditRef: MatDialogRef<TemplateRef<any>>;
|
|
125
|
+
dialogAiEdit: TemplateRef<any>;
|
|
126
|
+
aiEditPrompt: string;
|
|
127
|
+
aiEditAttachments: Array<{
|
|
128
|
+
fileName: string;
|
|
129
|
+
base64Content: string;
|
|
130
|
+
mediaType: string;
|
|
131
|
+
}>;
|
|
132
|
+
aiEditAutosave: boolean;
|
|
133
|
+
aiEditLoading: boolean;
|
|
134
|
+
private readonly AI_MODIFIER_SKILL_TOKENS;
|
|
135
|
+
private readonly AI_TOKENS_PER_FIELD;
|
|
136
|
+
private readonly AI_OUTPUT_TOKENS;
|
|
137
|
+
private readonly AI_PDF_CHARS;
|
|
138
|
+
private readonly AI_CHARS_PER_TOKEN;
|
|
139
|
+
private readonly AI_EUR_USD_RATE;
|
|
140
|
+
get aiEditCostFirstEur(): number;
|
|
141
|
+
get aiEditCostSubsequentEur(): number;
|
|
142
|
+
formatAiEditCost(eur: number): string;
|
|
143
|
+
get isNewForm(): boolean;
|
|
124
144
|
constructor(formBuilder: UntypedFormBuilder, dialog: MatDialog, utilityHelperService: UtilityHelperService, sanitizer: DomSanitizer);
|
|
125
145
|
ngOnInit(): void;
|
|
126
146
|
/**
|
|
@@ -355,6 +375,11 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit {
|
|
|
355
375
|
saveTrigger(element: Trigger): void;
|
|
356
376
|
deleteTrigger(element: Trigger): void;
|
|
357
377
|
deleteActionButton(element: ActionButton): void;
|
|
378
|
+
openAiEditDialog(): void;
|
|
379
|
+
closeAiEditDialog(): void;
|
|
380
|
+
onAiEditFileChange(event: Event): void;
|
|
381
|
+
removeAiEditAttachment(index: number): void;
|
|
382
|
+
sendAiEdit(): void;
|
|
358
383
|
onContestualizationSelect(): void;
|
|
359
384
|
onContestualizationSelectValue(): void;
|
|
360
385
|
applyContestualization(element: any): void;
|