impaktapps-ui-builder 1.0.80-schema.2 → 1.0.81-checkBox.0
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 +11 -1
- 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 +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +8 -0
- package/src/impaktapps-ui-builder/builder/services/component.ts +1 -0
- package/src/impaktapps-ui-builder/runtime/services/serviceTest.tsx +0 -265
|
@@ -7914,6 +7914,12 @@ 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;
|
|
7917
7923
|
}
|
|
7918
7924
|
return uiSchema;
|
|
7919
7925
|
};
|
|
@@ -8420,7 +8426,8 @@ const sectionLabels = {
|
|
|
8420
8426
|
Thought: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8421
8427
|
Date: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8422
8428
|
DateTime: ["Core", "Properties", "Events", "Style", "Validation"],
|
|
8423
|
-
Image: ["Core", "Properties", "Style"]
|
|
8429
|
+
Image: ["Core", "Properties", "Style"],
|
|
8430
|
+
Checkbox: ["Core", "Events", "Style", "Validation"]
|
|
8424
8431
|
};
|
|
8425
8432
|
function refreshPage(type, store2) {
|
|
8426
8433
|
var _a, _b;
|
|
@@ -11750,6 +11757,9 @@ const buildCheckbox = (config2, componentScope2) => {
|
|
|
11750
11757
|
if (config2.style) {
|
|
11751
11758
|
check.config.style = JSON.parse(config2.style);
|
|
11752
11759
|
}
|
|
11760
|
+
if (config2.isTableSelect) {
|
|
11761
|
+
check.config.isTableSelect = config2.isTableSelect === "YES" ? true : false;
|
|
11762
|
+
}
|
|
11753
11763
|
return check;
|
|
11754
11764
|
};
|
|
11755
11765
|
const buildLineGraph = (config2, componentScope2) => {
|