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
|
@@ -7915,7 +7915,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7915
7915
|
emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
7916
7916
|
];
|
|
7917
7917
|
break;
|
|
7918
|
-
case "
|
|
7918
|
+
case "CheckBox":
|
|
7919
7919
|
uiSchema.elements = [
|
|
7920
7920
|
getRadioInputField("isTableSelect", "Is Table Select", ["YES", "NO"]),
|
|
7921
7921
|
emptyBox$1("CheckBoxEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
@@ -11759,7 +11759,7 @@ const buildCheckbox = (config2, componentScope2) => {
|
|
|
11759
11759
|
check.config.style = JSON.parse(config2.style);
|
|
11760
11760
|
}
|
|
11761
11761
|
if (config2.isTableSelect) {
|
|
11762
|
-
check.config.isTableSelect = config2.isTableSelect === "YES" ? true : false;
|
|
11762
|
+
check.config.main.isTableSelect = config2.isTableSelect === "YES" ? true : false;
|
|
11763
11763
|
}
|
|
11764
11764
|
return check;
|
|
11765
11765
|
};
|