impaktapps-ui-builder 0.0.1052 → 0.0.1054
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 +18 -21
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- 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 +19 -21
- package/src/impaktapps-ui-builder/builder/services/component.ts +4 -4
|
@@ -6475,23 +6475,20 @@ const ComponentSchema = {
|
|
|
6475
6475
|
}
|
|
6476
6476
|
},
|
|
6477
6477
|
filteringOptions: {
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
{ const: "lessThanOrEqualTo", title: "Less than or equal to" }
|
|
6493
|
-
]
|
|
6494
|
-
}
|
|
6478
|
+
oneOf: [
|
|
6479
|
+
{ const: "fuzzy", title: "Fuzzy" },
|
|
6480
|
+
{ const: "contains", title: "Contain" },
|
|
6481
|
+
{ const: "startsWith", title: "Starts with" },
|
|
6482
|
+
{ const: "endsWith", title: "Ends with" },
|
|
6483
|
+
{ const: "equals", title: "Equals" },
|
|
6484
|
+
{ const: "notEquals", title: "Not Equals" },
|
|
6485
|
+
{ const: "between", title: "Between" },
|
|
6486
|
+
{ const: "betweenInclusive", title: "Between inclusive" },
|
|
6487
|
+
{ const: "greaterThan", title: "Greater than" },
|
|
6488
|
+
{ const: "greaterThanOrEqualTo", title: "Greater than or equal to" },
|
|
6489
|
+
{ const: "lessThan", title: "Less than" },
|
|
6490
|
+
{ const: "lessThanOrEqualTo", title: "Less than or equal to" }
|
|
6491
|
+
]
|
|
6495
6492
|
},
|
|
6496
6493
|
legendLabels: {
|
|
6497
6494
|
type: "array",
|
|
@@ -8487,7 +8484,7 @@ function refreshPage(type, store2) {
|
|
|
8487
8484
|
widget: "SelectInputField"
|
|
8488
8485
|
},
|
|
8489
8486
|
config: {
|
|
8490
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
8487
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
8491
8488
|
main: {
|
|
8492
8489
|
label: "Column Format"
|
|
8493
8490
|
}
|
|
@@ -8500,7 +8497,7 @@ function refreshPage(type, store2) {
|
|
|
8500
8497
|
widget: "RadioInputField"
|
|
8501
8498
|
},
|
|
8502
8499
|
config: {
|
|
8503
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
8500
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
8504
8501
|
main: {
|
|
8505
8502
|
label: "Enable Filter",
|
|
8506
8503
|
options: ["Yes", "No"]
|
|
@@ -8513,7 +8510,7 @@ function refreshPage(type, store2) {
|
|
|
8513
8510
|
widget: "SelectInputField"
|
|
8514
8511
|
},
|
|
8515
8512
|
config: {
|
|
8516
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
8513
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
8517
8514
|
main: {
|
|
8518
8515
|
label: "Filter Mode",
|
|
8519
8516
|
multiple: true
|
|
@@ -8527,7 +8524,7 @@ function refreshPage(type, store2) {
|
|
|
8527
8524
|
widget: "RadioInputField"
|
|
8528
8525
|
},
|
|
8529
8526
|
config: {
|
|
8530
|
-
layout: { xs: 6, sm: 6, md: 4, lg:
|
|
8527
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 4 },
|
|
8531
8528
|
main: {
|
|
8532
8529
|
label: "Enable Sorting",
|
|
8533
8530
|
options: ["Yes", "No"]
|