@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.
- package/esm2020/lib/components/exported/eqp-dynamic-module/eqp-dynamic-module.component.mjs +20 -7
- package/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +3 -1
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +9 -3
- package/esm2020/lib/components/private/dynamic-module-field/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +1 -1
- package/esm2020/lib/components/private/field-templates/list-value-field-template/list-value-field-template.component.mjs +47 -14
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +84 -25
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +17 -6
- package/esm2020/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.mjs +5 -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/fields/listValueField.model.mjs +1 -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 +1660 -215
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +1659 -215
- 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/field-templates/list-value-field-template/list-value-field-template.component.d.ts +4 -1
- package/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.d.ts +4 -3
- package/lib/components/private/form-records/list-view-form-record/single-record/single-record.component.d.ts +1 -1
- 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/fields/listValueField.model.d.ts +4 -0
- package/lib/models/logicOperator.model.d.ts +30 -0
- package/lib/models/statistic.model.d.ts +8 -0
- 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
|
+
}
|