impaktapps-ui-builder 0.0.412-mtreemap.39 → 0.0.412-mtreemap.40
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 +5 -2
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +2 -2
- 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 +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +3 -0
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +1 -1
|
@@ -73,6 +73,9 @@ const PageMasterUiSchema = (theme) => {
|
|
|
73
73
|
errorMessage: "Name should be start with 'page_'",
|
|
74
74
|
helperText: 'Name should be start with "page_"',
|
|
75
75
|
required: true
|
|
76
|
+
},
|
|
77
|
+
style: {
|
|
78
|
+
marginLeft: theme.spacing(3)
|
|
76
79
|
}
|
|
77
80
|
}
|
|
78
81
|
},
|
|
@@ -6398,7 +6401,7 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6398
6401
|
heading: " "
|
|
6399
6402
|
},
|
|
6400
6403
|
style: {
|
|
6401
|
-
marginLeft: theme.spacing(
|
|
6404
|
+
marginLeft: theme.spacing(3),
|
|
6402
6405
|
width: "auto",
|
|
6403
6406
|
fontSize: "12px",
|
|
6404
6407
|
color: "gray"
|
|
@@ -8270,7 +8273,7 @@ const EventUiSchema = (theme) => {
|
|
|
8270
8273
|
heading: " "
|
|
8271
8274
|
},
|
|
8272
8275
|
style: {
|
|
8273
|
-
marginLeft: theme.spacing(
|
|
8276
|
+
marginLeft: theme.spacing(3),
|
|
8274
8277
|
width: "auto",
|
|
8275
8278
|
fontSize: "12px",
|
|
8276
8279
|
color: "gray"
|