@eqproject/eqp-dynamic-module 2.9.39 → 2.9.40

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.
Files changed (24) hide show
  1. package/esm2020/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.mjs +5 -3
  2. package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +18 -27
  3. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +19 -6
  4. package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +5 -3
  5. package/esm2020/lib/components/private/form-statistics/filter-templates/image-selector-filter-template/image-selector-filter-template.component.mjs +5 -3
  6. package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +3 -2
  7. package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +18 -6
  8. package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +20 -8
  9. package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +15 -4
  10. package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +17 -5
  11. package/esm2020/lib/components/private/trigger-creator/trigger-templates/list-form-record-trigger-template/list-form-record-trigger-template.component.mjs +5 -3
  12. package/esm2020/lib/models/statistic.model.mjs +4 -1
  13. package/fesm2015/eqproject-eqp-dynamic-module.mjs +166 -108
  14. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  15. package/fesm2020/eqproject-eqp-dynamic-module.mjs +166 -108
  16. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  17. package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +5 -2
  18. package/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.d.ts +6 -0
  19. package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +6 -0
  20. package/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.d.ts +6 -0
  21. package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +6 -0
  22. package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +6 -0
  23. package/lib/models/statistic.model.d.ts +1 -0
  24. package/package.json +1 -1
@@ -13,6 +13,8 @@ export declare class BooleanFilterTemplateComponent {
13
13
  logicOperatorBoolean: typeof LogicOperatorBoolean;
14
14
  selectedLogicOperator: LogicOperatorBoolean;
15
15
  activeCondition: boolean;
16
+ visible: boolean;
17
+ currentStatistic: Statistic;
16
18
  FieldstyleObj: any;
17
19
  LabelstyleObj: any;
18
20
  constructor();
@@ -23,8 +25,9 @@ export declare class BooleanFilterTemplateComponent {
23
25
  */
24
26
  onFilterChange(): void;
25
27
  /**
26
- * Metodo per configurare eqp-numeric
27
- */
28
+ * Gestione visibilità
29
+ */
30
+ changeVisibility(): void;
28
31
  /**
29
32
  * Metodo di aggiunta dei validator dell'input
30
33
  */
@@ -17,6 +17,8 @@ export declare class DateFilterTemplateComponent {
17
17
  timeType: typeof TimeTypeEnum;
18
18
  mode: ModeEnum;
19
19
  outputFormat: string;
20
+ visible: boolean;
21
+ currentStatistic: Statistic;
20
22
  constructor();
21
23
  ngOnInit(): void;
22
24
  /**
@@ -29,6 +31,10 @@ export declare class DateFilterTemplateComponent {
29
31
  */
30
32
  onFilterChange(): void;
31
33
  setOutputFormat(): void;
34
+ /**
35
+ * Gestione visibilità
36
+ */
37
+ changeVisibility(): void;
32
38
  static ɵfac: i0.ɵɵFactoryDeclaration<DateFilterTemplateComponent, never>;
33
39
  static ɵcmp: i0.ɵɵComponentDeclaration<DateFilterTemplateComponent, "date-filter-template", never, { "field": "field"; "record": "record"; "Statistic": "Statistic"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
34
40
  }
@@ -13,6 +13,8 @@ export declare class ListValueFilterTemplateComponent {
13
13
  logicOperatorListValue: typeof LogicOperatorListValue;
14
14
  selectedLogicOperator: LogicOperatorListValue;
15
15
  activeCondition: boolean;
16
+ visible: boolean;
17
+ currentStatistic: Statistic;
16
18
  FieldstyleObj: any;
17
19
  LabelstyleObj: any;
18
20
  arrayData: {
@@ -37,6 +39,10 @@ export declare class ListValueFilterTemplateComponent {
37
39
  */
38
40
  private setArrayData;
39
41
  prepareValuePairs(): void;
42
+ /**
43
+ * Gestione visibilità
44
+ */
45
+ changeVisibility(): void;
40
46
  private createArrayDataElement;
41
47
  private createNumberArrayDataElement;
42
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ListValueFilterTemplateComponent, never>;
@@ -15,6 +15,8 @@ export declare class NumericFilterTemplateComponent implements OnInit {
15
15
  logicOperatorNumeric: typeof LogicOperatorNumeric;
16
16
  selectedLogicOperator: LogicOperatorNumeric;
17
17
  activeCondition: boolean;
18
+ visible: boolean;
19
+ currentStatistic: Statistic;
18
20
  FieldstyleObj: any;
19
21
  LabelstyleObj: any;
20
22
  constructor();
@@ -32,6 +34,10 @@ export declare class NumericFilterTemplateComponent implements OnInit {
32
34
  * Metodo di aggiunta dei validator dell'input
33
35
  */
34
36
  private configureControllers;
37
+ /**
38
+ * Gestione visibilità
39
+ */
40
+ changeVisibility(): void;
35
41
  static ɵfac: i0.ɵɵFactoryDeclaration<NumericFilterTemplateComponent, never>;
36
42
  static ɵcmp: i0.ɵɵComponentDeclaration<NumericFilterTemplateComponent, "numeric-filter-template", never, { "field": "field"; "record": "record"; "Statistic": "Statistic"; }, { "filterChange": "filterChange"; }, never, never, false, never>;
37
43
  }
@@ -16,6 +16,8 @@ export declare class TextFilterTemplateComponent {
16
16
  STT: boolean;
17
17
  FieldstyleObj: any;
18
18
  LabelstyleObj: any;
19
+ visible: boolean;
20
+ currentStatistic: Statistic;
19
21
  recordChange: EventEmitter<Record>;
20
22
  InputMaskEnum: typeof TextMaskEnum;
21
23
  filterChange: EventEmitter<any>;
@@ -31,6 +33,10 @@ export declare class TextFilterTemplateComponent {
31
33
  * Metodo per emettere l'evento che il valore del record è cambiato.
32
34
  */
33
35
  onFilterChange(): void;
36
+ /**
37
+ * Gestione visibilità
38
+ */
39
+ changeVisibility(): void;
34
40
  static ɵfac: i0.ɵɵFactoryDeclaration<TextFilterTemplateComponent, never>;
35
41
  static ɵcmp: i0.ɵɵComponentDeclaration<TextFilterTemplateComponent, "text-filter-template", never, { "field": "field"; "record": "record"; "Statistic": "Statistic"; }, { "recordChange": "recordChange"; "filterChange": "filterChange"; }, never, never, false, never>;
36
42
  }
@@ -23,6 +23,8 @@ export declare class TextareaFilterTemplateComponent {
23
23
  selectedLogicOperator: LogicOperatorText;
24
24
  activeCondition: boolean;
25
25
  platform: string;
26
+ visible: boolean;
27
+ currentStatistic: Statistic;
26
28
  constructor();
27
29
  ngOnInit(): void;
28
30
  initStyles(): void;
@@ -35,6 +37,10 @@ export declare class TextareaFilterTemplateComponent {
35
37
  * Metodo che genera l'oggetto da inviare all'esterno
36
38
  */
37
39
  generateCondition(mode: any): Statistic;
40
+ /**
41
+ * Gestione visibilità
42
+ */
43
+ changeVisibility(): void;
38
44
  static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFilterTemplateComponent, never>;
39
45
  static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFilterTemplateComponent, "textarea-filter-template", never, { "field": "field"; "record": "record"; "Statistic": "Statistic"; }, { "recordChange": "recordChange"; "filterChange": "filterChange"; }, never, never, false, never>;
40
46
  }
@@ -5,6 +5,7 @@ export declare class Statistic {
5
5
  key: string;
6
6
  value: string;
7
7
  logicoperator: LogicOperatorBoolean | LogicOperatorListValue | LogicOperatorNumeric | LogicOperatorText | LogicOperatorDate | LogicOperatorImageSelector;
8
+ visible: boolean;
8
9
  }
9
10
  export declare class FilterStatistic {
10
11
  Statistics: Array<Statistic>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.9.39",
7
+ "version": "2.9.40",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",