@eqproject/eqp-dynamic-module 2.10.70 → 2.10.72
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 +52 -6
- package/esm2020/lib/models/baseField.model.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +47 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +46 -2
- 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/models/baseField.model.d.ts +2 -0
- package/package.json +2 -2
|
@@ -176,6 +176,9 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
176
176
|
value: string;
|
|
177
177
|
label: string;
|
|
178
178
|
}[];
|
|
179
|
+
pendingAiDataGetterFields: BaseField[];
|
|
180
|
+
currentAiDataGetterField: BaseField | null;
|
|
181
|
+
aiDataGetterLoading: boolean;
|
|
179
182
|
get aiPromptHistory(): string[];
|
|
180
183
|
private readonly AI_MODIFIER_SKILL_TOKENS;
|
|
181
184
|
private readonly AI_TOKENS_PER_FIELD;
|
|
@@ -423,6 +426,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
423
426
|
*/
|
|
424
427
|
private reloadActionButtonsOnRecordTable;
|
|
425
428
|
onExternalComponentOut(ev: eventOut): void;
|
|
429
|
+
private processNextAiDataGetterField;
|
|
430
|
+
onAiDataGetterOut(ev: eventOut): void;
|
|
426
431
|
/**
|
|
427
432
|
* TRIGGERS
|
|
428
433
|
*/
|
|
@@ -58,6 +58,8 @@ export declare class DataGetter {
|
|
|
58
58
|
DataGetterCardinality: DataGetterCardinalityEnum;
|
|
59
59
|
DataGetterContestualization: Contestualization;
|
|
60
60
|
DataGetterHasResetButton: boolean;
|
|
61
|
+
DataGetterCodeVersion?: number;
|
|
62
|
+
DataGetterSpeechText?: string;
|
|
61
63
|
}
|
|
62
64
|
export declare enum FieldTypeEnum {
|
|
63
65
|
'Campo di testo' = 1,
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "EqProject"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.10.
|
|
7
|
+
"version": "2.10.72",
|
|
8
8
|
"peerDependencies": {
|
|
9
9
|
"@angular-material-components/datetime-picker": "^15.0.0",
|
|
10
10
|
"@angular-material-components/moment-adapter": "^15.0.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"ngx-image-cropper": "^6.3.2",
|
|
32
32
|
"ngx-mat-select-search": "^7.0.1",
|
|
33
33
|
"simple-statistics": "^7.8.3",
|
|
34
|
-
"tmw-picker": "^1.2.
|
|
34
|
+
"tmw-picker": "^1.2.4",
|
|
35
35
|
"tslib": "^2.4.0"
|
|
36
36
|
},
|
|
37
37
|
"sideEffects": true,
|