impaktapps-ui-builder 1.0.146 → 1.0.147-test.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.
@@ -8115,8 +8115,7 @@ const buildPropertiesSection = function(type) {
8115
8115
  getRadioInputField("disableDelete", "Disable Delete", ["YES", "NO"]),
8116
8116
  getRadioInputField("disableDownload", "Disable Download", ["YES", "NO"]),
8117
8117
  getInputField("description", "Enter description"),
8118
- getInputField("errorMessage", "Error Message"),
8119
- emptyBox$1("FileInputEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
8118
+ emptyBox$1("FileInputEmpty", { xs: 6, sm: 6, md: 8, lg: 9 })
8120
8119
  ];
8121
8120
  break;
8122
8121
  }
@@ -11551,29 +11550,31 @@ function Card(theme) {
11551
11550
  type: "WrapperLayout",
11552
11551
  config: {
11553
11552
  main: {},
11554
- wrapperStyle: {
11555
- position: "relative",
11556
- top: "50%",
11557
- transform: "translateY(-50%)",
11558
- marginBottom: 0
11559
- },
11560
- componentsBoxStyle: {
11561
- boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
11562
- flexDirection: "row",
11563
- flexWrap: "nowrap",
11564
- width: "100% !important",
11565
- background: "transparent",
11566
- border: `1.5px solid ${theme.palette.primary.light}`,
11567
- borderRadius: "8px",
11568
- padding: "0px 4px",
11569
- height: "100%",
11570
- alignItems: "center",
11571
- marginLeft: "0px",
11572
- "&: hover": {
11573
- background: `${theme.palette.primary.main}`,
11574
- border: `1.5px solid black`,
11575
- "& p": {
11576
- color: "white"
11553
+ style: {
11554
+ wrapperStyle: {
11555
+ position: "relative",
11556
+ top: "50%",
11557
+ transform: "translateY(-50%)",
11558
+ marginBottom: 0
11559
+ },
11560
+ componentsBoxStyle: {
11561
+ boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
11562
+ flexDirection: "row",
11563
+ flexWrap: "nowrap",
11564
+ width: "100% !important",
11565
+ background: "transparent",
11566
+ border: `1.5px solid ${theme.palette.primary.light}`,
11567
+ borderRadius: "8px",
11568
+ padding: "0px 4px",
11569
+ height: "100%",
11570
+ alignItems: "center",
11571
+ marginLeft: "0px",
11572
+ "&: hover": {
11573
+ background: `${theme.palette.primary.main}`,
11574
+ border: `1.5px solid black`,
11575
+ "& p": {
11576
+ color: "white"
11577
+ }
11577
11578
  }
11578
11579
  }
11579
11580
  },
@@ -11593,18 +11594,20 @@ function Card(theme) {
11593
11594
  columnSpacing: 0,
11594
11595
  gap: 0
11595
11596
  },
11596
- wrapperStyle: {
11597
- background: "transparent",
11598
- marginBottom: 0
11599
- },
11600
- componentsBoxStyle: {
11601
- flexDirection: "column",
11602
- flexWrap: "nowrap",
11603
- width: "100%",
11604
- height: "inherit",
11605
- background: "transparent",
11606
- borderRadius: "0px",
11607
- paddingRight: 0
11597
+ style: {
11598
+ wrapperStyle: {
11599
+ background: "transparent",
11600
+ marginBottom: 0
11601
+ },
11602
+ componentsBoxStyle: {
11603
+ flexDirection: "column",
11604
+ flexWrap: "nowrap",
11605
+ width: "100%",
11606
+ height: "inherit",
11607
+ background: "transparent",
11608
+ borderRadius: "0px",
11609
+ paddingRight: 0
11610
+ }
11608
11611
  },
11609
11612
  layout: 12
11610
11613
  },
@@ -11616,21 +11619,23 @@ function Card(theme) {
11616
11619
  columnSpacing: 0,
11617
11620
  gap: 0
11618
11621
  },
11619
- wrapperStyle: {
11620
- background: "transparent",
11621
- marginBottom: 0
11622
- },
11623
- componentsBoxStyle: {
11624
- flexDirection: "row",
11625
- flexWrap: "nowrap",
11626
- width: "100%",
11627
- height: "0",
11628
- background: "transparent",
11629
- borderRadius: "0px",
11630
- marginLeft: "-10px",
11631
- marginTop: "-8px",
11632
- justifyContent: "start",
11633
- position: "relative"
11622
+ style: {
11623
+ wrapperStyle: {
11624
+ background: "transparent",
11625
+ marginBottom: 0
11626
+ },
11627
+ componentsBoxStyle: {
11628
+ flexDirection: "row",
11629
+ flexWrap: "nowrap",
11630
+ width: "100%",
11631
+ height: "0",
11632
+ background: "transparent",
11633
+ borderRadius: "0px",
11634
+ marginLeft: "-10px",
11635
+ marginTop: "-8px",
11636
+ justifyContent: "start",
11637
+ position: "relative"
11638
+ }
11634
11639
  },
11635
11640
  layout: 12
11636
11641
  },
@@ -12287,9 +12292,6 @@ const buildFileInput = (config2, componentScope2) => {
12287
12292
  if (config2.description) {
12288
12293
  box.config.main.description = config2.description;
12289
12294
  }
12290
- if (config2.errorMessage) {
12291
- box.config.main.errorMessage = config2.errorMessage;
12292
- }
12293
12295
  return box;
12294
12296
  };
12295
12297
  const Stepper = {