impaktapps-ui-builder 1.0.390 → 1.0.391

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.
@@ -6282,7 +6282,7 @@ const ComponentSchema = {
6282
6282
  { title: "Tree ", const: "TreeMap" },
6283
6283
  { title: "Thought of the day", const: "Thought" },
6284
6284
  { title: "PDF", const: "PdfViewer" },
6285
- { title: "Dual Wrapper", const: "DualWrapper" }
6285
+ { title: "Split View Container", const: "SplitViewContainer" }
6286
6286
  ]
6287
6287
  },
6288
6288
  elementType: {
@@ -8881,8 +8881,8 @@ const sectionLabels = {
8881
8881
  TextArea: ["Core", "Properties", "Events", "Style", "Validation"],
8882
8882
  PopUp: ["Core", "Components", "Properties", "Events", "Style"],
8883
8883
  PopOver: ["Core", "Components", "Properties", "Style"],
8884
- PdfViewer: ["Core", "Components", "Properties", "Style"],
8885
- DualWrapper: ["Core", "Components", "Style"],
8884
+ PdfViewer: ["Core", "Properties", "Style"],
8885
+ SplitViewContainer: ["Core", "Components", "Style"],
8886
8886
  Stepper: ["Core", "Components", "Properties", "Events", "Style"],
8887
8887
  DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
8888
8888
  InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -13233,27 +13233,27 @@ const buildPdfViewer = (config2, componentScope2) => {
13233
13233
  }
13234
13234
  return PdfViewer;
13235
13235
  };
13236
- var DualWrapper = {
13236
+ var SplitViewContainer = {
13237
13237
  type: "Control",
13238
- scope: "#/properties/dualWrapperPath",
13238
+ scope: "#/properties/SplitViewContainerPath",
13239
13239
  options: {
13240
- widget: "DualWrapper"
13240
+ widget: "SplitViewContainer"
13241
13241
  },
13242
13242
  config: {
13243
13243
  layout: { xs: 12, sm: 12, md: 12, lg: 12 },
13244
13244
  main: {}
13245
13245
  }
13246
13246
  };
13247
- const buildDualWrapper = (config2, componentScope2, store2) => {
13248
- const dualWrapper = _.cloneDeep(DualWrapper);
13249
- dualWrapper.scope = componentScope2;
13247
+ const buildSplitViewContainer = (config2, componentScope2, store2) => {
13248
+ const splitViewContainer = _.cloneDeep(SplitViewContainer);
13249
+ splitViewContainer.scope = componentScope2;
13250
13250
  if (config2.style) {
13251
- dualWrapper.config.style = JSON.parse(config2.style);
13251
+ splitViewContainer.config.style = JSON.parse(config2.style);
13252
13252
  }
13253
13253
  if (config2.layout) {
13254
- dualWrapper.config.layout = createLayoutFormat(config2.layout);
13254
+ splitViewContainer.config.layout = createLayoutFormat(config2.layout);
13255
13255
  }
13256
- return dualWrapper;
13256
+ return splitViewContainer;
13257
13257
  };
13258
13258
  let schema = {
13259
13259
  type: "object",
@@ -13488,8 +13488,8 @@ const buildUiSchema = (config2, store2) => {
13488
13488
  case "PdfViewer":
13489
13489
  elements = buildPdfViewer(config2, componentScope2);
13490
13490
  break;
13491
- case "DualWrapper":
13492
- elements = buildDualWrapper(config2, componentScope2);
13491
+ case "SplitViewContainer":
13492
+ elements = buildSplitViewContainer(config2, componentScope2);
13493
13493
  break;
13494
13494
  default:
13495
13495
  schema = {