impaktapps-ui-builder 0.0.56-alpha.21 → 0.0.56-alpha.23

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.
@@ -6394,25 +6394,6 @@ const componentBasicUiSchema = (theme) => {
6394
6394
  type: "HorizontalLayout",
6395
6395
  heading: "Component",
6396
6396
  elements: [
6397
- {
6398
- type: "Control",
6399
- scope: "#/properties/pageName",
6400
- options: {
6401
- widget: "Box"
6402
- },
6403
- config: {
6404
- layout: 12,
6405
- main: {
6406
- heading: " "
6407
- },
6408
- style: {
6409
- marginLeft: theme.spacing(3),
6410
- width: "auto",
6411
- fontSize: "12px",
6412
- color: "gray"
6413
- }
6414
- }
6415
- },
6416
6397
  {
6417
6398
  type: "TabLayout",
6418
6399
  config: {
@@ -6748,17 +6729,7 @@ const componentBasicUiSchema = (theme) => {
6748
6729
  widget: "EmptyBox"
6749
6730
  },
6750
6731
  config: {
6751
- layout: { xs: 0, sm: 4, md: 4, lg: 4 }
6752
- }
6753
- },
6754
- {
6755
- type: "Control",
6756
- scope: "#/properties/EmptyBox",
6757
- options: {
6758
- widget: "EmptyBox"
6759
- },
6760
- config: {
6761
- layout: { xs: 0, sm: 4, md: 4, lg: 4 }
6732
+ layout: { xs: 4, sm: 8 }
6762
6733
  }
6763
6734
  },
6764
6735
  {
@@ -6768,7 +6739,7 @@ const componentBasicUiSchema = (theme) => {
6768
6739
  widget: "Button"
6769
6740
  },
6770
6741
  config: {
6771
- layout: 1.8,
6742
+ layout: { xs: 4, sm: 2 },
6772
6743
  main: {
6773
6744
  name: "Ok",
6774
6745
  startIcon: "ApproveIcon",
@@ -6776,9 +6747,6 @@ const componentBasicUiSchema = (theme) => {
6776
6747
  type: "text",
6777
6748
  onClick: "okHandler",
6778
6749
  size: "medium"
6779
- },
6780
- style: {
6781
- float: "right"
6782
6750
  }
6783
6751
  }
6784
6752
  },
@@ -6789,7 +6757,7 @@ const componentBasicUiSchema = (theme) => {
6789
6757
  widget: "Button"
6790
6758
  },
6791
6759
  config: {
6792
- layout: 1.8,
6760
+ layout: { xs: 4, sm: 2 },
6793
6761
  main: {
6794
6762
  name: "Save & Exit",
6795
6763
  startIcon: "ApproveIcon",
@@ -6797,9 +6765,6 @@ const componentBasicUiSchema = (theme) => {
6797
6765
  type: "text",
6798
6766
  onClick: "saveHandler",
6799
6767
  size: "medium"
6800
- },
6801
- style: {
6802
- float: "right"
6803
6768
  }
6804
6769
  }
6805
6770
  },
@@ -7301,7 +7266,8 @@ const buildWrapper = (label, elements) => {
7301
7266
  },
7302
7267
  wrapperStyle: {
7303
7268
  marginTop: "-6px",
7304
- marginBottom: "-8px"
7269
+ marginBottom: "-8px",
7270
+ marginLeft: "-34px"
7305
7271
  },
7306
7272
  componentsBoxStyle: {
7307
7273
  marginLeft: "24px"
@@ -7499,6 +7465,7 @@ const buildPropertiesSection = function(type) {
7499
7465
  getSelectField("graphType", "Graph Type"),
7500
7466
  getInputField("leftLabel", "Left Label"),
7501
7467
  getInputField("bottomLabel", "Bottom Label"),
7468
+ emptyBox$1({ xs: 6, sm: 0, md: 0, lg: 0 }),
7502
7469
  getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
7503
7470
  getInputField("yAxisValue", "Y-AxisValue"),
7504
7471
  getInputField("xAxisValue", "X-AxisValue"),
@@ -7513,7 +7480,7 @@ const buildPropertiesSection = function(type) {
7513
7480
  getRadioInputField("isAccordion", "Accordion", ["YES", "No"]),
7514
7481
  getRadioInputField("defaultStyle", "Default Style", ["YES", "No"]),
7515
7482
  getInputField("rowSpacing", "Row Spacing"),
7516
- emptyBox$1(),
7483
+ emptyBox$1({ xs: 6, sm: 0, md: 4, lg: 4 }),
7517
7484
  emptyBox$1()
7518
7485
  ];
7519
7486
  break;
@@ -7534,7 +7501,7 @@ const buildPropertiesSection = function(type) {
7534
7501
  getRadioInputField("DragAvailable", "Row Dragging", ["YES", "NO"]),
7535
7502
  getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
7536
7503
  getInputField("selectKey", "Selection Key"),
7537
- emptyBox$1(),
7504
+ emptyBox$1({ xs: 6, sm: 0, md: 0, lg: 0 }),
7538
7505
  buildWrapper("Tree Table Properties", [
7539
7506
  getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
7540
7507
  getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
@@ -7562,7 +7529,7 @@ const buildPropertiesSection = function(type) {
7562
7529
  case "MultipleSelect":
7563
7530
  uiSchema.elements = [
7564
7531
  getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
7565
- emptyBox$1(),
7532
+ emptyBox$1({ xs: 0, sm: 6, md: 4, lg: 4 }),
7566
7533
  emptyBox$1()
7567
7534
  ];
7568
7535
  break;