@eqproject/eqp-dynamic-module 2.10.87 → 2.10.89
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 +86 -23
- package/esm2020/lib/services/utilityHelper.services.mjs +106 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +186 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +182 -14
- 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 +13 -0
- package/lib/services/utilityHelper.services.d.ts +5 -0
- package/package.json +1 -1
|
@@ -140,6 +140,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
140
140
|
selectedFields: Array<BaseField>;
|
|
141
141
|
dialogAiEditRef: MatDialogRef<TemplateRef<any>>;
|
|
142
142
|
dialogAiEdit: TemplateRef<any>;
|
|
143
|
+
dialogAiHistoryRef: MatDialogRef<TemplateRef<any>>;
|
|
144
|
+
dialogAiHistory: TemplateRef<any>;
|
|
143
145
|
dialogContestualizationRef: MatDialogRef<TemplateRef<any>>;
|
|
144
146
|
dialogContestualization: TemplateRef<any>;
|
|
145
147
|
dialogVeTooltip: TemplateRef<any>;
|
|
@@ -163,6 +165,11 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
163
165
|
}>;
|
|
164
166
|
aiEditAutosave: boolean;
|
|
165
167
|
aiEditLoading: boolean;
|
|
168
|
+
aiEditCountdown: number;
|
|
169
|
+
aiEditEstimatedSec: number;
|
|
170
|
+
private _aiCountdownRef;
|
|
171
|
+
private _aiEditCancelled;
|
|
172
|
+
aiEditIsOvertime: boolean;
|
|
166
173
|
showAiPromptHistory: boolean;
|
|
167
174
|
aiEditFieldContext: {
|
|
168
175
|
code: string;
|
|
@@ -172,6 +179,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
172
179
|
formGraphicSuggestHint: string;
|
|
173
180
|
showFormGraphicSuggestInput: boolean;
|
|
174
181
|
formGraphicScope: string;
|
|
182
|
+
generateBackground: boolean;
|
|
183
|
+
aiGenerateBackground: boolean;
|
|
175
184
|
presentFieldTypeOptions: {
|
|
176
185
|
value: string;
|
|
177
186
|
label: string;
|
|
@@ -437,6 +446,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
437
446
|
deleteActionButton(element: ActionButton): void;
|
|
438
447
|
openAiEditDialog(): void;
|
|
439
448
|
closeAiEditDialog(): void;
|
|
449
|
+
openAiHistoryDialog(): void;
|
|
450
|
+
private _stopAiCountdown;
|
|
451
|
+
private _startAiCountdown;
|
|
452
|
+
cancelAiEdit(): void;
|
|
440
453
|
onAiEditForField(fieldCode: string): void;
|
|
441
454
|
onAiGraphicSuggest(data: {
|
|
442
455
|
code: string;
|
|
@@ -108,6 +108,11 @@ export declare class UtilityHelperService {
|
|
|
108
108
|
CostCents: number;
|
|
109
109
|
ElapsedMs: number;
|
|
110
110
|
}) => void, errorCallBack?: (err: unknown) => void): void;
|
|
111
|
+
/**
|
|
112
|
+
* Variante SSE di RunEndPointCall: legge la risposta come stream text/event-stream.
|
|
113
|
+
* Emette tre callback: onEstimate (stima pre-call SKILLFORK), onResult (payload completo), onError.
|
|
114
|
+
*/
|
|
115
|
+
RunSseEndPointCall(endPointData: EndPointData, dynamicModuleParams: Array<EndPointDataParams>, onEstimate: (estimatedSeconds: number) => void, onResult: (res: any) => void, onError: (err: any) => void, skipSpinner?: boolean): void;
|
|
111
116
|
static base64ToBlob(b64Data: any, contentType?: string, sliceSize?: number): Blob;
|
|
112
117
|
static parseValueString(field: any, record: any): any;
|
|
113
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityHelperService, never>;
|