@eqproject/eqp-dynamic-module 2.2.17 → 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.
- package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +20 -7
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +2 -1
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +12 -3
- package/esm2020/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.mjs +75 -0
- package/esm2020/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.mjs +413 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.mjs +104 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +85 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.mjs +57 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.mjs +120 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.mjs +120 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.mjs +134 -0
- package/esm2020/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.mjs +134 -0
- package/esm2020/lib/eqp-dynamic-module.module.mjs +36 -3
- package/esm2020/lib/models/dynamicModuleViewModeEnum.mjs +2 -1
- package/esm2020/lib/models/endPointConfiguration.model.mjs +13 -1
- package/esm2020/lib/models/logicOperator.model.mjs +36 -0
- package/esm2020/lib/models/statistic.model.mjs +3 -0
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +1565 -223
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +1526 -185
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.d.ts +6 -2
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +3 -2
- package/lib/components/private/form-statistics/dynamic-module-filter-fix/dynamic-module-filter-fix.component.d.ts +42 -0
- package/lib/components/private/form-statistics/filter-form-statistic/filter-form-statistic.component.d.ts +99 -0
- package/lib/components/private/form-statistics/filter-templates/attachment-filter-template/attachment-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/boolean-filter-template/boolean-filter-template.component.d.ts +37 -0
- package/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.d.ts +33 -0
- package/lib/components/private/form-statistics/filter-templates/image-filter-template/image-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/list-form-record-filter-template/list-form-record-filter-template.component.d.ts +21 -0
- package/lib/components/private/form-statistics/filter-templates/list-value-filter-template/list-value-filter-template.component.d.ts +46 -0
- package/lib/components/private/form-statistics/filter-templates/numeric-filter-template/numeric-filter-template.component.d.ts +40 -0
- package/lib/components/private/form-statistics/filter-templates/text-filter-template/text-filter-template.component.d.ts +43 -0
- package/lib/components/private/form-statistics/filter-templates/textarea-filter-template/textarea-filter-template.component.d.ts +43 -0
- package/lib/eqp-dynamic-module.module.d.ts +21 -10
- package/lib/models/dynamicModuleViewModeEnum.d.ts +2 -1
- package/lib/models/endPointConfiguration.model.d.ts +1 -0
- package/lib/models/logicOperator.model.d.ts +30 -0
- package/lib/models/statistic.model.d.ts +8 -0
- package/package.json +1 -1