impaktapps-ui-builder 0.0.101-alpha.40 → 0.0.101-alpha.42
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/dist/impaktapps-ui-builder.es.js +29 -18
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -3
- package/src/impaktapps-ui-builder/builder/services/component.ts +16 -2
|
@@ -6435,23 +6435,20 @@ const ComponentSchema = {
|
|
|
6435
6435
|
}
|
|
6436
6436
|
},
|
|
6437
6437
|
filteringOptions: {
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
{ const: "lessThanOrEqualTo", title: "Less than or equal to" }
|
|
6453
|
-
]
|
|
6454
|
-
}
|
|
6438
|
+
oneOf: [
|
|
6439
|
+
{ const: "fuzzy", title: "Fuzzy" },
|
|
6440
|
+
{ const: "contains", title: "Contain" },
|
|
6441
|
+
{ const: "startsWith", title: "Starts with" },
|
|
6442
|
+
{ const: "endsWith", title: "Ends with" },
|
|
6443
|
+
{ const: "equals", title: "Equals" },
|
|
6444
|
+
{ const: "notEquals", title: "Not Equals" },
|
|
6445
|
+
{ const: "between", title: "Between" },
|
|
6446
|
+
{ const: "betweenInclusive", title: "Between inclusive" },
|
|
6447
|
+
{ const: "greaterThan", title: "Greater than" },
|
|
6448
|
+
{ const: "greaterThanOrEqualTo", title: "Greater than or equal to" },
|
|
6449
|
+
{ const: "lessThan", title: "Less than" },
|
|
6450
|
+
{ const: "lessThanOrEqualTo", title: "Less than or equal to" }
|
|
6451
|
+
]
|
|
6455
6452
|
},
|
|
6456
6453
|
legendLabels: {
|
|
6457
6454
|
type: "array",
|
|
@@ -8469,10 +8466,24 @@ function refreshPage(type, store2) {
|
|
|
8469
8466
|
}
|
|
8470
8467
|
};
|
|
8471
8468
|
UiSchema.elements[0].elements[0].elements[5] = {
|
|
8469
|
+
type: "Control",
|
|
8470
|
+
scope: "#/properties/filteringOptions",
|
|
8471
|
+
options: {
|
|
8472
|
+
widget: "SelectInputField"
|
|
8473
|
+
},
|
|
8474
|
+
config: {
|
|
8475
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
8476
|
+
main: {
|
|
8477
|
+
label: "Filter Mode",
|
|
8478
|
+
multiple: true
|
|
8479
|
+
}
|
|
8480
|
+
}
|
|
8481
|
+
};
|
|
8482
|
+
UiSchema.elements[0].elements[0].elements[6] = {
|
|
8472
8483
|
type: "Control",
|
|
8473
8484
|
scope: "#/properties/proc",
|
|
8474
8485
|
config: {
|
|
8475
|
-
layout: { xs:
|
|
8486
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 9 }
|
|
8476
8487
|
},
|
|
8477
8488
|
options: {
|
|
8478
8489
|
widget: "EmptyBox"
|