@eqproject/eqp-dynamic-module 2.2.17 → 2.2.21

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 (42) hide show
  1. package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +23 -7
  2. package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +2 -1
  3. package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +20 -3
  4. package/esm2020/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.mjs +75 -0
  5. package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +413 -0
  6. package/esm2020/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.mjs +57 -0
  7. package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +104 -0
  8. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +85 -0
  9. package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +57 -0
  10. package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +57 -0
  11. package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +120 -0
  12. package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +120 -0
  13. package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +134 -0
  14. package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +134 -0
  15. package/esm2020/lib/eqp-dynamic-module.module.mjs +36 -3
  16. package/esm2020/lib/models/dynamicModuleViewModeEnum.mjs +2 -1
  17. package/esm2020/lib/models/endPointConfiguration.model.mjs +13 -1
  18. package/esm2020/lib/models/logicOperator.model.mjs +36 -0
  19. package/esm2020/lib/models/statistic.model.mjs +3 -0
  20. package/fesm2015/eqproject-eqp-dynamic-module.mjs +1571 -220
  21. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  22. package/fesm2020/eqproject-eqp-dynamic-module.mjs +1532 -182
  23. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  24. package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +7 -2
  25. package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -2
  26. package/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.d.ts +42 -0
  27. package/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.d.ts +99 -0
  28. package/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.d.ts +21 -0
  29. package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +37 -0
  30. package/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.d.ts +33 -0
  31. package/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.d.ts +21 -0
  32. package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +21 -0
  33. package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +46 -0
  34. package/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.d.ts +40 -0
  35. package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +43 -0
  36. package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +43 -0
  37. package/lib/eqp-dynamic-module.module.d.ts +21 -10
  38. package/lib/models/dynamicModuleViewModeEnum.d.ts +2 -1
  39. package/lib/models/endPointConfiguration.model.d.ts +1 -0
  40. package/lib/models/logicOperator.model.d.ts +30 -0
  41. package/lib/models/statistic.model.d.ts +8 -0
  42. package/package.json +1 -1
@@ -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.17",
7
+ "version": "2.2.21",
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^15.1.2",
10
10
  "@angular/core": "^15.1.2",