impaktapps-ui-builder 0.0.101-alpha.26 → 0.0.101-alpha.27

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.
@@ -7040,6 +7040,29 @@ const componentBasicUiSchema = (theme) => {
7040
7040
  }
7041
7041
  ]
7042
7042
  },
7043
+ {
7044
+ type: "Control",
7045
+ scope: "#/properties/pageName",
7046
+ options: {
7047
+ widget: "Box"
7048
+ },
7049
+ config: {
7050
+ layout: 12,
7051
+ main: {
7052
+ heading: ""
7053
+ },
7054
+ style: {
7055
+ paddingLeft: theme.spacing(3),
7056
+ width: "100%",
7057
+ fontSize: "10px",
7058
+ color: theme.palette.grey[600],
7059
+ position: "relative",
7060
+ bottom: "0px",
7061
+ borderBottom: `1px solid ${theme.palette.common.black}29`,
7062
+ borderTop: `1px solid ${theme.palette.common.black}29`
7063
+ }
7064
+ }
7065
+ },
7043
7066
  {
7044
7067
  type: "Control",
7045
7068
  scope: "#/properties/notify",
@@ -7493,8 +7516,8 @@ const getArrayControl = (parentScope, childScope, childLabel) => {
7493
7516
  config: {
7494
7517
  layout: 12,
7495
7518
  main: {
7496
- label: childScope,
7497
- childElementLabel: childScope
7519
+ label: childLabel,
7520
+ childElementLabel: childLabel
7498
7521
  },
7499
7522
  style: {
7500
7523
  marginLeft: "-24px",
@@ -7709,7 +7732,8 @@ const buildPropertiesSection = function(type) {
7709
7732
  uiSchema.elements = [
7710
7733
  getInputField("placeholder", "Placeholder"),
7711
7734
  getRadioInputField("enableCodeEditor", "Enable Code Editor", ["YES", "NO"]),
7712
- getInputField("codeEditorLanguage", "Enter Code Language")
7735
+ getInputField("codeEditorLanguage", "Enter Code Language"),
7736
+ emptyBox$1("TextEmpty1", { xs: 0, sm: 0, md: 0, lg: 3 })
7713
7737
  ];
7714
7738
  break;
7715
7739
  case "SpeedoMeter":