impaktapps-ui-builder 0.0.293 → 0.0.294
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 +7 -19
- 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/build/uischema/buildPropertiesSection.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +2 -2
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +0 -6
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +2 -7
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -1
package/package.json
CHANGED
|
@@ -234,7 +234,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
234
234
|
getArrayControl("pieArcColors", "color"),
|
|
235
235
|
];
|
|
236
236
|
} else if (type === "WrapperSection") {
|
|
237
|
-
uiSchema.elements = [getRadioInputField("divider", "Divider", ["YES", "No"]),
|
|
237
|
+
uiSchema.elements = [getRadioInputField("divider", "Divider", ["YES", "No"]), EmptyBox]
|
|
238
238
|
}
|
|
239
239
|
else if (type === "TabSection") {
|
|
240
240
|
uiSchema.elements = [
|
|
@@ -98,7 +98,7 @@ export const CoreSection = {
|
|
|
98
98
|
scope: "#/properties/value",
|
|
99
99
|
|
|
100
100
|
options: {
|
|
101
|
-
widget: "
|
|
101
|
+
widget: "InputField",
|
|
102
102
|
},
|
|
103
103
|
config: {
|
|
104
104
|
layout: {
|
|
@@ -132,7 +132,7 @@ export const OptionArray: any = {
|
|
|
132
132
|
type: "Control",
|
|
133
133
|
scope: "#/properties/label",
|
|
134
134
|
options: {
|
|
135
|
-
widget: "
|
|
135
|
+
widget: "SelectInputField",
|
|
136
136
|
},
|
|
137
137
|
config: {
|
|
138
138
|
layout: {
|
|
@@ -212,12 +212,7 @@ export const componentBasicUiSchema: any = {
|
|
|
212
212
|
},
|
|
213
213
|
main: {
|
|
214
214
|
label: "Screen Size",
|
|
215
|
-
|
|
216
|
-
{ label: "Extra Small", value: "xs" },
|
|
217
|
-
{ label: "Small", value: "sm" },
|
|
218
|
-
{ label: "Medium", value: "md" },
|
|
219
|
-
{ label: "Large", value: "lg" },
|
|
220
|
-
],
|
|
215
|
+
|
|
221
216
|
},
|
|
222
217
|
},
|
|
223
218
|
},
|
|
@@ -226,7 +221,7 @@ export const componentBasicUiSchema: any = {
|
|
|
226
221
|
scope: "#/properties/value",
|
|
227
222
|
|
|
228
223
|
options: {
|
|
229
|
-
widget: "
|
|
224
|
+
widget: "InputField",
|
|
230
225
|
},
|
|
231
226
|
config: {
|
|
232
227
|
layout: {
|
|
@@ -93,7 +93,7 @@ export default (funcParams: funcParamsProps) => {
|
|
|
93
93
|
onPaginationChange: async function (paginationValues) {
|
|
94
94
|
const apiBody = [
|
|
95
95
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
96
|
-
{ key: "
|
|
96
|
+
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
97
97
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
98
98
|
{ key: "filters", value: paginationValues.columnFilters || [] },
|
|
99
99
|
{ key: "globalFilter", value: paginationValues.globalFilter ?? '' }
|