@eqproject/eqp-dynamic-module 2.5.7 → 2.5.8
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/private/field-templates/image-field-selector-template/image-field-selector-template.component.mjs +2 -2
- package/esm2020/lib/components/private/field-templates/label-field-template/label-field-template.component.mjs +5 -4
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/field-templates/textarea-field-template/textarea-field-template.component.mjs +2 -2
- package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +2 -2
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +2 -2
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +2 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +10 -10
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +10 -10
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1728,7 +1728,7 @@ class TextFieldTemplateComponent {
|
|
|
1728
1728
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
1729
1729
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
1730
1730
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
1731
|
-
if (this.field.
|
|
1731
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
1732
1732
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
1733
1733
|
}
|
|
1734
1734
|
ngOnChanges(changes) {
|
|
@@ -2001,7 +2001,7 @@ class TextareaFieldTemplateComponent {
|
|
|
2001
2001
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
2002
2002
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
2003
2003
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
2004
|
-
if (this.field.
|
|
2004
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
2005
2005
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
2006
2006
|
}
|
|
2007
2007
|
ngOnChanges(changes) {
|
|
@@ -2098,7 +2098,7 @@ class NumericFieldTemplateComponent {
|
|
|
2098
2098
|
initStyles() {
|
|
2099
2099
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
2100
2100
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
2101
|
-
if (this.field.
|
|
2101
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
2102
2102
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
2103
2103
|
}
|
|
2104
2104
|
// Se viene modificato il valore di "ngModelInput" allora aggiorna l'input
|
|
@@ -3245,7 +3245,7 @@ class ImageFieldSelectorTemplateComponent {
|
|
|
3245
3245
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
3246
3246
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
3247
3247
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
3248
|
-
if (this.field.
|
|
3248
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
3249
3249
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
3250
3250
|
}
|
|
3251
3251
|
ToLowerCase(el) {
|
|
@@ -3332,7 +3332,7 @@ class LabelFieldTemplateComponent {
|
|
|
3332
3332
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
3333
3333
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
3334
3334
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
3335
|
-
if (this.field.
|
|
3335
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
3336
3336
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
3337
3337
|
}
|
|
3338
3338
|
ngOnChanges(changes) {
|
|
@@ -3374,10 +3374,10 @@ class LabelFieldTemplateComponent {
|
|
|
3374
3374
|
}
|
|
3375
3375
|
}
|
|
3376
3376
|
LabelFieldTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelFieldTemplateComponent, deps: [{ token: VoiceRecognitionService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3377
|
-
LabelFieldTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LabelFieldTemplateComponent, selector: "label-field-template", inputs: { field: "field", record: "record" }, outputs: { recordChange: "recordChange" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"dm-etichetta\" [innerHTML]=\"field.Etichetta\"></div>", styles: ["input.ng-touched.ng-invalid,input.ng-dirty.ng-invalid{border:red 2px solid!important}::ng-deep .mat-form-field-label{font-size:x-large}.dm-etichetta{margin-top:18px}\n"] });
|
|
3377
|
+
LabelFieldTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LabelFieldTemplateComponent, selector: "label-field-template", inputs: { field: "field", record: "record" }, outputs: { recordChange: "recordChange" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"dm-etichetta\" [ngStyle]=\"LabelstyleObj\" [innerHTML]=\"field.Etichetta\"></div>", styles: ["input.ng-touched.ng-invalid,input.ng-dirty.ng-invalid{border:red 2px solid!important}::ng-deep .mat-form-field-label{font-size:x-large}.dm-etichetta{margin-top:18px}\n"], dependencies: [{ kind: "directive", type: i2$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
3378
3378
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LabelFieldTemplateComponent, decorators: [{
|
|
3379
3379
|
type: Component,
|
|
3380
|
-
args: [{ selector: 'label-field-template', template: "<div class=\"dm-etichetta\" [innerHTML]=\"field.Etichetta\"></div>", styles: ["input.ng-touched.ng-invalid,input.ng-dirty.ng-invalid{border:red 2px solid!important}::ng-deep .mat-form-field-label{font-size:x-large}.dm-etichetta{margin-top:18px}\n"] }]
|
|
3380
|
+
args: [{ selector: 'label-field-template', template: "<div class=\"dm-etichetta\" [ngStyle]=\"LabelstyleObj\" [innerHTML]=\"field.Etichetta\"></div>", styles: ["input.ng-touched.ng-invalid,input.ng-dirty.ng-invalid{border:red 2px solid!important}::ng-deep .mat-form-field-label{font-size:x-large}.dm-etichetta{margin-top:18px}\n"] }]
|
|
3381
3381
|
}], ctorParameters: function () { return [{ type: VoiceRecognitionService }]; }, propDecorators: { field: [{
|
|
3382
3382
|
type: Input
|
|
3383
3383
|
}], record: [{
|
|
@@ -6094,7 +6094,7 @@ class TextFilterTemplateComponent {
|
|
|
6094
6094
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
6095
6095
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
6096
6096
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
6097
|
-
if (this.field.
|
|
6097
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
6098
6098
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
6099
6099
|
}
|
|
6100
6100
|
ttsClick() {
|
|
@@ -6210,7 +6210,7 @@ class NumericFilterTemplateComponent {
|
|
|
6210
6210
|
initStyles() {
|
|
6211
6211
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
6212
6212
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
6213
|
-
if (this.field.
|
|
6213
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
6214
6214
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
6215
6215
|
}
|
|
6216
6216
|
/**
|
|
@@ -6635,7 +6635,7 @@ class TextareaFilterTemplateComponent {
|
|
|
6635
6635
|
//Funzione per parsare il campo stylecss dell'oggetto field ed applicarlo all'html
|
|
6636
6636
|
if (this.field.FieldstyleCSS != null || this.field.FieldstyleCSS != undefined)
|
|
6637
6637
|
this.FieldstyleObj = UtilityHelperService.initStyles(this.field.FieldstyleCSS);
|
|
6638
|
-
if (this.field.
|
|
6638
|
+
if (this.field.LabelstyleCSS != null || this.field.LabelstyleCSS != undefined)
|
|
6639
6639
|
this.LabelstyleObj = UtilityHelperService.initStyles(this.field.LabelstyleCSS);
|
|
6640
6640
|
}
|
|
6641
6641
|
ttsClick() {
|