impaktapps-ui-builder 1.0.68 → 1.0.70-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "1.0.68",
3
+ "version": "1.0.70-alpha.1",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -5,6 +5,7 @@ import { createLayoutFormat } from "./buildConfig";
5
5
  export const buildDownloadFile = (config,componentScope) => {
6
6
  const DownloadFile: any = _.cloneDeep(downloadFile);
7
7
  DownloadFile.scope = componentScope;
8
+ DownloadFile.config.main.label = config.label;
8
9
  if (config.layout) {
9
10
  DownloadFile.config.layout = config.layout;
10
11
  }
@@ -239,34 +239,6 @@ export const PageMasterUiSchema: any = (theme) => {
239
239
  size: 300,
240
240
  type: "string"
241
241
  },
242
-
243
- {
244
- header: "Edit",
245
- field: "Reject_Records",
246
- size: 150,
247
- type: "action",
248
- widget: {
249
- type: "Control",
250
- scope: "#/properties/RejectButton",
251
- options: {
252
- widget: "IconButton",
253
- },
254
- config: {
255
- main: {
256
- icon: "TableEditIcon",
257
- onClick: "Edit_Components",
258
- tooltipMessage: "Edit This Record",
259
- },
260
- style: {
261
- fill: theme.palette.primary.main,
262
- "& :hover": {
263
- fill: theme.palette.primary.dark,
264
- },
265
- },
266
- },
267
- },
268
- },
269
-
270
242
  ]
271
243
  },
272
244
  {
@@ -162,7 +162,8 @@ export default (funcParams: funcParamsProps) => {
162
162
  { key: "pageIndex", value: paginationValues.pagination.pageIndex },
163
163
  { key: "sorting", value: paginationValues.sorting || [] },
164
164
  { key: "filters", value: paginationValues.tableColumnConfig || [] },
165
- { key: "globalFilter", value: paginationValues.globalFilter ?? '' }
165
+ { key: "globalFilter", value: paginationValues.globalFilter ?? '' },
166
+ { key: "expandedRowIds", value: paginationValues.expandedRowIds ?? []}
166
167
  ]
167
168
  const response = await this.callExecuteEvents(paginationValues, apiBody, "onLoad");
168
169
  return response?.data;