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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.26",
3
+ "version": "0.0.101-alpha.27",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -96,8 +96,8 @@ const getArrayControl = (parentScope: string, childScope: string, childLabel?: s
96
96
  config: {
97
97
  layout: 12,
98
98
  main: {
99
- label: childScope,
100
- childElementLabel: childScope,
99
+ label: childLabel,
100
+ childElementLabel: childLabel,
101
101
  },
102
102
  style: {
103
103
  marginLeft: "-24px",
@@ -332,6 +332,7 @@ export const buildPropertiesSection = function (type: String) {
332
332
  getInputField("placeholder", "Placeholder"),
333
333
  getRadioInputField("enableCodeEditor", "Enable Code Editor",["YES", "NO"]),
334
334
  getInputField("codeEditorLanguage", "Enter Code Language"),
335
+ emptyBox("TextEmpty1", {xs: 0, sm: 0, md: 0, lg: 3 }),
335
336
  ]
336
337
  break;
337
338
 
@@ -623,6 +623,30 @@ export const componentBasicUiSchema: any = (theme)=>{
623
623
  },
624
624
  ]
625
625
  },
626
+ {
627
+ type: "Control",
628
+ scope: "#/properties/pageName",
629
+
630
+ options: {
631
+ widget: "Box",
632
+ },
633
+ config: {
634
+ layout: 12,
635
+ main: {
636
+ heading: "",
637
+ },
638
+ style: {
639
+ paddingLeft: theme.spacing(3),
640
+ width:"100%",
641
+ fontSize:"10px",
642
+ color:theme.palette.grey[600],
643
+ position: "relative",
644
+ bottom: "0px",
645
+ borderBottom: `1px solid ${theme.palette.common.black}29`,
646
+ borderTop: `1px solid ${theme.palette.common.black}29`,
647
+ },
648
+ },
649
+ },
626
650
  {
627
651
  type: "Control",
628
652
  scope: "#/properties/notify",