impaktapps-ui-builder 1.0.80 → 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.
@@ -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;
@@ -10293,6 +10300,15 @@ var service = (funcParams) => {
10293
10300
  eventGroups,
10294
10301
  formDataHolder
10295
10302
  };
10303
+ funcParams.store.setSchema(
10304
+ (pre) => {
10305
+ return {
10306
+ ...schema2,
10307
+ ...pre,
10308
+ properties: { ...schema2.properties, ...pre.properties }
10309
+ };
10310
+ }
10311
+ );
10296
10312
  await executeRefreshHandler({
10297
10313
  config: {},
10298
10314
  componentName: "",
@@ -10304,15 +10320,6 @@ var service = (funcParams) => {
10304
10320
  eventGroups,
10305
10321
  formDataHolder: {}
10306
10322
  });
10307
- funcParams.store.setSchema(
10308
- (pre) => {
10309
- return {
10310
- ...schema2,
10311
- ...pre,
10312
- properties: { ...schema2.properties, ...pre.properties }
10313
- };
10314
- }
10315
- );
10316
10323
  uiSchema.elements.push(notifyUiSchema);
10317
10324
  funcParams.store.setUiSchema(uiSchema);
10318
10325
  },
@@ -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) => {