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
package/package.json
CHANGED
|
@@ -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) {
|