impaktapps-ui-builder 1.0.442 → 1.0.444
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 +7 -3
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +5 -5
- 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 -6
- package/src/impaktapps-ui-builder/runtime/services/service.ts +0 -1
|
@@ -6711,7 +6711,12 @@ const ComponentSchema = {
|
|
|
6711
6711
|
{ title: "Clone Icon", const: "CloneIcon" },
|
|
6712
6712
|
{ title: "Detail Icon", const: "DetailIcon" },
|
|
6713
6713
|
{ title: "Report View Icon", const: "ReportViewIcon" },
|
|
6714
|
-
{ title: "Payout", const: "Payout" }
|
|
6714
|
+
{ title: "Payout", const: "Payout" },
|
|
6715
|
+
{ title: "Info Outlined", const: "InfoOutlinedIcon" },
|
|
6716
|
+
{ title: "Territory Add", const: "TerritoryAdd" },
|
|
6717
|
+
{ title: "Territory Edit", const: "TerritoryEdit" },
|
|
6718
|
+
{ title: "Territory Delete", const: "TerritoryDelete" },
|
|
6719
|
+
{ title: "Git Compare", const: "GitCompare" }
|
|
6715
6720
|
]
|
|
6716
6721
|
},
|
|
6717
6722
|
color: {
|
|
@@ -10959,14 +10964,13 @@ var service = (funcParams) => {
|
|
|
10959
10964
|
return response == null ? void 0 : response.data;
|
|
10960
10965
|
},
|
|
10961
10966
|
onPaginationChange: async function(paginationValues) {
|
|
10962
|
-
var _a
|
|
10967
|
+
var _a;
|
|
10963
10968
|
const apiBody = [
|
|
10964
10969
|
{ key: "size", value: paginationValues.pagination.pageSize },
|
|
10965
10970
|
{ key: "pageIndex", value: paginationValues.pagination.pageIndex },
|
|
10966
10971
|
{ key: "sorting", value: paginationValues.sorting || [] },
|
|
10967
10972
|
{ key: "filters", value: paginationValues.tableColumnConfig || [] },
|
|
10968
10973
|
{ key: "globalFilter", value: (_a = paginationValues.globalFilter) != null ? _a : "" },
|
|
10969
|
-
{ key: "expandedRowIds", value: (_b = paginationValues.expandedRowIds) != null ? _b : [] },
|
|
10970
10974
|
{ key: "parentId", value: paginationValues.parentId },
|
|
10971
10975
|
{ key: "prevRowCount", value: paginationValues.prevRowCount },
|
|
10972
10976
|
{ key: "newDataCount", value: paginationValues.newDataCount }
|