impaktapps-ui-builder 1.0.67-alpha.7 → 1.0.67-alpha.9

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.
@@ -53,8 +53,7 @@ export declare const EventSection: (theme: any) => {
53
53
  startIcon: string;
54
54
  tooltipMessage: string;
55
55
  onClick: string;
56
- icon?: undefined;
57
- name?: undefined;
56
+ name: string;
58
57
  styleDefault?: undefined;
59
58
  };
60
59
  };
@@ -68,12 +67,11 @@ export declare const EventSection: (theme: any) => {
68
67
  };
69
68
  config: {
70
69
  main: {
71
- icon: string;
70
+ startIcon: string;
72
71
  tooltipMessage: string;
73
72
  onClick: string;
74
73
  name: string;
75
74
  size: string;
76
- startIcon?: undefined;
77
75
  styleDefault?: undefined;
78
76
  };
79
77
  };
@@ -91,7 +89,6 @@ export declare const EventSection: (theme: any) => {
91
89
  styleDefault: boolean;
92
90
  name: string;
93
91
  size?: undefined;
94
- icon?: undefined;
95
92
  };
96
93
  };
97
94
  accessorKeyName?: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.67-alpha.7",
3
+ "version": "1.0.67-alpha.9",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -87,6 +87,7 @@ export const EventSection = (theme)=>{
87
87
  startIcon: "EditIcon",
88
88
  tooltipMessage: "Edit This Record",
89
89
  onClick: "eventEditHandler",
90
+ name: "Edit"
90
91
  },
91
92
  },
92
93
  },
@@ -99,7 +100,7 @@ export const EventSection = (theme)=>{
99
100
  },
100
101
  config: {
101
102
  main: {
102
- icon: "Bin",
103
+ startIcon: "Bin",
103
104
  tooltipMessage: "Reject This Record",
104
105
  onClick: "deletePopUpEvent",
105
106
  name: "Delete",
@@ -166,7 +166,7 @@ export const EventUiSchema: any = (theme) => {
166
166
  type: "Control",
167
167
  scope: "#/properties/RejectButton",
168
168
  options: {
169
- widget: "IconButton",
169
+ widget: "Button",
170
170
  },
171
171
  config: {
172
172
  main: {