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/dist/impaktapps-ui-builder.es.js +2 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildCheckbox.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
package/package.json
CHANGED
|
@@ -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 "
|
|
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 })
|