impaktapps-ui-builder 1.0.100 → 1.0.102-test.1
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 +12 -1
- 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/build/buildConfig.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +11 -0
|
@@ -6299,6 +6299,17 @@ const ComponentSchema = {
|
|
|
6299
6299
|
{ title: "Put", const: "put" }
|
|
6300
6300
|
]
|
|
6301
6301
|
},
|
|
6302
|
+
maxPageSize: {
|
|
6303
|
+
type: "number",
|
|
6304
|
+
oneOf: [
|
|
6305
|
+
{ title: "10", const: 10 },
|
|
6306
|
+
{ title: "20", const: 20 },
|
|
6307
|
+
{ title: "30", const: 30 },
|
|
6308
|
+
{ title: "50", const: 50 },
|
|
6309
|
+
{ title: "100", const: 100 },
|
|
6310
|
+
{ title: "500", const: 500 }
|
|
6311
|
+
]
|
|
6312
|
+
},
|
|
6302
6313
|
layout: {
|
|
6303
6314
|
type: "array",
|
|
6304
6315
|
items: {
|
|
@@ -8275,7 +8286,7 @@ const createLayoutFormat = (layout, type) => {
|
|
|
8275
8286
|
if (_.isEmpty(layout)) {
|
|
8276
8287
|
const fullLayoutComponents = ["WrapperSection", "DataGrid", "LeaderBoard", "PopUp", "TextArea", "TreeMap", "Thought", "HorizontalLayout"];
|
|
8277
8288
|
if (fullLayoutComponents.includes(type)) {
|
|
8278
|
-
return { xs: 12, sm: 12, md: 12, lg:
|
|
8289
|
+
return { xs: 12, sm: 12, md: 12, lg: 6 };
|
|
8279
8290
|
} else if (type === "Graph") {
|
|
8280
8291
|
return { xs: 12, sm: 12, md: 12, lg: 6 };
|
|
8281
8292
|
} else if (type === "Button") {
|