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.
@@ -6435,23 +6435,20 @@ const ComponentSchema = {
6435
6435
  }
6436
6436
  },
6437
6437
  filteringOptions: {
6438
- type: "array",
6439
- items: {
6440
- oneOf: [
6441
- { const: "fuzzy", title: "Fuzzy" },
6442
- { const: "contains", title: "Contain" },
6443
- { const: "startsWith", title: "Starts with" },
6444
- { const: "endsWith", title: "Ends with" },
6445
- { const: "equals", title: "Equals" },
6446
- { const: "notEquals", title: "Not Equals" },
6447
- { const: "between", title: "Between" },
6448
- { const: "betweenInclusive", title: "Between inclusive" },
6449
- { const: "greaterThan", title: "Greater than" },
6450
- { const: "greaterThanOrEqualTo", title: "Greater than or equal to" },
6451
- { const: "lessThan", title: "Less than" },
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: 0, sm: 0, md: 8, lg: 0 }
8486
+ layout: { xs: 6, sm: 6, md: 4, lg: 9 }
8476
8487
  },
8477
8488
  options: {
8478
8489
  widget: "EmptyBox"