impaktapps-ui-builder 1.0.100 → 1.0.102
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 +11 -0
- 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 +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: {
|