impaktapps-ui-builder 1.0.395 → 1.0.405

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.
@@ -6281,8 +6281,7 @@ const ComponentSchema = {
6281
6281
  { title: "Upload", const: "UploadFile" },
6282
6282
  { title: "Tree ", const: "TreeMap" },
6283
6283
  { title: "Thought of the day", const: "Thought" },
6284
- { title: "PDF", const: "PdfViewer" },
6285
- { title: "Split View Container", const: "SplitViewContainer" }
6284
+ { title: "PDF", const: "PdfViewer" }
6286
6285
  ]
6287
6286
  },
6288
6287
  elementType: {
@@ -6364,15 +6363,6 @@ const ComponentSchema = {
6364
6363
  { title: "Right", const: "right" }
6365
6364
  ]
6366
6365
  },
6367
- maxWidth: {
6368
- oneOf: [
6369
- { title: "Extra Small", const: "xs" },
6370
- { title: "Small", const: "sm" },
6371
- { title: "Medium", const: "md" },
6372
- { title: "Large", const: "lg" },
6373
- { title: "Extra Large", const: "xl" }
6374
- ]
6375
- },
6376
6366
  toolTipPosition: {
6377
6367
  oneOf: [
6378
6368
  { title: "Top", const: "top" },
@@ -8306,12 +8296,6 @@ const buildPropertiesSection = function(type) {
8306
8296
  emptyBox$1("PdfViewer", { xs: 6, sm: 6, md: 8, lg: 9 })
8307
8297
  ];
8308
8298
  break;
8309
- case "SplitViewContainer":
8310
- uiSchema.elements = [
8311
- getInputField("collapsePanelHeight", "Expanded Panel Height"),
8312
- emptyBox$1("splitViewContainer", { xs: 6, sm: 6, md: 8, lg: 9 })
8313
- ];
8314
- break;
8315
8299
  case "Date":
8316
8300
  uiSchema.elements = [
8317
8301
  getSelectField("variant", "Variant"),
@@ -8888,7 +8872,6 @@ const sectionLabels = {
8888
8872
  PopUp: ["Core", "Components", "Properties", "Events", "Style"],
8889
8873
  PopOver: ["Core", "Components", "Properties", "Style"],
8890
8874
  PdfViewer: ["Core", "Properties", "Style"],
8891
- SplitViewContainer: ["Core", "Components", "Properties", "Style"],
8892
8875
  Stepper: ["Core", "Components", "Properties", "Events", "Style"],
8893
8876
  DataGrid: ["Core", "Components", "Properties", "Events", "Style"],
8894
8877
  InputSlider: ["Core", "Properties", "Events", "Style", "Validation"],
@@ -13239,31 +13222,6 @@ const buildPdfViewer = (config2, componentScope2) => {
13239
13222
  }
13240
13223
  return PdfViewer;
13241
13224
  };
13242
- var SplitViewContainer = {
13243
- type: "Control",
13244
- scope: "#/properties/SplitViewContainerPath",
13245
- options: {
13246
- widget: "SplitViewContainer"
13247
- },
13248
- config: {
13249
- layout: { xs: 12, sm: 12, md: 12, lg: 12 },
13250
- main: {}
13251
- }
13252
- };
13253
- const buildSplitViewContainer = (config2, componentScope2, store2) => {
13254
- const splitViewContainer = _.cloneDeep(SplitViewContainer);
13255
- splitViewContainer.scope = componentScope2;
13256
- if (config2.collapsePanelHeight) {
13257
- splitViewContainer.config.main.collapsePanelHeight = config2.collapsePanelHeight;
13258
- }
13259
- if (config2.style) {
13260
- splitViewContainer.config.style = JSON.parse(config2.style);
13261
- }
13262
- if (config2.layout) {
13263
- splitViewContainer.config.layout = createLayoutFormat(config2.layout);
13264
- }
13265
- return splitViewContainer;
13266
- };
13267
13225
  let schema = {
13268
13226
  type: "object",
13269
13227
  properties: {},
@@ -13497,9 +13455,6 @@ const buildUiSchema = (config2, store2) => {
13497
13455
  case "PdfViewer":
13498
13456
  elements = buildPdfViewer(config2, componentScope2);
13499
13457
  break;
13500
- case "SplitViewContainer":
13501
- elements = buildSplitViewContainer(config2, componentScope2);
13502
- break;
13503
13458
  default:
13504
13459
  schema = {
13505
13460
  type: "object",