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
package/package.json
CHANGED
|
@@ -204,8 +204,6 @@ export const ComponentSchema: any = {
|
|
|
204
204
|
},
|
|
205
205
|
},
|
|
206
206
|
filteringOptions:{
|
|
207
|
-
type: "array",
|
|
208
|
-
items:{
|
|
209
207
|
oneOf: [
|
|
210
208
|
{ const: 'fuzzy', title: 'Fuzzy' },
|
|
211
209
|
{ const: 'contains', title: 'Contain' },
|
|
@@ -220,7 +218,6 @@ export const ComponentSchema: any = {
|
|
|
220
218
|
{ const: 'lessThan', title: 'Less than' },
|
|
221
219
|
{ const: 'lessThanOrEqualTo', title: 'Less than or equal to' },
|
|
222
220
|
]
|
|
223
|
-
},
|
|
224
221
|
},
|
|
225
222
|
legendLabels: {
|
|
226
223
|
type: "array",
|
|
@@ -88,13 +88,27 @@ export function refreshPage (type: string, store: any) {
|
|
|
88
88
|
|
|
89
89
|
},
|
|
90
90
|
},
|
|
91
|
+
};UiSchema.elements[0].elements[0].elements[5] =
|
|
92
|
+
{
|
|
93
|
+
type: "Control",
|
|
94
|
+
scope: "#/properties/filteringOptions",
|
|
95
|
+
options: {
|
|
96
|
+
widget: "SelectInputField",
|
|
97
|
+
},
|
|
98
|
+
config: {
|
|
99
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 3 },
|
|
100
|
+
main: {
|
|
101
|
+
label: "Filter Mode",
|
|
102
|
+
multiple: true
|
|
103
|
+
},
|
|
104
|
+
},
|
|
91
105
|
};
|
|
92
|
-
UiSchema.elements[0].elements[0].elements[
|
|
106
|
+
UiSchema.elements[0].elements[0].elements[6] =
|
|
93
107
|
{
|
|
94
108
|
type: "Control",
|
|
95
109
|
scope: "#/properties/proc",
|
|
96
110
|
config: {
|
|
97
|
-
layout: { xs:
|
|
111
|
+
layout: { xs: 6, sm: 6, md: 4, lg: 9 },
|
|
98
112
|
},
|
|
99
113
|
options: {
|
|
100
114
|
widget: "EmptyBox",
|