impaktapps-ui-builder 0.0.5-a → 0.0.5-alpha.2

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.
@@ -7490,11 +7490,9 @@ const buildPropertiesSection = function(type) {
7490
7490
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
7491
7491
  getRadioInputField("SelectionAvailable", "Selection Available", ["YES", "NO"]),
7492
7492
  getRadioInputField("ColumnResizingAvailable", "ColumnResizing Available", ["YES", "NO"]),
7493
- getRadioInputField("enableRowMovement", "Row Movement", ["YES", "NO"]),
7494
7493
  getRadioInputField("DragAvailable", "Drag Available", ["YES", "NO"]),
7495
7494
  getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
7496
7495
  getInputField("selectKey", "Selection Key"),
7497
- emptyBox,
7498
7496
  getArrayControl("Table_Download_Keys_Name", "KeyName", "Table Key Name"),
7499
7497
  sizeHolder
7500
7498
  ];
@@ -9541,10 +9539,6 @@ var service = (funcParams) => {
9541
9539
  backHandler: function() {
9542
9540
  funcParams.store.navigate(-1);
9543
9541
  },
9544
- OnRowMovementChange: async function(paginationValues) {
9545
- const response = await this.updateConfigApiBody(paginationValues, paginationValues.rowMovement);
9546
- return response == null ? void 0 : response.data;
9547
- },
9548
9542
  onPaginationChange: async function(paginationValues) {
9549
9543
  var _a;
9550
9544
  const apiBody = [
@@ -9667,7 +9661,7 @@ var leaderBoard = {
9667
9661
  gap: "10px"
9668
9662
  }
9669
9663
  },
9670
- wrapperStyle: {
9664
+ componentsBoxStyle: {
9671
9665
  position: "relative",
9672
9666
  width: "100%"
9673
9667
  }
@@ -10565,9 +10559,6 @@ const buildTable = (config, componentScope) => {
10565
10559
  if (config.lazyLoading) {
10566
10560
  table.config.main.lazyLoading = config.lazyLoading === "YES" ? true : false;
10567
10561
  }
10568
- if (config.enableRowMovement) {
10569
- table.config.main.enableRowMovement = config.enableRowMovement === "YES" ? true : false;
10570
- }
10571
10562
  if (config.SelectionAvailable) {
10572
10563
  table.config.main.Selection = config.SelectionAvailable === "YES" ? true : false;
10573
10564
  }
@@ -10720,16 +10711,14 @@ var Card = {
10720
10711
  main: {
10721
10712
  rowSpacing: 0.5
10722
10713
  },
10723
- style: {
10724
- componentsBoxStyle: {
10725
- position: "relative",
10726
- color: "white",
10727
- height: { xs: "120px", md: "160px" },
10728
- width: "100%",
10729
- textAlign: "left",
10730
- background: "#3f51b5",
10731
- borderRadius: "20px"
10732
- }
10714
+ componentsBoxStyle: {
10715
+ position: "relative",
10716
+ color: "white",
10717
+ height: { xs: "120px", md: "160px" },
10718
+ width: "100%",
10719
+ textAlign: "left",
10720
+ background: "#3f51b5",
10721
+ borderRadius: "20px"
10733
10722
  },
10734
10723
  layout: { xs: 12, sm: 12, md: 6, lg: 6 }
10735
10724
  },