@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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.