impaktapps-ui-builder 1.0.390 → 1.0.392

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: {
@@ -8306,6 +8306,12 @@ const buildPropertiesSection = function(type) {
8306
8306
  emptyBox$1("PdfViewer", { xs: 6, sm: 6, md: 8, lg: 9 })
8307
8307
  ];
8308
8308
  break;
8309
+ case "splitViewContainer":
8310
+ uiSchema.elements = [
8311
+ getInputField("expandedPanelHeight", "Expanded Panel Height"),
8312
+ emptyBox$1("splitViewContainer", { xs: 6, sm: 6, md: 8, lg: 9 })
8313
+ ];
8314
+ break;
8309
8315
  case "Date":
8310
8316
  uiSchema.elements = [
8311
8317
  getSelectField("variant", "Variant"),
@@ -8881,8 +8887,8 @@ const sectionLabels = {
8881
8887
  TextArea: ["Core", "Properties", "Events", "Style", "Validation"],
8882
8888
  PopUp: ["Core", "Components", "Properties", "Events", "Style"],
8883
8889
  PopOver: ["Core", "Components", "Properties", "Style"],
8884
- PdfViewer: ["Core", "Components", "Properties", "Style"],
8885
- DualWrapper: ["Core", "Components", "Style"],
8890
+ PdfViewer: ["Core", "Properties", "Style"],
8891
+ SplitViewContainer: ["Core", "Components", "Style"],
8886
8892
  Stepper: ["Core", "Components", "Properties", "Events", "Style"],
8887
8893
  DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
8888
8894
  InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -13233,27 +13239,30 @@ const buildPdfViewer = (config2, componentScope2) => {
13233
13239
  }
13234
13240
  return PdfViewer;
13235
13241
  };
13236
- var DualWrapper = {
13242
+ var SplitViewContainer = {
13237
13243
  type: "Control",
13238
- scope: "#/properties/dualWrapperPath",
13244
+ scope: "#/properties/SplitViewContainerPath",
13239
13245
  options: {
13240
- widget: "DualWrapper"
13246
+ widget: "SplitViewContainer"
13241
13247
  },
13242
13248
  config: {
13243
13249
  layout: { xs: 12, sm: 12, md: 12, lg: 12 },
13244
13250
  main: {}
13245
13251
  }
13246
13252
  };
13247
- const buildDualWrapper = (config2, componentScope2, store2) => {
13248
- const dualWrapper = _.cloneDeep(DualWrapper);
13249
- dualWrapper.scope = componentScope2;
13253
+ const buildSplitViewContainer = (config2, componentScope2, store2) => {
13254
+ const splitViewContainer = _.cloneDeep(SplitViewContainer);
13255
+ splitViewContainer.scope = componentScope2;
13256
+ if (config2.expandedPanelHeight) {
13257
+ splitViewContainer.config.main.expandedPanelHeight = config2.expandedPanelHeight;
13258
+ }
13250
13259
  if (config2.style) {
13251
- dualWrapper.config.style = JSON.parse(config2.style);
13260
+ splitViewContainer.config.style = JSON.parse(config2.style);
13252
13261
  }
13253
13262
  if (config2.layout) {
13254
- dualWrapper.config.layout = createLayoutFormat(config2.layout);
13263
+ splitViewContainer.config.layout = createLayoutFormat(config2.layout);
13255
13264
  }
13256
- return dualWrapper;
13265
+ return splitViewContainer;
13257
13266
  };
13258
13267
  let schema = {
13259
13268
  type: "object",
@@ -13488,8 +13497,8 @@ const buildUiSchema = (config2, store2) => {
13488
13497
  case "PdfViewer":
13489
13498
  elements = buildPdfViewer(config2, componentScope2);
13490
13499
  break;
13491
- case "DualWrapper":
13492
- elements = buildDualWrapper(config2, componentScope2);
13500
+ case "SplitViewContainer":
13501
+ elements = buildSplitViewContainer(config2, componentScope2);
13493
13502
  break;
13494
13503
  default:
13495
13504
  schema = {