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/dist/impaktapps-ui-builder.es.js +1 -11
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildCheckbox.ts +0 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +0 -8
- package/src/impaktapps-ui-builder/builder/services/component.ts +0 -1
|
@@ -7914,12 +7914,6 @@ const buildPropertiesSection = function(type) {
|
|
|
7914
7914
|
emptyBox$1("imageEmpty", { xs: 0, sm: 0, md: 4, lg: 6 })
|
|
7915
7915
|
];
|
|
7916
7916
|
break;
|
|
7917
|
-
case "Checkbox":
|
|
7918
|
-
uiSchema.elements = [
|
|
7919
|
-
getRadioInputField("isTableSelect", "Is Table Select", ["YES", "NO"]),
|
|
7920
|
-
emptyBox$1("CheckBoxEmpty1", { xs: 6, sm: 6, md: 8, lg: 9 })
|
|
7921
|
-
];
|
|
7922
|
-
break;
|
|
7923
7917
|
}
|
|
7924
7918
|
return uiSchema;
|
|
7925
7919
|
};
|
|
@@ -8426,8 +8420,7 @@ const sectionLabels = {
|
|
|
8426
8420
|
Thought: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8427
8421
|
Date: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8428
8422
|
DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8429
|
-
Image: ["Core", "Properties", "Style"]
|
|
8430
|
-
Checkbox: ["Core", "Events", "Style", "Validation"]
|
|
8423
|
+
Image: ["Core", "Properties", "Style"]
|
|
8431
8424
|
};
|
|
8432
8425
|
function refreshPage(type, store2) {
|
|
8433
8426
|
var _a, _b;
|
|
@@ -11757,9 +11750,6 @@ const buildCheckbox = (config2, componentScope2) => {
|
|
|
11757
11750
|
if (config2.style) {
|
|
11758
11751
|
check.config.style = JSON.parse(config2.style);
|
|
11759
11752
|
}
|
|
11760
|
-
if (config2.isTableSelect) {
|
|
11761
|
-
check.config.isTableSelect = config2.isTableSelect === "YES" ? true : false;
|
|
11762
|
-
}
|
|
11763
11753
|
return check;
|
|
11764
11754
|
};
|
|
11765
11755
|
const buildLineGraph = (config2, componentScope2) => {
|