impaktapps-ui-builder 0.0.412-mtreemap.33 → 0.0.412-mtreemap.35
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 +49 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- 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 +28 -74
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +21 -0
|
@@ -6387,6 +6387,26 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6387
6387
|
type: "HorizontalLayout",
|
|
6388
6388
|
heading: "Component",
|
|
6389
6389
|
elements: [
|
|
6390
|
+
{
|
|
6391
|
+
type: "Control",
|
|
6392
|
+
scope: "#/properties/pageName",
|
|
6393
|
+
options: {
|
|
6394
|
+
widget: "Box"
|
|
6395
|
+
},
|
|
6396
|
+
config: {
|
|
6397
|
+
layout: 12,
|
|
6398
|
+
main: {
|
|
6399
|
+
heading: " "
|
|
6400
|
+
},
|
|
6401
|
+
style: {
|
|
6402
|
+
lineHeight: 0,
|
|
6403
|
+
width: "auto",
|
|
6404
|
+
fontSize: "12px",
|
|
6405
|
+
color: "gray",
|
|
6406
|
+
paddingTop: "10px"
|
|
6407
|
+
}
|
|
6408
|
+
}
|
|
6409
|
+
},
|
|
6390
6410
|
{
|
|
6391
6411
|
type: "TabLayout",
|
|
6392
6412
|
config: {
|
|
@@ -6546,7 +6566,15 @@ const componentBasicUiSchema = (theme) => {
|
|
|
6546
6566
|
md: 12,
|
|
6547
6567
|
lg: 12
|
|
6548
6568
|
},
|
|
6549
|
-
main: {}
|
|
6569
|
+
main: {},
|
|
6570
|
+
style: {
|
|
6571
|
+
"& .MuiPaper-root": {
|
|
6572
|
+
width: "30%"
|
|
6573
|
+
},
|
|
6574
|
+
"& .MuiTypography-root": {
|
|
6575
|
+
padding: 0
|
|
6576
|
+
}
|
|
6577
|
+
}
|
|
6550
6578
|
},
|
|
6551
6579
|
elements: [
|
|
6552
6580
|
{
|
|
@@ -8232,6 +8260,26 @@ const EventUiSchema = (theme) => {
|
|
|
8232
8260
|
type: "HorizontalLayout",
|
|
8233
8261
|
heading: "Component",
|
|
8234
8262
|
elements: [
|
|
8263
|
+
{
|
|
8264
|
+
type: "Control",
|
|
8265
|
+
scope: "#/properties/pageName",
|
|
8266
|
+
options: {
|
|
8267
|
+
widget: "Box"
|
|
8268
|
+
},
|
|
8269
|
+
config: {
|
|
8270
|
+
layout: 12,
|
|
8271
|
+
main: {
|
|
8272
|
+
heading: " "
|
|
8273
|
+
},
|
|
8274
|
+
style: {
|
|
8275
|
+
lineHeight: 0,
|
|
8276
|
+
width: "auto",
|
|
8277
|
+
fontSize: "12px",
|
|
8278
|
+
color: "gray",
|
|
8279
|
+
paddingTop: "10px"
|
|
8280
|
+
}
|
|
8281
|
+
}
|
|
8282
|
+
},
|
|
8235
8283
|
{
|
|
8236
8284
|
type: "TabLayout",
|
|
8237
8285
|
config: {
|