impaktapps-ui-builder 1.0.101 → 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.
@@ -72,10 +72,6 @@ export declare const getSelectField: (scope: string, label: string, options: {
72
72
  main: {
73
73
  label: string;
74
74
  type: string;
75
- options: {
76
- label: string;
77
- value: string | number;
78
- }[];
79
75
  };
80
76
  };
81
77
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -222,7 +222,7 @@ export const getSelectField = (scope: string, label: string, options: { label: s
222
222
  main: {
223
223
  label: label,
224
224
  type: "text",
225
- options: options
225
+ // options: options
226
226
  },
227
227
  },
228
228
  }
@@ -83,6 +83,17 @@ export const ComponentSchema: any = {
83
83
  { title: "Put", const: "put" },
84
84
  ]
85
85
  },
86
+ maxPageSize:{
87
+ type: "number",
88
+ oneOf: [
89
+ { title: "10", const: 10 },
90
+ { title: "20", const: 20 },
91
+ { title: "30", const: 30 },
92
+ { title: "50", const: 50 },
93
+ { title: "100", const: 100 },
94
+ { title: "500", const: 500 }
95
+ ]
96
+ },
86
97
  layout: {
87
98
  type: "array",
88
99
  items: {