impaktapps-ui-builder 0.0.101-alpha.53 → 0.0.101-alpha.55
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/dist/impaktapps-ui-builder.es.js +3 -26
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +10 -10
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +24 -24
- package/src/impaktapps-ui-builder/builder/services/component.ts +2 -1
package/package.json
CHANGED
|
@@ -623,31 +623,31 @@ export const componentBasicUiSchema: any = (theme)=>{
|
|
|
623
623
|
},
|
|
624
624
|
]
|
|
625
625
|
},
|
|
626
|
-
{
|
|
627
|
-
|
|
628
|
-
|
|
626
|
+
// {
|
|
627
|
+
// type: "Control",
|
|
628
|
+
// scope: "#/properties/pageName",
|
|
629
629
|
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
},
|
|
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: "fixed",
|
|
644
|
+
// bottom: "24px",
|
|
645
|
+
// backgroundColor: theme.palette.background.default,
|
|
646
|
+
// borderBottom: `1px solid ${theme.palette.common.black}29`,
|
|
647
|
+
// borderTop: `1px solid ${theme.palette.common.black}29`,
|
|
648
|
+
// },
|
|
649
|
+
// },
|
|
650
|
+
// },
|
|
651
651
|
{
|
|
652
652
|
type: "Control",
|
|
653
653
|
scope: "#/properties/pageName",
|
|
@@ -161,7 +161,8 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
161
161
|
const currPath = path.slice(lastDotIndex+1)
|
|
162
162
|
|
|
163
163
|
const currObj = _.get(currentConfig, currPath)
|
|
164
|
-
schema.properties.pageName.path
|
|
164
|
+
console.log("path>>", schema.properties.pageName.path, "label>>", currObj?.config?.main?.label)
|
|
165
|
+
schema.properties.pageName.path.push({label: currObj?.config?.main?.label || "undefined", path: path})
|
|
165
166
|
return schema;
|
|
166
167
|
},
|
|
167
168
|
okHandler: () => okHandler(store),
|