impaktapps-ui-builder 1.0.81-checkBox.2 → 1.0.81-checkBox.4

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.81-checkBox.2",
3
+ "version": "1.0.81-checkBox.4",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -25,7 +25,7 @@ export const buildCheckbox = (config,componentScope) => {
25
25
  check.config.style = JSON.parse(config.style)
26
26
  }
27
27
  if(config.isTableSelect){
28
- check.config.isTableSelect = config.isTableSelect === "YES" ? true : false;
28
+ check.config.main.isTableSelect = config.isTableSelect === "YES" ? true : false;
29
29
  }
30
30
  return check;
31
31
  }
@@ -553,7 +553,7 @@ export const buildPropertiesSection = function (type: String) {
553
553
  ]
554
554
  break;
555
555
 
556
- case "Checkbox":
556
+ case "CheckBox":
557
557
  uiSchema.elements = [
558
558
  getRadioInputField("isTableSelect", "Is Table Select", ["YES", "NO"]),
559
559
  emptyBox("CheckBoxEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 })