impaktapps-ui-builder 1.0.81-checkBox.0 → 1.0.81

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.0",
3
+ "version": "1.0.81",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -24,8 +24,5 @@ export const buildCheckbox = (config,componentScope) => {
24
24
  if (config.style) {
25
25
  check.config.style = JSON.parse(config.style)
26
26
  }
27
- if(config.isTableSelect){
28
- check.config.isTableSelect = config.isTableSelect === "YES" ? true : false;
29
- }
30
27
  return check;
31
28
  }
@@ -552,14 +552,6 @@ export const buildPropertiesSection = function (type: String) {
552
552
  emptyBox("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 }),
553
553
  ]
554
554
  break;
555
-
556
- case "Checkbox":
557
- uiSchema.elements = [
558
- getRadioInputField("isTableSelect", "Is Table Select", ["YES", "NO"]),
559
- emptyBox("CheckBoxEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 })
560
- ]
561
- break;
562
-
563
555
  }
564
556
  return uiSchema;
565
557
  };
@@ -46,7 +46,6 @@ const sectionLabels = {
46
46
  Date: ["Core", "Properties", "Events", "Style", "Validation"],
47
47
  DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
48
48
  Image: ["Core", "Properties","Style"],
49
- Checkbox: ["Core", "Events", "Style","Validation"]
50
49
  }
51
50
 
52
51
  export function refreshPage(type: string, store: any) {