@eqproject/eqp-dynamic-module 2.10.86 → 2.10.88
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 +4 -0
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +76 -19
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +3 -3
- package/esm2020/lib/services/utilityHelper.services.mjs +106 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +178 -12
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +174 -12
- 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 +11 -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;
|
|
@@ -437,6 +444,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
437
444
|
deleteActionButton(element: ActionButton): void;
|
|
438
445
|
openAiEditDialog(): void;
|
|
439
446
|
closeAiEditDialog(): void;
|
|
447
|
+
openAiHistoryDialog(): void;
|
|
448
|
+
private _stopAiCountdown;
|
|
449
|
+
private _startAiCountdown;
|
|
450
|
+
cancelAiEdit(): void;
|
|
440
451
|
onAiEditForField(fieldCode: string): void;
|
|
441
452
|
onAiGraphicSuggest(data: {
|
|
442
453
|
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>;
|