@eqproject/eqp-dynamic-module 2.10.32 → 2.10.34
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 +3 -3
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +4 -4
- package/esm2020/lib/components/private/field-templates/attachment-field-template/attachment-field-template.component.mjs +3 -3
- package/esm2020/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.mjs +24 -8
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/graphs/graph/graph.component.mjs +7 -7
- package/esm2020/lib/components/private/tmw-image-marker/tmw-image-marker.component.mjs +7 -5
- package/esm2020/lib/directives/dynamic-loader/dynamic-loader.directive.mjs +5 -5
- package/esm2020/lib/directives/speech-to-text/speech-to-text.directive.mjs +4 -4
- package/esm2020/lib/models/fields/attachmentField.model.mjs +1 -1
- package/esm2020/lib/services/utilityHelper.services.mjs +9 -9
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +59 -41
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +59 -41
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/field-templates/boolean-field-template/boolean-field-template.component.d.ts +2 -0
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +1 -1
- package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +1 -1
- package/lib/models/fields/attachmentField.model.d.ts +1 -1
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ export declare class BooleanFieldTemplateComponent implements OnInit, OnChanges,
|
|
|
14
14
|
constructor();
|
|
15
15
|
initStyles(): void;
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
+
checkReadonly(): void;
|
|
18
|
+
checkVisibility(defaultValue: any): void;
|
|
17
19
|
ngOnChanges(changes: SimpleChanges): void;
|
|
18
20
|
/**
|
|
19
21
|
* Metodo per aggiornare il valore del campo quando questo è rappresentato da una formula.
|
|
@@ -16,7 +16,7 @@ import { DatePipe } from "@angular/common";
|
|
|
16
16
|
import { ModeEnum, TimeTypeEnum } from 'tmw-picker';
|
|
17
17
|
import { TabellarField } from '../../../../models/graph.model';
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
|
-
type Panel = {
|
|
19
|
+
declare type Panel = {
|
|
20
20
|
record: Record;
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
pageState: string;
|
|
@@ -7,7 +7,7 @@ import { UtilityHelperService } from '../../../../../services/utilityHelper.serv
|
|
|
7
7
|
import { DynamicLoaderDirectiveData, eventOut } from '../../../../../directives/dynamic-loader/dynamic-loader.directive';
|
|
8
8
|
import { FireTrigger, ActionButton } from '../../../../../models/trigger.model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
type PageState = null | 'visualizzaContenuto' | 'modificaContenuto';
|
|
10
|
+
declare type PageState = null | 'visualizzaContenuto' | 'modificaContenuto';
|
|
11
11
|
export declare class SingleRecordComponent implements OnInit {
|
|
12
12
|
private utilityHelperService;
|
|
13
13
|
endPointConfiguration: EndPointConfiguration;
|
|
@@ -3,7 +3,7 @@ export declare class AttachmentField extends BaseField {
|
|
|
3
3
|
/**Elenco delle estensioni consentite. Se vuoto usa il default (pdf) */
|
|
4
4
|
AllowedExtensions: Array<string>;
|
|
5
5
|
/**Se true permette l'inserimento di più allegati. In questo caso i metadati vengono rappresentati come una detail */
|
|
6
|
-
|
|
6
|
+
isMultiAttach: boolean;
|
|
7
7
|
/**Elenco campi che possono rappresentare i metadati dell'allegato, ad esempio nome, ecc... */
|
|
8
8
|
MetadataFields: Array<BaseField>;
|
|
9
9
|
}
|