@eqproject/eqp-dynamic-module 2.2.16 → 2.2.18

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 (52) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +20 -7
  2. package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -1
  3. package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +9 -3
  4. package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
  5. package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
  6. package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +47 -14
  7. package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +84 -25
  8. package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -6
  9. package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -3
  10. package/esm2020/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.mjs +75 -0
  11. package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +413 -0
  12. package/esm2020/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.mjs +57 -0
  13. package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +104 -0
  14. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +85 -0
  15. package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +57 -0
  16. package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +57 -0
  17. package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +120 -0
  18. package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +120 -0
  19. package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +134 -0
  20. package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +134 -0
  21. package/esm2020/lib/eqp-dynamic-module.module.mjs +36 -3
  22. package/esm2020/lib/models/dynamicModuleViewModeEnum.mjs +2 -1
  23. package/esm2020/lib/models/endPointConfiguration.model.mjs +13 -1
  24. package/esm2020/lib/models/fields/listValueField.model.mjs +1 -1
  25. package/esm2020/lib/models/logicOperator.model.mjs +36 -0
  26. package/esm2020/lib/models/statistic.model.mjs +3 -0
  27. package/fesm2015/eqproject-eqp-dynamic-module.mjs +1660 -215
  28. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  29. package/fesm2020/eqproject-eqp-dynamic-module.mjs +1659 -215
  30. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  31. package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +6 -2
  32. package/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.d.ts +4 -1
  33. package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -3
  34. package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +1 -1
  35. package/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.d.ts +42 -0
  36. package/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.d.ts +99 -0
  37. package/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.d.ts +21 -0
  38. package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +37 -0
  39. package/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.d.ts +33 -0
  40. package/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.d.ts +21 -0
  41. package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +21 -0
  42. package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +46 -0
  43. package/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.d.ts +40 -0
  44. package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +43 -0
  45. package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +43 -0
  46. package/lib/eqp-dynamic-module.module.d.ts +21 -10
  47. package/lib/models/dynamicModuleViewModeEnum.d.ts +2 -1
  48. package/lib/models/endPointConfiguration.model.d.ts +1 -0
  49. package/lib/models/fields/listValueField.model.d.ts +4 -0
  50. package/lib/models/logicOperator.model.d.ts +30 -0
  51. package/lib/models/statistic.model.d.ts +8 -0
  52. package/package.json +1 -1
@@ -9,6 +9,10 @@ export declare class ListValueField extends BaseField {
9
9
  ValuePairs: {
10
10
  [key: string]: any;
11
11
  };
12
+ /**
13
+ * stringa da parsare chiave valore: chiave1 | valore 1; chiave2|valore 2
14
+ */
15
+ ValueString: string;
12
16
  /**Se true è l'utente può scegliere più di un valore */
13
17
  IsMultiChoiche: boolean;
14
18
  /**Modalità di presentazione */
@@ -0,0 +1,30 @@
1
+ export declare enum LogicOperatorNumeric {
2
+ "=" = 1,
3
+ "!=" = 2,
4
+ ">" = 5,
5
+ ">=" = 6,
6
+ "<" = 7,
7
+ "<=" = 8
8
+ }
9
+ export declare enum LogicOperatorDate {
10
+ "=" = 1,
11
+ "!=" = 2,
12
+ ">" = 5,
13
+ ">=" = 6,
14
+ "<" = 7,
15
+ "<=" = 8
16
+ }
17
+ export declare enum LogicOperatorText {
18
+ "=" = 1,
19
+ "!=" = 2,
20
+ "LIKE" = 3,
21
+ "NOT LIKE" = 4
22
+ }
23
+ export declare enum LogicOperatorBoolean {
24
+ "Si" = 9,
25
+ "No" = 10
26
+ }
27
+ export declare enum LogicOperatorListValue {
28
+ "=" = 1,
29
+ "!=" = 2
30
+ }
@@ -0,0 +1,8 @@
1
+ import { FieldTypeEnum } from "./baseField.model";
2
+ import { LogicOperatorBoolean, LogicOperatorDate, LogicOperatorListValue, LogicOperatorNumeric, LogicOperatorText } from "./logicOperator.model";
3
+ export declare class Statistic {
4
+ fieldtype: FieldTypeEnum;
5
+ key: string;
6
+ value: string;
7
+ logicoperator: LogicOperatorBoolean | LogicOperatorListValue | LogicOperatorNumeric | LogicOperatorText | LogicOperatorDate;
8
+ }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.2.16",
7
+ "version": "2.2.18",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^15.1.2",
10
10
  "@angular/core": "^15.1.2",