impaktapps-ui-builder 1.0.147-test.10 → 1.0.147-test.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.147-test.10",
3
+ "version": "1.0.147-test.12",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -484,6 +484,7 @@ export const buildPropertiesSection = function (type: String) {
484
484
  getInputField("selectKey", "Selection Key"),//defaultColumnSize
485
485
  getMultiSelectField("filteringOptions", "Filtering Options"),
486
486
  getSelectField("maxPageSize", "Max Page Size", [
487
+ { label: "5", value: 5 },
487
488
  { label: "10", value: 10 },
488
489
  { label: "20", value: 20 },
489
490
  { label: "30", value: 30 },
@@ -10,7 +10,7 @@ export default function Card(theme){
10
10
  top: "50%",
11
11
  transform: "translateY(-50%)",
12
12
  marginBottom: 0,
13
- borderRadius: "0px"
13
+ borderRadius: "8px"
14
14
  },
15
15
  componentsBoxStyle: {
16
16
  boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
@@ -75,6 +75,7 @@ export default function Cardasd(theme){
75
75
  componentsBoxStyle: {
76
76
  flexDirection: "row",
77
77
  flexWrap: "nowrap",
78
+ overflow: "hidden",
78
79
  width: "100%",
79
80
  height: "0",
80
81
  background: "transparent",
@@ -115,6 +115,7 @@ export const ComponentSchema: any = {
115
115
  maxPageSize: {
116
116
  type: "number",
117
117
  oneOf: [
118
+ { title: "5", const: 5 },
118
119
  { title: "10", const: 10 },
119
120
  { title: "20", const: 20 },
120
121
  { title: "30", const: 30 },